Skip to content

Commit

Permalink
2024-01-15, Version 21.6.0 (Current)
Browse files Browse the repository at this point in the history
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 <rafael.nunu@hotmail.com>
  • Loading branch information
RafaelGSS committed Jan 11, 2024
1 parent 757a84c commit f38a9a5
Show file tree
Hide file tree
Showing 6 changed files with 182 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -36,7 +36,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V21.md#21.5.0">21.5.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V21.md#21.6.0">21.6.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V21.md#21.5.0">21.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V21.md#21.4.0">21.4.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V21.md#21.3.0">21.3.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V21.md#21.2.0">21.2.0</a><br/>
Expand Down
4 changes: 2 additions & 2 deletions doc/api/cli.md
Expand Up @@ -106,7 +106,7 @@ If this flag is passed, the behavior can still be set to not abort through
### `--allow-addons`

<!-- YAML
added: REPLACEME
added: v21.6.0
-->

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

<!-- YAML
added: REPLACEME
added: v21.6.0
-->

> Stability: 1 - Experimental
Expand Down
2 changes: 1 addition & 1 deletion doc/api/n-api.md
Expand Up @@ -794,7 +794,7 @@ handle and/or callback scope inside a `napi_callback` is not necessary.
#### `node_api_nogc_finalize`

<!-- YAML
added: REPLACEME
added: v21.6.0
-->

> Stability: 1 - Experimental
Expand Down
6 changes: 3 additions & 3 deletions doc/api/net.md
Expand Up @@ -694,7 +694,7 @@ See [`net.createConnection()`][].
### Event: `'connectionAttempt'`

<!-- YAML
added: REPLACEME
added: v21.6.0
-->

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

<!-- YAML
added: REPLACEME
added: v21.6.0
-->

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

<!-- YAML
added: REPLACEME
added: v21.6.0
-->

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

0 comments on commit f38a9a5

Please sign in to comment.