diff --git a/packages/auth/CHANGELOG.md b/packages/auth/CHANGELOG.md index 8b1529c8..4c86a93f 100644 --- a/packages/auth/CHANGELOG.md +++ b/packages/auth/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [8.0.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/auth@7.1.0...@react-native-firebase/auth@8.0.0) (2020-05-28) + +- fix!(auth): confirm code returns User instead of UserCredential (#3684) ([71a1120](https://github.com/invertase/react-native-firebase/commit/71a1120337acd73d2483103f2acd560e8e99a335)), closes [#3684](https://github.com/invertase/react-native-firebase/issues/3684) + +### BREAKING CHANGES + +- `confirm(verificationCode)` now correctly returns an instance of `UserCredentials` instead of `User`. You can access `User` from the `.user` property on the `UserCredentials` instance. + # [7.1.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/auth@7.0.2...@react-native-firebase/auth@7.1.0) (2020-05-22) ### Features diff --git a/packages/auth/package.json b/packages/auth/package.json index 9438c2f4..13de1a30 100644 --- a/packages/auth/package.json +++ b/packages/auth/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-firebase/auth", - "version": "7.1.0", + "version": "8.0.0", "author": "Invertase (http://invertase.io)", "description": "React Native Firebase - The authentication module provides an easy-to-use API to integrate an authentication workflow into new and existing applications. React Native Firebase provides access to all Firebase authentication methods and identity providers.", "main": "lib/index.js", diff --git a/tests/CHANGELOG.md b/tests/CHANGELOG.md index e5735985..41c9bd8d 100644 --- a/tests/CHANGELOG.md +++ b/tests/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.1.2](https://github.com/invertase/react-native-firebase/compare/react-native-firebase-tests@7.1.1...react-native-firebase-tests@7.1.2) (2020-05-28) + +**Note:** Version bump only for package react-native-firebase-tests + + + + + ## [7.1.1](https://github.com/invertase/react-native-firebase/compare/react-native-firebase-tests@7.1.0...react-native-firebase-tests@7.1.1) (2020-05-28) **Note:** Version bump only for package react-native-firebase-tests diff --git a/tests/package.json b/tests/package.json index 17fb2b0c..552a363a 100644 --- a/tests/package.json +++ b/tests/package.json @@ -1,6 +1,6 @@ { "name": "react-native-firebase-tests", - "version": "7.1.1", + "version": "7.1.2", "private": true, "scripts": { "build:clean": "rimraf dist && rimraf android/build && rimraf android/app/build && rimraf android/.gradle && rimraf ios/build", @@ -11,7 +11,7 @@ "@react-native-firebase/analytics": "7.1.0", "@react-native-firebase/app": "7.1.0", "@react-native-firebase/app-types": "6.7.2", - "@react-native-firebase/auth": "7.1.0", + "@react-native-firebase/auth": "8.0.0", "@react-native-firebase/crashlytics": "7.1.0", "@react-native-firebase/database": "7.1.0", "@react-native-firebase/dynamic-links": "7.1.0",