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
diff options
context:
space:
mode:
authorDanielle Adams <adamzdanielle@gmail.com>2022-04-24 04:03:46 +0300
committerDanielle Adams <adamzdanielle@gmail.com>2022-04-27 04:00:36 +0300
commit3120691b35553a2ce3d62419b44fc4a0b9143e99 (patch)
tree133f65d073c9436f6fe608d08897e7f017a80b93 /doc/api/cli.md
parent8f248d43b9db0ccd9f23be0e771844907a330156 (diff)
2022-04-26, Version 16.15.0 'Gallium' (LTS)
Notable changes: Add fetch API Adds experimental support to the fetch API. This adds the `--experimental-fetch` flag that installs the `fetch`, `Request`, `Response`, `Headers`, and `FormData` globals. * (SEMVER-MINOR) add fetch (Michaël Zasso) https://github.com/nodejs/node/pull/41749 * (SEMVER-MINOR) add FormData global when fetch is enabled (Michaël Zasso) https://github.com/nodejs/node/pull/41956 Other notable changes * build: * remove broken x32 arch support (Ben Noordhuis) https://github.com/nodejs/node/pull/41905 * crypto: * (SEMVER-MINOR) add KeyObject.prototype.equals method (Filip Skokan) https://github.com/nodejs/node/pull/42093 * doc: * add @ShogunPanda to collaborators (Paolo Insogna) https://github.com/nodejs/node/pull/42362 * add JakobJingleheimer to collaborators list (Jacob Smith) https://github.com/nodejs/node/pull/42185 * add joesepi to collaborators (Joe Sepi) https://github.com/nodejs/node/pull/41914 * add marsonya to collaborators (Akhil Marsonya) https://github.com/nodejs/node/pull/41991 * deprecate string coercion in `fs.write`, `fs.writeFileSync` (Livia Medeiros) https://github.com/nodejs/node/pull/42149 * deprecate notice for process methods (Yash Ladha) https://github.com/nodejs/node/pull/41587 * esm: * (SEMVER-MINOR) support https remotely and http locally under flag (Bradley Farias) https://github.com/nodejs/node/pull/36328 * module: * (SEMVER-MINOR) unflag esm json modules (Geoffrey Booth) https://github.com/nodejs/node/pull/41736 * node-api: * (SEMVER-MINOR) add node_api_symbol_for() (Darshan Sen) https://github.com/nodejs/node/pull/41329 * process: * deprecate multipleResolves (Benjamin Gruenbaum) https://github.com/nodejs/node/pull/41872 * stream: * (SEMVER-MINOR) support some and every (Benjamin Gruenbaum) https://github.com/nodejs/node/pull/41573 * (SEMVER-MINOR) add toArray (Benjamin Gruenbaum) https://github.com/nodejs/node/pull/41553 * (SEMVER-MINOR) add forEach method (Benjamin Gruenbaum) https://github.com/nodejs/node/pull/41445 PR-URL: https://github.com/nodejs/node/pull/42847
Diffstat (limited to 'doc/api/cli.md')
-rw-r--r--doc/api/cli.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/api/cli.md b/doc/api/cli.md
index 3db570deb69..44ba09624b0 100644
--- a/doc/api/cli.md
+++ b/doc/api/cli.md
@@ -283,7 +283,9 @@ modifying the stack trace.
### `--experimental-global-webcrypto`
<!-- YAML
-added: v17.6.0
+added:
+ - v17.6.0
+ - v16.15.0
-->
Expose the [Web Crypto API][] on the global scope.
@@ -315,7 +317,9 @@ Specify the `module` of a custom experimental [ECMAScript module loader][].
### `--experimental-network-imports`
<!-- YAML
-added: v17.6.0
+added:
+ - v17.6.0
+ - v16.15.0
-->
> Stability: 1 - Experimental