@react-native-firebase/app 18.5.0 → 18.6.1
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 +13 -0
- package/android/build.gradle +1 -1
- package/android/src/reactnative/java/io/invertase/firebase/app/ReactNativeFirebaseVersion.java +1 -1
- package/ios/RNFBApp/RNFBVersion.m +1 -1
- package/lib/version.js +1 -1
- package/package.json +7 -7
- package/plugin/build/android/copyGoogleServices.js +1 -2
- package/plugin/build/ios/googleServicesPlist.js +1 -2
- package/plugin/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,19 @@
|
|
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.1](https://github.com/invertase/react-native-firebase/compare/v18.6.0...v18.6.1) (2023-11-01)
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- **app, android:** adopt firebase-android-sdk 32.5.0 ([9834bfb](https://github.com/invertase/react-native-firebase/commit/9834bfb7feeef4d40d8524f81be5d1f722cae3b8))
|
11
|
+
- **app, sdk:** adopt firebase-ios-sdk 10.17.0 ([c926af3](https://github.com/invertase/react-native-firebase/commit/c926af334999fb6e462487ac43f07e08f808ac13))
|
12
|
+
|
13
|
+
## [18.6.0](https://github.com/invertase/react-native-firebase/compare/v18.5.0...v18.6.0) (2023-10-26)
|
14
|
+
|
15
|
+
### Bug Fixes
|
16
|
+
|
17
|
+
- **app, sdk:** adopt firebase-android-sdk 32.4.0 ([63f1893](https://github.com/invertase/react-native-firebase/commit/63f1893849578bfab85241bf4458eb845a4d857f))
|
18
|
+
|
6
19
|
## [18.5.0](https://github.com/invertase/react-native-firebase/compare/v18.4.0...v18.5.0) (2023-09-22)
|
7
20
|
|
8
21
|
### Features
|
package/android/build.gradle
CHANGED
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '18.
|
2
|
+
module.exports = '18.6.1';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/app",
|
3
|
-
"version": "18.
|
3
|
+
"version": "18.6.1",
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
5
5
|
"description": "A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Functions, Messaging (FCM), Remote Config, Storage and more.",
|
6
6
|
"main": "lib/index.js",
|
@@ -57,11 +57,11 @@
|
|
57
57
|
"react-native": "*"
|
58
58
|
},
|
59
59
|
"dependencies": {
|
60
|
-
"opencollective-postinstall": "^2.0.
|
60
|
+
"opencollective-postinstall": "^2.0.3",
|
61
61
|
"superstruct": "^0.6.2"
|
62
62
|
},
|
63
63
|
"devDependencies": {
|
64
|
-
"expo": "^
|
64
|
+
"expo": "^49.0.16"
|
65
65
|
},
|
66
66
|
"peerDependenciesMeta": {
|
67
67
|
"expo": {
|
@@ -73,7 +73,7 @@
|
|
73
73
|
},
|
74
74
|
"sdkVersions": {
|
75
75
|
"ios": {
|
76
|
-
"firebase": "10.
|
76
|
+
"firebase": "10.17.0",
|
77
77
|
"iosTarget": "11.0",
|
78
78
|
"macosTarget": "10.13"
|
79
79
|
},
|
@@ -81,12 +81,12 @@
|
|
81
81
|
"minSdk": 19,
|
82
82
|
"targetSdk": 33,
|
83
83
|
"compileSdk": 33,
|
84
|
-
"firebase": "32.
|
84
|
+
"firebase": "32.5.0",
|
85
85
|
"firebaseCrashlyticsGradle": "2.9.9",
|
86
86
|
"firebasePerfGradle": "1.4.2",
|
87
|
-
"gmsGoogleServicesGradle": "4.
|
87
|
+
"gmsGoogleServicesGradle": "4.4.0",
|
88
88
|
"playServicesAuth": "20.7.0"
|
89
89
|
}
|
90
90
|
},
|
91
|
-
"gitHead": "
|
91
|
+
"gitHead": "3d73352fb7434251fe661b426115339cf6d30bc1"
|
92
92
|
}
|
@@ -15,8 +15,7 @@ const withCopyAndroidGoogleServices = config => {
|
|
15
15
|
return (0, config_plugins_1.withDangerousMod)(config, [
|
16
16
|
'android',
|
17
17
|
async (config) => {
|
18
|
-
|
19
|
-
if (!((_a = config.android) === null || _a === void 0 ? void 0 : _a.googleServicesFile)) {
|
18
|
+
if (!config.android?.googleServicesFile) {
|
20
19
|
throw new Error('Path to google-services.json is not defined. Please specify the `expo.android.googleServicesFile` field in app.json.');
|
21
20
|
}
|
22
21
|
const srcPath = path_1.default.resolve(config.modRequest.projectRoot, config.android.googleServicesFile);
|
@@ -9,8 +9,7 @@ const fs_1 = __importDefault(require("fs"));
|
|
9
9
|
const path_1 = __importDefault(require("path"));
|
10
10
|
const withIosGoogleServicesFile = config => {
|
11
11
|
return (0, config_plugins_1.withXcodeProject)(config, config => {
|
12
|
-
|
13
|
-
if (!((_a = config.ios) === null || _a === void 0 ? void 0 : _a.googleServicesFile)) {
|
12
|
+
if (!config.ios?.googleServicesFile) {
|
14
13
|
throw new Error('Path to GoogleService-Info.plist is not defined. Please specify the `expo.ios.googleServicesFile` field in app.json.');
|
15
14
|
}
|
16
15
|
config.modResults = setGoogleServicesFile({
|
package/plugin/tsconfig.json
CHANGED