Skip to content

Commit c9271b9

Browse files
chore(release): 4.0.0
1 parent 18bf369 commit c9271b9

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

Diff for: CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
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+
## [4.0.0](https://github.com/webpack/webpack-dev-server/compare/v4.0.0-rc.1...v4.0.0) (2021-08-18)
6+
7+
## Notes:
8+
9+
- migration guide from v3 to v4 can be found [here](https://github.com/webpack/webpack-dev-server/blob/master/migration-v4.md)
10+
11+
### Bug Fixes
12+
13+
* improve https CLI output ([#3673](https://github.com/webpack/webpack-dev-server/issues/3673)) ([f2d87fb](https://github.com/webpack/webpack-dev-server/commit/f2d87fb2dc3f9545dd9203beda8bf9ac056c70f6))
14+
* initial reloading for lazy compilation ([#3662](https://github.com/webpack/webpack-dev-server/issues/3662)) ([1768d6b](https://github.com/webpack/webpack-dev-server/commit/1768d6b7913055dad02318a49de65df2e93baa4f))
15+
* respect protocol from browser for manual setup ([#3675](https://github.com/webpack/webpack-dev-server/issues/3675)) ([cdcabb2](https://github.com/webpack/webpack-dev-server/commit/cdcabb240f9afcab504ca26fbf71d3af013dd806))
16+
517
## [4.0.0-rc.1](https://github.com/webpack/webpack-dev-server/compare/v4.0.0-rc.0...v4.0.0-rc.1) (2021-08-17)
618

719
## Notes:

Diff for: migration-v4.md

+2
Original file line numberDiff line numberDiff line change
@@ -610,6 +610,7 @@ module.exports = {
610610

611611
### Bug Fixes
612612

613+
- Compatibility with the `target` option (you can use `target: ['web', 'es5']`).
613614
- `publicPath: auto` is now working out of box.
614615
- No problems with the `target` option anymore, you can remove workaround (i.e. `target: 'web'` for webpack v5).
615616
- Fix `webpack-dev-server` binary, i.e. `webpack server` and `webpack-dev-server` will work identically.
@@ -620,6 +621,7 @@ module.exports = {
620621
- Show plugin name in progress log.
621622
- Use value of the `infastructureLogging.level` option by default for `client.logging`.
622623
- Allow to pass options without the `target` option for the `proxy` options.
624+
- Support lazy compilation.
623625

624626
There are a lot of other bug fixes.
625627

Diff for: package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webpack-dev-server",
3-
"version": "4.0.0-rc.1",
3+
"version": "4.0.0",
44
"description": "Serves a webpack app. Updates the browser on changes.",
55
"bin": "bin/webpack-dev-server.js",
66
"main": "lib/Server.js",

0 commit comments

Comments
 (0)