Skip to content

Commit 7c0d61f

Browse files
committed
2023-08-29, Version 18.18.0 'Hydrogen' (LTS)
Notable changes: net: * add autoSelectFamily global getter and setter (Paolo Insogna) #45777 PR-URL: TODO
1 parent a00464e commit 7c0d61f

File tree

5 files changed

+36
-9
lines changed

5 files changed

+36
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ release.
3232
</tr>
3333
<tr>
3434
<td valign="top">
35-
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.17.1">18.17.1</a></b><br/>
35+
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.18.0">18.18.0</a></b><br/>
36+
<a href="doc/changelogs/CHANGELOG_V18.md#18.17.1">18.17.1</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V18.md#18.17.0">18.17.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V18.md#18.16.1">18.16.1</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V18.md#18.16.0">18.16.0</a><br/>

doc/api/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ against FIPS-compatible OpenSSL.)
317317
### `--enable-network-family-autoselection`
318318

319319
<!-- YAML
320-
added: REPLACEME
320+
added: v18.18.0
321321
-->
322322

323323
Enables the family autoselection algorithm unless connection options explicitly

doc/api/net.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ socket as reported by the operating system:
781781
### `socket.autoSelectFamilyAttemptedAddresses`
782782

783783
<!-- YAML
784-
added: REPLACEME
784+
added: v18.18.0
785785
-->
786786

787787
* {string\[]}
@@ -868,7 +868,7 @@ behavior.
868868
<!-- YAML
869869
added: v0.1.90
870870
changes:
871-
- version: REPLACEME
871+
- version: v18.18.0
872872
pr-url: https://github.com/nodejs/node/pull/45777
873873
description: The default value for autoSelectFamily option can be changed
874874
at runtime using `setDefaultAutoSelectFamily` or via the
@@ -1643,7 +1643,7 @@ Sets the default value of the `autoSelectFamily` option of [`socket.connect(opt
16431643
## `net.getDefaultAutoSelectFamilyAttemptTimeout()`
16441644

16451645
<!-- YAML
1646-
added: REPLACEME
1646+
added: v18.18.0
16471647
-->
16481648

16491649
Gets the current default value of the `autoSelectFamilyAttemptTimeout` option of [`socket.connect(options)`][].
@@ -1653,7 +1653,7 @@ Gets the current default value of the `autoSelectFamilyAttemptTimeout` option o
16531653
## `net.setDefaultAutoSelectFamilyAttemptTimeout(value)`
16541654

16551655
<!-- YAML
1656-
added: REPLACEME
1656+
added: v18.18.0
16571657
-->
16581658

16591659
Sets the default value of the `autoSelectFamilyAttemptTimeout` option of [`socket.connect(options)`][].

doc/changelogs/CHANGELOG_V18.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</tr>
1010
<tr>
1111
<td>
12+
<a href="#18.18.0">18.18.0</a><br/>
1213
<a href="#18.17.1">18.17.1</a><br/>
1314
<a href="#18.17.0">18.17.0</a><br/>
1415
<a href="#18.16.1">18.16.1</a><br/>
@@ -59,6 +60,31 @@
5960
* [io.js](CHANGELOG_IOJS.md)
6061
* [Archive](CHANGELOG_ARCHIVE.md)
6162

63+
<a id="18.18.0"></a>
64+
65+
## 2023-08-29, Version 18.18.0 'Hydrogen' (LTS), @ruyadorno
66+
67+
### Notable Changes
68+
69+
* \[[`863bdb785d`](https://github.com/nodejs/node/commit/863bdb785d)] - **net**: add autoSelectFamily global getter and setter (Paolo Insogna) [#45777](https://github.com/nodejs/node/pull/45777)
70+
71+
### Commits
72+
73+
* \[[`f4617a4f81`](https://github.com/nodejs/node/commit/f4617a4f81)] - **deps**: add loongarch64 into openssl Makefile and gen openssl-loongarch64 (Shi Pujin) [#46401](https://github.com/nodejs/node/pull/46401)
74+
* \[[`a00464ee06`](https://github.com/nodejs/node/commit/a00464ee06)] - **esm**: fix specifier resolution and symlinks (Zack Newsham) [#47674](https://github.com/nodejs/node/pull/47674)
75+
* \[[`69aaf8b1d1`](https://github.com/nodejs/node/commit/69aaf8b1d1)] - **lib**: remove invalid parameter to toASCII (Yagiz Nizipli) [#48878](https://github.com/nodejs/node/pull/48878)
76+
* \[[`b5f53d9a0b`](https://github.com/nodejs/node/commit/b5f53d9a0b)] - **net**: fix family autoselection SSL connection handling (Paolo Insogna) [#48189](https://github.com/nodejs/node/pull/48189)
77+
* \[[`267439fc34`](https://github.com/nodejs/node/commit/267439fc34)] - **net**: rework autoSelectFamily implementation (Paolo Insogna) [#46587](https://github.com/nodejs/node/pull/46587)
78+
* \[[`d3637cdbbf`](https://github.com/nodejs/node/commit/d3637cdbbf)] - **net**: fix address iteration with autoSelectFamily (Fedor Indutny) [#48258](https://github.com/nodejs/node/pull/48258)
79+
* \[[`e8289a83f1`](https://github.com/nodejs/node/commit/e8289a83f1)] - **net**: fix family autoselection timeout handling (Paolo Insogna) [#47860](https://github.com/nodejs/node/pull/47860)
80+
* \[[`863bdb785d`](https://github.com/nodejs/node/commit/863bdb785d)] - **net**: add autoSelectFamily global getter and setter (Paolo Insogna) [#45777](https://github.com/nodejs/node/pull/45777)
81+
* \[[`e4261809b0`](https://github.com/nodejs/node/commit/e4261809b0)] - **src**: replace idna functions with ada::idna (Yagiz Nizipli) [#47735](https://github.com/nodejs/node/pull/47735)
82+
* \[[`6de7aa1d19`](https://github.com/nodejs/node/commit/6de7aa1d19)] - **test**: move `test-tls-autoselectfamily-servername` to `test/internet` (Antoine du Hamel) [#47029](https://github.com/nodejs/node/pull/47029)
83+
* \[[`2de9868292`](https://github.com/nodejs/node/commit/2de9868292)] - **test**: validate host with commas on url.parse (Yagiz Nizipli) [#48878](https://github.com/nodejs/node/pull/48878)
84+
* \[[`e7d2e8ef2a`](https://github.com/nodejs/node/commit/e7d2e8ef2a)] - **test**: delete test-net-bytes-per-incoming-chunk-overhead (Michaël Zasso) [#48811](https://github.com/nodejs/node/pull/48811)
85+
* \[[`3eeca52db1`](https://github.com/nodejs/node/commit/3eeca52db1)] - **tls**: fix bugs of double TLS (rogertyang) [#48969](https://github.com/nodejs/node/pull/48969)
86+
* \[[`0beb5ab93d`](https://github.com/nodejs/node/commit/0beb5ab93d)] - **url**: ensure getter access do not mutate observable symbols (Antoine du Hamel) [#48897](https://github.com/nodejs/node/pull/48897)
87+
6288
<a id="18.17.1"></a>
6389

6490
## 2023-08-09, Version 18.17.1 'Hydrogen' (LTS), @RafaelGSS

src/node_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 18
26-
#define NODE_MINOR_VERSION 17
27-
#define NODE_PATCH_VERSION 2
26+
#define NODE_MINOR_VERSION 18
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Hydrogen"
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)