Bump webpack-dev-server from 3.11.3 to 6.0.0 in /dev in the npm_and_yarn group across 1 directory#1
Conversation
Bumps the npm_and_yarn group with 1 update in the /dev directory: [webpack-dev-server](https://github.com/webpack/webpack-dev-server). Updates `webpack-dev-server` from 3.11.3 to 6.0.0 - [Release notes](https://github.com/webpack/webpack-dev-server/releases) - [Changelog](https://github.com/webpack/webpack-dev-server/blob/main/CHANGELOG.md) - [Commits](webpack/webpack-dev-server@v3.11.3...v6.0.0) --- updated-dependencies: - dependency-name: webpack-dev-server dependency-version: 6.0.0 dependency-type: direct:development dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 4 potential issues.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 900aacf. Configure here.
| "webpack": "^5.27.2", | ||
| "webpack-cli": "^4.9.1", | ||
| "webpack-dev-server": "^3.11.2" | ||
| "webpack-dev-server": "^6.0.0" |
There was a problem hiding this comment.
Webpack below dev-server peer
High Severity
webpack-dev-server ^6.0.0 expects webpack ^5.101.0, but this workspace still pins webpack at ^5.27.2 (including the root resolutions entry). After install, webpack serve can fail or behave incorrectly because the dev server targets APIs and fixes not present in 5.27.x.
Reviewed by Cursor Bugbot for commit 900aacf. Configure here.
| "webpack": "^5.27.2", | ||
| "webpack-cli": "^4.9.1", | ||
| "webpack-dev-server": "^3.11.2" | ||
| "webpack-dev-server": "^6.0.0" |
There was a problem hiding this comment.
Dev-server v6 invalid options
High Severity
Raising webpack-dev-server to ^6.0.0 without updating dev/webpack/config.js leaves devServer.contentBase and devServer.inline, which v4+ rejects. yarn dev / webpack serve typically exits immediately with an invalid devServer options schema error, so local development does not start.
Reviewed by Cursor Bugbot for commit 900aacf. Configure here.
| }, | ||
| "devDependencies": { | ||
| "@babel/core": "^7.16.7", | ||
| "@babel/core": "^8.0.1", |
There was a problem hiding this comment.
Babel core eight loader seven
High Severity
@babel/core is moved to ^8.0.1 while babel-loader stays on ^8.2.3, which declares a peer of @babel/core ^7.0.0. The dev webpack pipeline transpiles .js/.tsx through babel-loader, so this mismatch can break builds or fail installs under strict peer checks.
Reviewed by Cursor Bugbot for commit 900aacf. Configure here.
| "webpack": "^5.27.2", | ||
| "webpack-cli": "^4.9.1", | ||
| "webpack-dev-server": "^3.11.2" | ||
| "webpack-dev-server": "^6.0.0" |
There was a problem hiding this comment.
Dev-server needs Node 22
Medium Severity
webpack-dev-server 6.0.0 requires Node.js >=22.15.0. This repo targets older Node tooling (for example @types/node ^18.6.3 at the root), so developers or CI on Node 18/20 may be unable to run the dev server after this bump.
Reviewed by Cursor Bugbot for commit 900aacf. Configure here.


Bumps the npm_and_yarn group with 1 update in the /dev directory: webpack-dev-server.
Updates
webpack-dev-serverfrom 3.11.3 to 6.0.0Release notes
Sourced from webpack-dev-server's releases.
... (truncated)
Changelog
Sourced from webpack-dev-server's changelog.
... (truncated)
Commits
05cb792chore(release): new release (#5692)a451839fix: handle middleware teardown in plugin mode (#5703)c2d23a7fix: load ESM-only dependencies with native import() in the CommonJS build (#...ba54764fix: reject cross-site requests to open-editor and invalidate endpoints (#5691)2b369b3fixup!08a0ea7fix: ensure undefined options default to an empty object in Server constructor797b9e7fix: handle undefined options in Server constructore90221cfeat: plugin support (#5650)4c351e1feat: support universal platform as a web target (#5690)2236aa4chore: update http-proxy-middleware to version 4.1.1 and add tests for pathRe...Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for webpack-dev-server since your current version.
Install script changes
This version modifies
preparescript that runs during installation. Review the package contents before updating.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 show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditionsYou can disable automated security fix PRs for this repo from the Security Alerts page.
Note
Medium Risk
Major dev-tool upgrades (especially webpack-dev-server v6) can break
npm run devwithout config/webpack/Node updates; @babel/core 8 may affect the existing Babel 7 preset/loader stack.Overview
Updates
dev/package.jsondevDependencies only:webpack-dev-serverfrom^3.11.2to^6.0.0, and@babel/corefrom^7.16.7to^8.0.1.The dev workflow still runs via
webpack serve(npm run dev); this PR does not change webpack config or lockfiles in the shown diff. webpack-dev-server v6 is a major release (stricter webpack peer, Node ≥ 22.15, Express 5, removed legacy CLI/dev-server options), so local dev may need follow-up config or version alignment even though only manifests changed here.Reviewed by Cursor Bugbot for commit 900aacf. Bugbot is set up for automated code reviews on this repo. Configure here.