Releases: webpack/webpack-dev-server
Releases · webpack/webpack-dev-server
v4.6.0
v4.5.0
4.5.0 (2021-11-13)
Features
- add
--web-socket-server-type
option for CLI (#4001) (17c390a) - show deprecation warning for
https
/http2
option, migration guide forhttps
and migration guide forhttp2
(because we usespdy
for http2 dueexpress
doesn't support http2) (#4003) (521cf85)
Bug Fixes
v3.11.3
v4.4.0
4.4.0 (2021-10-27)
Features
- added the
server
option, now you can pass server options, example{ server: { type: 'http', options: { maxHeaderSize: 32768 } } }
, available options forhttp
andhttps
, note - forhttp2
is usedspdy
, options specified in theserver.options
option take precedence overhttps
/http2
options (#3940) (a70a7ef) - added the
client.reconnect
option (#3912) (5edad76) - improve error handling within
startCallback
andendCallback
(#3969) (b0928ac)
Bug Fixes
v4.3.1
v4.3.0
v4.2.1
v4.2.0
4.2.0 (2021-09-09)
Features
- added the
http.ca
option (CLI option added too) (should be used insteadcacert
, because we will remove it in the next major release in favor thehttps.ca
option) - added the
https.crl
option (CLI options added too), more information https.ca
/https.cacert
/https.cert
/https.crl
/https.key
/https.pfx
options are now accept Arrays ofBuffer
/string
/Path to file, using--https-*-reset
CLI options you can reset these optionshttps.pfx
/https.key
can beObject[]
, more informationhttps
options can now accept custom options, you can use:
module.exports = {
// Other options
devServer: {
https: {
// Allow to set additional TSL options https://nodejs.org/api/tls.html#tls_tls_createsecurecontext_options
minVersion: "TLSv1.1",
ca: path.join(httpsCertificateDirectory, "ca.pem"),
pfx: path.join(httpsCertificateDirectory, "server.pfx"),
key: path.join(httpsCertificateDirectory, "server.key"),
cert: path.join(httpsCertificateDirectory, "server.crt"),
passphrase: "webpack-dev-server",
},
}
};