aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Auth
diff options
context:
space:
mode:
authorGravatar Zsika Phillip <protocol86@users.noreply.github.com>2018-04-03 22:02:41 -0700
committerGravatar GitHub <noreply@github.com>2018-04-03 22:02:41 -0700
commit1b66d7317e3e0ee62193842e0751786fc8de2667 (patch)
tree9583a1ae88b24e4d3f195abe96fd769f5d74c099 /Firebase/Auth
parent6566328dc461c38c6000c64996c17883b9895d06 (diff)
Updates changelog (#1022)
Diffstat (limited to 'Firebase/Auth')
-rw-r--r--Firebase/Auth/CHANGELOG.md9
-rw-r--r--Firebase/Auth/Source/Public/FIRAuthTokenResult.h2
2 files changed, 8 insertions, 3 deletions
diff --git a/Firebase/Auth/CHANGELOG.md b/Firebase/Auth/CHANGELOG.md
index d5ee03f..846c2ca 100644
--- a/Firebase/Auth/CHANGELOG.md
+++ b/Firebase/Auth/CHANGELOG.md
@@ -1,7 +1,12 @@
-# v4.5.1
+# v4.6.0
+- Adds `getIDTokenResultWithCompletion:` and `getIDTokenResultForcingRefresh:completion:` APIs which
+ call back with an AuthTokenResult object. The Auth token result object contains the ID token JWT string and other properties associated with the token including the decoded available payload claims (#1004).
+
+- Adds the `updateCurrentUser:completion:` API which sets the currentUser on the calling Auth instance to the provided user object (#1018).
+
- Adds client-side validation to prevent setting `handleCodeInApp` to false when performing
email-link authentication. If `handleCodeInApp` is set to false an invalid argument exception
- is thrown.
+ is thrown (#931).
# v4.5.0
- Adds new API which provides a way to determine the sign-in methods associated with an
diff --git a/Firebase/Auth/Source/Public/FIRAuthTokenResult.h b/Firebase/Auth/Source/Public/FIRAuthTokenResult.h
index 11487dc..41ba008 100644
--- a/Firebase/Auth/Source/Public/FIRAuthTokenResult.h
+++ b/Firebase/Auth/Source/Public/FIRAuthTokenResult.h
@@ -20,7 +20,7 @@ NS_ASSUME_NONNULL_BEGIN
/** @class FIRAuthTokenResult
@brief A data class containing the ID token JWT string and other properties associated with the
- token including the decoded payload claims if available.
+ token including the decoded payload claims.
*/
NS_SWIFT_NAME(AuthTokenResult)
@interface FIRAuthTokenResult : NSObject