@react-native-firebase/ml 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
package/RNFBML.podspec CHANGED
@@ -1,5 +1,6 @@
1
1
  require 'json'
2
- require '../app/firebase_json'
2
+ require_relative '../app/firebase_json'
3
+ require_relative '../app/firebase_spm'
3
4
  package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
4
5
  appPackage = JSON.parse(File.read(File.join('..', 'app', 'package.json')))
5
6
 
@@ -47,13 +48,15 @@ Pod::Spec.new do |s|
47
48
  end
48
49
 
49
50
  # Firebase dependencies
50
- # s.dependency 'Firebase/MLModelDownloader', firebase_sdk_version
51
+ # NOTE: Firebase/MLModelDownloader dependency is currently disabled.
52
+ # When re-enabled, use:
53
+ # firebase_dependency(s, firebase_sdk_version,
54
+ # ['FirebaseMLModelDownloader'], 'Firebase/MLModelDownloader')
51
55
 
52
56
  if defined?($RNFirebaseAsStaticFramework)
53
57
  Pod::UI.puts "#{s.name}: Using overridden static_framework value of '#{$RNFirebaseAsStaticFramework}'"
54
58
  s.static_framework = $RNFirebaseAsStaticFramework
55
59
  else
56
- # raise "#{s.name}: Underlying Firebase/MLModelDownloader requires $RNFirebaseAsStaticFrameworks = true and !use_frameworks in your Podfile"
57
60
  s.static_framework = false
58
61
  end
59
62
  end
@@ -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
@@ -5,7 +5,7 @@ import type { FirebaseApp, FirebaseML } from './types/ml';
5
5
  *
6
6
  * The firebase-js-sdk does not ship a `firebase/ml` modular entry point or `SDK_VERSION` export.
7
7
  */
8
- export declare const SDK_VERSION = "26.0.0";
8
+ export declare const SDK_VERSION = "26.1.0";
9
9
  /**
10
10
  * Returns the {@link FirebaseML} instance for the default or given {@link FirebaseApp}.
11
11
  *
@@ -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
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/ml",
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 - Firebase ML brings the power of machine learning vision to your React Native application, supporting both Android & iOS.",
6
6
  "main": "./dist/module/index.js",
@@ -44,14 +44,14 @@
44
44
  "image labeler"
45
45
  ],
46
46
  "peerDependencies": {
47
- "@react-native-firebase/app": "26.0.0"
47
+ "@react-native-firebase/app": "26.1.0"
48
48
  },
49
49
  "publishConfig": {
50
50
  "access": "public",
51
51
  "provenance": true
52
52
  },
53
53
  "devDependencies": {
54
- "@react-native-firebase/app": "26.0.0",
54
+ "@react-native-firebase/app": "26.1.0",
55
55
  "react-native-builder-bob": "^0.41.0"
56
56
  },
57
57
  "exports": {
@@ -84,5 +84,5 @@
84
84
  "node_modules/",
85
85
  "dist/"
86
86
  ],
87
- "gitHead": "2a360acb2aebdd39dd40e31be386b30697270626"
87
+ "gitHead": "59d053eca14ab8aa80e5ac76887014925c67e52b"
88
88
  }