Skip to content

Commit e133e51

Browse files
committed
2024-01-15, 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 e6707c3 commit e133e51

File tree

5 files changed

+179
-7
lines changed

5 files changed

+179
-7
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.

0 commit comments

Comments
 (0)