Skip to content
This repository was archived by the owner on Sep 14, 2020. It is now read-only.

Commit c269a51

Browse files
committed
add changelog for 2.10.0
1 parent d790868 commit c269a51

1 file changed

Lines changed: 27 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,34 @@
11
Changelog
22
=========
33

4+
## 2.10.0 (2018-07-03)
45

5-
## TBD
6+
This release alters the behaviour of the notifier to track sessions automatically.
7+
A session will be automatically captured on each app launch and sent to [https://sessions.bugsnag.com](https://sessions.bugsnag.com).
8+
9+
If you use Bugsnag On-Premise, it is recommended that you set your notify and session endpoints
10+
via `config.setEndpoints(String notify, String sessions)` on Android, and `config.setEndpoints(notify:sessions:)` on iOS. You should also initialise the Android/iOS components by passing a `config` parameter:
11+
12+
```java
13+
Configuration config = new Configuration("your-api-key-here");
14+
config.setEndpoints("https://notify.example.com", "https://sessions.example.com");
15+
BugsnagReactNative.start(this, config);
16+
```
17+
18+
```objc
19+
BugsnagConfiguration *config = [BugsnagConfiguration new];
20+
[config setEndpointsForNotify:@"http://notify.example.com"
21+
sessions:@"http://sessions.example.com"];
22+
[BugsnagReactNative startWithConfiguration:config];
23+
```
24+
25+
* Upgrade bugsnag-android to v4.5.0:
26+
* Enable automatic session tracking by default [#314](https://github.com/bugsnag/bugsnag-android/pull/314)
27+
* Trim long stacktraces to max limit of 200 [#324](https://github.com/bugsnag/bugsnag-android/pull/324)
28+
29+
* Upgrade bugsnag-cocoa to v5.16.0:
30+
* Enable automatic session tracking by default [#286](https://github.com/bugsnag/bugsnag-cocoa/pull/286)
31+
* Handle potential nil content value in RegisterErrorData class [#289](https://github.com/bugsnag/bugsnag-cocoa/pull/289)
632
733
### Bug fixes
834

0 commit comments

Comments
 (0)