Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorMyles Borins <mylesborins@google.com>2019-12-13 19:02:36 +0300
committerMyles Borins <mylesborins@google.com>2019-12-18 01:29:02 +0300
commitbef1e87e1cf3f5cd4f5ff22c787a0f3adc2c2b7b (patch)
tree1a52c8c59c2944b0d824eae2321f895106c8fce9 /doc/api
parent75c5de22182f85f709615dd7cfcc667967010496 (diff)
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 https://github.com/nodejs/node/pull/30904 * update uvwasi (Anna Henningsen) https://github.com/nodejs/node/pull/30745 * upgrade to libuv 1.34.0 (Colin Ihrig) https://github.com/nodejs/node/pull/30783 * doc: * docs deprecate http finished (Robert Nagy) https://github.com/nodejs/node/pull/28679 * events: * add captureRejection option (Matteo Collina) https://github.com/nodejs/node/pull/27867 * http: * add captureRejection support (Matteo Collina) https://github.com/nodejs/node/pull/27867 * llhttp opt-in insecure HTTP header parsing (Sam Roberts) https://github.com/nodejs/node/pull/30567 * http2: * implement capture rection for 'request' and 'stream' events (Matteo Collina) https://github.com/nodejs/node/pull/27867 * net: * implement capture rejections for 'connection' event (Matteo Collina) https://github.com/nodejs/node/pull/27867 * repl: * support previews by eager evaluating input (Ruben Bridgewater) https://github.com/nodejs/node/pull/30811 * stream: * add support for captureRejection option (Matteo Collina) https://github.com/nodejs/node/pull/27867 * tls: * implement capture rejections for 'secureConnection' event (Matteo Collina) https://github.com/nodejs/node/pull/27867 * expose IETF name for current cipher suite (Sam Roberts) https://github.com/nodejs/node/pull/30637 * worker: * add argv constructor option (legendecas) https://github.com/nodejs/node/pull/30559 PR-URL: https://github.com/nodejs/node/pull/30937
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/cli.md4
-rw-r--r--doc/api/deprecations.md2
-rw-r--r--doc/api/events.md8
-rw-r--r--doc/api/http.md4
-rw-r--r--doc/api/http2.md2
-rw-r--r--doc/api/repl.md2
-rw-r--r--doc/api/tls.md2
-rw-r--r--doc/api/worker_threads.md2
8 files changed, 13 insertions, 13 deletions
diff --git a/doc/api/cli.md b/doc/api/cli.md
index 745d274e0cc..37065087e17 100644
--- a/doc/api/cli.md
+++ b/doc/api/cli.md
@@ -211,7 +211,7 @@ itself.
### `--experimental-specifier-resolution=mode`
<!-- YAML
-added: REPLACEME
+added: v13.4.0
-->
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][].
### `--insecure-http-parser`
<!-- YAML
-added: REPLACEME
+added: v13.4.0
-->
Use an insecure HTTP parser that accepts invalid HTTP headers. This may allow
diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md
index cc8608c6c22..a73d1849936 100644
--- a/doc/api/deprecations.md
+++ b/doc/api/deprecations.md
@@ -2552,7 +2552,7 @@ and [`fs.createReadStream()`][]) or by passing a file descriptor in options.
### DEP0136: http finished
<!-- YAML
changes:
- - version: REPLACEME
+ - version: v13.4.0
pr-url: https://github.com/nodejs/node/pull/28679
description: Documentation-only deprecation.
-->
diff --git a/doc/api/events.md b/doc/api/events.md
index 3a558ec233f..434d8de8b57 100644
--- a/doc/api/events.md
+++ b/doc/api/events.md
@@ -212,7 +212,7 @@ recommendation is to **not use `async` functions as `'error'` event handlers**.
<!-- YAML
added: v0.1.26
changes:
- - version: REPLACEME
+ - version: v13.4.0
pr-url: https://github.com/nodejs/node/pull/27867
description: Added captureRejections option.
-->
@@ -759,7 +759,7 @@ emitter.emit('log');
### emitter\[Symbol.for('nodejs.rejection')\](err, eventName\[, ...args\])
<!-- YAML
-added: REPLACEME
+added: v13.4.0
-->
> Stability: 1 - captureRejections is experimental.
@@ -841,7 +841,7 @@ run();
## events.captureRejections
<!-- YAML
-added: REPLACEME
+added: v13.4.0
-->
> Stability: 1 - captureRejections is experimental.
@@ -852,7 +852,7 @@ Change the default `captureRejections` option on all new `EventEmitter` objects.
## events.captureRejectionSymbol
<!-- YAML
-added: REPLACEME
+added: v13.4.0
-->
> Stability: 1 - captureRejections is experimental.
diff --git a/doc/api/http.md b/doc/api/http.md
index 6427d56beee..3550136aebb 100644
--- a/doc/api/http.md
+++ b/doc/api/http.md
@@ -623,7 +623,7 @@ is finished.
### request.finished
<!-- YAML
added: v0.0.1
-deprecated: REPLACEME
+deprecated: v13.4.0
-->
> Stability: 0 - Deprecated. Use [`request.writableEnded`][].
@@ -1308,7 +1308,7 @@ is finished.
### response.finished
<!-- YAML
added: v0.0.2
-deprecated: REPLACEME
+deprecated: v13.4.0
-->
> Stability: 0 - Deprecated. Use [`response.writableEnded`][].
diff --git a/doc/api/http2.md b/doc/api/http2.md
index 2336547b982..f4781fa9965 100644
--- a/doc/api/http2.md
+++ b/doc/api/http2.md
@@ -3075,7 +3075,7 @@ is finished.
#### response.finished
<!-- YAML
added: v8.4.0
-deprecated: REPLACEME
+deprecated: v13.4.0
-->
> Stability: 0 - Deprecated. Use [`response.writableEnded`][].
diff --git a/doc/api/repl.md b/doc/api/repl.md
index c545be16cb8..4703022d3b5 100644
--- a/doc/api/repl.md
+++ b/doc/api/repl.md
@@ -510,7 +510,7 @@ with REPL instances programmatically.
<!-- YAML
added: v0.1.91
changes:
- - version: REPLACEME
+ - version: v13.4.0
pr-url: https://github.com/nodejs/node/pull/30811
description: The `preview` option is now available.
- version: v12.0.0
diff --git a/doc/api/tls.md b/doc/api/tls.md
index 7473c11a68b..ad73586ae96 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -827,7 +827,7 @@ changes:
pr-url: https://github.com/nodejs/node/pull/26625
description: Return the minimum cipher version, instead of a fixed string
(`'TLSv1/SSLv3'`).
- - version: REPLACEME
+ - version: v13.4.0
pr-url: https://github.com/nodejs/node/pull/30637
description: Return the IETF cipher name as `standardName`.
-->
diff --git a/doc/api/worker_threads.md b/doc/api/worker_threads.md
index a93bd5422e4..4d355bd0d56 100644
--- a/doc/api/worker_threads.md
+++ b/doc/api/worker_threads.md
@@ -510,7 +510,7 @@ changes:
- version: v13.2.0
pr-url: https://github.com/nodejs/node/pull/26628
description: The `resourceLimits` option was introduced.
- - version: REPLACEME
+ - version: v13.4.0
pr-url: https://github.com/nodejs/node/pull/30559
description: The `argv` option was introduced.
-->