@react-native-firebase/app-distribution 24.0.0 → 24.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 CHANGED
@@ -3,6 +3,12 @@
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.0](https://github.com/invertase/react-native-firebase/compare/v24.0.0...v24.1.0) (2026-06-05)
7
+
8
+ ### Bug Fixes
9
+
10
+ - 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))
11
+
6
12
  ## [24.0.0](https://github.com/invertase/react-native-firebase/compare/v23.8.6...v24.0.0) (2026-04-01)
7
13
 
8
14
  ### Features
@@ -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-beta17'
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-beta17'
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.0.0';
2
+ module.exports = '24.1.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/app-distribution",
3
- "version": "24.0.0",
3
+ "version": "24.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",
@@ -24,7 +24,7 @@
24
24
  "app-distribution"
25
25
  ],
26
26
  "peerDependencies": {
27
- "@react-native-firebase/app": "24.0.0",
27
+ "@react-native-firebase/app": "24.1.0",
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": "46c48499190be2dc9b9792d39c251db29495a607"
42
+ "gitHead": "804a51fd265453f2385adb0ac96a6abf992c0316"
43
43
  }
package/typedoc.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "$schema": "https://typedoc.org/schema.json",
3
+ "entryPoints": ["lib/modular/index.d.ts"],
4
+ "intentionallyNotExported": [
5
+ "FirebaseAppDistributionTypes.Module",
6
+ "FirebaseAppDistributionTypes.AppDistributionRelease"
7
+ ]
8
+ }