Skip to content

Commit

Permalink
Release v2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kattrali committed Jan 29, 2018
1 parent 89bb4b6 commit 9c54fc3
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 3 deletions.
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,47 @@
Changelog
=========

## 2.9.0 (2018-01-26)

This release includes features and fixes to the native interface.

### Enhancements

* Allow disabling of breadcrumbs via the `Configuration` object via the JS
interface
* Upgrade bugsnag-android to v4.3.1:
- *Enhancements:*
- Move capture of thread stacktraces to start of notify process
- Add configuration option to disable automatic breadcrumb capture
- Parse manifest meta-data for Session Auto-Capture boolean flag
- *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)-
* Upgrade bugsnag-cocoa to v5.15.3:
- *Bug Fixes:*
- Remove chatty logging from session tracking
[#231](https://github.com/bugsnag/bugsnag-cocoa/pull/231)
[Jamie Lynch](https://github.com/fractalwrench)
- Re-add API key to payload body to preserve backwards compatibility with older
versions of the error reporting API
[#232](https://github.com/bugsnag/bugsnag-cocoa/pull/232)
[Jamie Lynch](https://github.com/fractalwrench)
- Fix crash in iPhone X Simulator when reporting user exceptions
[#234](https://github.com/bugsnag/bugsnag-cocoa/pull/234)
[Paul Zabelin](https://github.com/paulz)
- Improve capture of Swift assertion error messages on arm64 devices, inserting
the assertion type into the report's `errorClass`
[#235](https://github.com/bugsnag/bugsnag-cocoa/pull/235)
- Fix default user/device ID generation on iOS devices
- Fix mach exception detection

## 2.8.0 (2018-01-09)

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Bugsnag exception reporter for React Native
[![Documentation](https://img.shields.io/badge/documentation-2.8.0-blue.svg)](http://docs.bugsnag.com/platforms/react-native/)
[![Documentation](https://img.shields.io/badge/documentation-2.9.0-blue.svg)](http://docs.bugsnag.com/platforms/react-native/)

Automatic [React Native error 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.

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
minSdkVersion 16
targetSdkVersion 23
versionCode 4
versionName '2.8.0'
versionName '2.9.0'
}
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.0",
"version": "2.9.0",
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit 9c54fc3

Please sign in to comment.