@react-native-firebase/ml 23.8.2 → 23.8.4
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/RNFBML.podspec +7 -2
- package/lib/index.js +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
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
|
+
## [23.8.4](https://github.com/invertase/react-native-firebase/compare/v23.8.3...v23.8.4) (2026-01-24)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- internal cross-module references to transpiled code must be dist not src ([b03db0a](https://github.com/invertase/react-native-firebase/commit/b03db0aa3fb748ee039826ccd9c7e73bc3c78f6f))
|
|
11
|
+
|
|
12
|
+
## [23.8.3](https://github.com/invertase/react-native-firebase/compare/v23.8.2...v23.8.3) (2026-01-16)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- **ios:** use react-native podspec module infra for deps ([c66eb63](https://github.com/invertase/react-native-firebase/commit/c66eb63f60cfbabdeb73a3bb1eff8735f11ad391))
|
|
17
|
+
|
|
6
18
|
## [23.8.2](https://github.com/invertase/react-native-firebase/compare/v23.8.1...v23.8.2) (2026-01-14)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @react-native-firebase/ml
|
package/RNFBML.podspec
CHANGED
|
@@ -31,10 +31,15 @@ Pod::Spec.new do |s|
|
|
|
31
31
|
s.tvos.deployment_target = firebase_tvos_target
|
|
32
32
|
s.source_files = 'ios/**/*.{h,m}'
|
|
33
33
|
|
|
34
|
-
# React Native dependencies
|
|
35
|
-
s.dependency 'React-Core'
|
|
36
34
|
s.dependency 'RNFBApp'
|
|
37
35
|
|
|
36
|
+
# React Native dependencies
|
|
37
|
+
if defined?(install_modules_dependencies()) != nil
|
|
38
|
+
install_modules_dependencies(s);
|
|
39
|
+
else
|
|
40
|
+
s.dependency "React-Core"
|
|
41
|
+
end
|
|
42
|
+
|
|
38
43
|
if defined?($FirebaseSDKVersion)
|
|
39
44
|
Pod::UI.puts "#{s.name}: Using user specified Firebase SDK version '#{$FirebaseSDKVersion}'"
|
|
40
45
|
firebase_sdk_version = $FirebaseSDKVersion
|
package/lib/index.js
CHANGED
package/lib/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
module.exports = '23.8.
|
|
2
|
+
module.exports = '23.8.4';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-firebase/ml",
|
|
3
|
-
"version": "23.8.
|
|
3
|
+
"version": "23.8.4",
|
|
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": "lib/index.js",
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
"image labeler"
|
|
27
27
|
],
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"@react-native-firebase/app": "23.8.
|
|
29
|
+
"@react-native-firebase/app": "23.8.4"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public",
|
|
33
33
|
"provenance": true
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "30df38f6df8750ff753566eb961bb46c10a84fed"
|
|
36
36
|
}
|