@react-native-firebase/crashlytics 26.1.0 → 26.2.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,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
|
+
## [26.2.0](https://github.com/invertase/react-native-firebase/compare/v26.1.0...v26.2.0) (2026-08-10)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- codegen should be wipe-then-regen ([04bc4e4](https://github.com/invertase/react-native-firebase/commit/04bc4e4cdab9870cb366fd212b2ccb331b0289d6))
|
|
11
|
+
- **crashlytics, ios:** restore dSYM upload script phase ([3d8310b](https://github.com/invertase/react-native-firebase/commit/3d8310b6acdbfa0c918aa3facd102da77470639a))
|
|
12
|
+
|
|
6
13
|
## [26.1.0](https://github.com/invertase/react-native-firebase/compare/v26.0.0...v26.1.0) (2026-08-03)
|
|
7
14
|
|
|
8
15
|
### Features
|
package/dist/module/version.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { FirebaseApp } from '@react-native-firebase/app';
|
|
2
2
|
import './types/internal';
|
|
3
3
|
import type { Crashlytics } from './types/crashlytics';
|
|
4
|
-
export declare const SDK_VERSION = "26.
|
|
4
|
+
export declare const SDK_VERSION = "26.2.0";
|
|
5
5
|
export declare function getCrashlytics(app?: FirebaseApp): Crashlytics;
|
|
6
6
|
export declare function checkForUnsentReports(crashlytics: Crashlytics): Promise<boolean>;
|
|
7
7
|
export declare function deleteUnsentReports(crashlytics: Crashlytics): Promise<void>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "26.
|
|
1
|
+
export declare const version = "26.2.0";
|
|
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 = '26.
|
|
2
|
+
export const version = '26.2.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-firebase/crashlytics",
|
|
3
|
-
"version": "26.
|
|
3
|
+
"version": "26.2.0",
|
|
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/module/index.js",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"compile": "bob build",
|
|
28
28
|
"prepare": "yarn run build && yarn run build:plugin && yarn compile",
|
|
29
29
|
"codegen": "yarn android:codegen && yarn ios:codegen",
|
|
30
|
-
"android:codegen": "npx @react-native-community/cli codegen --platform android --outputPath=./android/src/main/java/io/invertase/firebase/crashlytics/generated",
|
|
31
|
-
"ios:codegen": "npx @react-native-community/cli codegen --platform ios --outputPath=./ios/generated"
|
|
30
|
+
"android:codegen": "rimraf android/src/main/java/io/invertase/firebase/crashlytics/generated && npx @react-native-community/cli codegen --platform android --outputPath=./android/src/main/java/io/invertase/firebase/crashlytics/generated",
|
|
31
|
+
"ios:codegen": "rimraf ios/generated && npx @react-native-community/cli codegen --platform ios --outputPath=./ios/generated"
|
|
32
32
|
},
|
|
33
33
|
"repository": {
|
|
34
34
|
"type": "git",
|
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
"crashlytics"
|
|
48
48
|
],
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@react-native-firebase/app": "26.
|
|
50
|
+
"@react-native-firebase/app": "26.2.0",
|
|
51
51
|
"expo": ">=47.0.0"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"stacktrace-js": "^2.0.2"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@react-native-firebase/app": "26.
|
|
57
|
+
"@react-native-firebase/app": "26.2.0",
|
|
58
58
|
"expo": "^55.0.18",
|
|
59
59
|
"react-native-builder-bob": "^0.41.0",
|
|
60
60
|
"typescript": "^6.0.3"
|
|
@@ -102,5 +102,5 @@
|
|
|
102
102
|
]
|
|
103
103
|
]
|
|
104
104
|
},
|
|
105
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "b7efa8ca2781b5102975ee5169ee6fc52e9c1588"
|
|
106
106
|
}
|
package/react-native.config.js
CHANGED
|
@@ -5,6 +5,19 @@ module.exports = {
|
|
|
5
5
|
cmakeListsPath:
|
|
6
6
|
'./src/main/java/io/invertase/firebase/crashlytics/generated/jni/CMakeLists.txt',
|
|
7
7
|
},
|
|
8
|
+
ios: {
|
|
9
|
+
scriptPhases: [
|
|
10
|
+
{
|
|
11
|
+
name: '[RNFB] Crashlytics Configuration',
|
|
12
|
+
path: './ios_config.sh',
|
|
13
|
+
execution_position: 'after_compile',
|
|
14
|
+
input_files: [
|
|
15
|
+
'${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${TARGET_NAME}',
|
|
16
|
+
'$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)',
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
|
+
],
|
|
20
|
+
},
|
|
8
21
|
},
|
|
9
22
|
},
|
|
10
23
|
};
|