Skip to content

deps: bump uuid, @rspack/cli, @rspack/dev-server and @sentry/webpack-plugin in /frontend#7572

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/frontend/multi-3a300f86db
Open

deps: bump uuid, @rspack/cli, @rspack/dev-server and @sentry/webpack-plugin in /frontend#7572
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/frontend/multi-3a300f86db

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 21, 2026

Removes uuid. It's no longer used after updating ancestor dependencies uuid, @rspack/cli, @rspack/dev-server and @sentry/webpack-plugin. These dependencies need to be updated together.

Removes uuid

Updates @rspack/cli from 1.7.11 to 2.0.4

Release notes

Sourced from @​rspack/cli's releases.

v2.0.4

Highlights 💡

  • Inline const with module declarations (#14032): Previously, Rspack only inlined constant exports from leaf modules in the module graph. Now constant exports from any module can be inlined, even when that module also imports or re-exports other modules. In rare circular-reference cases this can make a TDZ error disappear, but we do not expect real projects to rely on TDZ errors, so Rspack prioritizes the optimization.

    // constants.js
    import './setup';
    export const ENABLE_EXPERIMENT = false;
    // entry.js
    import { ENABLE_EXPERIMENT } from './constants';
    if (ENABLE_EXPERIMENT) {
    runExperiment();
    }
    // Before: constants.js is not a leaf module, so the branch could keep
    // reading the imported binding.
    if (ENABLE_EXPERIMENT) {
    runExperiment();
    }
    // Now: the constant can still be inlined, so dead branches are easier
    // to remove.
    if (false) {
    runExperiment();
    }

  • Tree shake namespace default reexport (#13980): Previously, the import * as a from './a'; export default a; pattern did not tree-shake a through the default export. Now Rspack further analyzes the default-exported namespace object and can remove unused exports from the original namespace module.

    // a.js
    export function used() {}
    export function unused() {}
    // bridge.js
    import * as a from './a';
    export default a;
    // app.js
    import a from './bridge';
    a.used();
    // Before: both used and unused could be kept in the bundle.
    // Now: unused can be tree-shaken.

... (truncated)

Commits

Updates @rspack/dev-server from 1.2.1 to 2.0.1

Release notes

Sourced from @​rspack/dev-server's releases.

v2.0.1

What's Changed

Full Changelog: rstackjs/rspack-dev-server@v2.0.0...v2.0.1

v2.0.0

Notable Changes

@rspack/dev-server v2 is designed for Rspack v2.

See the Migration Guide (v1 -> v2) for more details.

What's Changed

Breaking changes

Features

Bugfixes

... (truncated)

Commits
  • 39c998e chore: release v2.0.1
  • f1cb953 fix: bundle ws types in declarations (#209)
  • 082dffe chore(deps): update dependency @​hono/node-server to v2 (#208)
  • c2c65ae chore(deps): update all non-major dependencies (#207)
  • 5054863 chore(deps): update dependency @​rspack/plugin-react-refresh to v2 (#195)
  • 060cf0e chore(deps): update all non-major dependencies (#203)
  • c80a9c3 chore(deps): update @​rslint/core to v0.5.0 (#205)
  • d6f34d9 release: v2.0.0 (#201)
  • 42214b2 docs: update http-proxy-middleware migration version (#202)
  • ca33b81 feat(deps)!: bump http-proxy-middleware to 4.0.0-beta.3 (#200)
  • Additional commits viewable in compare view

Updates @sentry/webpack-plugin from 2.22.7 to 5.3.0

Release notes

Sourced from @​sentry/webpack-plugin's releases.

5.3.0

New Features ✨

  • (babel) Auto-inject sentry-label from static text children by @​antonis in #925

Bug Fixes 🐛

Internal Changes 🔧

5.2.1

Bug Fixes 🐛

  • (webpack) Await source map deletion before signaling build completion by @​andreiborza in #918

Internal Changes 🔧

5.2.0

New Features ✨

Bug Fixes 🐛

Internal Changes 🔧

... (truncated)

Changelog

Sourced from @​sentry/webpack-plugin's changelog.

5.3.0

New Features ✨

  • (babel) Auto-inject sentry-label from static text children by @​antonis in #925

Bug Fixes 🐛

Internal Changes 🔧

5.2.1

Bug Fixes 🐛

  • (webpack) Await source map deletion before signaling build completion by @​andreiborza in #918

Internal Changes 🔧

5.2.0

New Features ✨

Bug Fixes 🐛

Internal Changes 🔧

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

…plugin

Removes [uuid](https://github.com/uuidjs/uuid). It's no longer used after updating ancestor dependencies [uuid](https://github.com/uuidjs/uuid), [@rspack/cli](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack-cli), [@rspack/dev-server](https://github.com/rstackjs/rspack-dev-server) and [@sentry/webpack-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins). These dependencies need to be updated together.


Removes `uuid`

Updates `@rspack/cli` from 1.7.11 to 2.0.4
- [Release notes](https://github.com/web-infra-dev/rspack/releases)
- [Commits](https://github.com/web-infra-dev/rspack/commits/v2.0.4/packages/rspack-cli)

Updates `@rspack/dev-server` from 1.2.1 to 2.0.1
- [Release notes](https://github.com/rstackjs/rspack-dev-server/releases)
- [Commits](rstackjs/rspack-dev-server@v1.2.1...v2.0.1)

Updates `@sentry/webpack-plugin` from 2.22.7 to 5.3.0
- [Release notes](https://github.com/getsentry/sentry-javascript-bundler-plugins/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript-bundler-plugins@2.22.7...5.3.0)

---
updated-dependencies:
- dependency-name: uuid
  dependency-version:
  dependency-type: indirect
- dependency-name: "@rspack/cli"
  dependency-version: 2.0.4
  dependency-type: direct:production
- dependency-name: "@rspack/dev-server"
  dependency-version: 2.0.1
  dependency-type: direct:production
- dependency-name: "@sentry/webpack-plugin"
  dependency-version: 5.3.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file front-end Issue related to the React Front End Dashboard labels May 21, 2026
@dependabot dependabot Bot requested a review from a team as a code owner May 21, 2026 20:10
@dependabot dependabot Bot requested review from kyle-ssg and removed request for a team May 21, 2026 20:10
@dependabot dependabot Bot added front-end Issue related to the React Front End Dashboard dependencies Pull requests that update a dependency file labels May 21, 2026
@vercel
Copy link
Copy Markdown

vercel Bot commented May 21, 2026

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

Project Deployment Actions Updated (UTC)
flagsmith-frontend-preview Error Error May 21, 2026 8:10pm
flagsmith-frontend-staging Error Error May 21, 2026 8:10pm
1 Skipped Deployment
Project Deployment Actions Updated (UTC)
docs Ignored Ignored Preview May 21, 2026 8:10pm

Request Review

Copy link
Copy Markdown

@claude claude Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Claude Code Review

This repository is configured for manual code reviews. Comment @claude review to trigger a review and subscribe this PR to future pushes, or @claude review once for a one-time review.

Tip: disable this comment in your organization's Code Review settings.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file front-end Issue related to the React Front End Dashboard

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants