@react-native-firebase/app-distribution 23.8.8 → 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,23 @@
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
+
12
+ ## [24.0.0](https://github.com/invertase/react-native-firebase/compare/v23.8.6...v24.0.0) (2026-04-01)
13
+
14
+ ### Features
15
+
16
+ - **firestore:** Support for Firestore pipelines API ([#8931](https://github.com/invertase/react-native-firebase/issues/8931)) ([54021c4](https://github.com/invertase/react-native-firebase/commit/54021c4af427abc3c8e224b546d68661aa1fc590))
17
+
18
+ ### Bug Fixes
19
+
20
+ - **deps:** ios-sdk 12.10.0 / android-sdk 34.10.0 / js-sdk 12.10.0 ([8a7acf3](https://github.com/invertase/react-native-firebase/commit/8a7acf3925e6a69ef995c476d4c004400fcee18a))
21
+ - **messaging, expo:** retrieve expo-notification config if available, then deprecated notification ([#8663](https://github.com/invertase/react-native-firebase/issues/8663)) ([aa63174](https://github.com/invertase/react-native-firebase/commit/aa63174b997b62176964d9935929cb686b03f8b3))
22
+
6
23
  ## [23.8.8](https://github.com/invertase/react-native-firebase/compare/v23.8.6...v23.8.8) (2026-03-12)
7
24
 
8
25
  ### Bug Fixes
@@ -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/index.d.ts CHANGED
@@ -86,7 +86,6 @@ export namespace FirebaseAppDistributionTypes {
86
86
  isExpired: boolean;
87
87
  }
88
88
 
89
- // eslint-disable-next-line @typescript-eslint/no-empty-object-type
90
89
  export interface Statics {
91
90
  // firebase.appDistribution.* static props go here
92
91
  }
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '23.8.8';
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": "23.8.8",
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": "23.8.8",
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": "d17b898bee0be82259fc1b88f46106a927bf81aa"
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
+ }