@react-native-firebase/app-distribution 18.5.0 → 18.6.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 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
+ ## [18.6.1](https://github.com/invertase/react-native-firebase/compare/v18.6.0...v18.6.1) (2023-11-01)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/app-distribution
9
+
10
+ ## [18.6.0](https://github.com/invertase/react-native-firebase/compare/v18.5.0...v18.6.0) (2023-10-26)
11
+
12
+ ### Bug Fixes
13
+
14
+ - **app, sdk:** adopt firebase-android-sdk 32.4.0 ([63f1893](https://github.com/invertase/react-native-firebase/commit/63f1893849578bfab85241bf4458eb845a4d857f))
15
+
6
16
  ## [18.5.0](https://github.com/invertase/react-native-firebase/compare/v18.4.0...v18.5.0) (2023-09-22)
7
17
 
8
18
  **Note:** Version bump only for package @react-native-firebase/app-distribution
@@ -11,7 +11,7 @@ buildscript {
11
11
  }
12
12
 
13
13
  dependencies {
14
- classpath("com.android.tools.build:gradle:8.1.1")
14
+ classpath("com.android.tools.build:gradle:8.1.2")
15
15
  }
16
16
  }
17
17
  }
@@ -96,11 +96,11 @@ dependencies {
96
96
  api appProject
97
97
  implementation platform("com.google.firebase:firebase-bom:${ReactNative.ext.getVersion("firebase", "bom")}")
98
98
  // TODO remove the specific version once it is out of beta and participates in bom versioning
99
- implementation 'com.google.firebase:firebase-appdistribution-api:16.0.0-beta10'
99
+ implementation 'com.google.firebase:firebase-appdistribution-api:16.0.0-beta11'
100
100
  // TODO demonstrate how to only include this in certain build variants
101
101
  // - perhaps have firebase.json name the variants to include, then roll through variants here and only
102
102
  // add the dependency to variants that match? Or... (PRs welcome...)
103
- // implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta10'
103
+ // implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta11'
104
104
  }
105
105
 
106
106
  ReactNative.shared.applyPackageVersion()
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '18.5.0';
2
+ module.exports = '18.6.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/app-distribution",
3
- "version": "18.5.0",
3
+ "version": "18.6.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",
@@ -22,10 +22,10 @@
22
22
  "app-distribution"
23
23
  ],
24
24
  "peerDependencies": {
25
- "@react-native-firebase/app": "18.5.0"
25
+ "@react-native-firebase/app": "18.6.1"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "gitHead": "c9b695aa8fd75d5a1d070ecbb6bb9ac4e9ff062e"
30
+ "gitHead": "3d73352fb7434251fe661b426115339cf6d30bc1"
31
31
  }
package/type-test.ts CHANGED
@@ -1,5 +1,4 @@
1
- import firebase from '@react-native-firebase/app';
2
- import defaultExport, { firebase as firebaseFromModule } from '@react-native-firebase/app-distribution';
1
+ import firebase from '.';
3
2
 
4
3
  // checks module exists at root
5
4
  console.log(firebase.appDistribution().app.name);
@@ -10,17 +9,14 @@ console.log(firebase.app().appDistribution().app.name);
10
9
  // checks statics exist
11
10
  console.log(firebase.appDistribution.SDK_VERSION);
12
11
 
13
- // checks statics exist on defaultExport
14
- console.log(defaultExport.SDK_VERSION);
15
-
16
12
  // checks root exists
17
13
  console.log(firebase.SDK_VERSION);
18
14
 
19
15
  // checks firebase named export exists on module
20
- console.log(firebaseFromModule.SDK_VERSION);
16
+ console.log(firebase.SDK_VERSION);
21
17
 
22
18
  // checks multi-app support exists
23
19
  console.log(firebase.appDistribution(firebase.app()).app.name);
24
20
 
25
21
  // checks default export supports app arg
26
- console.log(defaultExport(firebase.app()).app.name);
22
+ console.log(firebase(firebase.app()).app.name);