Skip to content

Releases: getsentry/sentry-electron

v0.10.1

24 Sep 07:30
Compare
Choose a tag to compare
  • Fix exports, withScope is now available

v0.10.0

21 Sep 20:44
Compare
Choose a tag to compare
  • Updated deps to use @sentry/* ^4.0.0

v0.9.0

06 Sep 11:56
Compare
Choose a tag to compare
  • Updated deps to use @sentry/* 4.0.0-rc.1
  • Fixed #109
  • Fixes #106
  • Fixes #94
  • captureMessage now accepts level as a second parameter.

v0.8.1

01 Aug 12:17
Compare
Choose a tag to compare
  • Updated deps to use @sentry/* 4.0.0-beta.12

v0.8.0

25 Jul 12:10
Compare
Choose a tag to compare
  • Updated deps to use @sentry/* 4.0.0-beta.11
  • Send new SDK identifier sentry.javascript.electron
  • Expose getIntegrations() to retrieve all Integrations

v0.7.0

16 Jul 12:42
Compare
Choose a tag to compare

Breaking Changes:

  • We no longer exit your app by default. Before 0.7.0 we would call
    process.exit(1) after we caught and uncaught error. As of version 0.7.0 we
    no longer change electrons default behaviour which is showing a dialog with
    the error and keep the app alive. If you want to exit the app or do something
    else if a global uncaught error happens you have to set the onFatalError
    option in init like (we will send the error to Sentry before this is called):

    init({
      dsn: 'DSN',
      onFatalError: error => {
        // I really want to crash
        process.exit(1);
      },
    });

v0.6.0

16 Jul 11:22
Compare
Choose a tag to compare

Breaking Changes:

  • We removed set___Context functions, now you can configure the context with:
Sentry.configureScope(scope => {
  scope.setExtra('battery', 0.7);
  scope.setTag('user_mode', 'admin');
  scope.setUser({ id: '4711' });
  // scope.clear();
});

v0.5.5

24 May 21:59
Compare
Choose a tag to compare
  • Add official support for sandbox mode (#84)
  • Fix Webpack use and add instructions to documentation (#84)
  • Fix detection of Linux distributions (#80)

v0.5.4

04 May 09:50
Compare
Choose a tag to compare
  • Support Windows proxy configuration (#76)
  • Invoke shouldSend, beforeSend and afterSend for native crashes (#78)
  • Improve the SDK structure and reduce load times in renderers (#78)

v0.5.3

25 Apr 12:12
Compare
Choose a tag to compare
  • Add breadcrumbs for renderer crashes (#71)