@react-native-firebase/crashlytics 15.0.0 → 15.2.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +16 -0
- package/RNFBCrashlytics.podspec +1 -0
- package/android/build.gradle +0 -4
- package/lib/version.js +1 -1
- package/package.json +3 -3
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
|
+
# [15.2.0](https://github.com/invertase/react-native-firebase/compare/v15.1.1...v15.2.0) (2022-07-21)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/crashlytics
|
9
|
+
|
10
|
+
## [15.1.1](https://github.com/invertase/react-native-firebase/compare/v15.1.0...v15.1.1) (2022-06-28)
|
11
|
+
|
12
|
+
### Bug Fixes
|
13
|
+
|
14
|
+
- **ios, crashlytics:** depend on FirebaseCoreExtension ([#6352](https://github.com/invertase/react-native-firebase/issues/6352)) ([ea0ffe0](https://github.com/invertase/react-native-firebase/commit/ea0ffe06e7c6182bf38b18e9d6ca00c388ec6893)), closes [/github.com/invertase/react-native-firebase/issues/6322#issuecomment-1168902482](https://github.com//github.com/invertase/react-native-firebase/issues/6322/issues/issuecomment-1168902482)
|
15
|
+
|
16
|
+
# [15.1.0](https://github.com/invertase/react-native-firebase/compare/v15.0.0...v15.1.0) (2022-06-28)
|
17
|
+
|
18
|
+
### Features
|
19
|
+
|
20
|
+
- **android, sdk:** use firebase-android-sdk 30.2.0 ([66e6fb0](https://github.com/invertase/react-native-firebase/commit/66e6fb0885c4f2885aeec140a9c0655a5eedd8df))
|
21
|
+
|
6
22
|
# [15.0.0](https://github.com/invertase/react-native-firebase/compare/v14.11.1...v15.0.0) (2022-06-20)
|
7
23
|
|
8
24
|
### Bug Fixes
|
package/RNFBCrashlytics.podspec
CHANGED
@@ -36,6 +36,7 @@ Pod::Spec.new do |s|
|
|
36
36
|
|
37
37
|
# Firebase dependencies
|
38
38
|
s.dependency 'Firebase/Crashlytics', firebase_sdk_version
|
39
|
+
s.dependency 'FirebaseCoreExtension', firebase_sdk_version
|
39
40
|
|
40
41
|
if defined?($RNFirebaseAsStaticFramework)
|
41
42
|
Pod::UI.puts "#{s.name}: Using overridden static_framework value of '#{$RNFirebaseAsStaticFramework}'"
|
package/android/build.gradle
CHANGED
@@ -34,7 +34,6 @@ def firebaseBomVersion = appPackageJson['sdkVersions']['android']['firebase']
|
|
34
34
|
def jsonMinSdk = appPackageJson['sdkVersions']['android']['minSdk']
|
35
35
|
def jsonTargetSdk = appPackageJson['sdkVersions']['android']['targetSdk']
|
36
36
|
def jsonCompileSdk = appPackageJson['sdkVersions']['android']['compileSdk']
|
37
|
-
def jsonBuildTools = appPackageJson['sdkVersions']['android']['buildTools']
|
38
37
|
def coreVersionDetected = appPackageJson['version']
|
39
38
|
def coreVersionRequired = packageJson['peerDependencies'][appPackageJson['name']]
|
40
39
|
// Only log after build completed so log warning appears at the end
|
@@ -51,9 +50,6 @@ project.ext {
|
|
51
50
|
minSdk : jsonMinSdk,
|
52
51
|
targetSdk : jsonTargetSdk,
|
53
52
|
compileSdk: jsonCompileSdk,
|
54
|
-
// optional as gradle.buildTools comes with one by default
|
55
|
-
// overriding here though to match the version RN uses
|
56
|
-
buildTools: jsonBuildTools
|
57
53
|
],
|
58
54
|
|
59
55
|
firebase: [
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '15.
|
2
|
+
module.exports = '15.2.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/crashlytics",
|
3
|
-
"version": "15.
|
3
|
+
"version": "15.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": "lib/index.js",
|
@@ -29,7 +29,7 @@
|
|
29
29
|
"crashlytics"
|
30
30
|
],
|
31
31
|
"peerDependencies": {
|
32
|
-
"@react-native-firebase/app": "15.
|
32
|
+
"@react-native-firebase/app": "15.2.0"
|
33
33
|
},
|
34
34
|
"dependencies": {
|
35
35
|
"@expo/config-plugins": "^4.1.5",
|
@@ -38,5 +38,5 @@
|
|
38
38
|
"publishConfig": {
|
39
39
|
"access": "public"
|
40
40
|
},
|
41
|
-
"gitHead": "
|
41
|
+
"gitHead": "8fb859fb000d5c2c6bbb81dffc685e94ef1ba350"
|
42
42
|
}
|