tds-core
tds-core copied to clipboard
chore(deps): update dependency webpack-dev-server to v4
This PR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
webpack-dev-server | ^3.8.1 -> ^4.0.0 |
Release Notes
webpack/webpack-dev-server
v4.7.4
v4.7.3
v4.7.2
v4.7.1
v4.7.0
Features
- added the
setupMiddlewares
option and deprecatedonAfterSetupMiddleware
andonBeforeSetupMiddleware
options (#4068) (c13aa56) - added types (8f02c3f)
- show deprecation warning for
cacert
option (#4115) (c73ddfb)
Bug Fixes
- add description for
watchFiles
options (#4057) (75f3817) - allow passing options for custom server (#4110) (fc8bed9)
- correct schema for
ClientLogging
(#4084) (9b7ae7b) - mark
--open-app
deprecated in favor of--open-app-name
(#4091) (693c28a) - show deprecation warning for both
https
andhttp2
(#4069) (d8d5d71) - update
--web-socket-server
description (#4098) (65955e9) - update
listen
andclose
deprecation warning message (#4097) (b217a19) - update descriptions of
https
andserver
options (#4094) (f97c9e2)
v4.6.0
Features
Bug Fixes
v4.5.0
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
- infinity refresh on warnings (#4006) (10da223)
- invalid host message is missing on client with https (#3997) (#3998) (ff0869c)
- remove process listeners after stopping the server (#4013) (d198e4e)
v4.4.0
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
4.3.1 (2021-10-04)
Bug Fixes
v4.3.1
v4.3.0
Features
Bug Fixes
- avoid web socket connection when web socket server is not running (#3879) (8874d72)
- display file name for warnings/errors in overlay (#3867) (d20def5)
- formatting errors/warnings (#3877) (f0dbea0)
- handle 0 value of the
port
option property (ed67f66)
4.2.1 (2021-09-13)
Bug Fixes
- infinity loop for multi compiler mode (#3840) (e019bd2)
- reloading logic for multi compiler mode (#3841) (ef148ec)
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 options -
https.pfx
/https.key
can beObject[]
, more information -
https
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",
},
}
};
Bug Fixes
- accept connections with
file:
andchrome-extensions:
protocol by default (#3822) (138f064) - close overlay on disconnection (#3825) (011bcf1)
- respect
https.cacert
option (#3820) (0002ebf)
4.1.1 (2021-09-07)
Bug Fixes
- improve the description of the
magicHtml
option (#3772) (b80610f) - replace
ansi-html
withansi-html-community
to avoid CVE (#3801) (36fd214)
v4.2.1
v4.2.0
v4.1.1
v4.1.0
Features
- added the
magicHtml
option (#3717) (4831f58) - allow to set
hot
andlive-reload
for client using search params (1c57680) - show warning when the
hot
option is enabled with the HMR plugin in config (#3744) (6cb1e4e)
Bug Fixes
- change log type of
Disconnected!
toinfo
(fde27f5) - handle
--allowed-hosts all
correctly (#3720) (326ed56) - output documentation link on errors (#3680) (e16221b)
- respect the
bypass
option withtarget
/router
options for proxy (b5dd568)
v4.0.0
v3.11.3
3.11.3 (2021-11-08)
Bug Fixes
v3.11.2
3.11.2 (2021-01-13)
Bug Fixes
- cli arguments for
serve
command (a5fe337)
v3.11.1
3.11.1 (2020-12-29)
Bug Fixes
- the
open
option works usingwebpack serve
without value (#2948) (4837dc9) - vulnerable deps (#2949) (78dde50)
v3.11.0
Features
- add icons for directory viewer (#2441) (e953d01)
- allow multiple
contentBasePublicPath
paths (#2489) (c6bdfe4) - emit progress-update (#2498) (4808abd), closes #1666
- add invalidate endpoint (#2493) (89ffb86)
- allow open option to accept an object (#2492) (adeb92e)
Bug Fixes
- do not swallow errors from server (#2512) (06583f2)
- security vulnerability in yargs-parser (#2566) (41d1d0c)
- don't crash on setupExitSignals(undefined) (#2507) (0d5c681)
- support entry descriptor (closes #2453) (#2465) (8bbef6a)
- update jquery (#2516) (99ccfd8)
3.10.3 (2020-02-05)
Bug Fixes
3.10.2 (2020-01-31)
Bug Fixes
- fallthrough non
GET
andHEAD
request to routes (#2374) (ebe8eca) - add an optional peer dependency on webpack-cli (#2396) (aa365df)
- add heartbeat for the websocket server (#2404) (1a7c827)
3.10.1 (2019-12-19)
Bug Fixes
- ie11 compatibility (1306abe)
v3.10.3
v3.10.2
v3.10.1
v3.10.0
Features
-
client: allow sock port to use location's port (
sockPort: 'location'
) (#2341) (dc10d06) -
server: add
contentBasePublicPath
option (#2150) (cee700d)
Bug Fixes
Configuration
📅 Schedule: "before 3am on Monday" in timezone America/Vancouver.
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
- [ ] If you want to rebase/retry this PR, click this checkbox.
This PR has been generated by WhiteSource Renovate. View repository job log here.
Links:
Packages pending updates:
If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.
Links:
Packages pending updates:
If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.
Links:
Packages pending updates:
If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.
Links:
Packages pending updates:
If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.
Links:
Packages pending updates:
- @tds/core-tooltip: 4.4.0 => 4.4.1
If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.
Links:
Packages pending updates:
If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.
Links:
Packages pending updates:
If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.
Links:
Packages pending updates:
If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.
Links:
Packages pending updates:
If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.