@react-native-firebase/app-distribution 17.5.0 → 18.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 +18 -0
- package/android/build.gradle +2 -2
- package/lib/version.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,24 @@
|
|
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
|
+
## [18.1.0](https://github.com/invertase/react-native-firebase/compare/v18.0.0...v18.1.0) (2023-06-22)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/app-distribution
|
9
|
+
|
10
|
+
## [18.0.0](https://github.com/invertase/react-native-firebase/compare/v17.5.0...v18.0.0) (2023-06-05)
|
11
|
+
|
12
|
+
### ⚠ BREAKING CHANGES
|
13
|
+
|
14
|
+
- **app, sdks:** firebase-ios-sdk 10.8.0 and higher require Xcode 13.3+,
|
15
|
+
which transitively requires macOS 12.0+. You must update your CI build environments
|
16
|
+
to meet these minimums as well as your development environments - if you have older
|
17
|
+
hardware that still works but cannot be upgraded normally, you may like:
|
18
|
+
https://dortania.github.io/OpenCore-Legacy-Patcher/
|
19
|
+
|
20
|
+
### Features
|
21
|
+
|
22
|
+
- **app, sdks:** ios-sdk 10.8.0 requires Xcode 13.3+; android-sdk 31.5.0 ([86dc4d5](https://github.com/invertase/react-native-firebase/commit/86dc4d5d08a4cc7c788b057b5411ccdeb413e13e))
|
23
|
+
|
6
24
|
## [17.5.0](https://github.com/invertase/react-native-firebase/compare/v17.4.3...v17.5.0) (2023-05-11)
|
7
25
|
|
8
26
|
**Note:** Version bump only for package @react-native-firebase/app-distribution
|
package/android/build.gradle
CHANGED
@@ -87,11 +87,11 @@ dependencies {
|
|
87
87
|
api appProject
|
88
88
|
implementation platform("com.google.firebase:firebase-bom:${ReactNative.ext.getVersion("firebase", "bom")}")
|
89
89
|
// TODO remove the specific version once it is out of beta and participates in bom versioning
|
90
|
-
implementation 'com.google.firebase:firebase-appdistribution-api:16.0.0-
|
90
|
+
implementation 'com.google.firebase:firebase-appdistribution-api:16.0.0-beta08'
|
91
91
|
// TODO demonstrate how to only include this in certain build variants
|
92
92
|
// - perhaps have firebase.json name the variants to include, then roll through variants here and only
|
93
93
|
// add the dependency to variants that match? Or... (PRs welcome...)
|
94
|
-
// implementation 'com.google.firebase:firebase-appdistribution:16.0.0-
|
94
|
+
// implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta08'
|
95
95
|
}
|
96
96
|
|
97
97
|
ReactNative.shared.applyPackageVersion()
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '
|
2
|
+
module.exports = '18.1.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/app-distribution",
|
3
|
-
"version": "
|
3
|
+
"version": "18.1.0",
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
5
5
|
"description": "React Native Firebase - App Distribution",
|
6
6
|
"main": "lib/index.js",
|
@@ -22,10 +22,10 @@
|
|
22
22
|
"app-distribution"
|
23
23
|
],
|
24
24
|
"peerDependencies": {
|
25
|
-
"@react-native-firebase/app": "
|
25
|
+
"@react-native-firebase/app": "18.1.0"
|
26
26
|
},
|
27
27
|
"publishConfig": {
|
28
28
|
"access": "public"
|
29
29
|
},
|
30
|
-
"gitHead": "
|
30
|
+
"gitHead": "1c2dd42a9a2207a25e326be866ccc15f4d7b9c21"
|
31
31
|
}
|