@react-native-firebase/crashlytics 23.8.2 → 23.8.3

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,13 @@
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.8.3](https://github.com/invertase/react-native-firebase/compare/v23.8.2...v23.8.3) (2026-01-16)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **expo:** export app.plugin.js entry points for typescript packages ([7ae0872](https://github.com/invertase/react-native-firebase/commit/7ae0872850358f3b29c7d232ad7039fec08f9f5c))
11
+ - **ios:** use react-native podspec module infra for deps ([c66eb63](https://github.com/invertase/react-native-firebase/commit/c66eb63f60cfbabdeb73a3bb1eff8735f11ad391))
12
+
6
13
  ## [23.8.2](https://github.com/invertase/react-native-firebase/compare/v23.8.1...v23.8.2) (2026-01-14)
7
14
 
8
15
  **Note:** Version bump only for package @react-native-firebase/crashlytics
@@ -31,10 +31,15 @@ Pod::Spec.new do |s|
31
31
  s.tvos.deployment_target = firebase_tvos_target
32
32
  s.source_files = 'ios/**/*.{h,m}'
33
33
 
34
- # React Native dependencies
35
- s.dependency 'React-Core'
36
34
  s.dependency 'RNFBApp'
37
35
 
36
+ # React Native dependencies
37
+ if defined?(install_modules_dependencies()) != nil
38
+ install_modules_dependencies(s);
39
+ else
40
+ s.dependency "React-Core"
41
+ end
42
+
38
43
  if defined?($FirebaseSDKVersion)
39
44
  Pod::UI.puts "#{s.name}: Using user specified Firebase SDK version '#{$FirebaseSDKVersion}'"
40
45
  firebase_sdk_version = $FirebaseSDKVersion
@@ -5,5 +5,5 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.version = void 0;
7
7
  // Generated by genversion.
8
- const version = exports.version = '23.8.2';
8
+ const version = exports.version = '23.8.3';
9
9
  //# sourceMappingURL=version.js.map
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
 
3
3
  // Generated by genversion.
4
- export const version = '23.8.2';
4
+ export const version = '23.8.3';
5
5
  //# sourceMappingURL=version.js.map
@@ -1,6 +1,6 @@
1
1
  import type { Crashlytics, Statics } from './types/crashlytics';
2
2
  import type { ReactNativeFirebase } from '@react-native-firebase/app';
3
- export declare const SDK_VERSION = "23.8.2";
3
+ export declare const SDK_VERSION = "23.8.3";
4
4
  type CrashlyticsNamespace = ReactNativeFirebase.FirebaseModuleWithStaticsAndApp<Crashlytics, Statics> & {
5
5
  crashlytics: ReactNativeFirebase.FirebaseModuleWithStaticsAndApp<Crashlytics, Statics>;
6
6
  firebase: ReactNativeFirebase.Module;
@@ -1,2 +1,2 @@
1
- export declare const version = "23.8.2";
1
+ export declare const version = "23.8.3";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import type { Crashlytics, Statics } from './types/crashlytics';
2
2
  import type { ReactNativeFirebase } from '@react-native-firebase/app';
3
- export declare const SDK_VERSION = "23.8.2";
3
+ export declare const SDK_VERSION = "23.8.3";
4
4
  type CrashlyticsNamespace = ReactNativeFirebase.FirebaseModuleWithStaticsAndApp<Crashlytics, Statics> & {
5
5
  crashlytics: ReactNativeFirebase.FirebaseModuleWithStaticsAndApp<Crashlytics, Statics>;
6
6
  firebase: ReactNativeFirebase.Module;
@@ -1,2 +1,2 @@
1
- export declare const version = "23.8.2";
1
+ export declare const version = "23.8.3";
2
2
  //# sourceMappingURL=version.d.ts.map
package/lib/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '23.8.2';
2
+ export const version = '23.8.3';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/crashlytics",
3
- "version": "23.8.2",
3
+ "version": "23.8.3",
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": "./dist/commonjs/index.js",
@@ -31,7 +31,7 @@
31
31
  "crashlytics"
32
32
  ],
33
33
  "peerDependencies": {
34
- "@react-native-firebase/app": "23.8.2",
34
+ "@react-native-firebase/app": "23.8.3",
35
35
  "expo": ">=47.0.0"
36
36
  },
37
37
  "dependencies": {
@@ -63,6 +63,7 @@
63
63
  "default": "./dist/commonjs/index.js"
64
64
  }
65
65
  },
66
+ "./app.plugin.js": "./app.plugin.js",
66
67
  "./package.json": "./package.json"
67
68
  },
68
69
  "react-native-builder-bob": {
@@ -89,5 +90,5 @@
89
90
  ]
90
91
  ]
91
92
  },
92
- "gitHead": "578c1573d9bcb9a83848f34a08be40c7b5722d9b"
93
+ "gitHead": "8576e18f72feed50e4e5bd2ae0d46dbfe0e9ac77"
93
94
  }