@react-native-firebase/auth 19.3.0 → 20.1.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 +24 -0
- package/android/build.gradle +2 -2
- package/lib/version.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,30 @@
|
|
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.1.0](https://github.com/invertase/react-native-firebase/compare/v20.0.0...v20.1.0) (2024-06-04)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/auth
|
9
|
+
|
10
|
+
## [20.0.0](https://github.com/invertase/react-native-firebase/compare/v19.3.0...v20.0.0) (2024-05-20)
|
11
|
+
|
12
|
+
### ⚠ BREAKING CHANGES
|
13
|
+
|
14
|
+
- **app, android:** - requires minSdk 21+ in general, 23+ for auth module
|
15
|
+
|
16
|
+
* requires compileSdk 34+
|
17
|
+
* app-distribution gradle plugin requires
|
18
|
+
- gradle 7.3+
|
19
|
+
- android gradle plugin 7+
|
20
|
+
- google services plugin 4.3.2+
|
21
|
+
* crashlytics plugin requires
|
22
|
+
- gradle 8+
|
23
|
+
- android gradle plugin 8.1+
|
24
|
+
- google services plugin 4.4.1+
|
25
|
+
|
26
|
+
### Features
|
27
|
+
|
28
|
+
- **app, android:** android-sdk 33.0.0 - needs minSdk 21+ (23+ for auth) ([f29fecb](https://github.com/invertase/react-native-firebase/commit/f29fecbe72c27e60f8fec1cee6fa879b788d27b3))
|
29
|
+
|
6
30
|
## [19.3.0](https://github.com/invertase/react-native-firebase/compare/v19.2.2...v19.3.0) (2024-05-20)
|
7
31
|
|
8
32
|
### Features
|
package/android/build.gradle
CHANGED
@@ -11,7 +11,7 @@ buildscript {
|
|
11
11
|
}
|
12
12
|
|
13
13
|
dependencies {
|
14
|
-
classpath("com.android.tools.build:gradle:8.
|
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 = '
|
2
|
+
module.exports = '20.1.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/auth",
|
3
|
-
"version": "
|
3
|
+
"version": "20.1.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": "
|
30
|
+
"@react-native-firebase/app": "20.1.0",
|
31
31
|
"expo": ">=47.0.0"
|
32
32
|
},
|
33
33
|
"devDependencies": {
|
34
34
|
"@types/plist": "^3.0.5",
|
35
|
-
"expo": "^50.0.
|
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": "
|
45
|
+
"gitHead": "99819b9cef23ac46080cbffe50cc85083305d04c"
|
46
46
|
}
|