@react-native-firebase/app 23.8.6 → 23.8.8

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,26 @@
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.8.8](https://github.com/invertase/react-native-firebase/compare/v23.8.6...v23.8.8) (2026-03-12)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **app, android:** avoid NullPointerException in isAppInForeground check ([d90d171](https://github.com/invertase/react-native-firebase/commit/d90d171d5faecaeaa7487a5dac0ba9ef843971bc))
11
+ - **app, ios:** adopt firebase-ios-sdk 12.9.0 ([da083c4](https://github.com/invertase/react-native-firebase/commit/da083c486ebde8141cc1facb0f2338b87498b56d)), closes [/firebase.google.com/support/release-notes/ios#version*1290*-\_february_3_2026](https://github.com/invertase//firebase.google.com/support/release-notes/ios/issues/version_1290_-_february_3_2026)
12
+ - **app:** general deprecation notice for old arch / specific error if module requires ([2b6adad](https://github.com/invertase/react-native-firebase/commit/2b6adadf71ee5b62026ee68d4ce9a0785fa8897e))
13
+ - **deps:** ios-sdk 12.10.0 / android-sdk 34.10.0 / js-sdk 12.10.0 ([ff36c3d](https://github.com/invertase/react-native-firebase/commit/ff36c3d1ce49eed47e8ae5340edc5b56e97a2b81))
14
+ - **messaging, expo:** retrieve expo-notification config if available, then deprecated notification ([#8663](https://github.com/invertase/react-native-firebase/issues/8663)) ([eb90301](https://github.com/invertase/react-native-firebase/commit/eb90301c49af807c4bd3eecadd9a67364c4a30a4))
15
+
16
+ ## [23.8.7](https://github.com/invertase/react-native-firebase/compare/v23.8.6...v23.8.7) (2026-03-12)
17
+
18
+ ### Bug Fixes
19
+
20
+ - **app, android:** avoid NullPointerException in isAppInForeground check ([d90d171](https://github.com/invertase/react-native-firebase/commit/d90d171d5faecaeaa7487a5dac0ba9ef843971bc))
21
+ - **app, ios:** adopt firebase-ios-sdk 12.9.0 ([da083c4](https://github.com/invertase/react-native-firebase/commit/da083c486ebde8141cc1facb0f2338b87498b56d)), closes [/firebase.google.com/support/release-notes/ios#version*1290*-\_february_3_2026](https://github.com/invertase//firebase.google.com/support/release-notes/ios/issues/version_1290_-_february_3_2026)
22
+ - **app:** general deprecation notice for old arch / specific error if module requires ([2b6adad](https://github.com/invertase/react-native-firebase/commit/2b6adadf71ee5b62026ee68d4ce9a0785fa8897e))
23
+ - **deps:** ios-sdk 12.10.0 / android-sdk 34.10.0 / js-sdk 12.10.0 ([ff36c3d](https://github.com/invertase/react-native-firebase/commit/ff36c3d1ce49eed47e8ae5340edc5b56e97a2b81))
24
+ - **messaging, expo:** retrieve expo-notification config if available, then deprecated notification ([#8663](https://github.com/invertase/react-native-firebase/issues/8663)) ([eb90301](https://github.com/invertase/react-native-firebase/commit/eb90301c49af807c4bd3eecadd9a67364c4a30a4))
25
+
6
26
  ## [23.8.6](https://github.com/invertase/react-native-firebase/compare/v23.8.5...v23.8.6) (2026-02-03)
7
27
 
8
28
  ### Bug Fixes
package/RNFBApp.podspec CHANGED
@@ -24,6 +24,20 @@ Pod::Spec.new do |s|
24
24
  s.cocoapods_version = '>= 1.12.0'
25
25
  s.source_files = "ios/**/*.{h,m}"
26
26
 
27
+ # Deprecation message for old architecture users
28
+ # - safely in case the variable goes away completely in future react-native versions
29
+ # - suppressable in case people need to
30
+ if (
31
+ defined?(ENV["RCT_NEW_ARCH_ENABLED"]) != nil &&
32
+ ENV["RCT_NEW_ARCH_ENABLED"] == '0' &&
33
+ ENV["RNFB_SUPPRESS_NEW_ARCHITECTURE_WARNING"] != '1'
34
+ )
35
+ Pod::UI.puts '[react-native-firebase] '.yellow + "Legacy Architecture support is deprecated for all modules"
36
+ Pod::UI.puts '[react-native-firebase] '.yellow + "All modules will require New Architecture support in the future."
37
+ Pod::UI.puts '[react-native-firebase] '.yellow + "Suppress this with environment variable RNFB_SUPPRESS_NEW_ARCHITECTURE_WARNING=1"
38
+ end
39
+
40
+
27
41
  # React Native dependencies
28
42
  if defined?(install_modules_dependencies()) != nil
29
43
  install_modules_dependencies(s);
@@ -127,3 +127,16 @@ ReactNative.shared.applyPackageVersion()
127
127
  ReactNative.shared.applyDefaultExcludes()
128
128
  ReactNative.module.applyAndroidVersions()
129
129
  ReactNative.module.applyReactNativeDependency("api")
130
+
131
+ def isNewArchitectureDisabled() {
132
+ return project.hasProperty("newArchEnabled") && project.newArchEnabled != "true"
133
+ }
134
+
135
+ if (isNewArchitectureDisabled() && System.getenv('RNFB_SUPPRESS_NEW_ARCHITECTURE_WARNING') != 1) {
136
+ def ANSI_YELLOW = "\u001B[33m";
137
+ def ANSI_RESET = "\u001B[0m";
138
+
139
+ println(ANSI_YELLOW + " [react-native-firebase] Legacy Architecture support is deprecated for all modules")
140
+ println(ANSI_YELLOW + " [react-native-firebase] All modules will require New Architecture support in the future.")
141
+ println(ANSI_YELLOW + " [react-native-firebase] Suppress this with environment variable RNFB_SUPPRESS_NEW_ARCHITECTURE_WARNING=1" + ANSI_RESET)
142
+ }
@@ -18,5 +18,5 @@ package io.invertase.firebase.app;
18
18
  */
19
19
  // generated file - do not modify or commit
20
20
  public class ReactNativeFirebaseVersion {
21
- public static String VERSION = "23.8.6";
21
+ public static String VERSION = "23.8.8";
22
22
  }
@@ -141,7 +141,8 @@ public class SharedUtils {
141
141
  if (taskInfo.size() > 0) {
142
142
  ActivityManager.RecentTaskInfo task = taskInfo.get(0).getTaskInfo();
143
143
  if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
144
- currentActivity = task.baseActivity.getShortClassName();
144
+ currentActivity =
145
+ task.baseActivity != null ? task.baseActivity.getShortClassName() : "";
145
146
  } else {
146
147
  currentActivity =
147
148
  task.origActivity != null
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
 
3
3
  // Generated by genversion.
4
- export const version = '23.8.6';
4
+ export const version = '23.8.8';
5
5
  //# sourceMappingURL=version.js.map
@@ -91,5 +91,5 @@ export declare function preferencesSetBool(key: string, value: boolean): Promise
91
91
  * @returns Promise<void>
92
92
  */
93
93
  export declare function preferencesSetString(key: string, value: string): Promise<void>;
94
- export declare const SDK_VERSION = "23.8.6";
94
+ export declare const SDK_VERSION = "23.8.8";
95
95
  //# sourceMappingURL=modular.d.ts.map
@@ -1,2 +1,2 @@
1
- export declare const version = "23.8.6";
1
+ export declare const version = "23.8.8";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -18,4 +18,4 @@
18
18
  #import <React/RCTVersion.h>
19
19
 
20
20
  // generated file - do not modify or commit
21
- NSString* const RNFBVersionString = @"23.8.6";
21
+ NSString* const RNFBVersionString = @"23.8.8";
package/lib/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '23.8.6';
2
+ export const version = '23.8.8';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/app",
3
- "version": "23.8.6",
3
+ "version": "23.8.8",
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": "./dist/module/index.js",
@@ -87,11 +87,11 @@
87
87
  "react-native": "*"
88
88
  },
89
89
  "dependencies": {
90
- "firebase": "12.8.0"
90
+ "firebase": "12.10.0"
91
91
  },
92
92
  "devDependencies": {
93
93
  "@react-native-async-storage/async-storage": "^2.2.0",
94
- "expo": "^54.0.27",
94
+ "expo": "^55.0.5",
95
95
  "react-native-builder-bob": "^0.40.17"
96
96
  },
97
97
  "peerDependenciesMeta": {
@@ -105,7 +105,7 @@
105
105
  },
106
106
  "sdkVersions": {
107
107
  "ios": {
108
- "firebase": "12.8.0",
108
+ "firebase": "12.10.0",
109
109
  "iosTarget": "15.0",
110
110
  "macosTarget": "10.15",
111
111
  "tvosTarget": "15.0"
@@ -114,12 +114,12 @@
114
114
  "minSdk": 23,
115
115
  "targetSdk": 34,
116
116
  "compileSdk": 34,
117
- "firebase": "34.8.0",
117
+ "firebase": "34.10.0",
118
118
  "firebaseCrashlyticsGradle": "3.0.6",
119
119
  "firebasePerfGradle": "2.0.2",
120
120
  "gmsGoogleServicesGradle": "4.4.4",
121
- "playServicesAuth": "21.4.0",
122
- "firebaseAppDistributionGradle": "5.2.0"
121
+ "playServicesAuth": "21.5.0",
122
+ "firebaseAppDistributionGradle": "5.2.1"
123
123
  }
124
124
  },
125
125
  "react-native-builder-bob": {
@@ -145,5 +145,5 @@
145
145
  "node_modules/",
146
146
  "dist/"
147
147
  ],
148
- "gitHead": "9c71040bb28a0eb93c7f0b7bc9afce8d2c8d3cbb"
148
+ "gitHead": "d17b898bee0be82259fc1b88f46106a927bf81aa"
149
149
  }