Skip to content

Commit

Permalink
2023-01-03, 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
deps:
  * disable avx512 for simutf on benchmark ci (Yagiz Nizipli) #45803
  * add simdutf dependency (Yagiz Nizipli) #45803
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: TBD
  • Loading branch information
RafaelGSS committed Jan 2, 2023
1 parent b58a604 commit 01e1375
Show file tree
Hide file tree
Showing 9 changed files with 162 additions and 16 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 @@ -5133,7 +5133,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
6 changes: 3 additions & 3 deletions 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 Expand Up @@ -1241,7 +1241,7 @@ whose name matches the provided pattern. See the documentation on
### `--test-reporter`

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

A test reporter to use when running tests. See the documentation on
Expand All @@ -1250,7 +1250,7 @@ A test reporter to use when running tests. See the documentation on
### `--test-reporter-destination`

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

The destination for the corresponding test reporter. See the documentation on
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 @@ -1519,7 +1519,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 @@ -1529,7 +1529,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
2 changes: 1 addition & 1 deletion doc/api/test.md
Expand Up @@ -454,7 +454,7 @@ test('spies on an object method', (t) => {
## Test reporters

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

The `node:test` module supports passing [`--test-reporter`][]
Expand Down
147 changes: 146 additions & 1 deletion doc/changelogs/CHANGELOG_V19.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 19
#define NODE_MINOR_VERSION 3
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 4
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit 01e1375

Please sign in to comment.