Releases: torusresearch/loglevel-sentry
Releases · torusresearch/loglevel-sentry
v4.0.0
What's Changed
- updated sentry by @himanshuchawla009 in #18
Use Sentry 7.x
New Contributors
- @himanshuchawla009 made their first contribution in #18
Full Changelog: v3.0.0...v4.0.0
v3.0.0
What's Changed
- Use webpack 5 build by @chaitanyapotti in #17
Drop Node.js 12 support
Full Changelog: v2.7.2...v3.0.0
v2.7.2
What's Changed
- fix: npm versions by @rathishubham7 in #14
- Feat/torus cli by @chaitanyapotti in #15
New Contributors
- @rathishubham7 made their first contribution in #14
Full Changelog: v2.7.1...v2.7.2
v2.7.1
Update deps
v2.7.0
v2.6.0
v2.4.0
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
Update deps
v2.3.1
Update deps
v2.3.0
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);