Skip to content

Releases: firebase/FirebaseUI-iOS

FirebaseUI 12.3.0

26 Sep 19:31
271a2ef
Compare
Choose a tag to compare

Fixes #1099, #1028, #1043, and #1083.

Also bumps the Firebase support ceiling to Firebase 10 (inclusive).

FirebaseUI 12.2.0

04 May 23:01
6c2993a
Compare
Choose a tag to compare
  • Fixed an issue where an error would be ignored sometimes in Firebase Auth (#1012).
  • Updated FirebaseUI to be compatible with both Firebase 8.x and Firebase 9.x.

FirebaseUI 12.1.1

13 Jan 19:03
59b8527
Compare
Choose a tag to compare

Fixes several packaging issues (#1002, #1007, #1015).

FirebaseUI 12.1.0

11 Oct 20:54
Compare
Choose a tag to compare
  • Added support for Facebook Limited Login.
  • Added nonce utilities to FirebaseAuthUI.

FirebaseUI 12.0.2

11 Aug 21:55
Compare
Choose a tag to compare
  • Fixed #998
  • Added a nonce to Sign in with Apple requests (#996)

FirebaseUI 12.0.0

22 Jul 18:57
9080f99
Compare
Choose a tag to compare

Updated GoogleSignIn to 6.0.0 and added support for Swift Package Manager. When migrating, note that any scopes beyond the default email and profile scopes must now be requested in a reauth flow.

FirebaseUI 11.1.3

01 Jul 21:08
bdfd754
Compare
Choose a tag to compare
  • Updated Facebook dependency to v11 and replaced FBSDKCoreKit with FBSDKCoreKit_Basics.
  • Added custom Auth UI parameters to OAuth providers.

FirebaseUI 11.0.3

22 Jun 17:39
Compare
Choose a tag to compare
  • Removes dependencies on the top-level Firebase pod from Auth, Firestore, Storage, and Database.

FirebaseUI 11.0.2

21 Jun 21:33
Compare
Choose a tag to compare
  • Fixed an issue where static_framework was still required even for subsets of FirebaseUI that had no static framework dependencies.

FirebaseUI 11.0.0

08 Jun 23:57
f0f172e
Compare
Choose a tag to compare
  • Added Swift Package Manager support. Google Auth is not yet supported due to a dependency (GoogleSignIn) missing support.
  • Breaking change: Broke monolithic FirebaseUI module into separate modules per feature. You'll need to update the imports in your project accordingly.
    // FirebaseUI 10.x
    import FirebaseUI
    // FirebaseUI 11
    import FirebaseAuthUI
    import FirebaseDatabaseUI
    // ...