@react-native-firebase/installations 26.0.0 → 26.2.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 +12 -0
- package/RNFBInstallations.podspec +2 -1
- package/dist/module/version.js +1 -1
- package/dist/typescript/lib/index.d.ts +1 -1
- package/dist/typescript/lib/version.d.ts +1 -1
- package/ios/RNFBInstallations/RNFBInstallationsModule.mm +8 -2
- package/lib/version.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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.2.0](https://github.com/invertase/react-native-firebase/compare/v26.1.0...v26.2.0) (2026-08-10)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- codegen should be wipe-then-regen ([04bc4e4](https://github.com/invertase/react-native-firebase/commit/04bc4e4cdab9870cb366fd212b2ccb331b0289d6))
|
|
11
|
+
|
|
12
|
+
## [26.1.0](https://github.com/invertase/react-native-firebase/compare/v26.0.0...v26.1.0) (2026-08-03)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- **ios:** add SPM dependency resolution support alongside CocoaPods ([#8933](https://github.com/invertase/react-native-firebase/issues/8933)) ([44a7a9a](https://github.com/invertase/react-native-firebase/commit/44a7a9ae7b404f412e9766c0417f1df8fa971a0b))
|
|
17
|
+
|
|
6
18
|
## [26.0.0](https://github.com/invertase/react-native-firebase/compare/v25.1.0...v26.0.0) (2026-07-29)
|
|
7
19
|
|
|
8
20
|
### ⚠ BREAKING CHANGES
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
require 'json'
|
|
2
|
+
require_relative '../app/firebase_spm'
|
|
2
3
|
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
|
3
4
|
appPackage = JSON.parse(File.read(File.join('..', 'app', 'package.json')))
|
|
4
5
|
|
|
@@ -46,7 +47,7 @@ Pod::Spec.new do |s|
|
|
|
46
47
|
end
|
|
47
48
|
|
|
48
49
|
# Firebase dependencies
|
|
49
|
-
s
|
|
50
|
+
firebase_dependency(s, firebase_sdk_version, ['FirebaseInstallations'], 'Firebase/Installations')
|
|
50
51
|
|
|
51
52
|
if defined?($RNFirebaseAsStaticFramework)
|
|
52
53
|
Pod::UI.puts "#{s.name}: Using overridden static_framework value of '#{$RNFirebaseAsStaticFramework}'"
|
package/dist/module/version.js
CHANGED
|
@@ -6,7 +6,7 @@ import type { IdChangeCallbackFn, IdChangeUnsubscribeFn, Installations } from '.
|
|
|
6
6
|
*
|
|
7
7
|
* The firebase-js-sdk does not export `SDK_VERSION` from `@firebase/installations`.
|
|
8
8
|
*/
|
|
9
|
-
export declare const SDK_VERSION = "26.
|
|
9
|
+
export declare const SDK_VERSION = "26.2.0";
|
|
10
10
|
/**
|
|
11
11
|
* Returns the {@link Installations} instance for the default or given {@link FirebaseApp}.
|
|
12
12
|
*
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "26.
|
|
1
|
+
export declare const version = "26.2.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
|
@@ -15,15 +15,21 @@
|
|
|
15
15
|
*
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
|
+
#if __has_include(<Firebase/Firebase.h>)
|
|
18
19
|
#import <Firebase/Firebase.h>
|
|
20
|
+
#elif __has_include(<FirebaseInstallations/FirebaseInstallations.h>)
|
|
21
|
+
#import <FirebaseCore/FirebaseCore.h>
|
|
22
|
+
#import <FirebaseInstallations/FirebaseInstallations.h>
|
|
23
|
+
#else
|
|
24
|
+
@import FirebaseCore;
|
|
25
|
+
@import FirebaseInstallations;
|
|
26
|
+
#endif
|
|
19
27
|
#import <React/RCTUtils.h>
|
|
20
28
|
|
|
21
29
|
#import "RNFBApp/RCTConvert+FIRApp.h"
|
|
22
30
|
#import "RNFBApp/RNFBSharedUtils.h"
|
|
23
31
|
#import "RNFBInstallationsModule.h"
|
|
24
32
|
|
|
25
|
-
#import "FirebaseInstallations/FIRInstallations.h"
|
|
26
|
-
|
|
27
33
|
@implementation RNFBInstallationsModule
|
|
28
34
|
|
|
29
35
|
RCT_EXPORT_MODULE(NativeRNFBTurboInstallations)
|
package/lib/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '26.
|
|
2
|
+
export const version = '26.2.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-firebase/installations",
|
|
3
|
-
"version": "26.
|
|
3
|
+
"version": "26.2.0",
|
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
|
5
5
|
"description": "React Native Firebase - Installations",
|
|
6
6
|
"main": "./dist/module/index.js",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"compile": "bob build",
|
|
26
26
|
"prepare": "yarn run build && yarn compile",
|
|
27
27
|
"codegen": "yarn android:codegen && yarn ios:codegen",
|
|
28
|
-
"android:codegen": "npx @react-native-community/cli codegen --platform android --outputPath=./android/src/main/java/io/invertase/firebase/installations/generated",
|
|
29
|
-
"ios:codegen": "npx @react-native-community/cli codegen --platform ios --outputPath=./ios/generated"
|
|
28
|
+
"android:codegen": "rimraf android/src/main/java/io/invertase/firebase/installations/generated && npx @react-native-community/cli codegen --platform android --outputPath=./android/src/main/java/io/invertase/firebase/installations/generated",
|
|
29
|
+
"ios:codegen": "rimraf ios/generated && npx @react-native-community/cli codegen --platform ios --outputPath=./ios/generated"
|
|
30
30
|
},
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"installations"
|
|
41
41
|
],
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"@react-native-firebase/app": "26.
|
|
43
|
+
"@react-native-firebase/app": "26.2.0"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public",
|
|
47
47
|
"provenance": true
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@react-native-firebase/app": "26.
|
|
50
|
+
"@react-native-firebase/app": "26.2.0",
|
|
51
51
|
"react-native-builder-bob": "^0.40.13"
|
|
52
52
|
},
|
|
53
53
|
"exports": {
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
]
|
|
77
77
|
]
|
|
78
78
|
},
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "b7efa8ca2781b5102975ee5169ee6fc52e9c1588"
|
|
80
80
|
}
|