@react-native-firebase/crashlytics 22.4.0 → 23.0.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,27 @@
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
+ ## [23.0.1](https://github.com/invertase/react-native-firebase/compare/v23.0.0...v23.0.1) (2025-08-12)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **app, android:** adopt firebase-android-sdk 34.1.0 ([b9af1d3](https://github.com/invertase/react-native-firebase/commit/b9af1d3d24a4fa77587eb1a9f7a5d784750a58bb))
11
+
12
+ ## [23.0.0](https://github.com/invertase/react-native-firebase/compare/v22.4.0...v23.0.0) (2025-08-07)
13
+
14
+ ### ⚠ BREAKING CHANGES
15
+
16
+ - android minSdk now must be 23+ (was 21)
17
+ - remove deprecated API from auth & crashlytics (#8636)
18
+
19
+ ### Features
20
+
21
+ - bump Firebase android SDK to `34.0.0` ([#8627](https://github.com/invertase/react-native-firebase/issues/8627)) ([e9ef5ec](https://github.com/invertase/react-native-firebase/commit/e9ef5ec9742f28ec1d621a401f82125acff0f1cf))
22
+
23
+ ### Bug Fixes
24
+
25
+ - remove deprecated API from auth & crashlytics ([#8636](https://github.com/invertase/react-native-firebase/issues/8636)) ([213b939](https://github.com/invertase/react-native-firebase/commit/213b939b552e0f84fbccb136a03f23e9b5c8ade8))
26
+
6
27
  ## [22.4.0](https://github.com/invertase/react-native-firebase/compare/v22.3.0...v22.4.0) (2025-07-10)
7
28
 
8
29
  **Note:** Version bump only for package @react-native-firebase/crashlytics
@@ -11,17 +11,6 @@ type FirebaseCrashlytics = FirebaseCrashlyticsTypes.Module;
11
11
  */
12
12
  export declare function getCrashlytics(): FirebaseCrashlytics;
13
13
 
14
- /**
15
- * Whether Crashlytics reporting is enabled.
16
- *
17
- * #### Example
18
- *
19
- * ```js
20
- * const crashlytics = getCrashlytics();
21
- * const isEnabled = isCrashlyticsCollectionEnabled(crashlytics);
22
- * ```
23
- */
24
- export declare function isCrashlyticsCollectionEnabled(crashlytics: FirebaseCrashlytics): boolean;
25
14
  /**
26
15
  * Determines whether there are any unsent crash reports cached on the device. The callback only executes
27
16
  * if automatic data collection is disabled.
@@ -19,27 +19,6 @@ export function getCrashlytics() {
19
19
  return getApp().crashlytics();
20
20
  }
21
21
 
22
- /**
23
- * Whether Crashlytics reporting is enabled.
24
- *
25
- * #### Example
26
- *
27
- * ```js
28
- * const crashlytics = getCrashlytics();
29
- * const isEnabled = isCrashlyticsCollectionEnabled(crashlytics);
30
- * ```
31
- * @param {FirebaseCrashlytics} crashlytics
32
- * @returns {boolean}
33
- */
34
- export function isCrashlyticsCollectionEnabled(crashlytics) {
35
- // Unique. Deprecating modular method and allow it as a property on Crashlytics instance.
36
- // eslint-disable-next-line no-console
37
- console.warn(
38
- '`isCrashlyticsCollectionEnabled()` is deprecated, please use `Crashlytics.isCrashlyticsCollectionEnabled` property instead',
39
- );
40
- return crashlytics.isCrashlyticsCollectionEnabled;
41
- }
42
-
43
22
  /**
44
23
  * Determines whether there are any unsent crash reports cached on the device. The callback only executes
45
24
  * if automatic data collection is disabled.
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '22.4.0';
2
+ module.exports = '23.0.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/crashlytics",
3
- "version": "22.4.0",
3
+ "version": "23.0.1",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - Firebase Crashlytics is a lightweight, realtime crash reporter that helps you track, prioritize, and fix stability issues that erode your app quality. React Native Firebase provides automatic crash reporting for both native and JavaScript errors, including unhandled promise rejections.",
6
6
  "main": "lib/index.js",
@@ -29,7 +29,7 @@
29
29
  "crashlytics"
30
30
  ],
31
31
  "peerDependencies": {
32
- "@react-native-firebase/app": "22.4.0",
32
+ "@react-native-firebase/app": "23.0.1",
33
33
  "expo": ">=47.0.0"
34
34
  },
35
35
  "dependencies": {
@@ -47,5 +47,5 @@
47
47
  "access": "public",
48
48
  "provenance": true
49
49
  },
50
- "gitHead": "7eaaf185aab15c7e4fc3c218af9be609fe7e0030"
50
+ "gitHead": "bad0f509650c81b7a2961a90a5501d3b9696f1d0"
51
51
  }