From b88d3602004bf49450dc9dc8badc78c24798d3c2 Mon Sep 17 00:00:00 2001 From: Delisa Date: Fri, 26 Jan 2018 09:13:10 -0800 Subject: [PATCH] Release v4.3.1 (#236) --- CHANGELOG.md | 16 ++++++++++++++++ gradle.properties | 2 +- .../main/java/com/bugsnag/android/Notifier.java | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2646453ab1..d488adb58e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 4.3.1 (2018-01-26) + +### Bug fixes + +* Fix possible ANR when enabling session tracking via + `Bugsnag.setAutoCaptureSessions()` and connecting to latent networks. + [#231](https://github.com/bugsnag/bugsnag-android/pull/231) + +* Fix invalid payloads being sent when processing multiple Bugsnag events in the + same millisecond + [#235](https://github.com/bugsnag/bugsnag-android/pull/235) + +* Re-add API key to error report HTTP request body to preserve backwards + compatibility with older versions of the error reporting API + [#228](https://github.com/bugsnag/bugsnag-android/pull/228) + ## 4.3.0 (2018-01-18) - Move capture of thread stacktraces to start of notify process diff --git a/gradle.properties b/gradle.properties index 7bfc234a3f..146dff872d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,7 +11,7 @@ org.gradle.jvmargs=-Xmx1536m # This option should only be used with decoupled projects. More details, visit # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true -VERSION_NAME=4.3.0 +VERSION_NAME=4.3.1 GROUP=com.bugsnag POM_SCM_URL=https://github.com/bugsnag/bugsnag-android POM_SCM_CONNECTION=scm:git@github.com:bugsnag/bugsnag-android.git diff --git a/sdk/src/main/java/com/bugsnag/android/Notifier.java b/sdk/src/main/java/com/bugsnag/android/Notifier.java index e73f9417b4..08b3ca0413 100644 --- a/sdk/src/main/java/com/bugsnag/android/Notifier.java +++ b/sdk/src/main/java/com/bugsnag/android/Notifier.java @@ -9,7 +9,7 @@ */ public class Notifier implements JsonStream.Streamable { static final String NOTIFIER_NAME = "Android Bugsnag Notifier"; - static final String NOTIFIER_VERSION = "4.3.0"; + static final String NOTIFIER_VERSION = "4.3.1"; static final String NOTIFIER_URL = "https://bugsnag.com"; private String name; private String version;