@react-native-firebase/crashlytics 12.7.3 → 12.9.0
Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,22 @@
|
|
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
|
+
# [12.9.0](https://github.com/invertase/react-native-firebase/compare/v12.8.0...v12.9.0) (2021-10-03)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/crashlytics
|
9
|
+
|
10
|
+
# [12.8.0](https://github.com/invertase/react-native-firebase/compare/v12.7.5...v12.8.0) (2021-09-14)
|
11
|
+
|
12
|
+
**Note:** Version bump only for package @react-native-firebase/crashlytics
|
13
|
+
|
14
|
+
## [12.7.5](https://github.com/invertase/react-native-firebase/compare/v12.7.4...v12.7.5) (2021-09-04)
|
15
|
+
|
16
|
+
**Note:** Version bump only for package @react-native-firebase/crashlytics
|
17
|
+
|
18
|
+
## [12.7.4](https://github.com/invertase/react-native-firebase/compare/v12.7.3...v12.7.4) (2021-08-31)
|
19
|
+
|
20
|
+
**Note:** Version bump only for package @react-native-firebase/crashlytics
|
21
|
+
|
6
22
|
## [12.7.3](https://github.com/invertase/react-native-firebase/compare/v12.7.2...v12.7.3) (2021-08-24)
|
7
23
|
|
8
24
|
**Note:** Version bump only for package @react-native-firebase/crashlytics
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// generated by genversion
|
2
|
-
module.exports = '12.
|
2
|
+
module.exports = '12.9.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/crashlytics",
|
3
|
-
"version": "12.
|
3
|
+
"version": "12.9.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": "12.
|
32
|
+
"@react-native-firebase/app": "12.9.0"
|
33
33
|
},
|
34
34
|
"dependencies": {
|
35
|
-
"@expo/config-plugins": "^3.0
|
35
|
+
"@expo/config-plugins": "^3.1.0",
|
36
36
|
"stacktrace-js": "^2.0.0"
|
37
37
|
},
|
38
38
|
"publishConfig": {
|
39
39
|
"access": "public"
|
40
40
|
},
|
41
|
-
"gitHead": "
|
41
|
+
"gitHead": "092cd33b56125eaa0bef47466697c0c7fb7ecb0f"
|
42
42
|
}
|
@@ -7,7 +7,7 @@ const constants_1 = require("./constants");
|
|
7
7
|
* Update `app/build.gradle` by applying crashlytics plugin
|
8
8
|
*/
|
9
9
|
const withApplyCrashlyticsPlugin = config => {
|
10
|
-
return config_plugins_1.withAppBuildGradle(config, config => {
|
10
|
+
return (0, config_plugins_1.withAppBuildGradle)(config, config => {
|
11
11
|
if (config.modResults.language === 'groovy') {
|
12
12
|
config.modResults.contents = applyPlugin(config.modResults.contents);
|
13
13
|
}
|
@@ -7,7 +7,7 @@ const constants_1 = require("./constants");
|
|
7
7
|
* Update `<project>/build.gradle` by adding google-services dependency to buildscript
|
8
8
|
*/
|
9
9
|
const withBuildscriptDependency = config => {
|
10
|
-
return config_plugins_1.withProjectBuildGradle(config, config => {
|
10
|
+
return (0, config_plugins_1.withProjectBuildGradle)(config, config => {
|
11
11
|
if (config.modResults.language === 'groovy') {
|
12
12
|
config.modResults.contents = setBuildscriptDependency(config.modResults.contents);
|
13
13
|
}
|
package/plugin/build/index.js
CHANGED
@@ -6,7 +6,7 @@ const android_1 = require("./android");
|
|
6
6
|
* A config plugin for configuring `@react-native-firebase/crashlytics`
|
7
7
|
*/
|
8
8
|
const withRnFirebaseCrashlytics = config => {
|
9
|
-
return config_plugins_1.withPlugins(config, [android_1.withBuildscriptDependency, android_1.withApplyCrashlyticsPlugin]);
|
9
|
+
return (0, config_plugins_1.withPlugins)(config, [android_1.withBuildscriptDependency, android_1.withApplyCrashlyticsPlugin]);
|
10
10
|
};
|
11
11
|
const pak = require('@react-native-firebase/crashlytics/package.json');
|
12
|
-
exports.default = config_plugins_1.createRunOncePlugin(withRnFirebaseCrashlytics, pak.name, pak.version);
|
12
|
+
exports.default = (0, config_plugins_1.createRunOncePlugin)(withRnFirebaseCrashlytics, pak.name, pak.version);
|