Skip to content

Commit 175638b

Browse files
benglTrott
authored andcommitted
2022-02-22, Version 17.6.0 (Current)
Notable changes: - doc: deprecate notice for process methods (Yash Ladha) nodejs#41587 - stream: revert `map` spec compliance (Benjamin Gruenbaum) nodejs#41931 - build: remove broken x32 arch support (Ben Noordhuis) nodejs#41905 - (SEMVER-MINOR) esm: support https remotely and http locally under flag (Bradley Farias) nodejs#36328 - (SEMVER-MINOR) fs: support copy of relative links with cp and cpSync (Marcos Bjoerkelund) nodejs#41819 - (SEMVER-MINOR) lib: add FormData global when fetch is enabled (Michaël Zasso) nodejs#41956 - (SEMVER-MINOR) readline: bind keystroke `ctrl`+`6` to redo (Ray) nodejs#41662 - process: deprecate multipleResolves (Benjamin Gruenbaum) nodejs#41872 - Documentation-only. Dependency updates: - deps: upgrade npm to 8.5.1 (npm-robot) nodejs#42039 - deps: update undici to 3e267ece5f (Michaël Zasso) nodejs#41955 - deps: upgrade npm to 8.5.0 (npm-robot) nodejs#41925 New collaborators: - doc: add marsonya to collaborators (Akhil Marsonya) nodejs#41991 - doc: add joesepi to collaborators (Joe Sepi) nodejs#41914 PR-URL: nodejs#42072
1 parent dc28d63 commit 175638b

File tree

7 files changed

+154
-17
lines changed

7 files changed

+154
-17
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ release.
3333
</tr>
3434
<tr>
3535
<td valign="top">
36-
<b><a href="doc/changelogs/CHANGELOG_V17.md#17.5.0">17.5.0</a></b><br/>
36+
<b><a href="doc/changelogs/CHANGELOG_V17.md#17.6.0">17.6.0</a></b><br/>
37+
<a href="doc/changelogs/CHANGELOG_V17.md#17.5.0">17.5.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V17.md#17.4.0">17.4.0</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V17.md#17.3.1">17.3.1</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V17.md#17.3.0">17.3.0</a><br/>

doc/api/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ modifying the stack trace.
283283
### `--experimental-global-webcrypto`
284284

285285
<!-- YAML
286-
added: REPLACEME
286+
added: v17.6.0
287287
-->
288288

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

312312
<!-- YAML
313-
added: REPLACEME
313+
added: v17.6.0
314314
-->
315315

316316
> Stability: 1 - Experimental

doc/api/deprecations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3082,7 +3082,7 @@ changes:
30823082
- version: REPLACEME
30833083
pr-url: https://github.com/nodejs/node/pull/41896
30843084
description: Runtime deprecation.
3085-
- version: REPLACEME
3085+
- version: v17.6.0
30863086
pr-url: https://github.com/nodejs/node/pull/41872
30873087
description: Documentation-only deprecation.
30883088
-->
@@ -3096,7 +3096,7 @@ which diminished its usefulness.
30963096

30973097
<!-- YAML
30983098
changes:
3099-
- version: REPLACEME
3099+
- version: v17.6.0
31003100
pr-url: https://github.com/nodejs/node/pull/41587
31013101
description: Documentation-only deprecation.
31023102
-->

doc/api/fs.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -877,7 +877,7 @@ try {
877877
<!-- YAML
878878
added: v16.7.0
879879
changes:
880-
- version: REPLACEME
880+
- version: v17.6.0
881881
pr-url: https://github.com/nodejs/node/pull/41819
882882
description: Accepts an additional `verbatimSymlinks` option to specify
883883
whether to perform path resolution for symlinks.
@@ -2101,15 +2101,15 @@ copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL, callback);
21012101
<!-- YAML
21022102
added: v16.7.0
21032103
changes:
2104-
- version: REPLACEME
2105-
pr-url: https://github.com/nodejs/node/pull/41819
2106-
description: Accepts an additional `verbatimSymlinks` option to specify
2107-
whether to perform path resolution for symlinks.
21082104
- version: REPLACEME
21092105
pr-url: https://github.com/nodejs/node/pull/41678
21102106
description: Passing an invalid callback to the `callback` argument
21112107
now throws `ERR_INVALID_ARG_TYPE` instead of
21122108
`ERR_INVALID_CALLBACK`.
2109+
- version: v17.6.0
2110+
pr-url: https://github.com/nodejs/node/pull/41819
2111+
description: Accepts an additional `verbatimSymlinks` option to specify
2112+
whether to perform path resolution for symlinks.
21132113
-->
21142114
21152115
> Stability: 1 - Experimental
@@ -4872,7 +4872,7 @@ copyFileSync('source.txt', 'destination.txt', constants.COPYFILE_EXCL);
48724872
<!-- YAML
48734873
added: v16.7.0
48744874
changes:
4875-
- version: REPLACEME
4875+
- version: v17.6.0
48764876
pr-url: https://github.com/nodejs/node/pull/41819
48774877
description: Accepts an additional `verbatimSymlinks` option to specify
48784878
whether to perform path resolution for symlinks.

doc/api/globals.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ Used to print to stdout and stderr. See the [`console`][] section.
310310
## `Crypto`
311311

312312
<!-- YAML
313-
added: REPLACEME
313+
added: v17.6.0
314314
-->
315315

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

325325
<!-- YAML
326-
added: REPLACEME
326+
added: v17.6.0
327327
-->
328328

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

336336
<!-- YAML
337-
added: REPLACEME
337+
added: v17.6.0
338338
-->
339339

340340
> Stability: 1 - Experimental. Enable this API with the
@@ -392,7 +392,7 @@ A browser-compatible implementation of the [`fetch()`][] function.
392392
## Class `FormData`
393393

394394
<!-- YAML
395-
added: REPLACEME
395+
added: v17.6.0
396396
-->
397397

398398
> Stability: 1 - Experimental. Disable this API with the [`--no-experimental-fetch`][]
@@ -585,7 +585,7 @@ The WHATWG [`structuredClone`][] method.
585585
## `SubtleCrypto`
586586

587587
<!-- YAML
588-
added: REPLACEME
588+
added: v17.6.0
589589
-->
590590

591591
> Stability: 1 - Experimental. Enable this API with the

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ See [Advanced serialization for `child_process`][] for more details.
181181

182182
<!-- YAML
183183
added: v10.12.0
184-
deprecated: REPLACEME
184+
deprecated: v17.6.0
185185
-->
186186

187187
> Stability: 0 - Deprecated

0 commit comments

Comments
 (0)