Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 8da93c4

Browse files
committed
Improved error handling for Android and iOS.
Updated FireAuth docs. Updated deprecated API "fetchProvidersForEmail" to "fetchSignInMethodsForEmail". Added "unlinkCredential". Updated changelog and brought wrapper inline with (#915).
1 parent 9a17c4f commit 8da93c4

File tree

7 files changed

+917
-263
lines changed

7 files changed

+917
-263
lines changed

packages/firebase_auth/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.6.7
2+
3+
* `FirebaseAuth` and `FirebaseUser` are now fully documented.
4+
* `PlatformExceptions` now report error codes as stated in docs.
5+
* Credentials can now be unlinked from Accounts with new methods on `FirebaseUser`.
6+
7+
## 0.6.6
8+
9+
* Users can now reauthenticate in response to operations that require a recent sign-in.
10+
111
## 0.6.5
212

313
* Fixing async method `verifyPhoneNumber`, that would never return even in a successful call.

packages/firebase_auth/android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ android {
3232
disable 'InvalidPackage'
3333
}
3434
dependencies {
35-
api 'com.google.firebase:firebase-auth:16.0.4'
35+
api 'com.google.firebase:firebase-auth:16.0.5'
3636
}
3737
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
zipStoreBase=GRADLE_USER_HOME
4+
zipStorePath=wrapper/dists
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip

0 commit comments

Comments
 (0)