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:
authorMichaël Zasso <targos@protonmail.com>2021-09-06 10:44:13 +0300
committerMichaël Zasso <targos@protonmail.com>2021-09-07 13:03:33 +0300
commit6211d9358d20ddb5e4c6e700476ea7163df3e156 (patch)
treea6e663b5ab2df81c8a759acc0d63d03b7fea1692 /doc/api
parentc7222b35899ad352d78f288ddc16c6d19ca79a06 (diff)
2021-09-07, Version 16.9.0 (Current)
Notable changes: crypto: * (SEMVER-MINOR) add RSA-PSS params to asymmetricKeyDetails (Tobias Nießen) https://github.com/nodejs/node/pull/39851 deps: * (SEMVER-MINOR) add corepack (Maël Nison) https://github.com/nodejs/node/pull/39608 * (SEMVER-MINOR) update V8 to 9.3.345.16 (Michaël Zasso) https://github.com/nodejs/node/pull/39947 module: * (SEMVER-MINOR) support pattern trailers (Guy Bedford) https://github.com/nodejs/node/pull/39635 stream: * (SEMVER-MINOR) add stream.compose (Robert Nagy) https://github.com/nodejs/node/pull/39029 PR-URL: https://github.com/nodejs/node/pull/40011
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/corepack.md2
-rw-r--r--doc/api/crypto.md2
-rw-r--r--doc/api/errors.md2
-rw-r--r--doc/api/packages.md2
-rw-r--r--doc/api/stream.md2
5 files changed, 5 insertions, 5 deletions
diff --git a/doc/api/corepack.md b/doc/api/corepack.md
index 76de9e9fe98..ac696062212 100644
--- a/doc/api/corepack.md
+++ b/doc/api/corepack.md
@@ -1,6 +1,6 @@
# Corepack
-<!-- introduced_in=REPLACEME -->
+<!-- introduced_in=v16.9.0 -->
<!-- type=misc -->
> Stability: 1 - Experimental
diff --git a/doc/api/crypto.md b/doc/api/crypto.md
index 455692a254b..45f31a00384 100644
--- a/doc/api/crypto.md
+++ b/doc/api/crypto.md
@@ -1909,7 +1909,7 @@ const {
<!-- YAML
added: v15.7.0
changes:
- - version: REPLACEME
+ - version: v16.9.0
pr-url: https://github.com/nodejs/node/pull/39851
description: Expose `RSASSA-PSS-params` sequence parameters
for RSA-PSS keys.
diff --git a/doc/api/errors.md b/doc/api/errors.md
index 6ad85a2d150..adef81caa6d 100644
--- a/doc/api/errors.md
+++ b/doc/api/errors.md
@@ -2840,7 +2840,7 @@ The module must be successfully linked before instantiation.
### `ERR_WORKER_UNSUPPORTED_EXTENSION`
<!-- YAML
added: v11.0.0
-removed: REPLACEME
+removed: v16.9.0
-->
The pathname used for the main script of a worker has an
diff --git a/doc/api/packages.md b/doc/api/packages.md
index cc4964ea024..5268772de15 100644
--- a/doc/api/packages.md
+++ b/doc/api/packages.md
@@ -1084,7 +1084,7 @@ When a package has an [`"exports"`][] field, this will take precedence over the
### `"packageManager"`
<!-- YAML
-added: REPLACEME
+added: v16.9.0
-->
> Stability: 1 - Experimental
diff --git a/doc/api/stream.md b/doc/api/stream.md
index 13b1f2bef76..f874338b23e 100644
--- a/doc/api/stream.md
+++ b/doc/api/stream.md
@@ -1954,7 +1954,7 @@ failure, this can cause event listener leaks and swallowed errors.
### `stream.compose(...streams)`
<!-- YAML
-added: REPLACEME
+added: v16.9.0
-->
> Stability: 1 - `stream.compose` is experimental.