Skip to content

Commit

Permalink
2022-02-22, Version 17.6.0 (Current), @bengl
Browse files Browse the repository at this point in the history
Notable changes:

* [bdbe655] - doc: add marsonya to collaborators (Akhil Marsonya) nodejs#41991
* [8fe8dee] - doc: deprecate notice for process methods (Yash Ladha) nodejs#41587
* [abd6967] - stream: revert `map` spec compliance (Benjamin Gruenbaum) nodejs#41931
* [b968d89] - build: remove broken x32 arch support (Ben Noordhuis) nodejs#41905
* [ba639d0] - (SEMVER-MINOR) esm: support https remotely and http locally under flag (Bradley Farias) nodejs#36328
* [0de611f] - doc: add joesepi to collaborators (Joe Sepi) nodejs#41914
* [5796c3a] - process: deprecate multipleResolves (Benjamin Gruenbaum) nodejs#41872
  • Loading branch information
bengl committed Feb 21, 2022
1 parent 3ae03ee commit 1b31ed3
Show file tree
Hide file tree
Showing 7 changed files with 141 additions and 18 deletions.
4 changes: 2 additions & 2 deletions doc/api/cli.md
Expand Up @@ -291,7 +291,7 @@ Enable experimental support for the [Fetch API][].
### `--experimental-global-webcrypto`

<!-- YAML
added: REPLACEME
added: 17.6.0
-->

Expose the [Web Crypto API][] on the global scope.
Expand All @@ -318,7 +318,7 @@ Specify the `module` of a custom experimental [ECMAScript module loader][].
### `--experimental-network-imports`

<!-- YAML
added: REPLACEME
added: 17.6.0
-->

> Stability: 1 - Experimental
Expand Down
8 changes: 4 additions & 4 deletions doc/api/deprecations.md
Expand Up @@ -3064,11 +3064,11 @@ This method was deprecated because it is not compatible with

Use [`buffer.subarray`][] which does the same thing instead.

### DEPXXXX: `process.on('multipleResolves', handler)`
### DEP0159: `process.on('multipleResolves', handler)`

<!-- YAML
changes:
- version: REPLACEME
- version: 17.6.0
pr-url: https://github.com/nodejs/node/pull/41872
description: Documentation-only deprecation.
-->
Expand All @@ -3078,11 +3078,11 @@ Type: Documentation-only
This event was deprecated because it did not work with V8 promise combinators
which diminished its usefulness.

### DEP0161: `process._getActiveRequests()` and `process._getActiveHandles()`
### DEP0160: `process._getActiveRequests()` and `process._getActiveHandles()`

<!-- YAML
changes:
- version: REPLACEME
- version: 17.6.0
pr-url: https://github.com/nodejs/node/pull/41587
description: Documentation-only deprecation.
-->
Expand Down
6 changes: 3 additions & 3 deletions doc/api/fs.md
Expand Up @@ -877,7 +877,7 @@ try {
<!-- YAML
added: v16.7.0
changes:
- version: REPLACEME
- version: 17.6.0
pr-url: https://github.com/nodejs/node/pull/41819
description: Accepts an additional `verbatimSymlinks` option to specify
whether to perform path resolution for symlinks.
Expand Down Expand Up @@ -2071,7 +2071,7 @@ copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL, callback);
<!-- YAML
added: v16.7.0
changes:
- version: REPLACEME
- version: 17.6.0
pr-url: https://github.com/nodejs/node/pull/41819
description: Accepts an additional `verbatimSymlinks` option to specify
whether to perform path resolution for symlinks.
Expand Down Expand Up @@ -4661,7 +4661,7 @@ copyFileSync('source.txt', 'destination.txt', constants.COPYFILE_EXCL);
<!-- YAML
added: v16.7.0
changes:
- version: REPLACEME
- version: 17.6.0
pr-url: https://github.com/nodejs/node/pull/41819
description: Accepts an additional `verbatimSymlinks` option to specify
whether to perform path resolution for symlinks.
Expand Down
10 changes: 5 additions & 5 deletions doc/api/globals.md
Expand Up @@ -284,7 +284,7 @@ Used to print to stdout and stderr. See the [`console`][] section.
## `Crypto`

<!-- YAML
added: REPLACEME
added: 17.6.0
-->

> Stability: 1 - Experimental. Enable this API with the
Expand All @@ -297,7 +297,7 @@ only if the Node.js binary was compiled with including support for the
## `crypto`

<!-- YAML
added: REPLACEME
added: 17.6.0
-->

> Stability: 1 - Experimental. Enable this API with the
Expand All @@ -308,7 +308,7 @@ A browser-compatible implementation of the [Web Crypto API][].
## `CryptoKey`

<!-- YAML
added: REPLACEME
added: 17.6.0
-->

> Stability: 1 - Experimental. Enable this API with the
Expand Down Expand Up @@ -366,7 +366,7 @@ A browser-compatible implementation of the [`fetch()`][] function.
## Class `FormData`

<!-- YAML
added: REPLACEME
added: 17.6.0
-->

> Stability: 1 - Experimental. Enable this API with the [`--experimental-fetch`][]
Expand Down Expand Up @@ -559,7 +559,7 @@ The WHATWG [`structuredClone`][] method.
## `SubtleCrypto`

<!-- YAML
added: REPLACEME
added: 17.6.0
-->

> Stability: 1 - Experimental. Enable this API with the
Expand Down
2 changes: 1 addition & 1 deletion doc/api/process.md
Expand Up @@ -181,7 +181,7 @@ See [Advanced serialization for `child_process`][] for more details.

<!-- YAML
added: v10.12.0
deprecated: REPLACEME
deprecated: 17.6.0
-->

> Stability: 0 - Deprecated
Expand Down

0 comments on commit 1b31ed3

Please sign in to comment.