Skip to content

Commit

Permalink
2022-02-22, Version 17.6.0 (Current)
Browse files Browse the repository at this point in the history
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) crypto: expose Web Crypto API on the global scope (Antoine du Hamel) #41938
- (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
  • Loading branch information
bengl committed Feb 21, 2022
1 parent f615f01 commit 3461360
Show file tree
Hide file tree
Showing 7 changed files with 153 additions and 16 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: v17.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: v17.6.0
-->

> Stability: 1 - Experimental
Expand Down
4 changes: 2 additions & 2 deletions doc/api/deprecations.md
Expand Up @@ -3070,7 +3070,7 @@ Use [`buffer.subarray`][] which does the same thing instead.

<!-- YAML
changes:
- version: REPLACEME
- version: v17.6.0
pr-url: https://github.com/nodejs/node/pull/41872
description: Documentation-only deprecation.
-->
Expand All @@ -3084,7 +3084,7 @@ which diminished its usefulness.

<!-- YAML
changes:
- version: REPLACEME
- version: v17.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: v17.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: v17.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: v17.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: v17.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: v17.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: v17.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: v17.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: v17.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: v17.6.0
-->

> Stability: 0 - Deprecated
Expand Down
137 changes: 137 additions & 0 deletions doc/changelogs/CHANGELOG_V17.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 17
#define NODE_MINOR_VERSION 5
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 6
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit 3461360

Please sign in to comment.