@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 +7 -0
- package/RNFBApp.podspec +5 -1
- package/android/src/reactnative/java/io/invertase/firebase/app/ReactNativeFirebaseVersion.java +1 -1
- package/dist/commonjs/version.js +1 -1
- package/dist/module/version.js +1 -1
- package/dist/typescript/commonjs/lib/modular.d.ts +1 -1
- package/dist/typescript/commonjs/lib/version.d.ts +1 -1
- package/dist/typescript/module/lib/modular.d.ts +1 -1
- package/dist/typescript/module/lib/version.d.ts +1 -1
- package/ios/RNFBApp/RNFBVersion.m +1 -1
- package/lib/version.ts +1 -1
- package/package.json +3 -2
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
|
-
|
|
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']}'"
|
package/dist/commonjs/version.js
CHANGED
package/dist/module/version.js
CHANGED
|
@@ -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.
|
|
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.
|
|
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.
|
|
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.
|
|
1
|
+
export declare const version = "23.8.3";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/lib/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '23.8.
|
|
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.
|
|
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": "
|
|
185
|
+
"gitHead": "8576e18f72feed50e4e5bd2ae0d46dbfe0e9ac77"
|
|
185
186
|
}
|