@react-native-firebase/app 26.2.0 → 26.3.0
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 +11 -0
- package/RNFBApp.podspec +5 -1
- package/android/src/reactnative/java/io/invertase/firebase/app/ReactNativeFirebaseVersion.java +1 -1
- package/android/src/reactnative/java/io/invertase/firebase/app/generated/java/com/facebook/fbreact/specs/NativeRNFBTurboUtilsSpec.java +2 -1
- package/android/src/reactnative/java/io/invertase/firebase/app/generated/jni/CMakeLists.txt +1 -9
- package/android/src/reactnative/java/io/invertase/firebase/app/generated/jni/react/renderer/components/RNFBAppTurboModules/RNFBAppTurboModulesJSI.h +205 -292
- package/android/src/reactnative/java/io/invertase/firebase/utils/NativeRNFBTurboUtils.java +15 -0
- package/android/src/test/java/io/invertase/firebase/utils/NativeRNFBTurboUtilsTest.java +120 -0
- package/dist/module/types/app.js.map +1 -1
- package/dist/module/utils/index.js +13 -1
- package/dist/module/utils/index.js.map +1 -1
- package/dist/module/version.js +1 -1
- package/dist/typescript/lib/internal/NativeModules.d.ts +2 -0
- package/dist/typescript/lib/internal/NativeModules.d.ts.map +1 -1
- package/dist/typescript/lib/types/app.d.ts +5 -0
- package/dist/typescript/lib/types/app.d.ts.map +1 -1
- package/dist/typescript/lib/utils/index.d.ts.map +1 -1
- package/dist/typescript/lib/version.d.ts +1 -1
- package/ios/RNFBApp/RNFBUtilsModule.mm +10 -2
- package/ios/RNFBApp/RNFBVersion.m +1 -1
- package/ios/generated/RNFBAppTurboModules/RNFBAppTurboModules.h +7 -4
- package/ios/generated/RNFBAppTurboModulesJSI.h +205 -292
- package/lib/internal/NativeModules.ts +2 -0
- package/lib/types/app.ts +5 -0
- package/lib/utils/index.ts +13 -1
- package/lib/version.ts +1 -1
- package/package.json +8 -9
- package/specs/NativeRNFBTurboUtils.ts +2 -0
- package/android/src/reactnative/java/io/invertase/firebase/app/generated/jni/react/renderer/components/RNFBAppTurboModules/RNFBAppTurboModulesJSI-generated.cpp +0 -187
- package/ios/generated/RCTAppDependencyProvider.h +0 -25
- package/ios/generated/RCTAppDependencyProvider.mm +0 -55
- package/ios/generated/RCTModulesConformingToProtocolsProvider.h +0 -18
- package/ios/generated/RCTModulesConformingToProtocolsProvider.mm +0 -33
- package/ios/generated/RCTThirdPartyComponentsProvider.h +0 -16
- package/ios/generated/RCTThirdPartyComponentsProvider.mm +0 -23
- package/ios/generated/RNFBAppTurboModulesJSI-generated.cpp +0 -187
- package/ios/generated/ReactAppDependencyProvider.podspec +0 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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
|
+
## [26.3.0](https://github.com/invertase/react-native-firebase/compare/v26.2.0...v26.3.0) (2026-08-20)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **ai:** send X-Firebase-AppVersion when data collection enabled ([#9173](https://github.com/invertase/react-native-firebase/issues/9173)) ([ad06531](https://github.com/invertase/react-native-firebase/commit/ad065319b1014dcf53168a1a9f2c9daa0fd40eca))
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- **app, sdks:** adopt native SDK ios 12.18.0, android 34.18.0, js 12.17.1 ([2373421](https://github.com/invertase/react-native-firebase/commit/2373421579cfbfc1c543946e55d0c057e1bc1c6f))
|
|
15
|
+
- **ios:** allow non-modular React includes in RNFB podspecs ([#9200](https://github.com/invertase/react-native-firebase/issues/9200)) ([dd453ff](https://github.com/invertase/react-native-firebase/commit/dd453ff17a8bd645b9d0eb56bef74df53f217f93))
|
|
16
|
+
|
|
6
17
|
## [26.2.0](https://github.com/invertase/react-native-firebase/compare/v26.1.0...v26.2.0) (2026-08-10)
|
|
7
18
|
|
|
8
19
|
### Features
|
package/RNFBApp.podspec
CHANGED
|
@@ -33,9 +33,13 @@ Pod::Spec.new do |s|
|
|
|
33
33
|
raise "#{s.name} requires New Architecture. Enable New Architecture to use this module"
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
-
# App must define modules for static framework integration of other packages to work
|
|
36
|
+
# App must define modules for static framework integration of other packages to work.
|
|
37
|
+
# CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES is required so RNFB's umbrella,
|
|
38
|
+
# which re-exports <React/...> imports, validates when consumers build with use_frameworks!
|
|
39
|
+
# (the default on Expo, and required for the firebase-ios-sdk).
|
|
37
40
|
s.pod_target_xcconfig = {
|
|
38
41
|
"DEFINES_MODULE" => "YES",
|
|
42
|
+
"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES" => "YES",
|
|
39
43
|
}
|
|
40
44
|
|
|
41
45
|
# RNFBUtilsModule.mm uses PHAsset (Photos.framework) to resolve local asset paths.
|
|
@@ -59,7 +59,8 @@ public abstract class NativeRNFBTurboUtilsSpec extends ReactContextBaseJavaModul
|
|
|
59
59
|
"EXTERNAL_DIRECTORY",
|
|
60
60
|
"EXTERNAL_STORAGE_DIRECTORY",
|
|
61
61
|
"FILE_TYPE_DIRECTORY",
|
|
62
|
-
"FILE_TYPE_REGULAR"
|
|
62
|
+
"FILE_TYPE_REGULAR",
|
|
63
|
+
"appVersion"
|
|
63
64
|
));
|
|
64
65
|
Set<String> undeclaredConstants = new HashSet<>(constants.keySet());
|
|
65
66
|
undeclaredConstants.removeAll(obligatoryFlowConstants);
|
|
@@ -25,12 +25,4 @@ target_link_libraries(
|
|
|
25
25
|
reactnative
|
|
26
26
|
)
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
react_codegen_RNFBAppTurboModules
|
|
30
|
-
PRIVATE
|
|
31
|
-
-DLOG_TAG=\"ReactNative\"
|
|
32
|
-
-fexceptions
|
|
33
|
-
-frtti
|
|
34
|
-
-std=c++20
|
|
35
|
-
-Wall
|
|
36
|
-
)
|
|
28
|
+
target_compile_reactnative_options(react_codegen_RNFBAppTurboModules PRIVATE)
|