@react-native-firebase/crashlytics 20.5.0 → 21.0.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,12 @@
|
|
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
|
+
## [21.0.0](https://github.com/invertase/react-native-firebase/compare/v20.5.0...v21.0.0) (2024-09-26)
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- **crashlytics, ios:** dependencies init param removed upstream in v11+ ([73b596c](https://github.com/invertase/react-native-firebase/commit/73b596c062d67185868de697732378beab198397))
|
11
|
+
|
6
12
|
## [20.5.0](https://github.com/invertase/react-native-firebase/compare/v20.4.0...v20.5.0) (2024-09-11)
|
7
13
|
|
8
14
|
**Note:** Version bump only for package @react-native-firebase/crashlytics
|
@@ -134,7 +134,6 @@ NSString *const KEY_CRASHLYTICS_JAVASCRIPT_EXCEPTION_HANDLER_CHAINING_ENABLED =
|
|
134
134
|
FIRComponent *crashlyticsInitProvider =
|
135
135
|
[FIRComponent componentWithProtocol:@protocol(RNFBCrashlyticsInitProviderProtocol)
|
136
136
|
instantiationTiming:FIRInstantiationTimingEagerInDefaultApp
|
137
|
-
dependencies:@[] // note this will go away in firebase-ios-sdk v11+
|
138
137
|
creationBlock:creationBlock];
|
139
138
|
|
140
139
|
return @[ crashlyticsInitProvider ];
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '
|
2
|
+
module.exports = '21.0.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/crashlytics",
|
3
|
-
"version": "
|
3
|
+
"version": "21.0.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": "lib/index.js",
|
@@ -29,14 +29,14 @@
|
|
29
29
|
"crashlytics"
|
30
30
|
],
|
31
31
|
"peerDependencies": {
|
32
|
-
"@react-native-firebase/app": "
|
32
|
+
"@react-native-firebase/app": "21.0.0",
|
33
33
|
"expo": ">=47.0.0"
|
34
34
|
},
|
35
35
|
"dependencies": {
|
36
36
|
"stacktrace-js": "^2.0.2"
|
37
37
|
},
|
38
38
|
"devDependencies": {
|
39
|
-
"expo": "^50.0.
|
39
|
+
"expo": "^50.0.21"
|
40
40
|
},
|
41
41
|
"peerDependenciesMeta": {
|
42
42
|
"expo": {
|
@@ -46,5 +46,5 @@
|
|
46
46
|
"publishConfig": {
|
47
47
|
"access": "public"
|
48
48
|
},
|
49
|
-
"gitHead": "
|
49
|
+
"gitHead": "6965c40db30a832a21c3f9a93f6e5df36f137461"
|
50
50
|
}
|
@@ -1,6 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
exports.withApplyCrashlyticsPlugin = void 0;
|
4
|
+
exports.applyPlugin = applyPlugin;
|
4
5
|
const config_plugins_1 = require("@expo/config-plugins");
|
5
6
|
const constants_1 = require("./constants");
|
6
7
|
/**
|
@@ -25,4 +26,3 @@ function applyPlugin(appBuildGradle) {
|
|
25
26
|
}
|
26
27
|
return appBuildGradle;
|
27
28
|
}
|
28
|
-
exports.applyPlugin = applyPlugin;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
exports.withBuildscriptDependency = void 0;
|
4
|
+
exports.setBuildscriptDependency = setBuildscriptDependency;
|
4
5
|
const config_plugins_1 = require("@expo/config-plugins");
|
5
6
|
const constants_1 = require("./constants");
|
6
7
|
/**
|
@@ -26,4 +27,3 @@ function setBuildscriptDependency(buildGradle) {
|
|
26
27
|
}
|
27
28
|
return buildGradle;
|
28
29
|
}
|
29
|
-
exports.setBuildscriptDependency = setBuildscriptDependency;
|
@@ -0,0 +1 @@
|
|
1
|
+
{"root":["./src/index.ts","./src/android/applyPlugin.ts","./src/android/buildscriptDependency.ts","./src/android/constants.ts","./src/android/index.ts"],"version":"5.6.2"}
|