@react-native-firebase/app 23.4.1 → 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,23 @@
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
+ ### Features
9
+
10
+ - **app, ios:** adopt firebase-ios-sdk 12.5.0 ([acc665c](https://github.com/invertase/react-native-firebase/commit/acc665ced443e0d245f30b54eb85e72bcc3d7bd2))
11
+
12
+ ### Bug Fixes
13
+
14
+ - firebase-ios-sdk 12.6.0 / firebase-js-sdk 12.6.0 / firebase-android-sdk 34.6.0 ([dacdfa2](https://github.com/invertase/react-native-firebase/commit/dacdfa2b5961259c93ea948472be4b51ac78b1c5))
15
+ - **messaging, android:** properly remove remote message from prefs ([336901b](https://github.com/invertase/react-native-firebase/commit/336901b00f0553f57fa18ce416f513f915c9a8ed))
16
+
17
+ ## [23.5.0](https://github.com/invertase/react-native-firebase/compare/v23.4.1...v23.5.0) (2025-10-30)
18
+
19
+ ### Bug Fixes
20
+
21
+ - **ios:** use 'note' for info messages in Xcode scripts ([f2f1e5e](https://github.com/invertase/react-native-firebase/commit/f2f1e5e396b2e71675e85701bc89ac916431db30))
22
+
6
23
  ## [23.4.1](https://github.com/invertase/react-native-firebase/compare/v23.4.0...v23.4.1) (2025-10-14)
7
24
 
8
25
  ### Bug Fixes
@@ -1,3 +1,4 @@
1
+ import com.android.Version
1
2
  import io.invertase.gradle.common.PackageJson
2
3
  import org.gradle.internal.jvm.Jvm
3
4
 
@@ -60,7 +61,7 @@ if (rootProject.ext && rootProject.ext.firebaseJson) {
60
61
  }
61
62
 
62
63
  android {
63
- def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
64
+ def agpVersion = Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
64
65
  if (agpVersion >= 7) {
65
66
  namespace = 'io.invertase.firebase'
66
67
  }
@@ -74,6 +74,8 @@ public class UniversalFirebasePreferences {
74
74
  getPreferences().edit().clear().apply();
75
75
  }
76
76
 
77
+ // Note the caller is responsible for calling apply() or commit() on the
78
+ // returned SharedPreferences.Editor object for the remove to take affect
77
79
  public SharedPreferences.Editor remove(String key) {
78
80
  return getPreferences().edit().remove(key);
79
81
  }
@@ -18,5 +18,5 @@ package io.invertase.firebase.app;
18
18
  */
19
19
  // generated file - do not modify or commit
20
20
  public class ReactNativeFirebaseVersion {
21
- public static String VERSION = "23.4.1";
21
+ public static String VERSION = "23.6.0";
22
22
  }
@@ -18,4 +18,4 @@
18
18
  #import <React/RCTVersion.h>
19
19
 
20
20
  // generated file - do not modify or commit
21
- NSString* const RNFBVersionString = @"23.4.1";
21
+ NSString* const RNFBVersionString = @"23.6.0";
package/ios_config.sh CHANGED
@@ -46,8 +46,8 @@ _PLIST_ENTRY_TYPES=()
46
46
  _PLIST_ENTRY_VALUES=()
47
47
 
48
48
  function setPlistValue {
49
- echo "info: setting plist entry '$1' of type '$2' in file '$4'"
50
- ${_PLIST_BUDDY} -c "Add :$1 $2 '$3'" $4 || echo "info: '$1' already exists"
49
+ echo "note: setting plist entry '$1' of type '$2' in file '$4'"
50
+ ${_PLIST_BUDDY} -c "Add :$1 $2 '$3'" $4 || echo "note: '$1' already exists"
51
51
  }
52
52
 
53
53
  function getFirebaseJsonKeyValue () {
@@ -67,8 +67,8 @@ function jsonBoolToYesNo () {
67
67
  fi
68
68
  }
69
69
 
70
- echo "info: -> RNFB build script started"
71
- echo "info: 1) Locating ${_JSON_FILE_NAME} file:"
70
+ echo "note: -> RNFB build script started"
71
+ echo "note: 1) Locating ${_JSON_FILE_NAME} file:"
72
72
 
73
73
  if [[ -z ${_CURRENT_SEARCH_DIR} ]]; then
74
74
  _CURRENT_SEARCH_DIR=$(pwd)
@@ -77,10 +77,10 @@ fi;
77
77
  while true; do
78
78
  _CURRENT_SEARCH_DIR=$(dirname "$_CURRENT_SEARCH_DIR")
79
79
  if [[ "$_CURRENT_SEARCH_DIR" == "/" ]] || [[ ${_CURRENT_LOOKUPS} -gt ${_MAX_LOOKUPS} ]]; then break; fi;
80
- echo "info: ($_CURRENT_LOOKUPS of $_MAX_LOOKUPS) Searching in '$_CURRENT_SEARCH_DIR' for a ${_JSON_FILE_NAME} file."
80
+ echo "note: ($_CURRENT_LOOKUPS of $_MAX_LOOKUPS) Searching in '$_CURRENT_SEARCH_DIR' for a ${_JSON_FILE_NAME} file."
81
81
  _SEARCH_RESULT=$(find "$_CURRENT_SEARCH_DIR" -maxdepth 2 -name ${_JSON_FILE_NAME} -print | /usr/bin/head -n 1)
82
82
  if [[ ${_SEARCH_RESULT} ]]; then
83
- echo "info: ${_JSON_FILE_NAME} found at $_SEARCH_RESULT"
83
+ echo "note: ${_JSON_FILE_NAME} found at $_SEARCH_RESULT"
84
84
  break;
85
85
  fi;
86
86
  _CURRENT_LOOKUPS=$((_CURRENT_LOOKUPS+1))
@@ -94,7 +94,7 @@ if [[ ${_SEARCH_RESULT} ]]; then
94
94
  fi
95
95
 
96
96
  if [[ ${_RN_ROOT_EXISTS} ]]; then
97
- if ! python3 --version >/dev/null 2>&1; then echo "python3 not found, firebase.json file processing error." && exit 1; fi
97
+ if ! python3 --version >/dev/null 2>&1; then echo "error: python3 not found, firebase.json file processing error." && exit 1; fi
98
98
  _JSON_OUTPUT_BASE64=$(python3 -c 'import json,sys,base64;print(base64.b64encode(bytes(json.dumps(json.loads(open('"'${_SEARCH_RESULT}'"', '"'rb'"').read())['${_JSON_ROOT}']), '"'utf-8'"')).decode())' || echo "e30=")
99
99
  fi
100
100
 
@@ -238,7 +238,7 @@ else
238
238
  echo "warning: A firebase.json file was not found, whilst this file is optional it is recommended to include it to configure firebase services in React Native Firebase."
239
239
  fi;
240
240
 
241
- echo "info: 2) Injecting Info.plist entries: "
241
+ echo "note: 2) Injecting Info.plist entries: "
242
242
 
243
243
  # Log out the keys we're adding
244
244
  for i in "${!_PLIST_ENTRY_KEYS[@]}"; do
@@ -266,4 +266,4 @@ for plist in "${_TARGET_PLIST}" "${_DSYM_PLIST}" ; do
266
266
  fi
267
267
  done
268
268
 
269
- echo "info: <- RNFB build script finished"
269
+ echo "note: <- RNFB build script finished"
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '23.4.1';
2
+ module.exports = '23.6.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/app",
3
- "version": "23.4.1",
3
+ "version": "23.6.0",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Functions, Messaging (FCM), Remote Config, Storage and more.",
6
6
  "main": "lib/index.js",
@@ -57,11 +57,11 @@
57
57
  "react-native": "*"
58
58
  },
59
59
  "dependencies": {
60
- "firebase": "12.4.0"
60
+ "firebase": "12.6.0"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@react-native-async-storage/async-storage": "^2.2.0",
64
- "expo": "^53.0.20"
64
+ "expo": "^54.0.27"
65
65
  },
66
66
  "peerDependenciesMeta": {
67
67
  "expo": {
@@ -74,7 +74,7 @@
74
74
  },
75
75
  "sdkVersions": {
76
76
  "ios": {
77
- "firebase": "12.4.0",
77
+ "firebase": "12.6.0",
78
78
  "iosTarget": "15.0",
79
79
  "macosTarget": "10.15",
80
80
  "tvosTarget": "15.0"
@@ -83,13 +83,13 @@
83
83
  "minSdk": 23,
84
84
  "targetSdk": 34,
85
85
  "compileSdk": 34,
86
- "firebase": "34.4.0",
86
+ "firebase": "34.6.0",
87
87
  "firebaseCrashlyticsGradle": "3.0.6",
88
- "firebasePerfGradle": "2.0.1",
88
+ "firebasePerfGradle": "2.0.2",
89
89
  "gmsGoogleServicesGradle": "4.4.4",
90
90
  "playServicesAuth": "21.4.0",
91
- "firebaseAppDistributionGradle": "5.1.1"
91
+ "firebaseAppDistributionGradle": "5.2.0"
92
92
  }
93
93
  },
94
- "gitHead": "15a0d8ddaedcaeedf9ee322ff31810f8873c400a"
94
+ "gitHead": "748e89f9bfcdfbee971c627cd8a698963ba09f33"
95
95
  }
@@ -1 +1 @@
1
- {"root":["./src/index.ts","./src/android/applyPlugin.ts","./src/android/buildscriptDependency.ts","./src/android/constants.ts","./src/android/copyGoogleServices.ts","./src/android/index.ts","./src/ios/appDelegate.ts","./src/ios/googleServicesPlist.ts","./src/ios/index.ts"],"version":"5.9.2"}
1
+ {"root":["./src/index.ts","./src/android/applyPlugin.ts","./src/android/buildscriptDependency.ts","./src/android/constants.ts","./src/android/copyGoogleServices.ts","./src/android/index.ts","./src/ios/appDelegate.ts","./src/ios/googleServicesPlist.ts","./src/ios/index.ts"],"version":"5.9.3"}