Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented Jul 23, 2025

This PR contains the following updates:

Package Change Age Confidence
@sentry/webpack-plugin (source) 2.23.04.7.0 age confidence

Release Notes

getsentry/sentry-javascript-bundler-plugins (@​sentry/webpack-plugin)

v4.7.0

Compare Source

  • docs: Add RELEASE.md to document release process (#​834)
  • feat: Combine injection plugins (#​844)
  • fix(plugin-manager): Enable "rejectOnError" in debug (#​837)
  • fix(plugin-manager): Respect sourcemap.ignore values for injecting debugIDs (#​836)
  • fix(vite): Skip HTML injection for MPA but keep it for SPA (#​843)
Internal Changes
  • chore: Use pull_request_target for changelog preview (#​842)
  • ci(release): Switch from action-prepare-release to Craft (#​831)
  • test: Ensure Debug IDs match (#​840)

v4.6.2

Compare Source

  • fix(vite): Ensure sentryVitePlugin always returns an array of plugins (#​832)
  • fix(vite): Skip code injection for HTML facade chunks (#​830)
  • fix(rollup): Prevent double-injection of debug ID (#​827)
  • fix(esbuild): fix debug ID injection when moduleMetadata or applicationKey is set (#​828)

v4.6.1

Compare Source

  • chore(deps): Update glob to 10.5.0 (#​823)
Internal Changes
  • chore(core): Log release output (#​821)

v4.6.0

Compare Source

  • fix(core): Stop awaiting build start telemetry to avoid breaking module federation builds (#​818)
  • feat(core): Bump @​sentry/cli from 2.51.0 to 2.57.0 (#​819)

v4.5.0

Compare Source

  • docs: added info on debug flag value precedence (#​811)
  • feat: add debug statements after sourcemap uploads (#​812)
  • feat(core): Allow multi-project sourcemaps upload (#​813)
  • fix: propagate the debug option to the cli (#​810)

v4.4.0

Compare Source

  • feat(core): Explicitly allow undefined as value for authToken option (#​805)
  • fix(core): Strip query strings from asset paths (#​806)

Work in this release was contributed by @​aiktb. Thank you for your contribution!

v4.3.0

Compare Source

  • feat(core): Extend deploy option to allow opting out of automatic deploy creation (#​801)
  • feat(core): No asset globbing for direct upload (#​800)

v4.2.0

Compare Source

  • feat(core): Add prepareArtifacts option for uploading sourcemaps (#​794)
  • perf: use premove for build clean (#​792)
  • fix(core): Forward headers option to sentry-cli (#​797)

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

v4.1.1

Compare Source

  • fix(react-native): Enhance fragment detection for indirect references (#​767)

v4.1.0

Compare Source

  • feat(deps): Bump @​sentry/cli to 2.51.0 #​786
  • feat(core): Add flag for disabling sourcemaps upload #​785
  • fix(debugId): Add guards for injected code to avoid errors #​783
  • docs(options): Improve JSDoc for options #​781
  • feat(core): Expose method for injecting debug Ids from plugin manager #​784

v4.0.2

Compare Source

  • fix(core): Make moduleMetadata injection snippet ES5-compliant (#​774)

v4.0.1

Compare Source

  • fix(core): Make plugin inject ES5-friendly code (#​770)
  • fix(core): Use renderChunk for release injection for Rollup/Rolldown/Vite (#​761)

Work in this release was contributed by @​grushetsky. Thank you for your contribution!

v4.0.0

Compare Source

Breaking Changes
  • (Type change) Vite plugin now returns VitePlugin type instead of any
  • Deprecated function getBuildInformation has been removed
List of Changes
  • feat(core)!: Remove getBuildInformation export (#​765)
  • feat(vite)!: Update return type of vite plugin (#​728)

v3.6.1

Compare Source

  • fix(core): Observe and handle Sentry CLI sourcemap upload failures (#​763)

v3.6.0

Compare Source

  • feat(core): Don't add debugIdUploadPlugin when sourcemaps option is disabled (#​753)
  • fix(core): Avoid showing success message if upload was disabled or nothing was uploaded (#​757)

v3.5.0

Compare Source

  • feat(core): Add hook to customize source map file resolution (#​732)
  • fix(core): Avoid console output and telemetry init when plugins are disabled (#​741)

Work in this release was contributed by @​thecodewarrior. Thank you for your contribution!

v3.4.0

Compare Source

  • fix: Replace existing debug ID comments (#​730)
  • feat: Expose bundler plugin primitives via createSentryBuildPluginManager (#​714)

v3.3.1

Compare Source

  • fix(webpack5): All esm files must have .mjs postfix (#​721)

v3.3.0

Compare Source

  • feat(webpack): Add @sentry/webpack-plugin/webpack5 export for webpack 5.1+ and compatible environments (#​715)
  • feat: Only do automatic commit association for Vercel production environments (#​711)

v3.2.4

Compare Source

  • Revert "feat(core): Use path instead of debug IDs as artifact names for debug ID upload (#​700)" (#​709)
  • ref: Remove deprecated use of useArtifacBundles (#​707)

v3.2.3

Compare Source

  • feat(core): Use path instead of debug IDs as artifact names for debug ID upload (#​700)
  • feat(webpack): Primarily use contentHash for debug ID hash (#​702)
  • feat: Detect Vercel commits and env (#​694)
  • feat: Default to automatically setting commits on release (#​692)

v3.2.2

Compare Source

  • feat(annotation): Handle JSX member expressions (#​690)
  • fix(core): Don't crash on recoverable CLI command error (#​682)
  • chore: Suggest putting SENTRY_AUTH_TOKEN, SENTRY_ORG and SENTRY_PROJECT in passThroughEnv when using Turborepo (#​675)

v3.2.1

Compare Source

v3.2.0

Compare Source

  • feat(core): Accept and await a promise in sourcemaps.filesToDeleteAfterUpload (#​677)

v3.1.2

Compare Source

  • deps: Bump @sentry/cli to 2.41.1 (#​671)

v3.1.1

Compare Source

  • fix(core): Disable release creation and source maps upload in dev mode (#​666)

    This fix disables any external calls to the Sentry API for managing releases or uploading source maps, when detecting that the plugin is running in dev-mode. While this rarely actually happened,
    it also polluted the dev server output with unnecessary logs about missing auth tokens, which shouldn't
    be required in dev mode.

v3.1.0

Compare Source

  • feat(webpack): Gate forced process exit behind experimental flag (#​663)

v3.0.0

Compare Source

Breaking Changes
  • Injected code will now use let, which was added in ES6 (ES2015).
    This means that ES6 is the minimum JavaScript version that the Sentry bundler plugins support.

  • Deprecated options have been removed:

    • deleteFilesAfterUpload - Use filesToDeleteAfterUpload instead
    • bundleSizeOptimizations.excludePerformanceMonitoring - Use bundleSizeOptimizations.excludeTracing instead
    • _experiments.moduleMetadata - Use moduleMetadata instead
    • cleanArtifacts - Did not do anything
List of Changes
  • fix!: Wrap injected code in block-statement to contain scope (#​646)
  • chore!: Remove deprecated options (#​654)
  • feat(logger): Use console methods respective to log level (#​652)
  • fix(webpack): Ensure process exits when done (#​653)
  • fix: Use correct replacement matcher for bundleSizeOptimizations.excludeTracing (#​644)

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

v2.23.1

Compare Source

  • fix(v2/core): Make moduleMetadata injection code ES5-compliant (#​773)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@vercel
Copy link

vercel bot commented Jul 23, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Review Updated (UTC)
ckb-explorer-frontend-in-magickbase-repo Error Error Jan 19, 2026 4:14pm

Request Review

@renovate renovate bot force-pushed the renovate/sentry-webpack-plugin-4.x branch from 7c6db85 to 2a43fb5 Compare July 25, 2025 12:26
@renovate renovate bot force-pushed the renovate/sentry-webpack-plugin-4.x branch from 2a43fb5 to dda9ea4 Compare July 29, 2025 09:03
@renovate renovate bot force-pushed the renovate/sentry-webpack-plugin-4.x branch from dda9ea4 to f937d1e Compare August 10, 2025 14:35
@renovate renovate bot force-pushed the renovate/sentry-webpack-plugin-4.x branch from f937d1e to 67e137a Compare August 11, 2025 14:05
@renovate renovate bot force-pushed the renovate/sentry-webpack-plugin-4.x branch from 67e137a to ed30ec7 Compare August 13, 2025 14:10
@renovate renovate bot force-pushed the renovate/sentry-webpack-plugin-4.x branch from ed30ec7 to 02a1d42 Compare August 28, 2025 19:12
@renovate renovate bot force-pushed the renovate/sentry-webpack-plugin-4.x branch from 02a1d42 to 930878d Compare September 6, 2025 18:14
@renovate renovate bot force-pushed the renovate/sentry-webpack-plugin-4.x branch from 930878d to d706fd7 Compare September 26, 2025 23:22
@renovate renovate bot force-pushed the renovate/sentry-webpack-plugin-4.x branch from d706fd7 to 3fe485d Compare October 10, 2025 19:54
@renovate renovate bot force-pushed the renovate/sentry-webpack-plugin-4.x branch from 3fe485d to a57033d Compare October 20, 2025 15:07
@renovate renovate bot force-pushed the renovate/sentry-webpack-plugin-4.x branch from a57033d to 79333a0 Compare October 25, 2025 15:59
@renovate renovate bot force-pushed the renovate/sentry-webpack-plugin-4.x branch from 79333a0 to e4c3bdb Compare November 2, 2025 11:35
@renovate renovate bot force-pushed the renovate/sentry-webpack-plugin-4.x branch from e4c3bdb to c15fa14 Compare November 11, 2025 01:36
@renovate renovate bot force-pushed the renovate/sentry-webpack-plugin-4.x branch from c15fa14 to 8deaa16 Compare November 18, 2025 10:10
@renovate renovate bot force-pushed the renovate/sentry-webpack-plugin-4.x branch from 31eaf22 to 99be164 Compare January 19, 2026 16:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant