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:
authorRuben Bridgewater <ruben@bridgewater.de>2020-04-28 14:54:04 +0300
committerRuben Bridgewater <ruben@bridgewater.de>2020-04-29 00:00:30 +0300
commit9fc74f161371a6898f22747184a0ece522f5b912 (patch)
tree7f1c4ff9c606f69ae75dc3c5b8479147758e68ef /doc/api
parent386d158a08c56754aaa688cd0a3367f2c2e95a5d (diff)
2020-04-29, Version 13.14.0 (Current)v13.14.0
Notable Changes: * async_hooks**: * Merge `run` and `exit` methods (Andrey Pechkurov) https://github.com/nodejs/node/pull/31950 * Prevent sync methods of async storage exiting outer context (Stephen Belanger) https://github.com/nodejs/node/pull/31950 * vm: * Add `importModuleDynamically` option to compileFunction (Gus Caplan) https://github.com/nodejs/node/pull/32985 New core collaborators: With this release, we welcome two new Node.js core collaborators: * Juan José Arboleda @juanarbol https://github.com/nodejs/node/pull/32906 * Andrey Pechkurov @puzpuzpuz https://github.com/nodejs/node/pull/32817 PR-URL: https://github.com/nodejs/node/pull/33122
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/cli.md2
-rw-r--r--doc/api/deprecations.md2
-rw-r--r--doc/api/http.md4
-rw-r--r--doc/api/https.md2
-rw-r--r--doc/api/tls.md2
-rw-r--r--doc/api/vm.md2
6 files changed, 7 insertions, 7 deletions
diff --git a/doc/api/cli.md b/doc/api/cli.md
index c59c266c387..2e9f5ddcf0b 100644
--- a/doc/api/cli.md
+++ b/doc/api/cli.md
@@ -648,7 +648,7 @@ Name of the file to which the report will be written.
<!-- YAML
added: v11.8.0
changes:
- - version: REPLACEME
+ - version: v13.14.0
pr-url: https://github.com/nodejs/node/pull/32496
description: This option is no longer considered experimental.
- version: v12.0.0
diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md
index 9d9ed417493..2551c59f181 100644
--- a/doc/api/deprecations.md
+++ b/doc/api/deprecations.md
@@ -2573,7 +2573,7 @@ To maintain existing behaviour `response.finished` should be replaced with
### DEP0140: Use `request.destroy()` instead of `request.abort()`
<!-- YAML
changes:
- - version: REPLACEME
+ - version: v13.14.0
pr-url: https://github.com/nodejs/node/pull/32807
description: Documentation-only deprecation.
-->
diff --git a/doc/api/http.md b/doc/api/http.md
index 7f097b0bc3a..b69de65103e 100644
--- a/doc/api/http.md
+++ b/doc/api/http.md
@@ -568,7 +568,7 @@ server.listen(1337, '127.0.0.1', () => {
### `request.abort()`
<!-- YAML
added: v0.3.8
-deprecated: REPLACEME
+deprecated: v13.14.0
-->
Marks the request as aborting. Calling this will cause remaining data
@@ -640,7 +640,7 @@ See [`writable.destroy()`][] for further details.
#### `request.destroyed`
<!-- YAML
-added: REPLACEME
+added: v13.14.0
-->
* {boolean}
diff --git a/doc/api/https.md b/doc/api/https.md
index 2b19831e9e9..28529c8d577 100644
--- a/doc/api/https.md
+++ b/doc/api/https.md
@@ -238,7 +238,7 @@ Global instance of [`https.Agent`][] for all HTTPS client requests.
<!-- YAML
added: v0.3.6
changes:
- - version: REPLACEME
+ - version: v13.14.0
pr-url: https://github.com/nodejs/node/pull/32786
description: The `highWaterMark` option is accepted now.
- version: v10.9.0
diff --git a/doc/api/tls.md b/doc/api/tls.md
index 869436517c6..2e1d99b5ae6 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -1274,7 +1274,7 @@ being issued by trusted CA (`options.ca`).
<!-- YAML
added: v0.11.3
changes:
- - version: REPLACEME
+ - version: v13.14.0
pr-url: https://github.com/nodejs/node/pull/32786
description: The `highWaterMark` option is accepted now.
- version: v13.6.0
diff --git a/doc/api/vm.md b/doc/api/vm.md
index e959ebc66ff..bf71c2a5f61 100644
--- a/doc/api/vm.md
+++ b/doc/api/vm.md
@@ -774,7 +774,7 @@ const vm = require('vm');
<!-- YAML
added: v10.10.0
changes:
- - version: REPLACEME
+ - version: v13.14.0
pr-url: https://github.com/nodejs/node/pull/32985
description: The `importModuleDynamically` option is now supported.
-->