Skip to content

Commit f4e5beb

Browse files
committed
2023-10-24, Version 21.1.0 (Current)
Notable changes: doc: * add H4ad to collaborators (Vinícius Lourenço) #50217 esm: * (SEMVER-MINOR) detect ESM syntax in ambiguous JavaScript (Geoffrey Booth) #50096 fs: * (SEMVER-MINOR) add flush option to appendFile() functions (Colin Ihrig) #50095 lib: * (SEMVER-MINOR) add `navigator.userAgent` (Yagiz Nizipli) #50200 stream: * (SEMVER-MINOR) allow pass stream class to `stream.compose` (Alex Yang) #50187 * call helper function from push and unshift (Raz Luvaton) #50173 PR-URL: #50335
1 parent f4da308 commit f4e5beb

File tree

9 files changed

+142
-17
lines changed

9 files changed

+142
-17
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ release.
3636
</tr>
3737
<tr>
3838
<td valign="top">
39-
<b><a href="doc/changelogs/CHANGELOG_V21.md#21.0.0">21.0.0</a></b><br/>
39+
<b><a href="doc/changelogs/CHANGELOG_V21.md#21.1.0">21.1.0</a></b><br/>
40+
<a href="doc/changelogs/CHANGELOG_V21.md#21.0.0">21.0.0</a><br/>
4041
</td>
4142
<td valign="top">
4243
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.8.1">20.8.1</a></b><br/>

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ JavaScript.
624624

625625
<!-- YAML
626626
added:
627-
- REPLACEME
627+
- v21.1.0
628628
-->
629629

630630
> Stability: 1.0 - Early development

doc/api/errors.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1755,7 +1755,7 @@ An attempt was made to construct an object using a non-public constructor.
17551755

17561756
<!-- YAML
17571757
added:
1758-
- REPLACEME
1758+
- v21.1.0
17591759
-->
17601760

17611761
An import `type` attribute was provided, but the specified module is of a
@@ -1767,7 +1767,7 @@ different type.
17671767

17681768
<!-- YAML
17691769
added:
1770-
- REPLACEME
1770+
- v21.1.0
17711771
-->
17721772

17731773
An import attribute is missing, preventing the specified module to be imported.
@@ -3302,7 +3302,7 @@ An invalid transfer object was passed to `postMessage()`.
33023302
added:
33033303
- v17.1.0
33043304
- v16.14.0
3305-
removed: REPLACEME
3305+
removed: v21.1.0
33063306
-->
33073307

33083308
An import assertion has failed, preventing the specified module to be imported.
@@ -3315,7 +3315,7 @@ An import assertion has failed, preventing the specified module to be imported.
33153315
added:
33163316
- v17.1.0
33173317
- v16.14.0
3318-
removed: REPLACEME
3318+
removed: v21.1.0
33193319
-->
33203320

33213321
An import assertion is missing, preventing the specified module to be imported.
@@ -3328,7 +3328,7 @@ An import assertion is missing, preventing the specified module to be imported.
33283328
added:
33293329
- v17.1.0
33303330
- v16.14.0
3331-
removed: REPLACEME
3331+
removed: v21.1.0
33323332
-->
33333333

33343334
An import attribute is not supported by this version of Node.js.

doc/api/fs.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ longer be used.
180180
<!-- YAML
181181
added: v10.0.0
182182
changes:
183-
- version: REPLACEME
183+
- version: v21.1.0
184184
pr-url: https://github.com/nodejs/node/pull/50095
185185
description: The `flush` option is now supported.
186186
- version:
@@ -902,7 +902,7 @@ the error raised if the file is not accessible.
902902
<!-- YAML
903903
added: v10.0.0
904904
changes:
905-
- version: REPLACEME
905+
- version: v21.1.0
906906
pr-url: https://github.com/nodejs/node/pull/50095
907907
description: The `flush` option is now supported.
908908
-->
@@ -2063,7 +2063,7 @@ the user from reading or writing to it.
20632063
<!-- YAML
20642064
added: v0.6.7
20652065
changes:
2066-
- version: REPLACEME
2066+
- version: v21.1.0
20672067
pr-url: https://github.com/nodejs/node/pull/50095
20682068
description: The `flush` option is now supported.
20692069
- version: v18.0.0
@@ -5158,7 +5158,7 @@ try {
51585158
<!-- YAML
51595159
added: v0.6.7
51605160
changes:
5161-
- version: REPLACEME
5161+
- version: v21.1.0
51625162
pr-url: https://github.com/nodejs/node/pull/50095
51635163
description: The `flush` option is now supported.
51645164
- version: v7.0.0

doc/api/globals.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ console.log(`This process is running on ${navigator.hardwareConcurrency} logical
640640
### `navigator.userAgent`
641641

642642
<!-- YAML
643-
added: REPLACEME
643+
added: v21.1.0
644644
-->
645645

646646
* {string}

doc/api/stream.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2823,7 +2823,7 @@ const server = http.createServer((req, res) => {
28232823
<!-- YAML
28242824
added: v16.9.0
28252825
changes:
2826-
- version: REPLACEME
2826+
- version: v21.1.0
28272827
pr-url: https://github.com/nodejs/node/pull/50187
28282828
description: Added support for stream class.
28292829
- version:

doc/api/vm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ The identifier of the current module, as set in the constructor.
619619

620620
<!-- YAML
621621
changes:
622-
- version: REPLACEME
622+
- version: v21.1.0
623623
pr-url: https://github.com/nodejs/node/pull/50141
624624
description: The option `extra.assert` is renamed to `extra.attributes`. The
625625
former name is still provided for backward compatibility.

doc/changelogs/CHANGELOG_V21.md

+124
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 21
26-
#define NODE_MINOR_VERSION 0
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 1
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)