Releases: getsentry/sentry-javascript-bundler-plugins
Releases · getsentry/sentry-javascript-bundler-plugins
2.2.2
2.2.1
2.2.0
Work in this release was made possible with help from @wojtekmaj and @dobladov. Thank you for your contributions!
2.1.0
- docs: Add removal of
configFile
option to migration guide (#266) - feat: Auto detect build artifacts (#257)
- fix(core): Ignore query and hash in filepaths for release injection (#272)
- fix(esbuild): Use absolute path for virtual file resolving (#269)
- fix: Don't show log message if telemetry is disabled (#267)
- fix: Use automatic release name detection for release injection (#271)
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/**",
},
});