@react-native-firebase/app-distribution 24.0.0 → 24.1.1
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 +10 -0
- package/android/build.gradle +2 -2
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/typedoc.json +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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
|
+
## [24.1.1](https://github.com/invertase/react-native-firebase/compare/v24.1.0...v24.1.1) (2026-06-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/app-distribution
|
|
9
|
+
|
|
10
|
+
## [24.1.0](https://github.com/invertase/react-native-firebase/compare/v24.0.0...v24.1.0) (2026-06-05)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- firebase-android-sdk 34.14.0, firebase-ios-sdk 12.11.0, firebase-js-sdk 12.14.0 ([65bbe94](https://github.com/invertase/react-native-firebase/commit/65bbe9435fb78bbb2ee4cba25b44b0199a61f030))
|
|
15
|
+
|
|
6
16
|
## [24.0.0](https://github.com/invertase/react-native-firebase/compare/v23.8.6...v24.0.0) (2026-04-01)
|
|
7
17
|
|
|
8
18
|
### Features
|
package/android/build.gradle
CHANGED
|
@@ -94,11 +94,11 @@ dependencies {
|
|
|
94
94
|
api appProject
|
|
95
95
|
implementation platform("com.google.firebase:firebase-bom:${ReactNative.ext.getVersion("firebase", "bom")}")
|
|
96
96
|
// TODO remove the specific version once it is out of beta and participates in bom versioning
|
|
97
|
-
implementation 'com.google.firebase:firebase-appdistribution-api:16.0.0-
|
|
97
|
+
implementation 'com.google.firebase:firebase-appdistribution-api:16.0.0-beta19'
|
|
98
98
|
// TODO demonstrate how to only include this in certain build variants
|
|
99
99
|
// - perhaps have firebase.json name the variants to include, then roll through variants here and only
|
|
100
100
|
// add the dependency to variants that match? Or... (PRs welcome...)
|
|
101
|
-
// implementation 'com.google.firebase:firebase-appdistribution:16.0.0-
|
|
101
|
+
// implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta19'
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
ReactNative.shared.applyPackageVersion()
|
package/lib/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
module.exports = '24.
|
|
2
|
+
module.exports = '24.1.1';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-firebase/app-distribution",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.1.1",
|
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
|
5
5
|
"description": "React Native Firebase - App Distribution",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"app-distribution"
|
|
25
25
|
],
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@react-native-firebase/app": "24.
|
|
27
|
+
"@react-native-firebase/app": "24.1.1",
|
|
28
28
|
"expo": ">=47.0.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"access": "public",
|
|
40
40
|
"provenance": true
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "ea699f0bbcc98d25eebea4bfbe88cf1e9f2d0107"
|
|
43
43
|
}
|