Releases: getsentry/sentry-javascript
Releases · getsentry/sentry-javascript
2.1.0
- BUGFIX: Fixed Raven.js rejecting frames w/ blob URLs. See: #463
- BUGFIX: Fixed plugin files not consumable without module loader. See: #446
- BUGFIX: Fixed bug in console.js plugin where
level
wasn't passed. See: #474 - BUGFIX: Fixed broken debug logging in IE9 and below. See: #473
- BUGFIX: Fixed
XMLHttpRequest
wrapper not capturing all event handlers. See: #453 - CHANGE:
Raven.uninstall
now restores original builtin functions (e.g. setTimeout). See: #228 - CHANGE:
maxMessageLength
now defaults to 0 (no limit). See: #441 - NEW: New
stackTraceLimit
config option (default 50 in supported browsers). See: https://github.com/getsentry/raven-js/pull/419/files - NEW:
Raven.showReportDialog
(experimental). See: #456
2.0.5
2.0.4
- BUGFIX: Fixed bug where Raven.VERSION was not set when required as a CommonJS module.
2.0.2
2.0.1
2.0.0
NOTE: raven-js 2.x requires Sentry 8
- CHANGE: Default HTTP transport changed from
Image
GET toXMLHttpRequest
POST (w/ CORS) - CHANGE: Raven.js now wraps functions passed to timer functions, event listeners, and XMLHttpRequest handlers
- CHANGE: Removed jQuery, Backbone, and native plugins (now handled inside raven.js)
- CHANGE: When using CommonJS, plugins are initialized via
Raven.addPlugin(require('raven-js/plugins/ember'))
- CHANGE: Raven builds are generated using Browserify
- NEW: Integration tests (/test/integration/index.html)
1.3.0
- CHANGE:
console
plugin will now send all arguments as anextra
value. See: #398 - CHANGE: Bump to v7 of the Sentry API spec. This now requires a Sentry 7.7.0+ #403
- CHANGE: Revamp of AngularJS plugin. Please see documentation. See: #405
- CHANGE:
Raven.debug
now defaults tofalse
. dc142b8 - BUGFIX:
Raven.wrap
now correctly preservesprototype
. See: #401 and #402 - NEW:
serverName
config option. #404 - NEW: Experimental support for React Native added.
1.2.0
- BUGFIX: Error in cases where a
document
context doesn't exist. See: #383 - BUGFIX: Trailing comma when using unminified dist which affects IE9. See: #385
- NEW: Add ability to swap in a custom transport. Adds
Raven.setTransport
, andtransport
option to config. Docs: https://docs.getsentry.com/hosted/clients/javascript/config/ - CHANGE: Always expose
Raven
towindow
. Please callRaven.noConflict()
if you want it restored to what it was. See: #393 - DEPRECATED: Replace
Raven.setReleaseContext
withRaven.setRelease
. - NEW: Add
Raven.clearContext()
to empty all of the context. - NEW: Add
Raven.getContext()
to get a copy of the current context. - NEW:
Raven.set{Extra,Tags}Context(ctx)
now merges with existing values instead of overwriting. - NEW: Add
Raven.addPlugin()
to register a plugin to be initialized when installed. - NEW: Plugins are now initialized and loaded when calling
Raven.install()
. This avoid some race conditions with load order.