webpack-dev-server 3.1.7 → 3.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,49 @@
2
2
 
3
3
  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.
4
4
 
5
+ <a name="3.1.11"></a>
6
+ ## [3.1.11](https://github.com/webpack/webpack-dev-server/compare/v3.1.10...v3.1.11) (2018-12-21)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **bin/options:** correct check for color support (`options.color`) ([#1555](https://github.com/webpack/webpack-dev-server/issues/1555)) ([55398b5](https://github.com/webpack/webpack-dev-server/commit/55398b5))
12
+ * **package:** update `spdy` v3.4.1...4.0.0 (assertion error) ([#1491](https://github.com/webpack/webpack-dev-server/issues/1491)) ([#1563](https://github.com/webpack/webpack-dev-server/issues/1563)) ([7a3a257](https://github.com/webpack/webpack-dev-server/commit/7a3a257))
13
+ * **Server:** correct `node` version checks ([#1543](https://github.com/webpack/webpack-dev-server/issues/1543)) ([927a2b3](https://github.com/webpack/webpack-dev-server/commit/927a2b3))
14
+ * **Server:** mime type for wasm in contentBase directory ([#1575](https://github.com/webpack/webpack-dev-server/issues/1575)) ([#1580](https://github.com/webpack/webpack-dev-server/issues/1580)) ([fadae5d](https://github.com/webpack/webpack-dev-server/commit/fadae5d))
15
+ * add url for compatibility with webpack@5 ([#1598](https://github.com/webpack/webpack-dev-server/issues/1598)) ([#1599](https://github.com/webpack/webpack-dev-server/issues/1599)) ([68dd49a](https://github.com/webpack/webpack-dev-server/commit/68dd49a))
16
+ * check origin header for websocket connection ([#1603](https://github.com/webpack/webpack-dev-server/issues/1603)) ([b3217ca](https://github.com/webpack/webpack-dev-server/commit/b3217ca))
17
+
18
+
19
+
20
+ <a name="3.1.10"></a>
21
+ ## [3.1.10](https://github.com/webpack/webpack-dev-server/compare/v3.1.9...v3.1.10) (2018-10-23)
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * **options:** add `writeToDisk` option to schema ([#1520](https://github.com/webpack/webpack-dev-server/issues/1520)) ([d2f4902](https://github.com/webpack/webpack-dev-server/commit/d2f4902))
27
+ * **package:** update `sockjs-client` v1.1.5...1.3.0 (`url-parse` vulnerability) ([#1537](https://github.com/webpack/webpack-dev-server/issues/1537)) ([e719959](https://github.com/webpack/webpack-dev-server/commit/e719959))
28
+ * **Server:** set `tls.DEFAULT_ECDH_CURVE` to `'auto'` ([#1531](https://github.com/webpack/webpack-dev-server/issues/1531)) ([c12def3](https://github.com/webpack/webpack-dev-server/commit/c12def3))
29
+
30
+
31
+
32
+ <a name="3.1.9"></a>
33
+ ## [3.1.9](https://github.com/webpack/webpack-dev-server/compare/v3.1.8...v3.1.9) (2018-09-24)
34
+
35
+
36
+
37
+ <a name="3.1.8"></a>
38
+ ## [3.1.8](https://github.com/webpack/webpack-dev-server/compare/v3.1.7...v3.1.8) (2018-09-06)
39
+
40
+
41
+ ### Bug Fixes
42
+
43
+ * **package:** `yargs` security vulnerability (`dependencies`) ([#1492](https://github.com/webpack/webpack-dev-server/issues/1492)) ([8fb67c9](https://github.com/webpack/webpack-dev-server/commit/8fb67c9))
44
+ * **utils/createLogger:** ensure `quiet` always takes precedence (`options.quiet`) ([#1486](https://github.com/webpack/webpack-dev-server/issues/1486)) ([7a6ca47](https://github.com/webpack/webpack-dev-server/commit/7a6ca47))
45
+
46
+
47
+
5
48
  <a name="3.1.7"></a>
6
49
  ## [3.1.7](https://github.com/webpack/webpack-dev-server/compare/v3.1.6...v3.1.7) (2018-08-29)
7
50
 
package/README.md CHANGED
@@ -21,7 +21,7 @@ fast in-memory access to the webpack assets.
21
21
 
22
22
  ## Getting Started
23
23
 
24
- First thing's first, install the module:
24
+ First things first, install the module:
25
25
 
26
26
  ```console
27
27
  npm install webpack-dev-server --save-dev
@@ -106,7 +106,7 @@ question. Remember; It's always much easier to answer questions that include you
106
106
  If you're twitter-savvy you can tweet [#webpack][hash-url] with your question
107
107
  and someone should be able to reach out and lend a hand.
108
108
 
109
- If you have discovered a :bug:, have a feature suggestion, of would like to see
109
+ If you have discovered a :bug:, have a feature suggestion, or would like to see
110
110
  a modification, please feel free to create an issue on Github. _Note: The issue
111
111
  template isn't optional, so please be sure not to remove it, and please fill it
112
112
  out completely._
package/bin/options.js CHANGED
@@ -57,7 +57,9 @@ const options = {
57
57
  type: 'boolean',
58
58
  alias: 'colors',
59
59
  default: function supportsColor() {
60
- return require('supports-color');
60
+ // Use `require('supports-color').stdout` for supports-color >= 5.0.0.
61
+ // See https://github.com/webpack/webpack-dev-server/pull/1555.
62
+ return require('supports-color').stdout;
61
63
  },
62
64
  group: DISPLAY_GROUP,
63
65
  describe: 'Enables/Disables colors on the console'