Skip to content

Commit

Permalink
2023-01-06, Version 19.4.0 (Current)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
RafaelGSS committed Jan 6, 2023
1 parent 6668c4d commit 22a2ec6
Show file tree
Hide file tree
Showing 7 changed files with 151 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -35,7 +35,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.3.0">19.3.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.4.0">19.4.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.3.0">19.3.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.2.0">19.2.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.1.0">19.1.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.0.1">19.0.1</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/buffer.md
Expand Up @@ -5141,7 +5141,7 @@ and binary data should be performed using `Buffer.from(str, 'base64')` and
### `buffer.isUtf8(input)`

<!-- YAML
added: REPLACEME
added: v19.4.0
-->

* input {Buffer | ArrayBuffer | TypedArray} The input to validate.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/cli.md
Expand Up @@ -317,7 +317,7 @@ against FIPS-compatible OpenSSL.)
### `--enable-network-family-autoselection`

<!-- YAML
added: REPLACEME
added: v19.4.0
-->

Enables the family autoselection algorithm unless connection options explicitly
Expand Down
2 changes: 1 addition & 1 deletion doc/api/http.md
Expand Up @@ -1516,7 +1516,7 @@ added:
- v11.3.0
- v10.14.0
changes:
- version: REPLACEME
- version: v19.4.0
pr-url: https://github.com/nodejs/node/pull/45778
description: The default is now set to the minimum between 60000 (60 seconds) or `requestTimeout`.
-->
Expand Down
8 changes: 4 additions & 4 deletions doc/api/net.md
Expand Up @@ -783,7 +783,7 @@ socket as reported by the operating system:
### `socket.autoSelectFamilyAttemptedAddresses`

<!-- YAML
added: REPLACEME
added: v19.4.0
-->

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

<!-- YAML
added: REPLACEME
added: v19.4.0
-->

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

<!-- YAML
added: REPLACEME
added: v19.4.0
-->

Gets the current default value of the `autoSelectFamily` option of [`socket.connect(options)`][].
Expand Down
2 changes: 1 addition & 1 deletion doc/api/os.md
Expand Up @@ -29,7 +29,7 @@ The operating system-specific end-of-line marker.
## `os.availableParallelism()`

<!-- YAML
added: REPLACEME
added: v19.4.0
-->

* Returns: {integer}
Expand Down
142 changes: 141 additions & 1 deletion doc/changelogs/CHANGELOG_V19.md

Large diffs are not rendered by default.

0 comments on commit 22a2ec6

Please sign in to comment.