@react-native-firebase/auth 22.2.0 → 22.2.1
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 +6 -0
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/plugin/build/ios/openUrlFix.js +1 -1
- package/plugin/src/ios/openUrlFix.ts +1 -1
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
|
+
## [22.2.1](https://github.com/invertase/react-native-firebase/compare/v22.2.0...v22.2.1) (2025-06-10)
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- **auth, ios:** avoid inappropriate linking when host is nil ([#8517](https://github.com/invertase/react-native-firebase/issues/8517)) ([f0cba0b](https://github.com/invertase/react-native-firebase/commit/f0cba0bdc0eb36693cf77baa22e214b6cfa674eb))
|
11
|
+
|
6
12
|
## [22.2.0](https://github.com/invertase/react-native-firebase/compare/v22.1.0...v22.2.0) (2025-05-12)
|
7
13
|
|
8
14
|
### Bug Fixes
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '22.2.
|
2
|
+
module.exports = '22.2.1';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/auth",
|
3
|
-
"version": "22.2.
|
3
|
+
"version": "22.2.1",
|
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": "22.2.
|
30
|
+
"@react-native-firebase/app": "22.2.1",
|
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": "d0fa58166a3fd79c7a951161fa83d0421ae72c93"
|
47
47
|
}
|
@@ -79,7 +79,7 @@ function modifyAppDelegate(contents, language) {
|
|
79
79
|
}
|
80
80
|
}
|
81
81
|
const skipOpenUrlForFirebaseAuthBlock = `\
|
82
|
-
if ([url.host caseInsensitiveCompare:@"firebaseauth"] == NSOrderedSame) {
|
82
|
+
if (url.host && [url.host caseInsensitiveCompare:@"firebaseauth"] == NSOrderedSame) {
|
83
83
|
// invocations for Firebase Auth are handled elsewhere and should not be forwarded to Expo Router
|
84
84
|
return NO;
|
85
85
|
}\
|
@@ -101,7 +101,7 @@ export function modifyAppDelegate(contents: string, language: string): string |
|
|
101
101
|
}
|
102
102
|
|
103
103
|
const skipOpenUrlForFirebaseAuthBlock: string = `\
|
104
|
-
if ([url.host caseInsensitiveCompare:@"firebaseauth"] == NSOrderedSame) {
|
104
|
+
if (url.host && [url.host caseInsensitiveCompare:@"firebaseauth"] == NSOrderedSame) {
|
105
105
|
// invocations for Firebase Auth are handled elsewhere and should not be forwarded to Expo Router
|
106
106
|
return NO;
|
107
107
|
}\
|