@react-native-firebase/installations 26.0.0 → 26.1.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 CHANGED
@@ -3,6 +3,12 @@
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.1.0](https://github.com/invertase/react-native-firebase/compare/v26.0.0...v26.1.0) (2026-08-03)
7
+
8
+ ### Features
9
+
10
+ - **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))
11
+
6
12
  ## [26.0.0](https://github.com/invertase/react-native-firebase/compare/v25.1.0...v26.0.0) (2026-07-29)
7
13
 
8
14
  ### ⚠ 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.dependency 'Firebase/Installations', firebase_sdk_version
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}'"
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
 
3
3
  // Generated by genversion.
4
- export const version = '26.0.0';
4
+ export const version = '26.1.0';
5
5
  //# sourceMappingURL=version.js.map
@@ -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.0.0";
9
+ export declare const SDK_VERSION = "26.1.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.0.0";
1
+ export declare const version = "26.1.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.0.0';
2
+ export const version = '26.1.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/installations",
3
- "version": "26.0.0",
3
+ "version": "26.1.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",
@@ -40,14 +40,14 @@
40
40
  "installations"
41
41
  ],
42
42
  "peerDependencies": {
43
- "@react-native-firebase/app": "26.0.0"
43
+ "@react-native-firebase/app": "26.1.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.0.0",
50
+ "@react-native-firebase/app": "26.1.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": "2a360acb2aebdd39dd40e31be386b30697270626"
79
+ "gitHead": "59d053eca14ab8aa80e5ac76887014925c67e52b"
80
80
  }