Skip to content
This repository has been archived by the owner on Oct 26, 2021. It is now read-only.

Commit

Permalink
Merge #719
Browse files Browse the repository at this point in the history
719: Update dependency webpack-dev-server to v4.3.0 r=elliotcourant a=renovate[bot]

[![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [webpack-dev-server](https://togithub.com/webpack/webpack-dev-server) | [`4.2.1` -> `4.3.0`](https://renovatebot.com/diffs/npm/webpack-dev-server/4.2.1/4.3.0) | [![age](https://badges.renovateapi.com/packages/npm/webpack-dev-server/4.3.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/webpack-dev-server/4.3.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/webpack-dev-server/4.3.0/compatibility-slim/4.2.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/webpack-dev-server/4.3.0/confidence-slim/4.2.1)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>webpack/webpack-dev-server</summary>

### [`v4.3.0`](https://togithub.com/webpack/webpack-dev-server/blob/master/CHANGELOG.md#&#8203;430-httpsgithubcomwebpackwebpack-dev-servercomparev421v430-2021-09-25)

[Compare Source](https://togithub.com/webpack/webpack-dev-server/compare/v4.2.1...v4.3.0)

##### Features

-   allow array for `headers` option ([#&#8203;3847](https://togithub.com/webpack/webpack-dev-server/issues/3847)) ([9911437](https://togithub.com/webpack/webpack-dev-server/commit/9911437186a28b2249adfb282524361d7afe6c25))
-   gracefully and force shutdown ([#&#8203;3880](https://togithub.com/webpack/webpack-dev-server/issues/3880)) ([db24b16](https://togithub.com/webpack/webpack-dev-server/commit/db24b16e66a63a51e5bacead47ed30c3bf21ff5b))

##### Bug Fixes

-   avoid web socket connection when web socket server is not running ([#&#8203;3879](https://togithub.com/webpack/webpack-dev-server/issues/3879)) ([8874d72](https://togithub.com/webpack/webpack-dev-server/commit/8874d72f2ee8f11c8420de131e8335982e516727))
-   display file name for warnings/errors in overlay ([#&#8203;3867](https://togithub.com/webpack/webpack-dev-server/issues/3867)) ([d20def5](https://togithub.com/webpack/webpack-dev-server/commit/d20def5c71609ad97ea783716c53070235f398cc))
-   formatting errors/warnings ([#&#8203;3877](https://togithub.com/webpack/webpack-dev-server/issues/3877)) ([f0dbea0](https://togithub.com/webpack/webpack-dev-server/commit/f0dbea019c822e7e4b7e5ed81a6a9588e9521d73))
-   handle 0 value of the `port` option property ([ed67f66](https://togithub.com/webpack/webpack-dev-server/commit/ed67f66fc41eb1dd83fb84ecaa18703559dbe2ae))

##### [4.2.1](https://togithub.com/webpack/webpack-dev-server/compare/v4.2.0...v4.2.1) (2021-09-13)

##### Bug Fixes

-   infinity loop for multi compiler mode ([#&#8203;3840](https://togithub.com/webpack/webpack-dev-server/issues/3840)) ([e019bd2](https://togithub.com/webpack/webpack-dev-server/commit/e019bd24ea061c4839a4667f8bd75a04b9a48128))
-   reloading logic for multi compiler mode ([#&#8203;3841](https://togithub.com/webpack/webpack-dev-server/issues/3841)) ([ef148ec](https://togithub.com/webpack/webpack-dev-server/commit/ef148ec1feb66d0f72457d0b2de853b76b06b3c9))

##### [4.2.0](https://togithub.com/webpack/webpack-dev-server/compare/v4.1.1...v4.2.0) (2021-09-09)

##### Features

-   added the `http.ca` option (CLI option added too) (should be used instead `cacert`, because we will remove it in the next major release in favor the `https.ca` option)
-   added the `https.crl` option (CLI options added too), [more information](https://nodejs.org/api/tls.html#tls_tls_createsecurecontext_options)
-   `https.ca`/`https.cacert`/ `https.cert`/`https.crl`/`https.key`/`https.pfx` options are now accept Arrays of `Buffer`/`string`/Path to file, using `--https-*-reset` CLI options you can reset these options
-   `https.pfx`/`https.key` can be `Object[]`, [more information](https://nodejs.org/api/tls.html#tls_tls_createsecurecontext_options)
-   `https` options can now accept custom options, you can use:

```js
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:` and `chrome-extensions:` protocol by default ([#&#8203;3822](https://togithub.com/webpack/webpack-dev-server/issues/3822)) ([138f064](https://togithub.com/webpack/webpack-dev-server/commit/138f0641a4aa040fa2ff66dfd8891c920aa17808))
-   close overlay on disconnection ([#&#8203;3825](https://togithub.com/webpack/webpack-dev-server/issues/3825)) ([011bcf1](https://togithub.com/webpack/webpack-dev-server/commit/011bcf15c7eba8f7dcd45731f8e434b2eccf781e))
-   respect `https.cacert` option ([#&#8203;3820](https://togithub.com/webpack/webpack-dev-server/issues/3820)) ([0002ebf](https://togithub.com/webpack/webpack-dev-server/commit/0002ebfbc8f36e92f91013372c9e2bca97022825))

##### [4.1.1](https://togithub.com/webpack/webpack-dev-server/compare/v4.1.0...v4.1.1) (2021-09-07)

##### Bug Fixes

-   improve the description of the `magicHtml` option ([#&#8203;3772](https://togithub.com/webpack/webpack-dev-server/issues/3772)) ([b80610f](https://togithub.com/webpack/webpack-dev-server/commit/b80610f07357c3b2ae8557f6d371e4d563ae3c53))
-   replace `ansi-html` with `ansi-html-community` to avoid CVE ([#&#8203;3801](https://togithub.com/webpack/webpack-dev-server/issues/3801)) ([36fd214](https://togithub.com/webpack/webpack-dev-server/commit/36fd21477dac5131ec266cc1d717d87051f10a2b))

</details>

---

### Configuration

📅 **Schedule**: At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box.

---

This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/monetr/web-ui).

Co-authored-by: Renovate Bot <[email protected]>
  • Loading branch information
elliotcourant and renovate-bot committed Sep 25, 2021
2 parents 6acde1b + 284d386 commit e71c89d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
"webpack": "5.54.0",
"webpack-bundle-analyzer": "4.4.2",
"webpack-cli": "4.8.0",
"webpack-dev-server": "4.2.1"
"webpack-dev-server": "4.3.0"
},
"jest": {
"roots": [
Expand Down
27 changes: 16 additions & 11 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4768,6 +4768,11 @@ colorette@^1.2.1, colorette@^1.2.2:
resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"
integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==

colorette@^2.0.10:
version "2.0.10"
resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.10.tgz#0cc871faead8b07227c9ad784f27a0d71f3794e2"
integrity sha512-tQ7Prvd+zU6EUsQVXJNqxJUZdZ4btI34jlp/W1N/bNyWsY55dxe2oSg+ss3COV4vKbWLVlwLJt5xMSCuZ3R4og==

combined-stream@^1.0.6, combined-stream@~1.0.6:
version "1.0.8"
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
Expand Down Expand Up @@ -12801,26 +12806,26 @@ [email protected]:
v8-compile-cache "^2.2.0"
webpack-merge "^5.7.3"

webpack-dev-middleware@^5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.1.0.tgz#90a645b077e85f661c5bb967dc32adc3eceb5cfd"
integrity sha512-oT660AR1gOnU/NTdUQi3EiGR0iXG7CFxmKsj3ylWCBA2khJ8LFHK+sKv3BZEsC11gl1eChsltRhzUq7nWj7XIQ==
webpack-dev-middleware@^5.2.1:
version "5.2.1"
resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.2.1.tgz#97c948144349177856a3d2d9c612cc3fee180cf1"
integrity sha512-Kx1X+36Rn9JaZcQMrJ7qN3PMAuKmEDD9ZISjUj3Cgq4A6PtwYsC4mpaKotSRYH3iOF6HsUa8viHKS59FlyVifQ==
dependencies:
colorette "^1.2.2"
colorette "^2.0.10"
memfs "^3.2.2"
mime-types "^2.1.31"
range-parser "^1.2.1"
schema-utils "^3.1.0"

webpack-dev-server@4.2.1:
version "4.2.1"
resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.2.1.tgz#12e912b3cad8ddd5222a4ba2c41c6fc69d2545fb"
integrity sha512-SQrIyQDZsTaF84p/WMAXNRKxjTeIaewhDIiHYZ423ENhNAsQWyubvqPTn0IoLMGkbhWyWv8/GYnCjItt0ZNC5w==
webpack-dev-server@4.3.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.3.0.tgz#732f5869d4c06e222b599daee64bc268f5edea24"
integrity sha512-kuqP9Xn4OzcKe7f0rJwd4p8xqiD+4b5Lzu8tJa8OttRL3E1Q8gI2KmUtouJTgDswjjvHOHlZDV8LTQfSY5qZSA==
dependencies:
ansi-html-community "^0.0.8"
bonjour "^3.5.0"
chokidar "^3.5.1"
colorette "^1.2.2"
colorette "^2.0.10"
compression "^1.7.4"
connect-history-api-fallback "^1.6.0"
del "^6.0.0"
Expand All @@ -12840,7 +12845,7 @@ [email protected]:
spdy "^4.0.2"
strip-ansi "^7.0.0"
url "^0.11.0"
webpack-dev-middleware "^5.1.0"
webpack-dev-middleware "^5.2.1"
ws "^8.1.0"

[email protected]:
Expand Down

0 comments on commit e71c89d

Please sign in to comment.