Skip to content

Commit ea1ea6c

Browse files
committed
2024-01-04, Version 21.6.0 (Current)
Notable changes: doc: * (SEMVER-MINOR) add documentation for --build-snapshot-config (Anna Henningsen) #50453 lib,src,permission: * (SEMVER-MINOR) port path.resolve to C++ (Rafael Gonzaga) #50758 net: * (SEMVER-MINOR) add connection attempt events (Paolo Insogna) #51045 src: * (SEMVER-MINOR) support configurable snapshot (Joyee Cheung) #50453 src,permission: * (SEMVER-MINOR) add --allow-addon flag (Rafael Gonzaga) #51183 timers: * (SEMVER-MINOR) export timers.promises (Marco Ippolito) #51246 PR-URL: #51342 Signed-off-by: RafaelGSS <[email protected]>
1 parent fc10f88 commit ea1ea6c

File tree

8 files changed

+6835
-10
lines changed

8 files changed

+6835
-10
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.5.0">21.5.0</a></b><br/>
39+
<b><a href="doc/changelogs/CHANGELOG_V21.md#21.6.0">21.6.0</a></b><br/>
40+
<a href="doc/changelogs/CHANGELOG_V21.md#21.5.0">21.5.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V21.md#21.4.0">21.4.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V21.md#21.3.0">21.3.0</a><br/>
4243
<a href="doc/changelogs/CHANGELOG_V21.md#21.2.0">21.2.0</a><br/>

doc/api/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ If this flag is passed, the behavior can still be set to not abort through
106106
### `--allow-addons`
107107

108108
<!-- YAML
109-
added: REPLACEME
109+
added: v21.6.0
110110
-->
111111

112112
> Stability: 1.1 - Active development
@@ -367,7 +367,7 @@ Currently the support for run-time snapshot is experimental in that:
367367
### `--build-snapshot-config`
368368

369369
<!-- YAML
370-
added: REPLACEME
370+
added: v21.6.0
371371
-->
372372

373373
> Stability: 1 - Experimental

doc/api/n-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,7 @@ handle and/or callback scope inside a `napi_callback` is not necessary.
794794
#### `node_api_nogc_finalize`
795795

796796
<!-- YAML
797-
added: REPLACEME
797+
added: v21.6.0
798798
-->
799799

800800
> Stability: 1 - Experimental

doc/api/net.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ See [`net.createConnection()`][].
694694
### Event: `'connectionAttempt'`
695695

696696
<!-- YAML
697-
added: REPLACEME
697+
added: v21.6.0
698698
-->
699699

700700
* `ip` {number} The IP which the socket is attempting to connect to.
@@ -707,7 +707,7 @@ if the family autoselection algorithm is enabled in [`socket.connect(options)`][
707707
### Event: `'connectionAttemptFailed'`
708708

709709
<!-- YAML
710-
added: REPLACEME
710+
added: v21.6.0
711711
-->
712712

713713
* `ip` {number} The IP which the socket attempted to connect to.
@@ -721,7 +721,7 @@ if the family autoselection algorithm is enabled in [`socket.connect(options)`][
721721
### Event: `'connectionAttemptTimeout'`
722722

723723
<!-- YAML
724-
added: REPLACEME
724+
added: v21.6.0
725725
-->
726726

727727
* `ip` {number} The IP which the socket attempted to connect to.

doc/changelogs/CHANGELOG_V21.md

+168
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 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)

tags.lock

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1109327

tags.temp

+6,655
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)