Skip to content

Commit 8b7476c

Browse files
author
Anton Dubrouski
committed
Merge branch 'master' into publicPath-output
2 parents 96bff25 + fa9195c commit 8b7476c

File tree

145 files changed

+13167
-10277
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+13167
-10277
lines changed

.cspell.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@
7171
"eslintcache",
7272
"hono",
7373
"privkey",
74-
"geomanist"
74+
"geomanist",
75+
"nodenext"
7576
],
7677
"ignorePaths": [
7778
"CHANGELOG.md",

.eslintignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 86 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 22 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [5.2.2](https://github.com/webpack/webpack-dev-server/compare/v5.2.1...v5.2.2) (2025-06-03)
6+
7+
8+
### Bug Fixes
9+
10+
* "Overlay enabled" false positive ([18e72ee](https://github.com/webpack/webpack-dev-server/commit/18e72ee3e57a6e7598a6c068c0ff7c7bb6a857f1))
11+
* do not crush when error is null for runtime errors ([#5447](https://github.com/webpack/webpack-dev-server/issues/5447)) ([309991f](https://github.com/webpack/webpack-dev-server/commit/309991f947baa0354140b9930a9654ac792e20c4))
12+
* remove unnecessary header `X_TEST` ([#5451](https://github.com/webpack/webpack-dev-server/issues/5451)) ([64a6124](https://github.com/webpack/webpack-dev-server/commit/64a6124bf1b4d158bb42a4341dd03121ae3759fa))
13+
* respect the `allowedHosts` option for cross-origin header check ([#5510](https://github.com/webpack/webpack-dev-server/issues/5510)) ([03d1214](https://github.com/webpack/webpack-dev-server/commit/03d12141bf7be09dfb14e91e5c834ee63bd9a9a2))
14+
515
## [5.2.1](https://github.com/webpack/webpack-dev-server/compare/v5.2.0...v6.0.0) (2025-03-26)
616

717
### Security
@@ -565,9 +575,9 @@ module.exports = {
565575
module.exports = {
566576
entry: {
567577
entry: [
568-
'whatwg-fetch',
569-
'core-js/features/promise',
570-
'./entry.js'
578+
"whatwg-fetch",
579+
"core-js/features/promise",
580+
"./entry.js"
571581
],
572582
},
573583
};
@@ -579,13 +589,13 @@ module.exports = {
579589
module.exports = {
580590
entry: {
581591
entry: [
582-
'whatwg-fetch',
583-
'core-js/features/promise',
584-
'./entry.js'
592+
"whatwg-fetch",
593+
"core-js/features/promise",
594+
"./entry.js"
585595
],
586596
},
587597
devServer: {
588-
transportMode: 'sockjs',
598+
transportMode: "sockjs",
589599
},
590600
};
591601
```
@@ -683,15 +693,15 @@ module.exports = {
683693
// static: false
684694
static: [
685695
// Simple example
686-
path.resolve(__dirname, 'static'),
696+
path.resolve(__dirname, "static"),
687697
// Complex example
688698
{
689-
directory: path.resolve(__dirname, 'static'),
699+
directory: path.resolve(__dirname, "static"),
690700
staticOptions: {},
691701
// Don't be confused with `dev.publicPath`, it is `publicPath` for static directory
692702
// Can be:
693703
// publicPath: ['/static-public-path-one/', '/static-public-path-two/'],
694-
publicPath: '/static-public-path/',
704+
publicPath: "/static-public-path/",
695705
// Can be:
696706
// serveIndex: {} (options for the `serveIndex` option you can find https://github.com/expressjs/serve-index)
697707
serveIndex: true,
@@ -711,7 +721,7 @@ module.exports = {
711721
// ...
712722
devServer: {
713723
dev: {
714-
publicPath: '/publicPathForDevServe',
724+
publicPath: "/publicPathForDevServe",
715725
},
716726
},
717727
};
@@ -741,7 +751,7 @@ module.exports = {
741751
// Only warnings and errors
742752
// level: 'none' disable logging
743753
// Please read https://webpack.js.org/configuration/other-options/#infrastructurelogginglevel
744-
level: 'warn',
754+
level: "warn",
745755
},
746756
};
747757
```

0 commit comments

Comments
 (0)