Skip to content

Commit bef1e87

Browse files
committed
2019-12-17, Version 13.4.0 (Current)
This is a security release. For more details about the vulnerability please consult the npm blog: https://blog.npmjs.org/post/189618601100/binary-planting-with-the-npm-cli Notable Changes: * deps: * update npm to 6.13.4 nodejs#30904 * update uvwasi (Anna Henningsen) nodejs#30745 * upgrade to libuv 1.34.0 (Colin Ihrig) nodejs#30783 * doc: * docs deprecate http finished (Robert Nagy) nodejs#28679 * events: * add captureRejection option (Matteo Collina) nodejs#27867 * http: * add captureRejection support (Matteo Collina) nodejs#27867 * llhttp opt-in insecure HTTP header parsing (Sam Roberts) nodejs#30567 * http2: * implement capture rection for 'request' and 'stream' events (Matteo Collina) nodejs#27867 * net: * implement capture rejections for 'connection' event (Matteo Collina) nodejs#27867 * repl: * support previews by eager evaluating input (Ruben Bridgewater) nodejs#30811 * stream: * add support for captureRejection option (Matteo Collina) nodejs#27867 * tls: * implement capture rejections for 'secureConnection' event (Matteo Collina) nodejs#27867 * expose IETF name for current cipher suite (Sam Roberts) nodejs#30637 * worker: * add argv constructor option (legendecas) nodejs#30559 PR-URL: nodejs#30937
1 parent 75c5de2 commit bef1e87

10 files changed

+171
-14
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ release.
3030
</tr>
3131
<tr>
3232
<td valign="top">
33-
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.3.0">13.3.0</a></b><br/>
33+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.4.0">13.4.0</a></b><br/>
34+
<a href="doc/changelogs/CHANGELOG_V13.md#13.3.0">13.3.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V13.md#13.2.0">13.2.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V13.md#13.1.0">13.1.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V13.md#13.0.1">13.0.1</a><br/>

doc/api/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ itself.
211211

212212
### `--experimental-specifier-resolution=mode`
213213
<!-- YAML
214-
added: REPLACEME
214+
added: v13.4.0
215215
-->
216216

217217
Sets the resolution algorithm for resolving ES module specifiers. Valid options
@@ -421,7 +421,7 @@ Specify the `module` of a custom [experimental ECMAScript Module loader][].
421421

422422
### `--insecure-http-parser`
423423
<!-- YAML
424-
added: REPLACEME
424+
added: v13.4.0
425425
-->
426426

427427
Use an insecure HTTP parser that accepts invalid HTTP headers. This may allow

doc/api/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2552,7 +2552,7 @@ and [`fs.createReadStream()`][]) or by passing a file descriptor in options.
25522552
### DEP0136: http finished
25532553
<!-- YAML
25542554
changes:
2555-
- version: REPLACEME
2555+
- version: v13.4.0
25562556
pr-url: https://github.com/nodejs/node/pull/28679
25572557
description: Documentation-only deprecation.
25582558
-->

doc/api/events.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ recommendation is to **not use `async` functions as `'error'` event handlers**.
212212
<!-- YAML
213213
added: v0.1.26
214214
changes:
215-
- version: REPLACEME
215+
- version: v13.4.0
216216
pr-url: https://github.com/nodejs/node/pull/27867
217217
description: Added captureRejections option.
218218
-->
@@ -759,7 +759,7 @@ emitter.emit('log');
759759

760760
### emitter\[Symbol.for('nodejs.rejection')\](err, eventName\[, ...args\])
761761
<!-- YAML
762-
added: REPLACEME
762+
added: v13.4.0
763763
-->
764764

765765
> Stability: 1 - captureRejections is experimental.
@@ -841,7 +841,7 @@ run();
841841

842842
## events.captureRejections
843843
<!-- YAML
844-
added: REPLACEME
844+
added: v13.4.0
845845
-->
846846

847847
> Stability: 1 - captureRejections is experimental.
@@ -852,7 +852,7 @@ Change the default `captureRejections` option on all new `EventEmitter` objects.
852852

853853
## events.captureRejectionSymbol
854854
<!-- YAML
855-
added: REPLACEME
855+
added: v13.4.0
856856
-->
857857

858858
> Stability: 1 - captureRejections is experimental.

doc/api/http.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ is finished.
623623
### request.finished
624624
<!-- YAML
625625
added: v0.0.1
626-
deprecated: REPLACEME
626+
deprecated: v13.4.0
627627
-->
628628

629629
> Stability: 0 - Deprecated. Use [`request.writableEnded`][].
@@ -1308,7 +1308,7 @@ is finished.
13081308
### response.finished
13091309
<!-- YAML
13101310
added: v0.0.2
1311-
deprecated: REPLACEME
1311+
deprecated: v13.4.0
13121312
-->
13131313

13141314
> Stability: 0 - Deprecated. Use [`response.writableEnded`][].

doc/api/http2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3075,7 +3075,7 @@ is finished.
30753075
#### response.finished
30763076
<!-- YAML
30773077
added: v8.4.0
3078-
deprecated: REPLACEME
3078+
deprecated: v13.4.0
30793079
-->
30803080

30813081
> Stability: 0 - Deprecated. Use [`response.writableEnded`][].

doc/api/repl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ with REPL instances programmatically.
510510
<!-- YAML
511511
added: v0.1.91
512512
changes:
513-
- version: REPLACEME
513+
- version: v13.4.0
514514
pr-url: https://github.com/nodejs/node/pull/30811
515515
description: The `preview` option is now available.
516516
- version: v12.0.0

doc/api/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ changes:
827827
pr-url: https://github.com/nodejs/node/pull/26625
828828
description: Return the minimum cipher version, instead of a fixed string
829829
(`'TLSv1/SSLv3'`).
830-
- version: REPLACEME
830+
- version: v13.4.0
831831
pr-url: https://github.com/nodejs/node/pull/30637
832832
description: Return the IETF cipher name as `standardName`.
833833
-->

doc/api/worker_threads.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ changes:
510510
- version: v13.2.0
511511
pr-url: https://github.com/nodejs/node/pull/26628
512512
description: The `resourceLimits` option was introduced.
513-
- version: REPLACEME
513+
- version: v13.4.0
514514
pr-url: https://github.com/nodejs/node/pull/30559
515515
description: The `argv` option was introduced.
516516
-->

doc/changelogs/CHANGELOG_V13.md

+156
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)