@react-native-firebase/app 21.12.0 → 21.12.2
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,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
|
+
## [21.12.2](https://github.com/invertase/react-native-firebase/compare/v21.12.1...v21.12.2) (2025-03-23)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/app
|
9
|
+
|
10
|
+
## [21.12.1](https://github.com/invertase/react-native-firebase/compare/v21.12.0...v21.12.1) (2025-03-22)
|
11
|
+
|
12
|
+
### Bug Fixes
|
13
|
+
|
14
|
+
- **android:** adopt firebase-android-sdk 33.11.0 ([8271231](https://github.com/invertase/react-native-firebase/commit/82712317f9df94f5b5d2d9610f2029c3df0ed96b))
|
15
|
+
- **app, sdks:** firebase-ios-sdk 11.9.0 / firebase-android-sdk 33.10.0 ([df24ed6](https://github.com/invertase/react-native-firebase/commit/df24ed63e5434c84dc167f23287446647457e8e5))
|
16
|
+
- **app:** App type def fix ([#8365](https://github.com/invertase/react-native-firebase/issues/8365)) ([068a924](https://github.com/invertase/react-native-firebase/commit/068a92496f54e30cd17187c849163dbafd9e8c5b))
|
17
|
+
- **ios:** adopt firebase-ios-sdk 11.10.0 ([ffc7b4c](https://github.com/invertase/react-native-firebase/commit/ffc7b4c7d603dcb27b730f82c523c91b4a5882a8))
|
18
|
+
|
6
19
|
## [21.12.0](https://github.com/invertase/react-native-firebase/compare/v21.11.0...v21.12.0) (2025-03-03)
|
7
20
|
|
8
21
|
### Features
|
package/lib/modular/index.d.ts
CHANGED
@@ -15,13 +15,13 @@ export function deleteApp(app: FirebaseApp): Promise<void>;
|
|
15
15
|
* Registers a library's name and version for platform logging purposes.
|
16
16
|
* @param libraryKeyOrName - Library name or key.
|
17
17
|
* @param version - Library version.
|
18
|
-
* @param variant - Library variant.
|
18
|
+
* @param variant - Library variant. Optional.
|
19
19
|
* @returns Promise<void>
|
20
20
|
*/
|
21
21
|
export function registerVersion(
|
22
22
|
libraryKeyOrName: string,
|
23
23
|
version: string,
|
24
|
-
variant
|
24
|
+
variant?: string,
|
25
25
|
): Promise<void>;
|
26
26
|
|
27
27
|
/**
|
package/lib/modular/index.js
CHANGED
@@ -31,7 +31,7 @@ export function deleteApp(app) {
|
|
31
31
|
* Registers a library's name and version for platform logging purposes.
|
32
32
|
@param {string} libraryKeyOrName - library name or key.
|
33
33
|
@param {string} version - library version.
|
34
|
-
@param {string |
|
34
|
+
@param {string | undefined} variant - library variant. Optional.
|
35
35
|
* @returns {Promise<void>}
|
36
36
|
*/
|
37
37
|
export function registerVersion(libraryKeyOrName, version, variant) {
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '21.12.
|
2
|
+
module.exports = '21.12.2';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/app",
|
3
|
-
"version": "21.12.
|
3
|
+
"version": "21.12.2",
|
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": "11.
|
76
|
+
"firebase": "11.10.0",
|
77
77
|
"iosTarget": "13.0",
|
78
78
|
"macosTarget": "10.15",
|
79
79
|
"tvosTarget": "13.0"
|
@@ -82,7 +82,7 @@
|
|
82
82
|
"minSdk": 21,
|
83
83
|
"targetSdk": 34,
|
84
84
|
"compileSdk": 34,
|
85
|
-
"firebase": "33.
|
85
|
+
"firebase": "33.11.0",
|
86
86
|
"firebaseCrashlyticsGradle": "3.0.3",
|
87
87
|
"firebasePerfGradle": "1.4.2",
|
88
88
|
"gmsGoogleServicesGradle": "4.4.2",
|
@@ -90,5 +90,5 @@
|
|
90
90
|
"firebaseAppDistributionGradle": "5.1.1"
|
91
91
|
}
|
92
92
|
},
|
93
|
-
"gitHead": "
|
93
|
+
"gitHead": "31e92391eddbebe8e665b596838d329c70640550"
|
94
94
|
}
|