npm bugsnag-react-native 2.10.0
v2.10.0

latest releases: 2.23.10, 2.23.9, 2.23.8...
5 years ago

This release alters the behaviour of the notifier to track sessions automatically.
A session will be automatically captured on each app launch and sent to https://sessions.bugsnag.com.

If you use Bugsnag On-Premise, it is recommended that you set your notify and session endpoints
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:

Configuration config = new Configuration("your-api-key-here");
config.setEndpoints("https://notify.example.com", "https://sessions.example.com");
BugsnagReactNative.start(this, config);
BugsnagConfiguration *config = [BugsnagConfiguration new];
[config setEndpointsForNotify:@"http://notify.example.com"
                     sessions:@"http://sessions.example.com"];
[BugsnagReactNative startWithConfiguration:config];
  • Upgrade bugsnag-android to v4.5.0:

    • Enable automatic session tracking by default #314
    • Trim long stacktraces to max limit of 200 #324
  • Upgrade bugsnag-cocoa to v5.16.0:

    • Enable automatic session tracking by default #286
    • Handle potential nil content value in RegisterErrorData class #289

Bug fixes

  • (android) Reduce gratutious android logging
    #245

Don't miss a new bugsnag-react-native release

NewReleases is sending notifications on new releases.