Skip to content

Commit f1fdaa7

Browse files
chore(release): 4.0.0-rc.1
1 parent c4678bc commit f1fdaa7

File tree

4 files changed

+28
-3
lines changed

4 files changed

+28
-3
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
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-rc.1](https://github.com/webpack/webpack-dev-server/compare/v4.0.0-rc.0...v4.0.0-rc.1) (2021-08-17)
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+
### Features
12+
13+
* async API ([#3608](https://github.com/webpack/webpack-dev-server/issues/3608)) ([974ce25](https://github.com/webpack/webpack-dev-server/commit/974ce25669ef6a4f55e8a7576fc140bc7ccb55f1))
14+
* use ECMA modules in client ([#3550](https://github.com/webpack/webpack-dev-server/issues/3550)) ([9307755](https://github.com/webpack/webpack-dev-server/commit/93077552c2bac020650936316dc93e03245b7a19))
15+
16+
17+
### Bug Fixes
18+
19+
* fix usage legacy API ([#3660](https://github.com/webpack/webpack-dev-server/issues/3660)) ([c4678bc](https://github.com/webpack/webpack-dev-server/commit/c4678bc467370e7dc74d06a8b898515e448d0da0))
20+
* proxy logging and allow to pass options without the `target` option ([#3651](https://github.com/webpack/webpack-dev-server/issues/3651)) ([6e2cbde](https://github.com/webpack/webpack-dev-server/commit/6e2cbde16b0d071b6dd5c243b1b0e867b69575c5))
21+
* render ansi formatted error messages correctly in overlay ([#3579](https://github.com/webpack/webpack-dev-server/issues/3579)) ([9313454](https://github.com/webpack/webpack-dev-server/commit/9313454066c2a830b425965837a2756d8f945e97))
22+
* use value of the `infastructureLogging.level` option by default for `client.logging`. ([#3613](https://github.com/webpack/webpack-dev-server/issues/3613)) ([c9ccc96](https://github.com/webpack/webpack-dev-server/commit/c9ccc96f9d5cd9930f69b927b248d52509ec1e55))
23+
* schema for the `host` option ([#3549](https://github.com/webpack/webpack-dev-server/issues/3549)) ([7200d31](https://github.com/webpack/webpack-dev-server/commit/7200d3101403864b3ca795c6bf028197e9f62183))
24+
* show deprecation warning for incorrect usage of Node.js API ([#3563](https://github.com/webpack/webpack-dev-server/issues/3563)) ([62b21ff](https://github.com/webpack/webpack-dev-server/commit/62b21ffb028685e76ee715babfe53d5a9606fbbc))
25+
526
## [4.0.0-rc.0](https://github.com/webpack/webpack-dev-server/compare/v4.0.0-beta.3...v4.0.0-rc.0) (2021-07-19)
627

728

migration-v4.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ This document serves as a migration guide for `[email protected]`.
55
### ⚠ BREAKING CHANGES
66

77
- Minimum supported `Node.js` version is `12.13.0`.
8+
- Minimum supported `webpack` version is `4.37.0` (**but we so recommend using 5 version**).
89
- The `hotOnly` option was removed, if you need hot only mode, use `{ hot: 'only' }` value.
910

1011
v3:
@@ -605,6 +606,7 @@ module.exports = {
605606
- The `static` option can be disabled using `static: false`.
606607
- Added async `start` and `stop` methods to API
607608
- Added `startCallback` and `stopCallback` methods to API
609+
- Migrate on built-in `webpack` logger.
608610

609611
### Bug Fixes
610612

@@ -616,6 +618,8 @@ module.exports = {
616618
- `chokidar` was updated.
617619
- Respect the `client.logging` option for HMR logging.
618620
- Show plugin name in progress log.
621+
- Use value of the `infastructureLogging.level` option by default for `client.logging`.
622+
- Allow to pass options without the `target` option for the `proxy` options.
619623

620624
There are a lot of other bug fixes.
621625

package-lock.json

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

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.0",
3+
"version": "4.0.0-rc.1",
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)