Releases: getsentry/sentry-javascript-bundler-plugins
2.0.0
Version 2.0.0 marks the official release of the @sentry/vite-plugin
, @sentry/esbuild-plugin
and @sentry/rollup-plugin
packages.
They are now considered stable.
For the @sentry/webpack-plugin
this is a major release with breaking changes.
Please refer to the migration guide for instructions on how to upgrade.
- feat(core): Add
deleteFilesAfterUpload
option (#244) - feat(core): Implements rewrite sources for debug ID upload (#243)
- fix(core): Account for undefined release name values (#251)
- fix(webpack): Inject different debug IDs for different bundles (#242)
- ref(core): Add new options type for future use (#216)
- ref(core): Extract debug ID injection into separate plugins (#230)
- ref(core): Extract debug ID sourcemap upload into a separate plugin (#231)
- ref(core): Extract release injection into separate plugins (#218)
- ref(core): Extract release management into a separate plugin (#232)
- ref(core): Extract telemetry into a separate plugin (#234)
- ref(core): Switch to v2 options (#237)
- ref(core): Use debug ID as filename for upload (#247)
- ref(core): Use factory function to create individual plugins (#229)
- ref: Remove
injectReleasesMap
option (#236)
2.0.0-alpha.7
This is an alpha release.
0.7.2
0.7.1
0.7.0
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/**",
},
});
0.6.0
0.5.1
- fix(core): Skip all transformations for 3rd party modules
0.5.0
- feat(core): Add
injectRelease
anduploadSourceMaps
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
No changes.
2.0.0-alpha.0
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.