bugsnag-js
Advanced tools
Changelog
4.7.3 (2018-08-01)
Breadcrumb
TypeScript definitionChangelog
4.7.2 (2018-06-18)
Changelog
4.7.1 (2018-06-04)
This release fixes a couple of bugs with stacktrace parsing.
Changelog
4.7.0 (2018-05-31)
Note: this release alters the behaviour of the notifier to track sessions automatically.
As part of this change, the way in which URLs are configured has been updated:
- endpoint: 'https://bugsnag-notify.example.com',
- sessionEndpoint: 'https://bugsnag-sessions.example.com',
+ endpoints: {
+ notify: 'https://bugsnag-notify.example.com',
+ sessions: 'https://bugsnag-sessions.example.com'
+ }
endpoints
and sessionEndpoints
are now deprecated but still supported. Note that session tracking
will be disabled if the notify endpoint is configured but the sessions endpoint is not – this is to
avoid inadvertently sending session payloads to the wrong server.
autoCaptureSessions
default value was false
and is now true (#341)endpoint
and sessionEndpoints
have been deprecated and combined into a single new option: endpoints
(#341)e2e
test suite has been removed (#351)Changelog
4.6.3 (2018-05-10)
network
-> request
). Fixes network breadcrumbs not displaying in the dashboard. (#348)Changelog
4.6.2 (2018-05-08)
The previous version (v4.6.1) was removed from the npm registry and the CDN because of critical issue surrounding history state methods. This release resolves that issue. The release notes for v4.6.1 are included here too for completeness.
url
parameter to history methods when it is not undefined
. Fixes a bug in IE11 where it converts undefined
to a string, causing a redirect to /undefined
. (#342)history.state
. (#345)