@react-native-firebase/auth 23.5.0 → 23.6.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
+ ## [23.6.0](https://github.com/invertase/react-native-firebase/compare/v23.5.0...v23.6.0) (2025-12-08)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **auth, ios:** append openURL changes only once in Expo plugin ([#8763](https://github.com/invertase/react-native-firebase/issues/8763)) ([5f74256](https://github.com/invertase/react-native-firebase/commit/5f74256d2b470456206a3655ff6986198d016790))
11
+
6
12
  ## [23.5.0](https://github.com/invertase/react-native-firebase/compare/v23.4.1...v23.5.0) (2025-10-30)
7
13
 
8
14
  **Note:** Version bump only for package @react-native-firebase/auth
@@ -1,3 +1,4 @@
1
+ import com.android.Version
1
2
  import io.invertase.gradle.common.PackageJson
2
3
 
3
4
  buildscript {
@@ -36,11 +37,8 @@ def jsonTargetSdk = appPackageJson['sdkVersions']['android']['targetSdk']
36
37
  def jsonCompileSdk = appPackageJson['sdkVersions']['android']['compileSdk']
37
38
  def coreVersionDetected = appPackageJson['version']
38
39
  def coreVersionRequired = packageJson['peerDependencies'][appPackageJson['name']]
39
- // Only log after build completed so log warning appears at the end
40
40
  if (coreVersionDetected != coreVersionRequired) {
41
- gradle.buildFinished {
42
- project.logger.warn("ReactNativeFirebase WARNING: NPM package '${packageJson['name']}' depends on '${appPackageJson['name']}' v${coreVersionRequired} but found v${coreVersionDetected}, this might cause build issues or runtime crashes.")
43
- }
41
+ project.logger.warn("ReactNativeFirebase WARNING: NPM package '${packageJson['name']}' depends on '${appPackageJson['name']}' v${coreVersionRequired} but found v${coreVersionDetected}, this might cause build issues or runtime crashes.")
44
42
  }
45
43
 
46
44
  project.ext {
@@ -59,7 +57,7 @@ project.ext {
59
57
  }
60
58
 
61
59
  android {
62
- def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
60
+ def agpVersion = Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
63
61
  if (agpVersion >= 7) {
64
62
  namespace = 'io.invertase.firebase.auth'
65
63
  }
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '23.5.0';
2
+ module.exports = '23.6.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/auth",
3
- "version": "23.5.0",
3
+ "version": "23.6.0",
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,12 +27,12 @@
27
27
  "plist": "^3.1.0"
28
28
  },
29
29
  "peerDependencies": {
30
- "@react-native-firebase/app": "23.5.0",
30
+ "@react-native-firebase/app": "23.6.0",
31
31
  "expo": ">=47.0.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/plist": "^3.0.5",
35
- "expo": "^53.0.20"
35
+ "expo": "^54.0.27"
36
36
  },
37
37
  "peerDependenciesMeta": {
38
38
  "expo": {
@@ -43,5 +43,5 @@
43
43
  "access": "public",
44
44
  "provenance": true
45
45
  },
46
- "gitHead": "5d27948f349d4d6c977c55036e2afd13df8d622f"
46
+ "gitHead": "748e89f9bfcdfbee971c627cd8a698963ba09f33"
47
47
  }
@@ -150,6 +150,10 @@ function modifySwiftAppDelegate(contents) {
150
150
  return null;
151
151
  }
152
152
  }
153
+ const isAlreadyModified = contents.includes(skipOpenUrlForFirebaseAuthBlockSwift);
154
+ if (isAlreadyModified) {
155
+ return null;
156
+ }
153
157
  return contents.replace(pattern, `${fullMatch[0]}${skipOpenUrlForFirebaseAuthBlockSwift}\n`);
154
158
  }
155
159
  // Search the ExpoConfig plugins array to see if `pluginName` is present
@@ -183,6 +183,10 @@ export function modifySwiftAppDelegate(contents: string): string | null {
183
183
  return null;
184
184
  }
185
185
  }
186
+ const isAlreadyModified = contents.includes(skipOpenUrlForFirebaseAuthBlockSwift);
187
+ if (isAlreadyModified) {
188
+ return null;
189
+ }
186
190
  return contents.replace(pattern, `${fullMatch[0]}${skipOpenUrlForFirebaseAuthBlockSwift}\n`);
187
191
  }
188
192
 
@@ -1 +1 @@
1
- {"root":["./src/index.ts","./src/pluginConfig.ts","./src/ios/index.ts","./src/ios/openUrlFix.ts","./src/ios/urlTypes.ts"],"version":"5.9.2"}
1
+ {"root":["./src/index.ts","./src/pluginConfig.ts","./src/ios/index.ts","./src/ios/openUrlFix.ts","./src/ios/urlTypes.ts"],"version":"5.9.3"}