Skip to content

Commit 22a2ec6

Browse files
committed
2023-01-06, Version 19.4.0 (Current)
Notable changes: buffer: * (SEMVER-MINOR) add buffer.isUtf8 for utf8 validation (Yagiz Nizipli) #45947 http: * (SEMVER-MINOR) improved timeout defaults handling (Paolo Insogna) #45778 net * add autoSelectFamily global getter and setter (Paolo Insogna) #45777 os: * (SEMVER-MINOR) add availableParallelism() (Colin Ihrig) #45895 util: * add fast path for text-decoder fatal flag (Yagiz Nizipli) #45803 PR-URL: #46061
1 parent 6668c4d commit 22a2ec6

File tree

7 files changed

+151
-10
lines changed

7 files changed

+151
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ release.
3535
</tr>
3636
<tr>
3737
<td valign="top">
38-
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.3.0">19.3.0</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.4.0">19.4.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V19.md#19.3.0">19.3.0</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V19.md#19.2.0">19.2.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V19.md#19.1.0">19.1.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V19.md#19.0.1">19.0.1</a><br/>

doc/api/buffer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5141,7 +5141,7 @@ and binary data should be performed using `Buffer.from(str, 'base64')` and
51415141
### `buffer.isUtf8(input)`
51425142

51435143
<!-- YAML
5144-
added: REPLACEME
5144+
added: v19.4.0
51455145
-->
51465146

51475147
* input {Buffer | ArrayBuffer | TypedArray} The input to validate.

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: v19.4.0
321321
-->
322322

323323
Enables the family autoselection algorithm unless connection options explicitly

doc/api/http.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1516,7 +1516,7 @@ added:
15161516
- v11.3.0
15171517
- v10.14.0
15181518
changes:
1519-
- version: REPLACEME
1519+
- version: v19.4.0
15201520
pr-url: https://github.com/nodejs/node/pull/45778
15211521
description: The default is now set to the minimum between 60000 (60 seconds) or `requestTimeout`.
15221522
-->

doc/api/net.md

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

785785
<!-- YAML
786-
added: REPLACEME
786+
added: v19.4.0
787787
-->
788788

789789
* {string\[]}
@@ -870,7 +870,7 @@ behavior.
870870
<!-- YAML
871871
added: v0.1.90
872872
changes:
873-
- version: REPLACEME
873+
- version: v19.4.0
874874
pr-url: https://github.com/nodejs/node/pull/45777
875875
description: The default value for autoSelectFamily option can be changed
876876
at runtime using `setDefaultAutoSelectFamily` or via the
@@ -1521,7 +1521,7 @@ then returns the `net.Socket` that starts the connection.
15211521
## `net.setDefaultAutoSelectFamily(value)`
15221522

15231523
<!-- YAML
1524-
added: REPLACEME
1524+
added: v19.4.0
15251525
-->
15261526

15271527
Sets the default value of the `autoSelectFamily` option of [`socket.connect(options)`][].
@@ -1531,7 +1531,7 @@ Sets the default value of the `autoSelectFamily` option of [`socket.connect(opt
15311531
## `net.getDefaultAutoSelectFamily()`
15321532

15331533
<!-- YAML
1534-
added: REPLACEME
1534+
added: v19.4.0
15351535
-->
15361536

15371537
Gets the current default value of the `autoSelectFamily` option of [`socket.connect(options)`][].

doc/api/os.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The operating system-specific end-of-line marker.
2929
## `os.availableParallelism()`
3030

3131
<!-- YAML
32-
added: REPLACEME
32+
added: v19.4.0
3333
-->
3434

3535
* Returns: {integer}

doc/changelogs/CHANGELOG_V19.md

Lines changed: 141 additions & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)