@react-native-firebase/perf 23.4.1 → 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 +10 -0
- package/android/build.gradle +4 -5
- package/lib/version.js +1 -1
- package/package.json +4 -4
- package/plugin/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- firebase-ios-sdk 12.6.0 / firebase-js-sdk 12.6.0 / firebase-android-sdk 34.6.0 ([dacdfa2](https://github.com/invertase/react-native-firebase/commit/dacdfa2b5961259c93ea948472be4b51ac78b1c5))
|
|
11
|
+
|
|
12
|
+
## [23.5.0](https://github.com/invertase/react-native-firebase/compare/v23.4.1...v23.5.0) (2025-10-30)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @react-native-firebase/perf
|
|
15
|
+
|
|
6
16
|
## [23.4.1](https://github.com/invertase/react-native-firebase/compare/v23.4.0...v23.4.1) (2025-10-14)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @react-native-firebase/perf
|
package/android/build.gradle
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/* groovylint-disable DuplicateStringLiteral */
|
|
2
|
+
|
|
3
|
+
import com.android.Version
|
|
2
4
|
import io.invertase.gradle.common.PackageJson
|
|
3
5
|
|
|
4
6
|
buildscript {
|
|
@@ -37,11 +39,8 @@ def jsonTargetSdk = appPackageJson['sdkVersions']['android']['targetSdk']
|
|
|
37
39
|
def jsonCompileSdk = appPackageJson['sdkVersions']['android']['compileSdk']
|
|
38
40
|
def coreVersionDetected = appPackageJson['version']
|
|
39
41
|
def coreVersionRequired = packageJson['peerDependencies'][appPackageJson['name']]
|
|
40
|
-
// Only log after build completed so log warning appears at the end
|
|
41
42
|
if (coreVersionDetected != coreVersionRequired) {
|
|
42
|
-
|
|
43
|
-
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
|
-
}
|
|
43
|
+
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.")
|
|
45
44
|
}
|
|
46
45
|
|
|
47
46
|
project.ext {
|
|
@@ -89,7 +88,7 @@ if (rootProject.ext && rootProject.ext.firebaseJson) {
|
|
|
89
88
|
}
|
|
90
89
|
|
|
91
90
|
android {
|
|
92
|
-
def agpVersion =
|
|
91
|
+
def agpVersion = Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
|
|
93
92
|
if (agpVersion >= 7) {
|
|
94
93
|
namespace = 'io.invertase.firebase.perf'
|
|
95
94
|
}
|
package/lib/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
module.exports = '23.
|
|
2
|
+
module.exports = '23.6.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-firebase/perf",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.6.0",
|
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
|
5
5
|
"description": "React Native Firebase - React Native Firebase provides native integration with Performance Monitoring to gain insight into key performance characteristics within your React Native application.",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"performance monitoring"
|
|
30
30
|
],
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@react-native-firebase/app": "23.
|
|
32
|
+
"@react-native-firebase/app": "23.6.0",
|
|
33
33
|
"expo": ">=47.0.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"expo": "^
|
|
36
|
+
"expo": "^54.0.27"
|
|
37
37
|
},
|
|
38
38
|
"peerDependenciesMeta": {
|
|
39
39
|
"expo": {
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"access": "public",
|
|
45
45
|
"provenance": true
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "748e89f9bfcdfbee971c627cd8a698963ba09f33"
|
|
48
48
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./src/index.ts","./src/android/applyPlugin.ts","./src/android/buildscriptDependency.ts","./src/android/constants.ts","./src/android/index.ts"],"version":"5.9.
|
|
1
|
+
{"root":["./src/index.ts","./src/android/applyPlugin.ts","./src/android/buildscriptDependency.ts","./src/android/constants.ts","./src/android/index.ts"],"version":"5.9.3"}
|