@react-native-firebase/perf 18.5.0 → 18.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 +6 -0
- package/android/build.gradle +7 -1
- package/lib/version.js +1 -1
- package/package.json +4 -4
- package/plugin/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,12 @@
|
|
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
|
+
## [18.6.0](https://github.com/invertase/react-native-firebase/compare/v18.5.0...v18.6.0) (2023-10-26)
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- **android:** required compatibility for Gradle 8 in android modules ([b52d0ce](https://github.com/invertase/react-native-firebase/commit/b52d0ce6723c077190618641ce0f33ced9fd4090))
|
11
|
+
|
6
12
|
## [18.5.0](https://github.com/invertase/react-native-firebase/compare/v18.4.0...v18.5.0) (2023-09-22)
|
7
13
|
|
8
14
|
**Note:** Version bump only for package @react-native-firebase/perf
|
package/android/build.gradle
CHANGED
@@ -12,7 +12,7 @@ buildscript {
|
|
12
12
|
}
|
13
13
|
|
14
14
|
dependencies {
|
15
|
-
classpath("com.android.tools.build:gradle:8.1.
|
15
|
+
classpath("com.android.tools.build:gradle:8.1.2")
|
16
16
|
}
|
17
17
|
}
|
18
18
|
}
|
@@ -101,6 +101,12 @@ android {
|
|
101
101
|
firebaseJsonCollectionDeactivated: collectionDeactivated
|
102
102
|
]
|
103
103
|
}
|
104
|
+
|
105
|
+
buildFeatures {
|
106
|
+
// AGP 8 no longer builds config by default
|
107
|
+
buildConfig true
|
108
|
+
}
|
109
|
+
|
104
110
|
lintOptions {
|
105
111
|
disable 'GradleCompatible'
|
106
112
|
abortOnError false
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '18.
|
2
|
+
module.exports = '18.6.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/perf",
|
3
|
-
"version": "18.
|
3
|
+
"version": "18.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": "18.
|
32
|
+
"@react-native-firebase/app": "18.6.0",
|
33
33
|
"expo": ">=47.0.0"
|
34
34
|
},
|
35
35
|
"devDependencies": {
|
36
|
-
"expo": "^
|
36
|
+
"expo": "^49.0.16"
|
37
37
|
},
|
38
38
|
"peerDependenciesMeta": {
|
39
39
|
"expo": {
|
@@ -43,5 +43,5 @@
|
|
43
43
|
"publishConfig": {
|
44
44
|
"access": "public"
|
45
45
|
},
|
46
|
-
"gitHead": "
|
46
|
+
"gitHead": "adbbd4171adb1e3c2306da1285520abbaf9313b8"
|
47
47
|
}
|
package/plugin/tsconfig.json
CHANGED