@react-native-firebase/app 14.9.1 → 14.9.4

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,22 @@
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
+ ## [14.9.4](https://github.com/invertase/react-native-firebase/compare/v14.9.3...v14.9.4) (2022-05-14)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **android:** firebase-android-sdk 30.0.1 ([c5e6b41](https://github.com/invertase/react-native-firebase/commit/c5e6b41eaec0d7238665495caf3e0f9572427e1e)), closes [#6158](https://github.com/invertase/react-native-firebase/issues/6158)
11
+
12
+ ## [14.9.3](https://github.com/invertase/react-native-firebase/compare/v14.9.2...v14.9.3) (2022-05-10)
13
+
14
+ **Note:** Version bump only for package @react-native-firebase/app
15
+
16
+ ## [14.9.2](https://github.com/invertase/react-native-firebase/compare/v14.9.1...v14.9.2) (2022-05-10)
17
+
18
+ ### Bug Fixes
19
+
20
+ - **ios, app:** macOS 12.3 removed python, use python3 ([1f609d3](https://github.com/invertase/react-native-firebase/commit/1f609d379117532d014bc44735827d38d79a36e9)), closes [#6226](https://github.com/invertase/react-native-firebase/issues/6226) [#6203](https://github.com/invertase/react-native-firebase/issues/6203)
21
+
6
22
  ## [14.9.1](https://github.com/invertase/react-native-firebase/compare/v14.9.0...v14.9.1) (2022-04-28)
7
23
 
8
24
  ### Bug Fixes
@@ -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 = "14.9.1";
21
+ public static String VERSION = "14.9.4";
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 = @"14.9.1";
21
+ NSString* const RNFBVersionString = @"14.9.4";
package/ios_config.sh CHANGED
@@ -79,7 +79,8 @@ if [[ ${_SEARCH_RESULT} ]]; then
79
79
  _RN_ROOT_EXISTS=$(ruby -e "require 'rubygems';require 'json'; output=JSON.parse('$_JSON_OUTPUT_RAW'); puts output[$_JSON_ROOT]" || echo '')
80
80
 
81
81
  if [[ ${_RN_ROOT_EXISTS} ]]; then
82
- _JSON_OUTPUT_BASE64=$(python -c 'import json,sys,base64;print(base64.b64encode(json.dumps(json.loads(open('"'${_SEARCH_RESULT}'"').read())['${_JSON_ROOT}'])))' || echo "e30=")
82
+ if ! python3 --version >/dev/null 2>&1; then echo "python3 not found, firebase.json file processing error." && exit 1; fi
83
+ _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=")
83
84
  fi
84
85
 
85
86
  _PLIST_ENTRY_KEYS+=("firebase_json_raw")
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
- // generated by genversion
2
- module.exports = '14.9.1';
1
+ // Generated by genversion.
2
+ module.exports = '14.9.4';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/app",
3
- "version": "14.9.1",
3
+ "version": "14.9.4",
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",
@@ -56,7 +56,7 @@
56
56
  "react-native": "*"
57
57
  },
58
58
  "dependencies": {
59
- "@expo/config-plugins": "^4.1.1",
59
+ "@expo/config-plugins": "^4.1.4",
60
60
  "opencollective-postinstall": "^2.0.1",
61
61
  "superstruct": "^0.6.2"
62
62
  },
@@ -72,12 +72,12 @@
72
72
  "targetSdk": 31,
73
73
  "compileSdk": 31,
74
74
  "buildTools": "30.0.3",
75
- "firebase": "29.1.0",
75
+ "firebase": "30.0.1",
76
76
  "firebaseCrashlyticsGradle": "2.8.1",
77
77
  "firebasePerfGradle": "1.4.1",
78
78
  "gmsGoogleServicesGradle": "4.3.10",
79
79
  "playServicesAuth": "20.1.0"
80
80
  }
81
81
  },
82
- "gitHead": "a799c14382e2448e32428e4a83bc286533e4dd35"
82
+ "gitHead": "42f6d96313cb193ae7918c72622c6a75e945570a"
83
83
  }