@react-native-firebase/database 13.0.1 → 14.0.1

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,24 @@
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.0.1](https://github.com/invertase/react-native-firebase/compare/v14.0.0...v14.0.1) (2021-12-15)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/database
9
+
10
+ # [14.0.0](https://github.com/invertase/react-native-firebase/compare/v13.1.1...v14.0.0) (2021-12-14)
11
+
12
+ **Note:** Version bump only for package @react-native-firebase/database
13
+
14
+ ## [13.1.1](https://github.com/invertase/react-native-firebase/compare/v13.1.0...v13.1.1) (2021-12-14)
15
+
16
+ ### Bug Fixes
17
+
18
+ - **deps:** AGP7.0.4, firebase-android-sdk 29.0.2, javascript deps ([55d0a36](https://github.com/invertase/react-native-firebase/commit/55d0a36a0addc54e347f26bb8ee88bb38b0fa4a6))
19
+
20
+ # [13.1.0](https://github.com/invertase/react-native-firebase/compare/v13.0.1...v13.1.0) (2021-12-02)
21
+
22
+ **Note:** Version bump only for package @react-native-firebase/database
23
+
6
24
  ## [13.0.1](https://github.com/invertase/react-native-firebase/compare/v13.0.0...v13.0.1) (2021-11-05)
7
25
 
8
26
  **Note:** Version bump only for package @react-native-firebase/database
@@ -11,7 +11,7 @@ buildscript {
11
11
  }
12
12
 
13
13
  dependencies {
14
- classpath("com.android.tools.build:gradle:7.0.3")
14
+ classpath("com.android.tools.build:gradle:7.0.4")
15
15
  }
16
16
  }
17
17
  }
package/lib/index.d.ts CHANGED
@@ -1217,7 +1217,7 @@ export namespace FirebaseDatabaseTypes {
1217
1217
  *
1218
1218
  * @param enabled Whether persistence is enabled for the Database service.
1219
1219
  */
1220
- setPersistenceEnabled(enabled: boolean): Promise<void>;
1220
+ setPersistenceEnabled(enabled: boolean): void;
1221
1221
 
1222
1222
  /**
1223
1223
  * Sets the native logging level for the database module. By default,
@@ -1237,7 +1237,7 @@ export namespace FirebaseDatabaseTypes {
1237
1237
  *
1238
1238
  * @param enabled Whether debug logging is enabled.
1239
1239
  */
1240
- setLoggingEnabled(enabled: boolean): Promise<void>;
1240
+ setLoggingEnabled(enabled: boolean): void;
1241
1241
 
1242
1242
  /**
1243
1243
  * By default Firebase Database will use up to 10MB of disk space to cache data. If the cache grows beyond this size,
@@ -1262,7 +1262,7 @@ export namespace FirebaseDatabaseTypes {
1262
1262
  *
1263
1263
  * @param bytes The new size of the cache in bytes.
1264
1264
  */
1265
- setPersistenceCacheSizeBytes(bytes: number): Promise<void>;
1265
+ setPersistenceCacheSizeBytes(bytes: number): void;
1266
1266
 
1267
1267
  /**
1268
1268
  * Modify this Database instance to communicate with the Firebase Database emulator.
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // generated by genversion
2
- module.exports = '13.0.1';
2
+ module.exports = '14.0.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/database",
3
- "version": "13.0.1",
3
+ "version": "14.0.1",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - The Firebase Realtime Database is a cloud-hosted database. Data is stored as JSON and synchronized in realtime to every connected client. React Native Firebase provides native integration with the Android & iOS Firebase SDKs, supporting both realtime data sync and offline capabilities.",
6
6
  "main": "lib/index.js",
@@ -25,10 +25,10 @@
25
25
  "realtome database"
26
26
  ],
27
27
  "peerDependencies": {
28
- "@react-native-firebase/app": "13.0.1"
28
+ "@react-native-firebase/app": "14.0.1"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public"
32
32
  },
33
- "gitHead": "3d5d00d6b1ed7cf9e1afbe62f16b1c77e2bf7693"
33
+ "gitHead": "c2f5b82e487ba3c05e10ccafaa8cc09b43cb5811"
34
34
  }