@react-native-firebase/database 23.5.0 → 23.7.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,14 @@
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
+ ## [23.7.0](https://github.com/invertase/react-native-firebase/compare/v23.6.0...v23.7.0) (2025-12-08)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/database
9
+
10
+ ## [23.6.0](https://github.com/invertase/react-native-firebase/compare/v23.5.0...v23.6.0) (2025-12-08)
11
+
12
+ **Note:** Version bump only for package @react-native-firebase/database
13
+
6
14
  ## [23.5.0](https://github.com/invertase/react-native-firebase/compare/v23.4.1...v23.5.0) (2025-10-30)
7
15
 
8
16
  **Note:** Version bump only for package @react-native-firebase/database
@@ -1,3 +1,4 @@
1
+ import com.android.Version
1
2
  import io.invertase.gradle.common.PackageJson
2
3
 
3
4
  buildscript {
@@ -36,11 +37,8 @@ def jsonTargetSdk = appPackageJson['sdkVersions']['android']['targetSdk']
36
37
  def jsonCompileSdk = appPackageJson['sdkVersions']['android']['compileSdk']
37
38
  def coreVersionDetected = appPackageJson['version']
38
39
  def coreVersionRequired = packageJson['peerDependencies'][appPackageJson['name']]
39
- // Only log after build completed so log warning appears at the end
40
40
  if (coreVersionDetected != coreVersionRequired) {
41
- gradle.buildFinished {
42
- project.logger.warn("ReactNativeFirebase WARNING: NPM package '${packageJson['name']}' depends on '${appPackageJson['name']}' v${coreVersionRequired} but found v${coreVersionDetected}, this might cause build issues or runtime crashes.")
43
- }
41
+ project.logger.warn("ReactNativeFirebase WARNING: NPM package '${packageJson['name']}' depends on '${appPackageJson['name']}' v${coreVersionRequired} but found v${coreVersionDetected}, this might cause build issues or runtime crashes.")
44
42
  }
45
43
 
46
44
  project.ext {
@@ -60,7 +58,7 @@ project.ext {
60
58
  }
61
59
 
62
60
  android {
63
- def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
61
+ def agpVersion = Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
64
62
  if (agpVersion >= 7) {
65
63
  namespace = 'io.invertase.firebase.database'
66
64
  }
@@ -11,8 +11,7 @@ export type OnDisconnect = FirebaseDatabaseTypes.OnDisconnect;
11
11
  * as the write to the backend completes.
12
12
  */
13
13
  export interface ThenableReference
14
- extends DatabaseReference,
15
- Pick<Promise<DatabaseReference>, 'then' | 'catch'> {}
14
+ extends DatabaseReference, Pick<Promise<DatabaseReference>, 'then' | 'catch'> {}
16
15
 
17
16
  export type Unsubscribe = () => void;
18
17
 
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '23.5.0';
2
+ module.exports = '23.7.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/database",
3
- "version": "23.5.0",
3
+ "version": "23.7.0",
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,11 +25,11 @@
25
25
  "realtome database"
26
26
  ],
27
27
  "peerDependencies": {
28
- "@react-native-firebase/app": "23.5.0"
28
+ "@react-native-firebase/app": "23.7.0"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public",
32
32
  "provenance": true
33
33
  },
34
- "gitHead": "5d27948f349d4d6c977c55036e2afd13df8d622f"
34
+ "gitHead": "2a30c0b1e41a2b239172afd167f98a03fd422f2c"
35
35
  }