Skip to content

Commit 6c7f304

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

File tree

8 files changed

+155
-17
lines changed

8 files changed

+155
-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
@@ -291,7 +291,7 @@ Enable experimental support for the [Fetch API][].
291291
### `--experimental-global-webcrypto`
292292

293293
<!-- YAML
294-
added: REPLACEME
294+
added: v17.6.0
295295
-->
296296

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

320320
<!-- YAML
321-
added: REPLACEME
321+
added: v17.6.0
322322
-->
323323

324324
> Stability: 1 - Experimental

doc/api/deprecations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3070,7 +3070,7 @@ Use [`buffer.subarray`][] which does the same thing instead.
30703070

30713071
<!-- YAML
30723072
changes:
3073-
- version: REPLACEME
3073+
- version: v17.6.0
30743074
pr-url: https://github.com/nodejs/node/pull/41872
30753075
description: Documentation-only deprecation.
30763076
-->
@@ -3084,7 +3084,7 @@ which diminished its usefulness.
30843084

30853085
<!-- YAML
30863086
changes:
3087-
- version: REPLACEME
3087+
- version: v17.6.0
30883088
pr-url: https://github.com/nodejs/node/pull/41587
30893089
description: Documentation-only deprecation.
30903090
-->

doc/api/fs.md

+3-3
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.
@@ -2071,7 +2071,7 @@ copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL, callback);
20712071
<!-- YAML
20722072
added: v16.7.0
20732073
changes:
2074-
- version: REPLACEME
2074+
- version: v17.6.0
20752075
pr-url: https://github.com/nodejs/node/pull/41819
20762076
description: Accepts an additional `verbatimSymlinks` option to specify
20772077
whether to perform path resolution for symlinks.
@@ -4661,7 +4661,7 @@ copyFileSync('source.txt', 'destination.txt', constants.COPYFILE_EXCL);
46614661
<!-- YAML
46624662
added: v16.7.0
46634663
changes:
4664-
- version: REPLACEME
4664+
- version: v17.6.0
46654665
pr-url: https://github.com/nodejs/node/pull/41819
46664666
description: Accepts an additional `verbatimSymlinks` option to specify
46674667
whether to perform path resolution for symlinks.

doc/api/globals.md

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

286286
<!-- YAML
287-
added: REPLACEME
287+
added: v17.6.0
288288
-->
289289

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

299299
<!-- YAML
300-
added: REPLACEME
300+
added: v17.6.0
301301
-->
302302

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

310310
<!-- YAML
311-
added: REPLACEME
311+
added: v17.6.0
312312
-->
313313

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

368368
<!-- YAML
369-
added: REPLACEME
369+
added: v17.6.0
370370
-->
371371

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

561561
<!-- YAML
562-
added: REPLACEME
562+
added: v17.6.0
563563
-->
564564

565565
> 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

doc/changelogs/CHANGELOG_V17.md

+137
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 17
26-
#define NODE_MINOR_VERSION 5
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 6
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)