Skip to content

Releases: torusresearch/loglevel-sentry

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);

v2.2.1

26 Jan 06:14
Compare
Choose a tag to compare
  • Fix error when input logger has no name.

v2.2.0

26 Jan 03:28
Compare
Choose a tag to compare
  • Fix unusable named exports.

v2.1.0

25 Jan 10:12
Compare
Choose a tag to compare

Features

  • Improved error translation from log.error to Sentry.captureException.
  • Add utils createLogger and redactData.

v2.0.0

25 Jan 05:20
Compare
Choose a tag to compare

Allow using platform-agnostic Sentry client.

Breaking changes:

  • LoglevelSentry requires a Sentry Client instead of BrowserOptions.

v1.0.1

15 Jan 09:47
Compare
Choose a tag to compare

Initial release