Skip to content

Commit

Permalink
2022-02-10, Version 17.5.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

lib:
  * (SEMVER-MINOR) add fetch (Michaël Zasso) #41749
module:
  * unflag esm json modules (Geoffrey Booth) #41736
node-api:
  * (SEMVER-MINOR) add node_api_symbol_for() (Darshan Sen) #41329
stream:
  * (SEMVER-MINOR) add iterator helper find (linkgoron) #41849
  * (SEMVER-MINOR) add toArray (Benjamin Gruenbaum) #41553
  * (SEMVER-MINOR) add forEach method (Benjamin Gruenbaum) #41445
  * (SEMVER-MINOR) support some and every (Benjamin Gruenbaum) #41573
deps:
  * upgrade npm to 8.4.1 (npm team) [#41836](#41836)

PR-URL: #41897
  • Loading branch information
ruyadorno committed Feb 10, 2022
1 parent 28650ec commit b290a87
Show file tree
Hide file tree
Showing 11 changed files with 256 additions and 29 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -33,7 +33,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V17.md#17.4.0">17.4.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V17.md#17.5.0">17.5.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V17.md#17.4.0">17.4.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V17.md#17.3.1">17.3.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V17.md#17.3.0">17.3.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V17.md#17.2.0">17.2.0</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/buffer.md
Expand Up @@ -3387,7 +3387,7 @@ console.log(buf.subarray(-5, -2).toString());
<!-- YAML
added: v0.3.0
changes:
- version: REPLACEME
- version: v17.5.0
pr-url: https://github.com/nodejs/node/pull/41596
description: The buf.slice() method has been deprecated.
- version:
Expand Down
2 changes: 1 addition & 1 deletion doc/api/cli.md
Expand Up @@ -283,7 +283,7 @@ modifying the stack trace.
### `--experimental-fetch`

<!-- YAML
added: REPLACEME
added: v17.5.0
-->

Enable experimental support for the [Fetch API][].
Expand Down
8 changes: 4 additions & 4 deletions doc/api/crypto.md
Expand Up @@ -2472,12 +2472,12 @@ added: v15.6.0
<!-- YAML
added: v15.6.0
changes:
- version: REPLACEME
- version: v17.5.0
pr-url: https://github.com/nodejs/node/pull/41599
description: The `wildcards`, `partialWildcards`, `multiLabelWildcards`, and
`singleLabelSubdomains` options have been removed since they
had no effect.
- version: REPLACEME
- version: v17.5.0
pr-url: https://github.com/nodejs/node/pull/41569
description: The subject option can now be set to `'default'`.
-->
Expand Down Expand Up @@ -2507,7 +2507,7 @@ considered, even if the certificate contains no subject alternative names.
<!-- YAML
added: v15.6.0
changes:
- version: REPLACEME
- version: v17.5.0
pr-url: https://github.com/nodejs/node/pull/41569
description: The subject option can now be set to `'default'`.
-->
Expand Down Expand Up @@ -2548,7 +2548,7 @@ considered, even if the certificate contains no subject alternative names.
<!-- YAML
added: v15.6.0
changes:
- version: REPLACEME
- version: v17.5.0
pr-url: https://github.com/nodejs/node/pull/41571
description: The `options` argument has been removed since it had no effect.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/deprecations.md
Expand Up @@ -3049,7 +3049,7 @@ const w = new Writable({

<!-- YAML
changes:
- version: REPLACEME
- version: v17.5.0
pr-url: https://github.com/nodejs/node/pull/41596
description: Documentation-only deprecation.
-->
Expand Down
8 changes: 4 additions & 4 deletions doc/api/globals.md
Expand Up @@ -318,7 +318,7 @@ This variable may appear to be global but is not. See [`exports`][].
## `fetch`

<!-- YAML
added: REPLACEME
added: v17.5.0
-->

> Stability: 1 - Experimental. Enable this API with the [`--experimental-fetch`][]
Expand All @@ -344,7 +344,7 @@ Node.js this is different. The top-level scope is not the global scope;
## Class `Headers`

<!-- YAML
added: REPLACEME
added: v17.5.0
-->

> Stability: 1 - Experimental. Enable this API with the [`--experimental-fetch`][]
Expand Down Expand Up @@ -449,7 +449,7 @@ This variable may appear to be global but is not. See [`require()`][].
## `Response`

<!-- YAML
added: REPLACEME
added: v17.5.0
-->

> Stability: 1 - Experimental. Enable this API with the [`--experimental-fetch`][]
Expand All @@ -460,7 +460,7 @@ A browser-compatible implementation of {Response}.
## `Request`

<!-- YAML
added: REPLACEME
added: v17.5.0
-->

> Stability: 1 - Experimental. Enable this API with the [`--experimental-fetch`][]
Expand Down
4 changes: 2 additions & 2 deletions doc/api/n-api.md
Expand Up @@ -2495,8 +2495,8 @@ of the ECMAScript Language Specification.
#### `node_api_symbol_for`
<!-- YAML
added: REPLACEME
napiVersion: REPLACEME
added: v17.5.0
napiVersion: v17.5.0
-->
> Stability: 1 - Experimental
Expand Down
20 changes: 10 additions & 10 deletions doc/api/stream.md
Expand Up @@ -1780,7 +1780,7 @@ for await (const result of dnsResults) {
### `readable.forEach(fn[, options])`

<!-- YAML
added: REPLACEME
added: v17.5.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -1839,7 +1839,7 @@ console.log('done'); // Stream has finished
### `readable.toArray([options])`

<!-- YAML
added: REPLACEME
added: v17.5.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -1877,7 +1877,7 @@ const dnsResults = await Readable.from([
### `readable.some(fn[, options])`

<!-- YAML
added: REPLACEME
added: v17.5.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -1926,7 +1926,7 @@ console.log('done'); // Stream has finished
### `readable.find(fn[, options])`

<!-- YAML
added: REPLACEME
added: v17.5.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -1976,7 +1976,7 @@ console.log('done'); // Stream has finished
### `readable.every(fn[, options])`

<!-- YAML
added: REPLACEME
added: v17.5.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -2025,7 +2025,7 @@ console.log('done'); // Stream has finished
### `readable.flatMap(fn[, options])`

<!-- YAML
added: REPLACEME
added: v17.5.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -2074,7 +2074,7 @@ for await (const result of concatResult) {
### `readable.drop(limit[, options])`

<!-- YAML
added: REPLACEME
added: v17.5.0
-->

> Stability: 1 - Experimental
Expand All @@ -2096,7 +2096,7 @@ await Readable.from([1, 2, 3, 4]).drop(2).toArray(); // [3, 4]
### `readable.take(limit[, options])`

<!-- YAML
added: REPLACEME
added: v17.5.0
-->

> Stability: 1 - Experimental
Expand All @@ -2118,7 +2118,7 @@ await Readable.from([1, 2, 3, 4]).take(2).toArray(); // [1, 2]
### `readable.asIndexedPairs([options])`

<!-- YAML
added: REPLACEME
added: v17.5.0
-->

> Stability: 1 - Experimental
Expand All @@ -2142,7 +2142,7 @@ console.log(pairs); // [[0, 'a'], [1, 'b'], [2, 'c']]
### `readable.reduce(fn[, initial[, options]])`

<!-- YAML
added: REPLACEME
added: v17.5.0
-->

> Stability: 1 - Experimental
Expand Down
4 changes: 2 additions & 2 deletions doc/api/worker_threads.md
Expand Up @@ -68,7 +68,7 @@ added:
- v15.12.0
- v14.18.0
changes:
- version: REPLACEME
- version: v17.5.0
pr-url: https://github.com/nodejs/node/pull/41272
description: No longer experimental.
-->
Expand Down Expand Up @@ -298,7 +298,7 @@ added:
- v15.12.0
- v14.18.0
changes:
- version: REPLACEME
- version: v17.5.0
pr-url: https://github.com/nodejs/node/pull/41272
description: No longer experimental.
-->
Expand Down

0 comments on commit b290a87

Please sign in to comment.