Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Releases: getsentry/raven-node

Version 1.1.4

07 Mar 00:59
Compare
Choose a tag to compare
  • Use util.format to get message string in console instrumentation [See #289]

Version 1.1.3

27 Feb 19:27
Compare
Choose a tag to compare
  • Add parseUser option to control user parsing behavior [See #274]
  • Make http instrumentation use req.emit instead of response event handler [See #276]
  • Add alert about raven-node vs raven-js when it seems like a browser env [See #277]

1.1.2

09 Feb 02:53
Compare
Choose a tag to compare
  • Send kwargs to shouldSendCallback [See #251]
  • Capture breadcrumbs from global context [See #267]
  • Make stack parsing native-frame-check work on Windows paths [See #268]
  • Bind req/res to context domain in express requestHandler [See #269]
  • Fix postgres/pg name mismatch [See #270]

1.1.1

19 Jan 22:28
Compare
Choose a tag to compare
  • Fix middleware backwards compatibility [See #246]

1.1.0

13 Dec 11:26
Compare
Choose a tag to compare

See our forum post for details.

  • Added support for (automatic) breadcrumbs [See #240]
    • Raven.captureBreadcrumb manual method
    • autoBreadcrumbs config field to automatically capture breadcrumbs for:
      • console logs
      • http requests
      • postgres queries
  • Deprecate captureQuery [See #239]

1.0.0

13 Dec 11:25
Compare
Choose a tag to compare

See our forum post for details.

  • Raven.config(...) instead of new raven.Client(...)
  • Raven.install() instead of client.patchGlobal()
  • The callback to Raven.captureException now fires after transmission [See #217]
  • Added captureUnhandledRejections option for Promise rejections
  • Introduced contexts and associated set/merge/getContext methods [See #207]
  • Added shouldSendCallback config option and set*Callback methods [See #220]
  • Added intercept() method [See #225]
  • Backwards compatibility was mostly maintained, but lots of stuff was deprecated
    • We'll print console messages if you're doing anything the old way
    • We'll also print console messages in certain situations where behavior might be surprising, like if no DSN is configured
    • You can disable these alerts with Raven.disableConsoleAlerts();

0.12.3

22 Nov 01:01
Compare
Choose a tag to compare
  • Replaces deprecated node-uuid@1.4.7 dependency with uuid@3.0.0 [See #236]

0.12.2

18 Nov 19:20
Compare
Choose a tag to compare
  • Check if require.main.filename is defined before passing to path.dirname [See #233]
  • Add colno property to report column number from stack trace [See #235]

v1.0.0 Beta 0

18 Nov 19:22
Compare
Choose a tag to compare
v1.0.0 Beta 0 Pre-release
Pre-release

See our forum post for details.

0.12.0

01 Aug 17:01
Compare
Choose a tag to compare
  • Add environment config option and setRelease method [See #179]
  • No longer passes process.env values [See #182]
  • Connect/Express middleware now attempts to attach req.user as User interface [See #177]
  • Use json-stringify-safe to prevent circular refs [See #182]