@react-native-firebase/app 23.1.2 → 23.2.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
CHANGED
@@ -3,6 +3,20 @@
|
|
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.2.1](https://github.com/invertase/react-native-firebase/compare/v23.2.0...v23.2.1) (2025-09-01)
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- **android:** adopt firebase-android-sdk 34.2.0 ([#8680](https://github.com/invertase/react-native-firebase/issues/8680)) ([c680840](https://github.com/invertase/react-native-firebase/commit/c680840709b4c3f648d2269a025cd1ff7ce2ff50))
|
11
|
+
- **app, ios:** adopt firebase-ios-sdk 12.2.0 ([#8681](https://github.com/invertase/react-native-firebase/issues/8681)) ([1fde0cf](https://github.com/invertase/react-native-firebase/commit/1fde0cfd1cb148397703758bf2622423ad845dbf))
|
12
|
+
- **app:** adopt firebase-js-sdk 12.2.1 ([#8682](https://github.com/invertase/react-native-firebase/issues/8682)) ([f3d3985](https://github.com/invertase/react-native-firebase/commit/f3d3985a18a97b55c4c284330f5c06536c2d9730))
|
13
|
+
|
14
|
+
## [23.2.0](https://github.com/invertase/react-native-firebase/compare/v23.1.2...v23.2.0) (2025-08-29)
|
15
|
+
|
16
|
+
### Features
|
17
|
+
|
18
|
+
- **other:** implement TOTP auth for Other platform ([3fbc43a](https://github.com/invertase/react-native-firebase/commit/3fbc43a1f1ccf768c5f76a962a59d1850f73ba5a))
|
19
|
+
|
6
20
|
## [23.1.2](https://github.com/invertase/react-native-firebase/compare/v23.1.1...v23.1.2) (2025-08-25)
|
7
21
|
|
8
22
|
**Note:** Version bump only for package @react-native-firebase/app
|
@@ -49,6 +49,18 @@ export default class NativeFirebaseError extends Error {
|
|
49
49
|
value: userInfo,
|
50
50
|
});
|
51
51
|
|
52
|
+
// Needed for MFA processing of errors on web
|
53
|
+
Object.defineProperty(this, 'customData', {
|
54
|
+
enumerable: false,
|
55
|
+
value: nativeError.customData || null,
|
56
|
+
});
|
57
|
+
|
58
|
+
// Needed for MFA processing of errors on web
|
59
|
+
Object.defineProperty(this, 'operationType', {
|
60
|
+
enumerable: false,
|
61
|
+
value: nativeError.operationType || null,
|
62
|
+
});
|
63
|
+
|
52
64
|
Object.defineProperty(this, 'nativeErrorCode', {
|
53
65
|
enumerable: false,
|
54
66
|
value: userInfo.nativeErrorCode || null,
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '23.1
|
2
|
+
module.exports = '23.2.1';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/app",
|
3
|
-
"version": "23.1
|
3
|
+
"version": "23.2.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,7 +57,7 @@
|
|
57
57
|
"react-native": "*"
|
58
58
|
},
|
59
59
|
"dependencies": {
|
60
|
-
"firebase": "12.1
|
60
|
+
"firebase": "12.2.1"
|
61
61
|
},
|
62
62
|
"devDependencies": {
|
63
63
|
"@react-native-async-storage/async-storage": "^2.2.0",
|
@@ -74,7 +74,7 @@
|
|
74
74
|
},
|
75
75
|
"sdkVersions": {
|
76
76
|
"ios": {
|
77
|
-
"firebase": "12.
|
77
|
+
"firebase": "12.2.0",
|
78
78
|
"iosTarget": "15.0",
|
79
79
|
"macosTarget": "10.15",
|
80
80
|
"tvosTarget": "15.0"
|
@@ -83,7 +83,7 @@
|
|
83
83
|
"minSdk": 23,
|
84
84
|
"targetSdk": 34,
|
85
85
|
"compileSdk": 34,
|
86
|
-
"firebase": "34.
|
86
|
+
"firebase": "34.2.0",
|
87
87
|
"firebaseCrashlyticsGradle": "3.0.6",
|
88
88
|
"firebasePerfGradle": "2.0.1",
|
89
89
|
"gmsGoogleServicesGradle": "4.4.3",
|
@@ -91,5 +91,5 @@
|
|
91
91
|
"firebaseAppDistributionGradle": "5.1.2"
|
92
92
|
}
|
93
93
|
},
|
94
|
-
"gitHead": "
|
94
|
+
"gitHead": "79455d150fd162c23a1fd57af5d1a497303a5407"
|
95
95
|
}
|