@react-native-firebase/app 23.8.2 → 23.8.3

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,13 @@
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.3](https://github.com/invertase/react-native-firebase/compare/v23.8.2...v23.8.3) (2026-01-16)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **expo:** export app.plugin.js entry points for typescript packages ([7ae0872](https://github.com/invertase/react-native-firebase/commit/7ae0872850358f3b29c7d232ad7039fec08f9f5c))
11
+ - **ios:** use react-native podspec module infra for deps ([c66eb63](https://github.com/invertase/react-native-firebase/commit/c66eb63f60cfbabdeb73a3bb1eff8735f11ad391))
12
+
6
13
  ## [23.8.2](https://github.com/invertase/react-native-firebase/compare/v23.8.1...v23.8.2) (2026-01-14)
7
14
 
8
15
  ### Bug Fixes
package/RNFBApp.podspec CHANGED
@@ -25,7 +25,11 @@ Pod::Spec.new do |s|
25
25
  s.source_files = "ios/**/*.{h,m}"
26
26
 
27
27
  # React Native dependencies
28
- s.dependency 'React-Core'
28
+ if defined?(install_modules_dependencies()) != nil
29
+ install_modules_dependencies(s);
30
+ else
31
+ s.dependency "React-Core"
32
+ end
29
33
 
30
34
  if (ENV.include?('FIREBASE_SDK_VERSION'))
31
35
  Pod::UI.puts "#{s.name}: Found Firebase SDK version in environment '#{ENV['FIREBASE_SDK_VERSION']}'"
@@ -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.2";
21
+ public static String VERSION = "23.8.3";
22
22
  }
@@ -5,5 +5,5 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.version = void 0;
7
7
  // Generated by genversion.
8
- const version = exports.version = '23.8.2';
8
+ const version = exports.version = '23.8.3';
9
9
  //# sourceMappingURL=version.js.map
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
 
3
3
  // Generated by genversion.
4
- export const version = '23.8.2';
4
+ export const version = '23.8.3';
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.2";
94
+ export declare const SDK_VERSION = "23.8.3";
95
95
  //# sourceMappingURL=modular.d.ts.map
@@ -1,2 +1,2 @@
1
- export declare const version = "23.8.2";
1
+ export declare const version = "23.8.3";
2
2
  //# sourceMappingURL=version.d.ts.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.2";
94
+ export declare const SDK_VERSION = "23.8.3";
95
95
  //# sourceMappingURL=modular.d.ts.map
@@ -1,2 +1,2 @@
1
- export declare const version = "23.8.2";
1
+ export declare const version = "23.8.3";
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.2";
21
+ NSString* const RNFBVersionString = @"23.8.3";
package/lib/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '23.8.2';
2
+ export const version = '23.8.3';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/app",
3
- "version": "23.8.2",
3
+ "version": "23.8.3",
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/commonjs/index.js",
@@ -109,6 +109,7 @@
109
109
  "default": "./dist/commonjs/common/*"
110
110
  }
111
111
  },
112
+ "./app.plugin.js": "./app.plugin.js",
112
113
  "./package.json": "./package.json"
113
114
  },
114
115
  "peerDependencies": {
@@ -181,5 +182,5 @@
181
182
  "node_modules/",
182
183
  "dist/"
183
184
  ],
184
- "gitHead": "578c1573d9bcb9a83848f34a08be40c7b5722d9b"
185
+ "gitHead": "8576e18f72feed50e4e5bd2ae0d46dbfe0e9ac77"
185
186
  }