chore(deps-dev): Bump webpack-dev-server from 4.15.2 to 5.2.1#2622
Conversation
d79b697 to
d95ad00
Compare
|
@dependabot rebase |
d95ad00 to
f189106
Compare
|
@dependabot rebase |
f189106 to
f35a27f
Compare
|
Claude finished @ankita10119's task —— View job Overall Assessment❌ This PR introduces breaking changes that require configuration updates before it can be safely merged. Critical Issues Found1. Breaking Configuration Change in Example CodeFile: Required Fix: // BEFORE (v4)
devServer: {
contentBase: './',
https: true,
port: 3000
}
// AFTER (v5)
devServer: {
static: './', // Changed from contentBase
https: true,
port: 3000
}2. Security Changes May Affect Development WorkflowThe v5.2.1 release includes important security fixes that may impact the development server:
Impact: If developers rely on cross-origin requests during development, the dev server may reject these requests after this upgrade. Recommended Action: Add explicit CORS configuration if needed: devServer: {
headers: {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, PATCH, OPTIONS',
'Access-Control-Allow-Headers': 'X-Requested-With, content-type, Authorization'
}
}Additional Breaking Changes to VerifyThe main
Required Actions Before Merge
RecommendationDo not merge until the breaking configuration change is fixed. The example webpack configuration must be updated to use webpack-dev-server v5 syntax, otherwise the example will be broken for users. |
|
@dependabot rebase |
f35a27f to
30b4cbf
Compare
|
@dependabot recreate |
30b4cbf to
ecc1f4e
Compare
|
@dependabot recreate |
Bumps [webpack-dev-server](https://github.com/webpack/webpack-dev-server) from 4.15.2 to 5.2.1. - [Release notes](https://github.com/webpack/webpack-dev-server/releases) - [Changelog](https://github.com/webpack/webpack-dev-server/blob/master/CHANGELOG.md) - [Commits](webpack/webpack-dev-server@v4.15.2...v5.2.1) --- updated-dependencies: - dependency-name: webpack-dev-server dependency-version: 5.2.1 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
ecc1f4e to
18a0a9a
Compare
Bumps webpack-dev-server from 4.15.2 to 5.2.1.
Release notes
Sourced from webpack-dev-server's releases.
... (truncated)
Changelog
Sourced from webpack-dev-server's changelog.
... (truncated)
Commits
0d22a08chore(release): 5.2.16045b1echore(deps): update (#5444)ffd0b86fix: take the first network found instead of the last one, this restores the ...9ea7b08ci: update dependency-review-action (#5442)5c9378bMerge commit from forkd2575adMerge commit from fork8c1abc9fix: prevent overlay for errors caught by React error boundaries (#5431)5a39c70ci: update codecov/codecov-action to v5 (#5406)55220a8chore(deps-dev): bump the dependencies group across 1 directory with 4 update...09f6f8echore(deps): bump the dependencies group across 1 directory with 2 updates (#...Install script changes
This version modifies
preparescript that runs during installation. Review the package contents before updating.