Skip to content

Commit

Permalink
2024-08-21, Version 20.17.0 'Iron' (LTS)
Browse files Browse the repository at this point in the history
Notable changes:

http:
  * (SEMVER-MINOR) add diagnostics channel `http.client.request.error` (Kohei Ueno) #54054
meta:
  * add jake to collaborators (jakecastelli) #54004
module:
  * (SEMVER-MINOR) support require()ing synchronous ESM graphs (Joyee Cheung) #51977
path:
  * (SEMVER-MINOR) add `matchesGlob` method (Aviv Keller) #52881
stream:
  * (SEMVER-MINOR) expose DuplexPair API (Austin Wright) #34111
  * (SEMVER-MINOR) implement `min` option for `ReadableStreamBYOBReader.read` (Mattias Buelens) #50888

PR-URL: #54447
  • Loading branch information
marco-ippolito committed Aug 19, 2024
1 parent 91dea21 commit 75864c1
Show file tree
Hide file tree
Showing 9 changed files with 242 additions and 11 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.16.0">20.16.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.17.0">20.17.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.16.0">20.16.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.15.1">20.15.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.15.0">20.15.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.14.0">20.14.0</a><br/>
Expand Down
4 changes: 2 additions & 2 deletions doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,7 @@ Use the specified file as a security policy.
### `--experimental-require-module`

<!-- YAML
added: REPLACEME
added: v20.17.0
-->

> Stability: 1.1 - Active Development
Expand Down Expand Up @@ -1714,7 +1714,7 @@ Identical to `-e` but prints the result.
### `--experimental-print-required-tla`

<!-- YAML
added: REPLACEME
added: v20.17.0
-->

This flag is only useful when `--experimental-require-module` is enabled.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/path.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ path.format({
## `path.matchesGlob(path, pattern)`

<!-- YAML
added: REPLACEME
added: v20.17.0
-->

> Stability: 1 - Experimental
Expand Down
2 changes: 1 addition & 1 deletion doc/api/stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -2706,7 +2706,7 @@ further errors except from `_destroy()` may be emitted as `'error'`.
#### `stream.duplexPair([options])`

<!-- YAML
added: REPLACEME
added: v20.17.0
-->

* `options` {Object} A value to pass to both [`Duplex`][] constructors,
Expand Down
2 changes: 1 addition & 1 deletion doc/api/tls.md
Original file line number Diff line number Diff line change
Expand Up @@ -1536,7 +1536,7 @@ protocol.
### `tlsSocket.setKeyCert(context)`

<!-- YAML
added: REPLACEME
added: v20.17.0
-->

* `context` {Object|tls.SecureContext} An object containing at least `key` and
Expand Down
2 changes: 1 addition & 1 deletion doc/api/webcrypto.md
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ The algorithms currently supported include:
<!-- YAML
added: v15.0.0
changes:
- version: REPLACEME
- version: v20.17.0
pr-url: https://github.com/nodejs/node/pull/53601

Check warning on line 576 in doc/api/webcrypto.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: The length parameter is now optional for `'ECDH'`, `'X25519'`,
and `'X448'`.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/webstreams.md
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ added: v16.5.0
<!-- YAML
added: v16.5.0
changes:
- version: REPLACEME
- version: v20.17.0
pr-url: https://github.com/nodejs/node/pull/54044

Check warning on line 622 in doc/api/webstreams.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Added `min` option.
-->
Expand Down
230 changes: 230 additions & 0 deletions doc/changelogs/CHANGELOG_V20.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 20
#define NODE_MINOR_VERSION 16
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 17
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 1
#define NODE_VERSION_LTS_CODENAME "Iron"

#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 75864c1

Please sign in to comment.