@react-native-firebase/auth 14.7.0 → 14.9.0

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.0](https://github.com/invertase/react-native-firebase/compare/v14.8.1...v14.9.0) (2022-04-27)
7
+
8
+ ### Features
9
+
10
+ - **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))
11
+
12
+ ## [14.8.1](https://github.com/invertase/react-native-firebase/compare/v14.8.0...v14.8.1) (2022-04-25)
13
+
14
+ **Note:** Version bump only for package @react-native-firebase/auth
15
+
16
+ # [14.8.0](https://github.com/invertase/react-native-firebase/compare/v14.7.0...v14.8.0) (2022-04-19)
17
+
18
+ **Note:** Version bump only for package @react-native-firebase/auth
19
+
6
20
  # [14.7.0](https://github.com/invertase/react-native-firebase/compare/v14.6.0...v14.7.0) (2022-03-23)
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
- String appName, boolean disabled, Promise promise) {
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.7.0';
2
+ module.exports = '14.9.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/auth",
3
- "version": "14.7.0",
3
+ "version": "14.9.0",
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.7.0"
25
+ "@react-native-firebase/app": "14.9.0"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "gitHead": "ef7895cd49eed3a4d103df624e52315250c68ab3"
30
+ "gitHead": "0fd4b4fc65467c4342442b22afb20a7f8cff0ada"
31
31
  }