@react-native-firebase/app 19.2.2 → 20.0.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,39 @@
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
+ ## [20.0.0](https://github.com/invertase/react-native-firebase/compare/v19.3.0...v20.0.0) (2024-05-20)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ - **app, android:** - requires minSdk 21+ in general, 23+ for auth module
11
+
12
+ * requires compileSdk 34+
13
+ * app-distribution gradle plugin requires
14
+ - gradle 7.3+
15
+ - android gradle plugin 7+
16
+ - google services plugin 4.3.2+
17
+ * crashlytics plugin requires
18
+ - gradle 8+
19
+ - android gradle plugin 8.1+
20
+ - google services plugin 4.4.1+
21
+
22
+ - **app, ios:** firebase-ios-sdk 10.25.0 requires minimum Xcode 15.2+
23
+
24
+ This transitively requires macOS Ventura 13.5+ - for old hardware
25
+ you may investigate OCLP (OpenCore Legacy Patcher) to update macOS
26
+ to current versions and access newer Xcode versions
27
+
28
+ ### Features
29
+
30
+ - **app, android:** android-sdk 33.0.0 - needs minSdk 21+ (23+ for auth) ([f29fecb](https://github.com/invertase/react-native-firebase/commit/f29fecbe72c27e60f8fec1cee6fa879b788d27b3))
31
+ - **app, ios:** adopt firebase-ios-sdk 10.25.0 requires Xcode 15.2+ ([73f3c23](https://github.com/invertase/react-native-firebase/commit/73f3c2397d2f56ed5a139d2a8b8a13930c86aabc))
32
+
33
+ ## [19.3.0](https://github.com/invertase/react-native-firebase/compare/v19.2.2...v19.3.0) (2024-05-20)
34
+
35
+ ### Bug Fixes
36
+
37
+ - **app:** react-native 0.74 bridgeless mode compatibility ([#7688](https://github.com/invertase/react-native-firebase/issues/7688)) ([a6805bc](https://github.com/invertase/react-native-firebase/commit/a6805bc1e6894aadf3167b7958fd52644bfe90ca))
38
+
6
39
  ## [19.2.2](https://github.com/invertase/react-native-firebase/compare/v19.2.1...v19.2.2) (2024-04-13)
7
40
 
8
41
  ### Bug Fixes
@@ -11,7 +11,7 @@ buildscript {
11
11
  }
12
12
 
13
13
  dependencies {
14
- classpath("com.android.tools.build:gradle:8.1.2")
14
+ classpath("com.android.tools.build:gradle:8.4.0")
15
15
  }
16
16
  }
17
17
  }
@@ -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 = "19.2.2";
21
+ public static String VERSION = "20.0.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 = @"19.2.2";
21
+ NSString* const RNFBVersionString = @"20.0.0";
@@ -65,7 +65,8 @@ function nativeModuleWrapped(namespace, NativeModule, argToPrepend) {
65
65
  return NativeModule;
66
66
  }
67
67
 
68
- const properties = Object.keys(NativeModule);
68
+ let properties = Object.keys(Object.getPrototypeOf(NativeModule));
69
+ if (!properties.length) properties = Object.keys(NativeModule);
69
70
 
70
71
  for (let i = 0, len = properties.length; i < len; i++) {
71
72
  const property = properties[i];
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '19.2.2';
2
+ module.exports = '20.0.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/app",
3
- "version": "19.2.2",
3
+ "version": "20.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",
@@ -61,7 +61,7 @@
61
61
  "superstruct": "^0.6.2"
62
62
  },
63
63
  "devDependencies": {
64
- "expo": "^50.0.15"
64
+ "expo": "^50.0.18"
65
65
  },
66
66
  "peerDependenciesMeta": {
67
67
  "expo": {
@@ -73,20 +73,20 @@
73
73
  },
74
74
  "sdkVersions": {
75
75
  "ios": {
76
- "firebase": "10.24.0",
76
+ "firebase": "10.25.0",
77
77
  "iosTarget": "11.0",
78
78
  "macosTarget": "10.13"
79
79
  },
80
80
  "android": {
81
- "minSdk": 19,
82
- "targetSdk": 33,
83
- "compileSdk": 33,
84
- "firebase": "32.8.1",
85
- "firebaseCrashlyticsGradle": "2.9.9",
81
+ "minSdk": 21,
82
+ "targetSdk": 34,
83
+ "compileSdk": 34,
84
+ "firebase": "33.0.0",
85
+ "firebaseCrashlyticsGradle": "3.0.0",
86
86
  "firebasePerfGradle": "1.4.2",
87
87
  "gmsGoogleServicesGradle": "4.4.1",
88
- "playServicesAuth": "21.0.0"
88
+ "playServicesAuth": "21.1.1"
89
89
  }
90
90
  },
91
- "gitHead": "2c1f48eacba95904c89073dcb391d89d0f966165"
91
+ "gitHead": "b6079dd09ed1f6e47dc782df0d98c5479bfc0cd4"
92
92
  }