@react-native-firebase/app 12.9.3 → 13.0.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,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
+ # [13.0.0](https://github.com/invertase/react-native-firebase/compare/v12.9.3...v13.0.0) (2021-10-31)
7
+
8
+ ### Bug Fixes
9
+
10
+ - rename default branch to main ([25e1d3d](https://github.com/invertase/react-native-firebase/commit/25e1d3d5a1a8311588938dc9d8fdf71d11cd9963))
11
+
12
+ - feat(sdks, android)!: firebase-android-sdk v29 / minSdkVersion API19 / target+compile API31 (#5825) ([f60afe1](https://github.com/invertase/react-native-firebase/commit/f60afe158b2dc823bd7169e36c3e428470576c7e)), closes [#5825](https://github.com/invertase/react-native-firebase/issues/5825)
13
+
14
+ ### Features
15
+
16
+ - **ios, sdks:** bump firebase-ios-sdk to 8.9.0 ([bb9ba50](https://github.com/invertase/react-native-firebase/commit/bb9ba50ff4df82980943c0a76069d432e5371ed6))
17
+
18
+ ### BREAKING CHANGES
19
+
20
+ - firebase-android-sdk 29 requires android/build.gradle minSdkVersion 19 (as required in react-native 0.64+)
21
+
6
22
  ## [12.9.3](https://github.com/invertase/react-native-firebase/compare/v12.9.2...v12.9.3) (2021-10-22)
7
23
 
8
24
  ### Bug Fixes
@@ -356,7 +372,7 @@ This release was partial, npmjs.com rejected some of the monorepo packages while
356
372
 
357
373
  **Note:** Version bump only for package @react-native-firebase/app
358
374
 
359
- **Note:** You _may_ need to re-download your firebase config files (android json / ios plist) to handle changes in the underlying SDKs as they migrate from instance id to installations. A symptom would be `NativeFirebaseError: [messaging/unknown] FIS_AUTH_ERROR`. [Upstream reference doc](https://github.com/firebase/firebase-android-sdk/blob/master/firebase-installations/REQUIRED_FIREBASE_OPTIONS_ANDROID.md#what-do-i-need-to-do) / [Related issue #4466](https://github.com/invertase/react-native-firebase/issues/4466)
375
+ **Note:** You _may_ need to re-download your firebase config files (android json / ios plist) to handle changes in the underlying SDKs as they migrate from instance id to installations. A symptom would be `NativeFirebaseError: [messaging/unknown] FIS_AUTH_ERROR`. [Upstream reference doc](https://github.com/firebase/firebase-android-sdk/blob/main/firebase-installations/REQUIRED_FIREBASE_OPTIONS_ANDROID.md#what-do-i-need-to-do) / [Related issue #4466](https://github.com/invertase/react-native-firebase/issues/4466)
360
376
 
361
377
  ## [8.4.5](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@8.4.4...@react-native-firebase/app@8.4.5) (2020-09-30)
362
378
 
@@ -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 = "12.9.3";
21
+ public static String VERSION = "13.0.0";
22
22
  }
@@ -169,18 +169,18 @@ public class RCTConvertFirebase {
169
169
  // TODO Remove me - also in SharedUtils
170
170
  public static WritableMap readableMapToWritableMap(ReadableMap map) {
171
171
  WritableMap writableMap = Arguments.createMap();
172
- // https://github.com/facebook/react-native/blob/master/ReactAndroid/src/main/java/com/facebook/react/bridge/WritableNativeMap.java#L54
172
+ // https://github.com/facebook/react-native/blob/main/ReactAndroid/src/main/java/com/facebook/react/bridge/WritableNativeMap.java#L54
173
173
  writableMap.merge(map);
174
174
  return writableMap;
175
175
  }
176
176
 
177
177
  public static Map<String, Object> toHashMap(ReadableMap readableMap) {
178
- // https://github.com/facebook/react-native/blob/master/ReactAndroid/src/main/java/com/facebook/react/bridge/ReadableNativeMap.java#L216
178
+ // https://github.com/facebook/react-native/blob/main/ReactAndroid/src/main/java/com/facebook/react/bridge/ReadableNativeMap.java#L216
179
179
  return readableMap.toHashMap();
180
180
  }
181
181
 
182
182
  public static List<Object> toArrayList(ReadableArray readableArray) {
183
- // https://github.com/facebook/react-native/blob/master/ReactAndroid/src/main/java/com/facebook/react/bridge/ReadableNativeArray.java#L175
183
+ // https://github.com/facebook/react-native/blob/main/ReactAndroid/src/main/java/com/facebook/react/bridge/ReadableNativeArray.java#L175
184
184
  return readableArray.toArrayList();
185
185
  }
186
186
  }
@@ -18,4 +18,4 @@
18
18
  #import "RCTVersion.h"
19
19
 
20
20
  // generated file - do not modify or commit
21
- NSString* const RNFBVersionString = @"12.9.3";
21
+ NSString* const RNFBVersionString = @"13.0.0";
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // generated by genversion
2
- module.exports = '12.9.3';
2
+ module.exports = '13.0.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/app",
3
- "version": "12.9.3",
3
+ "version": "13.0.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",
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "repository": {
17
17
  "type": "git",
18
- "url": "https://github.com/invertase/react-native-firebase/tree/master/packages/app"
18
+ "url": "https://github.com/invertase/react-native-firebase/tree/main/packages/app"
19
19
  },
20
20
  "license": "Apache-2.0",
21
21
  "keywords": [
@@ -65,19 +65,19 @@
65
65
  },
66
66
  "sdkVersions": {
67
67
  "ios": {
68
- "firebase": "8.8.0"
68
+ "firebase": "8.9.0"
69
69
  },
70
70
  "android": {
71
- "minSdk": 16,
72
- "targetSdk": 30,
73
- "compileSdk": 30,
74
- "buildTools": "30.0.2",
75
- "firebase": "28.4.2",
76
- "firebaseCrashlyticsGradle": "2.7.1",
71
+ "minSdk": 21,
72
+ "targetSdk": 31,
73
+ "compileSdk": 31,
74
+ "buildTools": "30.0.3",
75
+ "firebase": "29.0.0",
76
+ "firebaseCrashlyticsGradle": "2.8.0",
77
77
  "firebasePerfGradle": "1.4.0",
78
78
  "gmsGoogleServicesGradle": "4.3.10",
79
79
  "playServicesAuth": "19.2.0"
80
80
  }
81
81
  },
82
- "gitHead": "9f00ac9011a710400097302b8263e5c8cf7a6575"
82
+ "gitHead": "4e8e81cca023023332dceeb590f886430ae59016"
83
83
  }