@react-native-firebase/auth 14.8.0 → 14.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,20 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [14.9.1](https://github.com/invertase/react-native-firebase/compare/v14.9.0...v14.9.1) (2022-04-28)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/auth
|
9
|
+
|
10
|
+
# [14.9.0](https://github.com/invertase/react-native-firebase/compare/v14.8.1...v14.9.0) (2022-04-27)
|
11
|
+
|
12
|
+
### Features
|
13
|
+
|
14
|
+
- **firestore:** named query and data bundle APIs ([#6199](https://github.com/invertase/react-native-firebase/issues/6199)) ([96591e0](https://github.com/invertase/react-native-firebase/commit/96591e0dac957383c503e94fbf7bf0379d5569f2))
|
15
|
+
|
16
|
+
## [14.8.1](https://github.com/invertase/react-native-firebase/compare/v14.8.0...v14.8.1) (2022-04-25)
|
17
|
+
|
18
|
+
**Note:** Version bump only for package @react-native-firebase/auth
|
19
|
+
|
6
20
|
# [14.8.0](https://github.com/invertase/react-native-firebase/compare/v14.7.0...v14.8.0) (2022-04-19)
|
7
21
|
|
8
22
|
**Note:** Version bump only for package @react-native-firebase/auth
|
@@ -245,13 +245,14 @@ class ReactNativeFirebaseAuthModule extends ReactNativeFirebaseModule {
|
|
245
245
|
|
246
246
|
/**
|
247
247
|
* Disable app verification for the running of tests
|
248
|
+
*
|
248
249
|
* @param appName
|
249
250
|
* @param disabled
|
250
251
|
* @param promise
|
251
252
|
*/
|
252
253
|
@ReactMethod
|
253
254
|
public void setAppVerificationDisabledForTesting(
|
254
|
-
|
255
|
+
String appName, boolean disabled, Promise promise) {
|
255
256
|
Log.d(TAG, "setAppVerificationDisabledForTesting");
|
256
257
|
FirebaseApp firebaseApp = FirebaseApp.getInstance(appName);
|
257
258
|
FirebaseAuth firebaseAuth = FirebaseAuth.getInstance(firebaseApp);
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// generated by genversion
|
2
|
-
module.exports = '14.
|
2
|
+
module.exports = '14.9.1';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/auth",
|
3
|
-
"version": "14.
|
3
|
+
"version": "14.9.1",
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
5
5
|
"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.",
|
6
6
|
"main": "lib/index.js",
|
@@ -22,10 +22,10 @@
|
|
22
22
|
"auth"
|
23
23
|
],
|
24
24
|
"peerDependencies": {
|
25
|
-
"@react-native-firebase/app": "14.
|
25
|
+
"@react-native-firebase/app": "14.9.1"
|
26
26
|
},
|
27
27
|
"publishConfig": {
|
28
28
|
"access": "public"
|
29
29
|
},
|
30
|
-
"gitHead": "
|
30
|
+
"gitHead": "a799c14382e2448e32428e4a83bc286533e4dd35"
|
31
31
|
}
|