Skip to content

Commit 5912f6d

Browse files
BridgeARrefack
authored andcommitted
2018-12-07, Version 11.4.0 (Current)
Notable Changes: * console,util: * `console` functions now handle symbols as defined in the spec. nodejs#23708 * The inspection `depth` default is now back at 2. nodejs#24326 * dgram,net: * Added ipv6Only option for `net` and `dgram`. nodejs#23798 * http: * Chosing between the http parser is now possible per runtime flag. nodejs#24739 * readline: * The `readline` module now supports async iterators. nodejs#23916 * repl: * The multiline history feature is removed. nodejs#24804 * tls: * Added min/max protocol version options. nodejs#24405 * The X.509 public key info now includes the RSA bit size and the elliptic curve. nodejs#24358 * url: * `pathToFileURL()` now supports LF, CR and TAB. nodejs#23720 * Windows: * Tools are not installed using Boxstarter anymore. nodejs#24677 * The install-tools scripts or now included in the dist. nodejs#24233 * Added new collaborator: * [antsmartian](https://github.com/antsmartian) - Anto Aravinth. nodejs#24655 PR-URL: nodejs#24854
1 parent 172ab88 commit 5912f6d

File tree

10 files changed

+362
-12
lines changed

10 files changed

+362
-12
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.3.0">11.3.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.4.0">11.4.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V11.md#11.3.0">11.3.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V11.md#11.2.0">11.2.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V11.md#11.1.0">11.1.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V11.md#11.0.0">11.0.0</a><br/>

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Force FIPS-compliant crypto on startup. (Cannot be disabled from script code.)
121121

122122
### `--http-parser=library`
123123
<!-- YAML
124-
added: REPLACEME
124+
added: v11.4.0
125125
-->
126126

127127
Chooses an HTTP parser library. Available values are:

doc/api/dgram.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ changes:
601601
pr-url: https://github.com/nodejs/node/pull/13623
602602
description: The `recvBufferSize` and `sendBufferSize` options are
603603
supported now.
604-
- version: REPLACEME
604+
- version: v11.4.0
605605
pr-url: https://github.com/nodejs/node/pull/23798
606606
description: The `ipv6Only` option is supported.
607607
-->

doc/api/errors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1874,7 +1874,7 @@ Creation of a [`zlib`][] object failed due to incorrect configuration.
18741874
### HPE_HEADER_OVERFLOW
18751875
<!-- YAML
18761876
changes:
1877-
- version: REPLACEME
1877+
- version: v11.4.0
18781878
pr-url: https://github.com/nodejs/node/commit/186035243fad247e3955f
18791879
description: Max header size in `http_parser` was set to 8KB.
18801880
-->

doc/api/net.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ Listening on a file descriptor is not supported on Windows.
253253
<!-- YAML
254254
added: v0.11.14
255255
changes:
256-
- version: REPLACEME
256+
- version: v11.4.0
257257
pr-url: https://github.com/nodejs/node/pull/23798
258258
description: The `ipv6Only` option is supported.
259259
-->

doc/api/readline.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ The `rl.write()` method will write the data to the `readline` `Interface`'s
311311

312312
### rl\[Symbol.asyncIterator\]()
313313
<!-- YAML
314-
added: REPLACEME
314+
added: v11.4.0
315315
-->
316316

317317
> Stability: 1 - Experimental

doc/api/stream.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ See also: [`writable.cork()`][].
465465

466466
##### writable.writable
467467
<!-- YAML
468-
added: REPLACEME
468+
added: v11.4.0
469469
-->
470470

471471
* {boolean}
@@ -1024,7 +1024,7 @@ been emitted will return `null`. No runtime error will be raised.
10241024

10251025
##### readable.readable
10261026
<!-- YAML
1027-
added: REPLACEME
1027+
added: v11.4.0
10281028
-->
10291029

10301030
* {boolean}

doc/api/tls.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@ certificate.
651651
#### Certificate Object
652652
<!-- YAML
653653
changes:
654-
- version: REPLACEME
654+
- version: v11.4.0
655655
pr-url: https://github.com/nodejs/node/pull/24358
656656
description: Support Elliptic Curve public key info.
657657
-->
@@ -1054,7 +1054,7 @@ argument.
10541054
<!-- YAML
10551055
added: v0.11.13
10561056
changes:
1057-
- version: REPLACEME
1057+
- version: v11.4.0
10581058
pr-url: https://github.com/nodejs/node/pull/24405
10591059
description: The `minVersion` and `maxVersion` can be used to restrict
10601060
the allowed TLS protocol versions.

doc/api/util.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ property take precedence over `--trace-deprecation` and
183183
<!-- YAML
184184
added: v0.5.3
185185
changes:
186-
- version: REPLACEME
186+
- version: v11.4.0
187187
pr-url: https://github.com/nodejs/node/pull/23708
188188
description: The `%d`, `%f` and `%i` specifiers now support Symbols
189189
properly.
@@ -198,6 +198,9 @@ changes:
198198
first argument. This change removes previously present quotes
199199
from strings that were being output when the first argument
200200
was not a string.
201+
- version: v11.4.0
202+
pr-url: https://github.com/nodejs/node/pull/24806
203+
description: The `%o` specifier's `depth` has default depth of 4 again.
201204
- version: v11.0.0
202205
pr-url: https://github.com/nodejs/node/pull/17907
203206
description: The `%o` specifier's `depth` option will now fall back to the
@@ -386,7 +389,7 @@ stream.write('With ES6');
386389
<!-- YAML
387390
added: v0.3.0
388391
changes:
389-
- version: REPLACEME
392+
- version: v11.4.0
390393
pr-url: https://github.com/nodejs/node/pull/24326
391394
description: The `depth` default changed back to `2`.
392395
- version: v11.0.0

doc/changelogs/CHANGELOG_V11.md

+346
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)