@react-native-firebase/auth 23.8.1 → 23.8.3
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 +10 -0
- package/RNFBAuth.podspec +7 -2
- package/lib/version.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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.3](https://github.com/invertase/react-native-firebase/compare/v23.8.2...v23.8.3) (2026-01-16)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **ios:** use react-native podspec module infra for deps ([c66eb63](https://github.com/invertase/react-native-firebase/commit/c66eb63f60cfbabdeb73a3bb1eff8735f11ad391))
|
|
11
|
+
|
|
12
|
+
## [23.8.2](https://github.com/invertase/react-native-firebase/compare/v23.8.1...v23.8.2) (2026-01-14)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @react-native-firebase/auth
|
|
15
|
+
|
|
6
16
|
## [23.8.1](https://github.com/invertase/react-native-firebase/compare/v23.8.0...v23.8.1) (2026-01-13)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @react-native-firebase/auth
|
package/RNFBAuth.podspec
CHANGED
|
@@ -29,10 +29,15 @@ Pod::Spec.new do |s|
|
|
|
29
29
|
s.tvos.deployment_target = firebase_tvos_target
|
|
30
30
|
s.source_files = 'ios/**/*.{h,m}'
|
|
31
31
|
|
|
32
|
-
# React Native dependencies
|
|
33
|
-
s.dependency 'React-Core'
|
|
34
32
|
s.dependency 'RNFBApp'
|
|
35
33
|
|
|
34
|
+
# React Native dependencies
|
|
35
|
+
if defined?(install_modules_dependencies()) != nil
|
|
36
|
+
install_modules_dependencies(s);
|
|
37
|
+
else
|
|
38
|
+
s.dependency "React-Core"
|
|
39
|
+
end
|
|
40
|
+
|
|
36
41
|
if defined?($FirebaseSDKVersion)
|
|
37
42
|
Pod::UI.puts "#{s.name}: Using user specified Firebase SDK version '#{$FirebaseSDKVersion}'"
|
|
38
43
|
firebase_sdk_version = $FirebaseSDKVersion
|
package/lib/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
module.exports = '23.8.
|
|
2
|
+
module.exports = '23.8.3';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-firebase/auth",
|
|
3
|
-
"version": "23.8.
|
|
3
|
+
"version": "23.8.3",
|
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
|
5
5
|
"description": "React Native Firebase - The authentication module provides an easy-to-use API to integrate an authentication workflow into new and existing applications. React Native Firebase provides access to all Firebase authentication methods and identity providers.",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"plist": "^3.1.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@react-native-firebase/app": "23.8.
|
|
30
|
+
"@react-native-firebase/app": "23.8.3",
|
|
31
31
|
"expo": ">=47.0.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"access": "public",
|
|
44
44
|
"provenance": true
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "8576e18f72feed50e4e5bd2ae0d46dbfe0e9ac77"
|
|
47
47
|
}
|