@react-native-firebase/auth 19.3.0 → 20.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,26 @@
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
+ ### Features
23
+
24
+ - **app, android:** android-sdk 33.0.0 - needs minSdk 21+ (23+ for auth) ([f29fecb](https://github.com/invertase/react-native-firebase/commit/f29fecbe72c27e60f8fec1cee6fa879b788d27b3))
25
+
6
26
  ## [19.3.0](https://github.com/invertase/react-native-firebase/compare/v19.2.2...v19.3.0) (2024-05-20)
7
27
 
8
28
  ### Features
@@ -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
  }
@@ -47,7 +47,7 @@ project.ext {
47
47
  set('react-native', [
48
48
  versions: [
49
49
  android : [
50
- minSdk : jsonMinSdk,
50
+ minSdk : 23, // jsonMinSdk, this is temporarily higher than other modules
51
51
  targetSdk : jsonTargetSdk,
52
52
  compileSdk: jsonCompileSdk,
53
53
  ],
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '19.3.0';
2
+ module.exports = '20.0.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/auth",
3
- "version": "19.3.0",
3
+ "version": "20.0.0",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - The authentication module provides an easy-to-use API to integrate an authentication workflow into new and existing applications. React Native Firebase provides access to all Firebase authentication methods and identity providers.",
6
6
  "main": "lib/index.js",
@@ -27,12 +27,12 @@
27
27
  "plist": "^3.1.0"
28
28
  },
29
29
  "peerDependencies": {
30
- "@react-native-firebase/app": "19.3.0",
30
+ "@react-native-firebase/app": "20.0.0",
31
31
  "expo": ">=47.0.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/plist": "^3.0.5",
35
- "expo": "^50.0.15"
35
+ "expo": "^50.0.18"
36
36
  },
37
37
  "peerDependenciesMeta": {
38
38
  "expo": {
@@ -42,5 +42,5 @@
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "edac62269c1b3088cadf74586d48f68214d6e8e4"
45
+ "gitHead": "b6079dd09ed1f6e47dc782df0d98c5479bfc0cd4"
46
46
  }