@react-native-firebase/installations 23.5.0 → 23.6.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,10 @@
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.6.0](https://github.com/invertase/react-native-firebase/compare/v23.5.0...v23.6.0) (2025-12-08)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/installations
9
+
6
10
  ## [23.5.0](https://github.com/invertase/react-native-firebase/compare/v23.4.1...v23.5.0) (2025-10-30)
7
11
 
8
12
  **Note:** Version bump only for package @react-native-firebase/installations
@@ -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.installations'
66
64
  }
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '23.5.0';
2
+ module.exports = '23.6.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/installations",
3
- "version": "23.5.0",
3
+ "version": "23.6.0",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - Installations",
6
6
  "main": "lib/index.js",
@@ -22,11 +22,11 @@
22
22
  "installations"
23
23
  ],
24
24
  "peerDependencies": {
25
- "@react-native-firebase/app": "23.5.0"
25
+ "@react-native-firebase/app": "23.6.0"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public",
29
29
  "provenance": true
30
30
  },
31
- "gitHead": "5d27948f349d4d6c977c55036e2afd13df8d622f"
31
+ "gitHead": "748e89f9bfcdfbee971c627cd8a698963ba09f33"
32
32
  }