@react-native-firebase/app 23.4.1 → 23.5.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.5.0](https://github.com/invertase/react-native-firebase/compare/v23.4.1...v23.5.0) (2025-10-30)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **ios:** use 'note' for info messages in Xcode scripts ([f2f1e5e](https://github.com/invertase/react-native-firebase/commit/f2f1e5e396b2e71675e85701bc89ac916431db30))
|
|
11
|
+
|
|
6
12
|
## [23.4.1](https://github.com/invertase/react-native-firebase/compare/v23.4.0...v23.4.1) (2025-10-14)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
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 "
|
|
50
|
-
${_PLIST_BUDDY} -c "Add :$1 $2 '$3'" $4 || echo "
|
|
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 "
|
|
71
|
-
echo "
|
|
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 "
|
|
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 "
|
|
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 "
|
|
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 "
|
|
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.
|
|
2
|
+
module.exports = '23.5.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-firebase/app",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.5.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",
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
"firebaseAppDistributionGradle": "5.1.1"
|
|
92
92
|
}
|
|
93
93
|
},
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "5d27948f349d4d6c977c55036e2afd13df8d622f"
|
|
95
95
|
}
|