Releases: webpack/webpack-dev-server
Releases · webpack/webpack-dev-server
v2.1.0-beta.12
- beta.11 prevented the page from reloading when there was an error or a warning. Now it will only prevent a reload when there are errors, since you can ignore warnings (#697).
- beta.11 introduced configuration validation. There was a small error that prevented
clientLogLevel: "none"from working (#693). - Fix startup information not using colors in some cases (8a4b070).
v2.1.0-beta.11
- Breaking change: all options passed to the server get validated now, just like the webpack options already are. In most cases this shouldn't break anything, but it is possible we missed some valid usages (#654).
- webpack 2.1.0-beta.26 or higher is required.
- If no port is specified, the CLI will now find the first available port that is not in use instead of crashing when port 8080 is in use (#685).
- When the webpack compiler threw an error or warning, the page would be reloaded. Now, it doesn't reload the page (#209).
- The startup information that denotes the URL, path etc. is more fancy now and uses colors (#681).
- Fix
--versionflag not working in CLI (#679). - Fix
--openflag opening the wrong URL when using lazy mode (7cb0490). - Compilation errors were duplicated in the DevTools (webpack/webpack#3008).
- Expose events to the page, so e.g. plugins can show a custom error modal in the browser (#481).
v2.1.0-beta.10
- Breaking change: only support Node.js
0.12and higher. - Update SSL certificate in https mode to fix issues with Windows (#648).
- Add option to listen on unix socket instead of a port with the
--socketflag (#661). - Add deprecation warnings for using
contentBasewith a URL or port, since theproxyoption does about the same and is more powerful (61b46ba). - Fix more issues with IPv6 (#676).
v2.1.0-beta.9
- Add support for watching files provided by the
contentBaseoption. Enable withwatchContentBase: trueor--watch-content-basein the CLI (#649). - Support IPv6 addresses as
hostoption (#644). - Fix
historyApiFallbacktaking preference ofcontentBasefiles instead of the in-memory files; this caused issues with html-webpack-plugin (#640). - Fix edge case where rapidly refreshing the page caused the server to crash (#637).
v1.16.2
v2.1.0-beta.8
v2.1.0-beta.7
- Add support for http/2 when using the
httpsoption. Falls back on http/1.1.
v2.1.0-beta.6
- Start with tests! There's still a lot more to test, but at least there are some tests now (#623).
- Add optional callback for the
closeAPI (1cf6549). - Fix
historyApiFallbackto fallback correctly tocontentBase(#617). - When using the
bypassfeature in a proxy, it was not possible to use in-memory webpack assets (#613). - Simplify code for delivering assets (#618).
v2.1.0-beta.5
- Add proxy config hot reloading - needs some additional configuration (#605).
- Fix
--progressnot working (#609). - Fix
[WDS] Hot Module Replacement enabledappearing even if theclientLogLevelwas set to a non-infovalue (#607). - Don't rely on a CDN for providing the SockJS script in iframe modus (#493).
- Explain what
--inlinedoes in help section for the CLI (#596).