Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Next release #922

Merged
merged 1 commit into from
Aug 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
# Changelog

## TBD
## 5.0.2 (2020-08-17)

### Bug fixes

#### React Native

The following alterations have been made to support the React Native notifier:

* Split updateMetadata method into two separate add/clear methods
[#918](/~https://github.com/bugsnag/bugsnag-android/pull/918)

* Refactor event deserialiser to ensure unhandled value is retained
[#917](/~https://github.com/bugsnag/bugsnag-android/pull/917)

* Retain unhandled value when parsing a JS event
[#914](/~https://github.com/bugsnag/bugsnag-android/pull/914)

* Prevent duplicate notifier dependencies being added
[#911](/~https://github.com/bugsnag/bugsnag-android/pull/911)

* Attempt delivery of promise rejections immediately
[#912](/~https://github.com/bugsnag/bugsnag-android/pull/912)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import java.io.IOException
*/
class Notifier @JvmOverloads constructor(
var name: String = "Android Bugsnag Notifier",
var version: String = "5.0.1",
var version: String = "5.0.2",
var url: String = "https://bugsnag.com"
) : JsonStream.Streamable {

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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=5.0.1
VERSION_NAME=5.0.2
GROUP=com.bugsnag
POM_SCM_URL=/~https://github.com/bugsnag/bugsnag-android
POM_SCM_CONNECTION=scm:git@github.com:bugsnag/bugsnag-android.git
Expand Down