Skip to content

Releases: torusresearch/loglevel-sentry

v4.0.0

06 Jun 03:42
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.0.0...v4.0.0

v3.0.0

20 May 01:39
Compare
Choose a tag to compare

What's Changed

Drop Node.js 12 support

Full Changelog: v2.7.2...v3.0.0

v2.7.2

15 Dec 07:25
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.7.1...v2.7.2

v2.7.1

08 Jul 10:00
Compare
Choose a tag to compare

Update deps

v2.7.0

02 Jun 11:22
Compare
Choose a tag to compare
  • Update exports

v2.6.0

02 Jun 09:54
Compare
Choose a tag to compare
  • Add redactBreadcrumbData util.
  • Deprecate redactData, replace with redactEventData to avoid naming confusion.

v2.4.0

11 May 10:14
Compare
Choose a tag to compare

The following changes have been made in this release:

  • Start using webpack 5
  • Use sentry as peer deps cause they keep making breaking ts changes in patch releases
  • Update lint-staged + husky
  • Fix lint
  • Update deps

v2.3.2

30 Apr 10:49
Compare
Choose a tag to compare

Update deps

v2.3.1

28 Apr 10:33
Compare
Choose a tag to compare

Update deps

v2.3.0

26 Jan 10:22
Compare
Choose a tag to compare

Previous version creates a new Hub for every new instance of the plugin, which separates the information/scope of reported events from Sentry platform implementation (@sentry/vue, @sentry/node, etc). This version uses minimal Sentry platform interface instead of creating a new one from Client, which allows users to input their Sentry platform instances.

import * as Sentry from "@sentry/vue";
// import * as Sentry from "@sentry/node";

const plugin = new LoglevelSentryPlugin(Sentry);
plugin.install(logger);