Skip to content

Commit

Permalink
chore(release): 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Aug 18, 2021
1 parent 18bf369 commit c9271b9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,18 @@

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.

## [4.0.0](https://github.com/webpack/webpack-dev-server/compare/v4.0.0-rc.1...v4.0.0) (2021-08-18)

## Notes:

- migration guide from v3 to v4 can be found [here](https://github.com/webpack/webpack-dev-server/blob/master/migration-v4.md)

### Bug Fixes

* improve https CLI output ([#3673](https://github.com/webpack/webpack-dev-server/issues/3673)) ([f2d87fb](https://github.com/webpack/webpack-dev-server/commit/f2d87fb2dc3f9545dd9203beda8bf9ac056c70f6))
* 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))
* 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))

## [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)

## Notes:
Expand Down
2 changes: 2 additions & 0 deletions migration-v4.md
Expand Up @@ -610,6 +610,7 @@ module.exports = {

### Bug Fixes

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

There are a lot of other bug fixes.

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "webpack-dev-server",
"version": "4.0.0-rc.1",
"version": "4.0.0",
"description": "Serves a webpack app. Updates the browser on changes.",
"bin": "bin/webpack-dev-server.js",
"main": "lib/Server.js",
Expand Down

1 comment on commit c9271b9

@ylemkimon
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for your hard work put into the v4 release!

Please sign in to comment.