From 1c3515bb7ebbfeb505e75539d6aebdb1fa4d9b0e Mon Sep 17 00:00:00 2001 From: fractalwrench Date: Wed, 10 Jul 2019 14:07:16 +0100 Subject: [PATCH] update bugsnag-android to v4.16.1 --- CHANGELOG.md | 18 ++++++++++++++++++ README.md | 2 +- android/build.gradle | 4 ++-- package.json | 2 +- 4 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e092be2..dd769d78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,24 @@ Changelog ========= +## 2.22.0 (2019-07-10) + +This release adds a compile-time dependency on the Kotlin standard library. This should not affect +the use of any API supplied by bugsnag-android/bugsnag-react-native. + +* (Android) Upgrade to bugsnag-android v4.16.1 + * Prevent overwrite of signal mask when installing ANR handler + [#520](https://github.com/bugsnag/bugsnag-android/pull/520) + * Use NetworkCallback to monitor connectivity changes on newer API levels + [#501](https://github.com/bugsnag/bugsnag-android/pull/501) + * Send minimal error report if cached file is corrupted/empty + [#500](https://github.com/bugsnag/bugsnag-android/pull/500) + * Fix abort() in native code when storing breadcrumbs with null values in + metadata + [#510](https://github.com/bugsnag/bugsnag-android/pull/510) + * Convert metadata to map when notifying the NDK observer + [#513](https://github.com/bugsnag/bugsnag-android/pull/513) + ## 2.21.1 (2019-06-27) ### Bug fixes diff --git a/README.md b/README.md index 154e9e1e..9e6bf0aa 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Bugsnag error monitoring & exception reporter for React Native -[![Documentation](https://img.shields.io/badge/documentation-2.21.1-blue.svg)](http://docs.bugsnag.com/platforms/react-native/) +[![Documentation](https://img.shields.io/badge/documentation-2.22.0-blue.svg)](http://docs.bugsnag.com/platforms/react-native/) Automatic [React Native crash reporting](https://www.bugsnag.com/platforms/react-native-error-reporting/) with Bugsnag helps you detect both native OS and JavaScript errors in your React Native apps. diff --git a/android/build.gradle b/android/build.gradle index d7f8a9ba..2e108ded 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -12,7 +12,7 @@ android { minSdkVersion safeExtGet('minSdkVersion', 16) targetSdkVersion safeExtGet('targetSdkVersion', 26) versionCode 4 - versionName '2.21.1' + versionName '2.22.0' consumerProguardFiles 'proguard-rules.pro' } lintOptions { @@ -23,7 +23,7 @@ android { } dependencies { - api 'com.bugsnag:bugsnag-android:4.15.0' + api 'com.bugsnag:bugsnag-android:4.16.1' implementation 'com.facebook.react:react-native:+' } diff --git a/package.json b/package.json index 143c1e1a..afec7116 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "homepage": "https://www.bugsnag.com/platforms/react-native-error-reporting/", "repository": "https://github.com/bugsnag/bugsnag-react-native.git", "bugs": "https://github.com/bugsnag/bugsnag-react-native/issues", - "version": "2.21.1", + "version": "2.22.0", "license": "MIT", "main": "index.js", "types": "index.d.ts",