Skip to content

Releases: getsentry/sentry-javascript-bundler-plugins

0.7.0

17 Apr 10:54
Compare
Choose a tag to compare

This release introduces the sourcemaps option. This option switches to a new system of handling source maps in Sentry.

While the old system is still available via the include option, the recommended way forward is the sourcemaps option.

You can configure the sourcemaps option as follows:

plugin({
  org: "Your organization",
  project: "Your project",
  authToken: "Your auth token",

  sourcemaps: {
    // Specify the directory containing build artifacts
    assets: "./dist/**",
  },
});
  • feat(esbuild): Add debug ID injection for esbuild (#202)
  • feat: Promote debug ID uploading to stable via sourcemaps option (#204)
  • fix(core): Also do debug ID injection for .cjs files (#203)
  • fix: Add typing exports to packages (#208)

0.6.0

11 Apr 08:22
Compare
Choose a tag to compare
  • feat(webpack): Add debug ID injection to the webpack plugin (#198)
  • fix(core): Don't exclude release injection module (#200)
  • ref(core): Don't interact with Sentry in watch-mode (#199)

Work in this release contributed by @hakubo. Thank you for your contribution!

0.5.1

06 Apr 08:29
Compare
Choose a tag to compare
  • fix(core): Skip all transformations for 3rd party modules

0.5.0

05 Apr 15:17
Compare
Choose a tag to compare
  • feat(core): Add injectRelease and uploadSourceMaps options (#190)
  • feat(core): Add experimental debug ID based source map upload to Rollup and Vite plugins (#192)
  • feat(core): Import release injection code from each module (#188)
  • feat: Add _experiments.injectBuildInformation option (#176)
  • feat: Add sentryCliBinaryExists function (#171)

Work in this release contributed by @alexandresoro and @dcyou. Thank you for your contributions!

2.0.0-alpha.1

19 Jan 14:52
Compare
Choose a tag to compare
2.0.0-alpha.1 Pre-release
Pre-release

No changes.

2.0.0-alpha.0

19 Jan 14:17
Compare
Choose a tag to compare
2.0.0-alpha.0 Pre-release
Pre-release

No changes.

Note: This release is the first release of the @sentry/webpack-plugin from the Sentry JavaScript Bundler Plugins repository with the new unplugin-based architecture.

If you're updating from @sentry/webpack-plugin version 1.x, please take a look at the migration guide to learn more about breaking changes.

0.4.0

19 Jan 12:57
Compare
Choose a tag to compare

This release contains breaking changes. Please refer to the migration guide on how to update from version 0.3.x to 0.4.x.

  • deps(core): Bump unplugin version (#164)
  • ref(core): Only inject release into entrypoints per default (#166) (BREAKING)
  • ref: Remove customHeader option (#167) (BREAKING)
  • ref: Turn default exports into named exports (#165) (BREAKING)

Work in this release contributed by @manniL. Thank you for your contribution!

0.3.0

12 Dec 15:13
Compare
Choose a tag to compare

Note: This release bumps the @sentry/cli dependency from version 1.x to version 2.x.

  • feat(core): Add headers option (#153)

Work in this release contributed by @robertcepa. Thank you for your contribution!

0.2.4

07 Dec 11:35
Compare
Choose a tag to compare
  • build(core): Update magic-string due to deprecated dependency (#146)
  • ref(core): Send project as dist in telemetry (#148)

Work in this release contributed by @jperelli. Thank you for your contribution!

0.2.3

29 Nov 12:27
Compare
Choose a tag to compare
  • fix: Exclude node_modules from release injection (#143)