Skip to content

1.2.0

Compare
Choose a tag to compare
@mattrobenolt mattrobenolt released this 24 Oct 23:52
· 9356 commits to develop since this release
  • 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, and transport option to config. Docs: https://docs.getsentry.com/hosted/clients/javascript/config/
  • CHANGE: Always expose Raven to window. Please call Raven.noConflict() if you want it restored to what it was. See: #393
  • DEPRECATED: Replace Raven.setReleaseContext with Raven.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.