build(deps): bump webpack-dev-server and @rspack/cli in /shell-ui
Bumps webpack-dev-server to 5.2.2 and updates ancestor dependency @rspack/cli. These dependencies need to be updated together.
Updates webpack-dev-server from 4.13.1 to 5.2.2
Release notes
Sourced from webpack-dev-server's releases.
v5.2.2
5.2.2 (2025-06-03)
Bug Fixes
- "Overlay enabled" false positive (18e72ee)
- do not crush when error is null for runtime errors (#5447) (309991f)
- remove unnecessary header
X_TEST(#5451) (64a6124)- respect the
allowedHostsoption for cross-origin header check (#5510) (03d1214)v5.2.1
5.2.1 (2025-03-26)
Security
- cross-origin requests are not allowed unless allowed by
Access-Control-Allow-Originheader- requests with an IP addresses in the
Originheader are not allowed to connect to WebSocket server unless configured byallowedHostsor it different from theHostheaderThe above changes may make the dev server not work if you relied on such behavior, but unfortunately they carry security risks, so they were considered as fixes.
Bug Fixes
- prevent overlay for errors caught by React error boundaries (#5431) (8c1abc9)
- take the first network found instead of the last one, this restores the same behavior as 5.0.4 (#5411) (ffd0b86)
v5.2.0
5.2.0 (2024-12-11)
Features
- added
getClientEntryandgetClientHotEntrymethods to get clients entries (dc642a8)Bug Fixes
- speed up initial client bundling (145b5d0)
v5.1.0
5.1.0 (2024-09-03)
Features
- add visual progress indicators (a8f40b7)
- added the
appoption to beFunction(by default only withconnectcompatibility frameworks) (3096148)- allow the
serveroption to beFunction(#5275) (02a1c6d)- http2 support for
connectandconnectcompatibility frameworks which support HTTP2 (#5267) (6509a3f)
... (truncated)
Changelog
Sourced from webpack-dev-server's changelog.
5.2.2 (2025-06-03)
Bug Fixes
- "Overlay enabled" false positive (18e72ee)
- do not crush when error is null for runtime errors (#5447) (309991f)
- remove unnecessary header
X_TEST(#5451) (64a6124)- respect the
allowedHostsoption for cross-origin header check (#5510) (03d1214)5.2.1 (2025-03-26)
Security
- cross-origin requests are not allowed unless allowed by
Access-Control-Allow-Originheader- requests with an IP addresses in the
Originheader are not allowed to connect to WebSocket server unless configured byallowedHostsor it different from theHostheaderThe above changes may make the dev server not work if you relied on such behavior, but unfortunately they carry security risks, so they were considered as fixes.
Bug Fixes
- prevent overlay for errors caught by React error boundaries (#5431) (8c1abc9)
- take the first network found instead of the last one, this restores the same behavior as 5.0.4 (#5411) (ffd0b86)
5.2.0 (2024-12-11)
Features
- added
getClientEntryandgetClientHotEntrymethods to get clients entries (dc642a8)Bug Fixes
- speed up initial client bundling (145b5d0)
5.1.0 (2024-09-03)
Features
- add visual progress indicators (a8f40b7)
- added the
appoption to beFunction(by default only withconnectcompatibility frameworks) (3096148)- allow the
serveroption to beFunction(#5275) (02a1c6d)- http2 support for
connectandconnectcompatibility frameworks which support HTTP2 (#5267) (6509a3f)Bug Fixes
... (truncated)
Commits
195a7e6chore(release): 5.2.2620bef1chore(deps): update (#5511)03d1214fix: respect theallowedHostsoption for cross-origin header check (#5510)5ba862echore(deps-dev): bump the dependencies group across 1 directory with 7 update...f7fec94chore: fix typo (#5508)6ee8cd0ci: add Node.js v24 (#5492)d30f963chore: update http-proxy-middleware to ^2.0.9 (#5503)66cf033chore(deps-dev): bump the dependencies group with 2 updates (#5504)4367a5crefactor: use 'String#startsWith' & replace if-then-else (#5501)8e6604fchore(deps): bump the dependencies group across 1 directory with 4 updates (#...- Additional commits viewable in compare view
Updates @rspack/cli from 0.7.5 to 1.0.1
Release notes
Sourced from @rspack/cli's releases.
v1.0.1
💡 Highlights
Improved
create-rspackSupport for the addition of Biome / ESLint / Prettier when creating a new Rspack project:
Improve error logs of serde deserialize error
before:
after:
What's Changed
Performance Improvements ⚡
- perf: source map by
@SyMindin web-infra-dev/rspack#7647Exciting New Features 🎉
- feat(html): improve template parameters by
@LingyuCoderin web-infra-dev/rspack#7686- feat(html): support js template without child compiler by
@LingyuCoderin web-infra-dev/rspack#7704- feat(rspack-cli): support more flags for command serve by
@shulaodain web-infra-dev/rspack#7710- feat(create-rspack): support for linter, formatter and CLI flags by
@chenjiahanin web-infra-dev/rspack#7735- feat(html): support hooks by
@LingyuCoderin web-infra-dev/rspack#7729Bug Fixes 🐞
- fix: use topological order when SideEffectsFlagPlugin optimize incoming connections by
@ahabhgkin web-infra-dev/rspack#7717- fix(core): improve error report when load builtin:swc-loader and buitin:lightningcss-loader by
@hardfistin web-infra-dev/rspack#7700- fix: align ignored module debug comment with webpack by
@fi3eworkin web-infra-dev/rspack#7736- fix: template react logo animation css selector by
@velusgautamin web-infra-dev/rspack#7741- fix: add
in_function_scopefor getters and setters by@CPunisherin web-infra-dev/rspack#7745Document Updates 📖
- docs: Announcing Rspack 1.0 by
@chenjiahanin web-infra-dev/rspack#7682- docs: fix FAQ in the 1.0 announcement by
@chenjiahanin web-infra-dev/rspack#7712- docs: fix type of
devServer.hotby@shulaodain web-infra-dev/rspack#7711- docs: change Dominus Kelvin to Kelvin Omereshone by
@DominusKelvinin web-infra-dev/rspack#7714- docs: remove outdated content from announcing-1-0.mdx by
@chenjiahanin web-infra-dev/rspack#7716- docs(landingpage): extract comps to
@rstack-dev/doc-uiby@SoonIterin web-infra-dev/rspack#7726- docs: correct asset generator filename property type by
@nanianlisaoin web-infra-dev/rspack#7755- docs: disable bundler info injection by set
force: falseby@LingyuCoderin web-infra-dev/rspack#7756Other Changes
- refactor: improve HarmonyAcceptDependency by
@shulaodain web-infra-dev/rspack#7671- refactor: remove ErrorSpan in dependencies by
@shulaodain web-infra-dev/rspack#7674- test(rspack-cli): enable rspack cli command serve basic test case by
@shulaodain web-infra-dev/rspack#7724- chore: add SECURITY.md by
@hardfistin web-infra-dev/rspack#7733- test(infra): improve e2e test stability by
@shulaodain web-infra-dev/rspack#7713- chore: change security report email by
@hardfistin web-infra-dev/rspack#7760
... (truncated)
Commits
d891b66Reelase Packages:1.0.16b8b9b2test(rspack-cli): enable rspack cli command serve basic test case (#7724)24f38a9feat(rspack-cli): support more flags for command serve (#7710)3380c7fRelease Rspack v1.0.0 🎉 (#7691)4757b35release: 1.0.0-rc.2 (#7708)d266313feat: support"loose-unrecognized-keys"for config validation (#7705)07f0c77release: 1.0.0-rc.1 (#7678)cc6ea23fix(cli): peerDep allows@rspack/core@1.0 (#7680)881f15frelease: 1.0.0-rc.0 (#7662)218bda0release: 1.0.0-beta.5 (#7586)- Additional commits viewable in compare view
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 rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore this major versionwill 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 versionwill 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 dependencywill 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.
Hello dependabot[bot],
My role is to assist you with the merge of this
pull request. Please type @bert-e help to get information
on this process, or consult the user documentation.
Available options
| name | description | privileged | authored |
|---|---|---|---|
/after_pull_request |
Wait for the given pull request id to be merged before continuing with the current one. | ||
/bypass_author_approval |
Bypass the pull request author's approval | :star: | |
/bypass_build_status |
Bypass the build and test status | :star: | |
/bypass_commit_size |
Bypass the check on the size of the changeset TBA |
:star: | |
/bypass_incompatible_branch |
Bypass the check on the source branch prefix | :star: | |
/bypass_jira_check |
Bypass the Jira issue check | :star: | |
/bypass_peer_approval |
Bypass the pull request peers' approval | :star: | |
/bypass_leader_approval |
Bypass the pull request leaders' approval | :star: | |
/approve |
Instruct Bert-E that the author has approved the pull request. | :writing_hand: | |
/create_pull_requests |
Allow the creation of integration pull requests. | ||
/create_integration_branches |
Allow the creation of integration branches. | ||
/no_octopus |
Prevent Wall-E from doing any octopus merge and use multiple consecutive merge instead | ||
/unanimity |
Change review acceptance criteria from one reviewer at least to all reviewers |
||
/wait |
Instruct Bert-E not to run until further notice. |
Available commands
| name | description | privileged |
|---|---|---|
/help |
Print Bert-E's manual in the pull request. | |
/status |
Print Bert-E's current status in the pull request TBA |
|
/clear |
Remove all comments from Bert-E from the history TBA |
|
/retry |
Re-start a fresh build TBA |
|
/build |
Re-start a fresh build TBA |
|
/force_reset |
Delete integration branches & pull requests, and restart merge process from the beginning. | |
/reset |
Try to remove integration branches unless there are commits on them which do not appear on the source branch. |
Status report is not available.
The following options are set: bypass_author_approval, bypass_jira_check
Waiting for approval
The following approvals are needed before I can proceed with the merge:
-
the author
-
one peer
Peer approvals must include at least 1 approval from the following list:
-
@aprucolimartins
-
@xaf-scality
-
@m4nch0t
-
@jbwatenbergscality
-
@eg-ayoub
-
@ezekiel-alexrod
-
@chengyanjin
-
@thomasdanan
-
@teddyandrieux
The following options are set: bypass_author_approval, bypass_jira_check
Waiting for approval
The following approvals are needed before I can proceed with the merge:
-
the author
-
one peer
Peer approvals must include at least 1 approval from the following list:
-
@xaf-scality
-
@rdebay-scality
-
@eg-ayoub
-
@teddyandrieux
-
@jbwatenbergscality
-
@thomasdanan
-
@chengyanjin
-
@ezekiel-alexrod
-
@vdaviot
-
@m4nch0t
The following options are set: bypass_author_approval, bypass_jira_check