Skip to content

Releases: getsentry/sentry-javascript

2.3.0

28 Mar 20:26
Compare
Choose a tag to compare
  • NEW: pathStrip option now available in React Native plugin. See: #515
  • BUGFIX: Handle stacks from internal exceptions sometimes thrown by Firefox. See: #536
  • BUGFIX: Better error message strings in browsers w/ limited onerror implementations. See: #538

2.2.1

16 Mar 20:11
Compare
Choose a tag to compare
  • BUGFIX: Fix HTTP requests not sending with React Native on Android devices. See: #526
  • BUGFIX: Raven.js now captures stack traces caused by Firefox internal errors. See: #528

2.2.0

03 Mar 19:45
Compare
Choose a tag to compare
  • NEW: allowSecretKey configuration option. See: #525
  • NEW: Console plugin can be configured to capture specific log levels. See: #514
  • CHANGE: React Native plugin now calls default exception handler. See: #492
  • CHANGE: React Native plugin now uses HTTP POST transport. See: #494
  • BUGFIX: Fix Raven throwing exception when run via Webdriver. See: #495

2.1.1

09 Feb 01:44
Compare
Choose a tag to compare
  • BUGFIX: Fixed IE8 regression introduced in 2.1.0. See: #498
  • BUGFIX: Fixed initialization error when run via Selenium. See: #495

2.1.0

20 Jan 22:14
Compare
Choose a tag to compare
  • 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

12 Jan 21:59
Compare
Choose a tag to compare
  • BUGFIX: Fixed exception thrown by React Native plugin. See: #468
  • BUGFIX: Fixed "pre-built JavaScript" warning when loading Raven.js via Webpack: #465

2.0.4

12 Jan 02:29
Compare
Choose a tag to compare
  • BUGFIX: Fixed bug where Raven.VERSION was not set when required as a CommonJS module.

2.0.2

09 Jan 00:56
Compare
Choose a tag to compare
  • BUGFIX: Fixed bug where wrapped requestAnimationFrame didn't return callback ID. See: #460

2.0.1

04 Jan 21:34
Compare
Choose a tag to compare
  • BUGFIX: Fixed bug where unwrapped errors might be suppressed. See: #447

2.0.0

28 Dec 21:39
Compare
Choose a tag to compare

NOTE: raven-js 2.x requires Sentry 8

  • CHANGE: Default HTTP transport changed from Image GET to XMLHttpRequest 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)