@react-native-firebase/app 18.2.0 → 18.3.1
Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,17 @@
|
|
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.3.1](https://github.com/invertase/react-native-firebase/compare/v18.3.0...v18.3.1) (2023-08-23)
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- **app, sdks:** adopt android-sdk 32.2.2 / ios-sdk 10.13.0 ([5484c0b](https://github.com/invertase/react-native-firebase/commit/5484c0b69420f888f9a3a59aec8cc59d45f1d2d6))
|
11
|
+
- **app, sdks:** adopt firebase-ios-sdk 10.14.0 ([89e3bd9](https://github.com/invertase/react-native-firebase/commit/89e3bd9cbf73b1af666afde017cba801d48684e8))
|
12
|
+
|
13
|
+
## [18.3.0](https://github.com/invertase/react-native-firebase/compare/v18.2.0...v18.3.0) (2023-07-19)
|
14
|
+
|
15
|
+
**Note:** Version bump only for package @react-native-firebase/app
|
16
|
+
|
6
17
|
## [18.2.0](https://github.com/invertase/react-native-firebase/compare/v18.1.0...v18.2.0) (2023-07-13)
|
7
18
|
|
8
19
|
### Bug Fixes
|
package/firebase-schema.json
CHANGED
@@ -43,7 +43,13 @@
|
|
43
43
|
},
|
44
44
|
"app_log_level": {
|
45
45
|
"description": "Set the log level across all modules. Only applies to iOS currently. Can be 'error', 'warn', 'info', 'debug'.\n Logs messages at the configured level or lower.\n Note that if an app is running from AppStore, it will never log above info even if level is set to a higher (more verbose) setting",
|
46
|
-
"type": "string"
|
46
|
+
"type": "string",
|
47
|
+
"enum": [
|
48
|
+
"error",
|
49
|
+
"warn",
|
50
|
+
"info",
|
51
|
+
"debug"
|
52
|
+
]
|
47
53
|
},
|
48
54
|
"app_check_token_auto_refresh": {
|
49
55
|
"description": "If this flag is disabled then Firebase App Check will not periodically auto-refresh the app check token.\n This is useful for opt-in-first data flows, for example when dealing with GDPR compliance. \nIf unset it will default to the SDK-wide data collection default enabled setting. This may be overridden dynamically in Javascript.",
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '18.
|
2
|
+
module.exports = '18.3.1';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/app",
|
3
|
-
"version": "18.
|
3
|
+
"version": "18.3.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",
|
@@ -73,7 +73,7 @@
|
|
73
73
|
},
|
74
74
|
"sdkVersions": {
|
75
75
|
"ios": {
|
76
|
-
"firebase": "10.
|
76
|
+
"firebase": "10.14.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.
|
85
|
-
"firebaseCrashlyticsGradle": "2.9.
|
84
|
+
"firebase": "32.2.2",
|
85
|
+
"firebaseCrashlyticsGradle": "2.9.8",
|
86
86
|
"firebasePerfGradle": "1.4.2",
|
87
87
|
"gmsGoogleServicesGradle": "4.3.15",
|
88
|
-
"playServicesAuth": "20.
|
88
|
+
"playServicesAuth": "20.6.0"
|
89
89
|
}
|
90
90
|
},
|
91
|
-
"gitHead": "
|
91
|
+
"gitHead": "878f4199ca99963dec7822d1c9e14e9c91325b4f"
|
92
92
|
}
|