Skip to content

Commit 1579ff4

Browse files
committed
2023-02-02, Version 19.6.0 (Current)
Notable changes: buffer: * (SEMVER-MINOR) add isAscii method (Yagiz Nizipli) #46046 deps: * upgrade npm to 9.4.0 (npm team) #46353 esm: * leverage loaders when resolving subsequent loaders (Maël Nison) #43772 fs: * (SEMVER-MINOR) add statfs() functions (Colin Ihrig) #46358 src,lib: * (SEMVER-MINOR) add constrainedMemory API for process (theanarkh) #46218 test_runner: * (SEMVER-MINOR) add reporters (Moshe Atlow) #45712 v8: * (SEMVER-MINOR) support gc profile (theanarkh) #46255 vm: * (SEMVER-MINOR) expose cachedDataRejected for vm.compileFunction (Anna Henningsen) #46320 PR-URL: #46455
1 parent 6099637 commit 1579ff4

File tree

10 files changed

+123
-24
lines changed

10 files changed

+123
-24
lines changed

CHANGELOG.md

+2-1
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.5.0">19.5.0</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.6.0">19.6.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V19.md#19.5.0">19.5.0</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V19.md#19.4.0">19.4.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V19.md#19.3.0">19.3.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V19.md#19.2.0">19.2.0</a><br/>

doc/api/buffer.md

+1-1
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.isAscii(input)`
51425142

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

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

doc/api/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1257,7 +1257,7 @@ whose name matches the provided pattern. See the documentation on
12571257
### `--test-reporter`
12581258

12591259
<!-- YAML
1260-
added: REPLACEME
1260+
added: v19.6.0
12611261
-->
12621262

12631263
A test reporter to use when running tests. See the documentation on
@@ -1266,7 +1266,7 @@ A test reporter to use when running tests. See the documentation on
12661266
### `--test-reporter-destination`
12671267

12681268
<!-- YAML
1269-
added: REPLACEME
1269+
added: v19.6.0
12701270
-->
12711271

12721272
The destination for the corresponding test reporter. See the documentation on

doc/api/fs.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -1534,7 +1534,7 @@ changes:
15341534
### `fsPromises.statfs(path[, options])`
15351535
15361536
<!-- YAML
1537-
added: REPLACEME
1537+
added: v19.6.0
15381538
-->
15391539
15401540
* `path` {string|Buffer|URL}
@@ -4117,7 +4117,7 @@ Stats {
41174117
### `fs.statfs(path[, options], callback)`
41184118

41194119
<!-- YAML
4120-
added: REPLACEME
4120+
added: v19.6.0
41214121
-->
41224122

41234123
* `path` {string|Buffer|URL}
@@ -5888,7 +5888,7 @@ Retrieves the {fs.Stats} for the path.
58885888
### `fs.statfsSync(path[, options])`
58895889

58905890
<!-- YAML
5891-
added: REPLACEME
5891+
added: v19.6.0
58925892
-->
58935893

58945894
* `path` {string|Buffer|URL}
@@ -6997,7 +6997,7 @@ of 0.12, `ctime` is not "creation time", and on Unix systems, it never was.
69976997
### Class: `fs.StatFs`
69986998

69996999
<!-- YAML
7000-
added: REPLACEME
7000+
added: v19.6.0
70017001
-->
70027002

70037003
Provides information about a mounted file system.
@@ -7035,7 +7035,7 @@ StatFs {
70357035
#### `statfs.bavail`
70367036

70377037
<!-- YAML
7038-
added: REPLACEME
7038+
added: v19.6.0
70397039
-->
70407040

70417041
* {number|bigint}
@@ -7045,7 +7045,7 @@ Free blocks available to unprivileged users.
70457045
#### `statfs.bfree`
70467046

70477047
<!-- YAML
7048-
added: REPLACEME
7048+
added: v19.6.0
70497049
-->
70507050

70517051
* {number|bigint}
@@ -7055,7 +7055,7 @@ Free blocks in file system.
70557055
#### `statfs.blocks`
70567056

70577057
<!-- YAML
7058-
added: REPLACEME
7058+
added: v19.6.0
70597059
-->
70607060

70617061
* {number|bigint}
@@ -7065,7 +7065,7 @@ Total data blocks in file system.
70657065
#### `statfs.bsize`
70667066

70677067
<!-- YAML
7068-
added: REPLACEME
7068+
added: v19.6.0
70697069
-->
70707070

70717071
* {number|bigint}
@@ -7075,7 +7075,7 @@ Optimal transfer block size.
70757075
#### `statfs.ffree`
70767076

70777077
<!-- YAML
7078-
added: REPLACEME
7078+
added: v19.6.0
70797079
-->
70807080

70817081
* {number|bigint}
@@ -7085,7 +7085,7 @@ Free file nodes in file system.
70857085
#### `statfs.files`
70867086

70877087
<!-- YAML
7088-
added: REPLACEME
7088+
added: v19.6.0
70897089
-->
70907090

70917091
* {number|bigint}
@@ -7095,7 +7095,7 @@ Total file nodes in file system.
70957095
#### `statfs.type`
70967096

70977097
<!-- YAML
7098-
added: REPLACEME
7098+
added: v19.6.0
70997099
-->
71007100

71017101
* {number|bigint}

doc/api/http.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2972,7 +2972,7 @@ headers with the same name.
29722972
### `outgoingMessage.setHeaders(headers)`
29732973

29742974
<!-- YAML
2975-
added: REPLACEME
2975+
added: v19.6.0
29762976
-->
29772977

29782978
* `headers` {Headers|Map}

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1106,7 +1106,7 @@ over the IPC channel using `process.send()`.
11061106
## `process.constrainedMemory()`
11071107

11081108
<!-- YAML
1109-
added: REPLACEME
1109+
added: v19.6.0
11101110
-->
11111111

11121112
> Stability: 1 - Experimental

doc/api/test.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ test('spies on an object method', (t) => {
506506
## Test reporters
507507

508508
<!-- YAML
509-
added: REPLACEME
509+
added: v19.6.0
510510
-->
511511

512512
The `node:test` module supports passing [`--test-reporter`][]

doc/api/v8.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1054,31 +1054,31 @@ Returns true if the Node.js instance is run to build a snapshot.
10541054
## Class: `v8.GCProfiler`
10551055

10561056
<!-- YAML
1057-
added: REPLACEME
1057+
added: v19.6.0
10581058
-->
10591059

10601060
This API collects GC data in current thread.
10611061

10621062
### `new v8.GCProfiler()`
10631063

10641064
<!-- YAML
1065-
added: REPLACEME
1065+
added: v19.6.0
10661066
-->
10671067

10681068
Create a new instance of the `v8.GCProfiler` class.
10691069

10701070
### `profiler.start()`
10711071

10721072
<!-- YAML
1073-
added: REPLACEME
1073+
added: v19.6.0
10741074
-->
10751075

10761076
Start collecting GC data.
10771077

10781078
### `profiler.stop()`
10791079

10801080
<!-- YAML
1081-
added: REPLACEME
1081+
added: v19.6.0
10821082
-->
10831083

10841084
Stop collecting GC data and return an object.The content of object

doc/api/vm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,7 @@ const vm = require('node:vm');
965965
added: v10.10.0
966966
changes:
967967
- version:
968-
- REPLACEME
968+
- v19.6.0
969969
pr-url: https://github.com/nodejs/node/pull/46320
970970
description: The return value now includes `cachedDataRejected`
971971
with the same semantics as the `vm.Script` version

doc/changelogs/CHANGELOG_V19.md

+99-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
</tr>
99
<tr>
1010
<td>
11-
<b><a href="#19.5.0">19.5.0</a></b><br/>
11+
<b><a href="#19.6.0">19.6.0</a></b><br/>
12+
<a href="#19.5.0">19.5.0</a><br/>
1213
<a href="#19.4.0">19.4.0</a><br/>
1314
<a href="#19.3.0">19.3.0</a><br/>
1415
<a href="#19.2.0">19.2.0</a><br/>
@@ -40,6 +41,103 @@
4041
* [io.js](CHANGELOG_IOJS.md)
4142
* [Archive](CHANGELOG_ARCHIVE.md)
4243

44+
<a id="19.6.0"></a>
45+
46+
## 2023-02-02, Version 19.6.0 (Current), @ruyadorno
47+
48+
### Notable changes
49+
50+
#### ESM: Leverage loaders when resolving subsequent loaders
51+
52+
Loaders now apply to subsequent loaders, for example: `--experimental-loader ts-node --experimental-loader loader-written-in-typescript`.
53+
54+
#### Upgrade npm to 9.4.0
55+
56+
Added `--install-strategy=linked` option for installations similar to pnpm.
57+
58+
#### Other notable changes
59+
60+
* \[[`a7c9daa497`](https://github.com/nodejs/node/commit/a7c9daa497)] - **(SEMVER-MINOR)** **fs**: add statfs() functions (Colin Ihrig) [#46358](https://github.com/nodejs/node/pull/46358)
61+
* \[[`34d70ce615`](https://github.com/nodejs/node/commit/34d70ce615)] - **(SEMVER-MINOR)** **vm**: expose cachedDataRejected for vm.compileFunction (Anna Henningsen) [#46320](https://github.com/nodejs/node/pull/46320)
62+
* \[[`b4ac794923`](https://github.com/nodejs/node/commit/b4ac794923)] - **(SEMVER-MINOR)** **v8**: support gc profile (theanarkh) [#46255](https://github.com/nodejs/node/pull/46255)
63+
* \[[`d52f60009a`](https://github.com/nodejs/node/commit/d52f60009a)] - **(SEMVER-MINOR)** **src,lib**: add constrainedMemory API for process (theanarkh) [#46218](https://github.com/nodejs/node/pull/46218)
64+
* \[[`5ad6c2088e`](https://github.com/nodejs/node/commit/5ad6c2088e)] - **(SEMVER-MINOR)** **buffer**: add isAscii method (Yagiz Nizipli) [#46046](https://github.com/nodejs/node/pull/46046)
65+
* \[[`fbdc3f7316`](https://github.com/nodejs/node/commit/fbdc3f7316)] - **(SEMVER-MINOR)** **test\_runner**: add reporters (Moshe Atlow) [#45712](https://github.com/nodejs/node/pull/45712)
66+
67+
### Commits
68+
69+
* \[[`524eec70e2`](https://github.com/nodejs/node/commit/524eec70e2)] - **benchmark**: add trailing commas (Antoine du Hamel) [#46370](https://github.com/nodejs/node/pull/46370)
70+
* \[[`f318a85408`](https://github.com/nodejs/node/commit/f318a85408)] - **benchmark**: remove buffer benchmarks redundancy (Brian White) [#45735](https://github.com/nodejs/node/pull/45735)
71+
* \[[`6186b3ea14`](https://github.com/nodejs/node/commit/6186b3ea14)] - **benchmark**: introduce benchmark combination filtering (Brian White) [#45735](https://github.com/nodejs/node/pull/45735)
72+
* \[[`5ad6c2088e`](https://github.com/nodejs/node/commit/5ad6c2088e)] - **(SEMVER-MINOR)** **buffer**: add isAscii method (Yagiz Nizipli) [#46046](https://github.com/nodejs/node/pull/46046)
73+
* \[[`8c6c4338a6`](https://github.com/nodejs/node/commit/8c6c4338a6)] - **build**: export more OpenSSL symbols on Windows (Mohamed Akram) [#45486](https://github.com/nodejs/node/pull/45486)
74+
* \[[`d795d93901`](https://github.com/nodejs/node/commit/d795d93901)] - **build**: fix MSVC 2022 Release compilation (Vladimir Morozov (REDMOND)) [#46228](https://github.com/nodejs/node/pull/46228)
75+
* \[[`8e363cf8e8`](https://github.com/nodejs/node/commit/8e363cf8e8)] - **crypto**: include `hmac.h` in `crypto_util.h` (Adam Langley) [#46279](https://github.com/nodejs/node/pull/46279)
76+
* \[[`c1f3e13c65`](https://github.com/nodejs/node/commit/c1f3e13c65)] - **deps**: update acorn to 8.8.2 (Node.js GitHub Bot) [#46363](https://github.com/nodejs/node/pull/46363)
77+
* \[[`813b160bd7`](https://github.com/nodejs/node/commit/813b160bd7)] - **deps**: upgrade npm to 9.4.0 (npm team) [#46353](https://github.com/nodejs/node/pull/46353)
78+
* \[[`9c2f3cea70`](https://github.com/nodejs/node/commit/9c2f3cea70)] - **deps**: update undici to 5.15.0 (Node.js GitHub Bot) [#46213](https://github.com/nodejs/node/pull/46213)
79+
* \[[`312e10c1e3`](https://github.com/nodejs/node/commit/312e10c1e3)] - **deps**: update to uvwasi 0.0.15 (Colin Ihrig) [#46253](https://github.com/nodejs/node/pull/46253)
80+
* \[[`c7024eec16`](https://github.com/nodejs/node/commit/c7024eec16)] - **doc**: correct the `sed` command for macOS in release process docs (Juan José) [#46397](https://github.com/nodejs/node/pull/46397)
81+
* \[[`996bac044b`](https://github.com/nodejs/node/commit/996bac044b)] - **doc**: include webstreams in finished() and Duplex.from() parameters (Debadree Chatterjee) [#46312](https://github.com/nodejs/node/pull/46312)
82+
* \[[`891d18d55c`](https://github.com/nodejs/node/commit/891d18d55c)] - **doc**: pass string to `textEncoder.encode` as input (Deokjin Kim) [#46421](https://github.com/nodejs/node/pull/46421)
83+
* \[[`968db213f8`](https://github.com/nodejs/node/commit/968db213f8)] - **doc**: add tip for session.post function (theanarkh) [#46354](https://github.com/nodejs/node/pull/46354)
84+
* \[[`a64d7f4e31`](https://github.com/nodejs/node/commit/a64d7f4e31)] - **doc**: add documentation for socket.destroySoon() (Luigi Pinca) [#46337](https://github.com/nodejs/node/pull/46337)
85+
* \[[`975788899f`](https://github.com/nodejs/node/commit/975788899f)] - **doc**: fix commit message using test instead of deps (Tony Gorez) [#46313](https://github.com/nodejs/node/pull/46313)
86+
* \[[`1d44017f52`](https://github.com/nodejs/node/commit/1d44017f52)] - **doc**: add v8 fast api contribution guidelines (Yagiz Nizipli) [#46199](https://github.com/nodejs/node/pull/46199)
87+
* \[[`e2698c05fb`](https://github.com/nodejs/node/commit/e2698c05fb)] - **doc**: fix small typo error (0xflotus) [#46186](https://github.com/nodejs/node/pull/46186)
88+
* \[[`f39fb8c001`](https://github.com/nodejs/node/commit/f39fb8c001)] - **doc**: mark some parameters as optional in webstreams (Deokjin Kim) [#46269](https://github.com/nodejs/node/pull/46269)
89+
* \[[`7a9af38128`](https://github.com/nodejs/node/commit/7a9af38128)] - **doc**: update output of example in `events.getEventListeners` (Deokjin Kim) [#46268](https://github.com/nodejs/node/pull/46268)
90+
* \[[`729642f30b`](https://github.com/nodejs/node/commit/729642f30b)] - **esm**: delete preload mock test (Geoffrey Booth) [#46402](https://github.com/nodejs/node/pull/46402)
91+
* \[[`7aac21e90a`](https://github.com/nodejs/node/commit/7aac21e90a)] - **esm**: leverage loaders when resolving subsequent loaders (Maël Nison) [#43772](https://github.com/nodejs/node/pull/43772)
92+
* \[[`a7c9daa497`](https://github.com/nodejs/node/commit/a7c9daa497)] - **(SEMVER-MINOR)** **fs**: add statfs() functions (Colin Ihrig) [#46358](https://github.com/nodejs/node/pull/46358)
93+
* \[[`1ec6270efa`](https://github.com/nodejs/node/commit/1ec6270efa)] - **http**: res.setHeaders first implementation (Marco Ippolito) [#46109](https://github.com/nodejs/node/pull/46109)
94+
* \[[`d4370259e9`](https://github.com/nodejs/node/commit/d4370259e9)] - **inspector**: allow opening inspector when `NODE_V8_COVERAGE` is set (Moshe Atlow) [#46113](https://github.com/nodejs/node/pull/46113)
95+
* \[[`b966ef9a42`](https://github.com/nodejs/node/commit/b966ef9a42)] - **lib**: remove unnecessary ObjectGetValueSafe (Chengzhong Wu) [#46335](https://github.com/nodejs/node/pull/46335)
96+
* \[[`2b06d66289`](https://github.com/nodejs/node/commit/2b06d66289)] - **lib**: cache parsed source maps to reduce memory footprint (Chengzhong Wu) [#46225](https://github.com/nodejs/node/pull/46225)
97+
* \[[`c38673df91`](https://github.com/nodejs/node/commit/c38673df91)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#46399](https://github.com/nodejs/node/pull/46399)
98+
* \[[`c10e602547`](https://github.com/nodejs/node/commit/c10e602547)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#46303](https://github.com/nodejs/node/pull/46303)
99+
* \[[`9dc026b14a`](https://github.com/nodejs/node/commit/9dc026b14a)] - **meta**: add .mailmap entry (Rich Trott) [#46303](https://github.com/nodejs/node/pull/46303)
100+
* \[[`7c514574f7`](https://github.com/nodejs/node/commit/7c514574f7)] - **meta**: move evanlucas to emeritus (Evan Lucas) [#46274](https://github.com/nodejs/node/pull/46274)
101+
* \[[`3a3a6d87f1`](https://github.com/nodejs/node/commit/3a3a6d87f1)] - **module**: move test reporter loading (Geoffrey Booth) [#45923](https://github.com/nodejs/node/pull/45923)
102+
* \[[`4ae2492a33`](https://github.com/nodejs/node/commit/4ae2492a33)] - **readline**: fix detection of carriage return (Antoine du Hamel) [#46306](https://github.com/nodejs/node/pull/46306)
103+
* \[[`43cad78b7a`](https://github.com/nodejs/node/commit/43cad78b7a)] - **src**: stop tracing agent before shutting down libuv (Santiago Gimeno) [#46380](https://github.com/nodejs/node/pull/46380)
104+
* \[[`360a3f3094`](https://github.com/nodejs/node/commit/360a3f3094)] - **src**: get rid of fp arithmetic in ParseIPv4Host (Tobias Nießen) [#46326](https://github.com/nodejs/node/pull/46326)
105+
* \[[`e7b507a8cf`](https://github.com/nodejs/node/commit/e7b507a8cf)] - **src**: use UNREACHABLE instead of CHECK(falsy) (Tobias Nießen) [#46317](https://github.com/nodejs/node/pull/46317)
106+
* \[[`4c59b60ee8`](https://github.com/nodejs/node/commit/4c59b60ee8)] - **src**: add support for ETW stack walking (José Dapena Paz) [#46203](https://github.com/nodejs/node/pull/46203)
107+
* \[[`640d111f95`](https://github.com/nodejs/node/commit/640d111f95)] - **src**: refactor EndsInANumber in node\_url.cc and adds IsIPv4NumberValid (Miguel Teixeira) [#46227](https://github.com/nodejs/node/pull/46227)
108+
* \[[`fb7bee2b6e`](https://github.com/nodejs/node/commit/fb7bee2b6e)] - **src**: fix c++ exception on bad command line arg (Ben Noordhuis) [#46290](https://github.com/nodejs/node/pull/46290)
109+
* \[[`18c95ec4bd`](https://github.com/nodejs/node/commit/18c95ec4bd)] - **src**: remove unreachable UNREACHABLE (Tobias Nießen) [#46281](https://github.com/nodejs/node/pull/46281)
110+
* \[[`35bf93b01a`](https://github.com/nodejs/node/commit/35bf93b01a)] - **src**: replace custom ASCII validation with simdutf one (Anna Henningsen) [#46271](https://github.com/nodejs/node/pull/46271)
111+
* \[[`8307a4bbcd`](https://github.com/nodejs/node/commit/8307a4bbcd)] - **src**: replace unreachable code with static\_assert (Tobias Nießen) [#46250](https://github.com/nodejs/node/pull/46250)
112+
* \[[`7cf0da020a`](https://github.com/nodejs/node/commit/7cf0da020a)] - **src**: use explicit C++17 fallthrough (Tobias Nießen) [#46251](https://github.com/nodejs/node/pull/46251)
113+
* \[[`d52f60009a`](https://github.com/nodejs/node/commit/d52f60009a)] - **(SEMVER-MINOR)** **src,lib**: add constrainedMemory API for process (theanarkh) [#46218](https://github.com/nodejs/node/pull/46218)
114+
* \[[`2e5e7a9261`](https://github.com/nodejs/node/commit/2e5e7a9261)] - **stream**: remove brandchecks from stream duplexify (Debadree Chatterjee) [#46315](https://github.com/nodejs/node/pull/46315)
115+
* \[[`9675863461`](https://github.com/nodejs/node/commit/9675863461)] - **stream**: fix readable stream as async iterator function (Erick Wendel) [#46147](https://github.com/nodejs/node/pull/46147)
116+
* \[[`232bdd5d16`](https://github.com/nodejs/node/commit/232bdd5d16)] - **test**: add trailing commas in `test/node-api` (Antoine du Hamel) [#46384](https://github.com/nodejs/node/pull/46384)
117+
* \[[`4cc081815d`](https://github.com/nodejs/node/commit/4cc081815d)] - **test**: add trailing commas in `test/message` (Antoine du Hamel) [#46372](https://github.com/nodejs/node/pull/46372)
118+
* \[[`b83c5d9deb`](https://github.com/nodejs/node/commit/b83c5d9deb)] - **test**: add trailing commas in `test/pseudo-tty` (Antoine du Hamel) [#46371](https://github.com/nodejs/node/pull/46371)
119+
* \[[`8a45c9d231`](https://github.com/nodejs/node/commit/8a45c9d231)] - **test**: fix tap escaping with and without --test (Pulkit Gupta) [#46311](https://github.com/nodejs/node/pull/46311)
120+
* \[[`367dc41299`](https://github.com/nodejs/node/commit/367dc41299)] - **test**: set common.bits to 64 for loong64 (Shi Pujin) [#45383](https://github.com/nodejs/node/pull/45383)
121+
* \[[`7385edc7d0`](https://github.com/nodejs/node/commit/7385edc7d0)] - **test**: s390x zlib test case fixes (Adam Majer) [#46367](https://github.com/nodejs/node/pull/46367)
122+
* \[[`d5d837bdee`](https://github.com/nodejs/node/commit/d5d837bdee)] - **test**: fix logInTimeout is not function (theanarkh) [#46348](https://github.com/nodejs/node/pull/46348)
123+
* \[[`a1d79546ac`](https://github.com/nodejs/node/commit/a1d79546ac)] - **test**: avoid trying to call sysctl directly (Adam Majer) [#46366](https://github.com/nodejs/node/pull/46366)
124+
* \[[`747f3689e0`](https://github.com/nodejs/node/commit/747f3689e0)] - **test**: avoid left behind child processes (Richard Lau) [#46276](https://github.com/nodejs/node/pull/46276)
125+
* \[[`940484b7aa`](https://github.com/nodejs/node/commit/940484b7aa)] - **test**: add failing test for readline with carriage return (Alec Mev) [#46075](https://github.com/nodejs/node/pull/46075)
126+
* \[[`d13116a719`](https://github.com/nodejs/node/commit/d13116a719)] - **test,crypto**: add CFRG curve vectors to wrap/unwrap tests (Filip Skokan) [#46406](https://github.com/nodejs/node/pull/46406)
127+
* \[[`398a7477b3`](https://github.com/nodejs/node/commit/398a7477b3)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#46267](https://github.com/nodejs/node/pull/46267)
128+
* \[[`8b473affe8`](https://github.com/nodejs/node/commit/8b473affe8)] - **test\_runner**: make built in reporters internal (Colin Ihrig) [#46092](https://github.com/nodejs/node/pull/46092)
129+
* \[[`a49e17e22b`](https://github.com/nodejs/node/commit/a49e17e22b)] - **test\_runner**: report `file` in test runner events (Moshe Atlow) [#46030](https://github.com/nodejs/node/pull/46030)
130+
* \[[`fbdc3f7316`](https://github.com/nodejs/node/commit/fbdc3f7316)] - **test\_runner**: add reporters (Moshe Atlow) [#45712](https://github.com/nodejs/node/pull/45712)
131+
* \[[`6579de8c47`](https://github.com/nodejs/node/commit/6579de8c47)] - **tools**: update eslint to 8.33.0 (Node.js GitHub Bot) [#46400](https://github.com/nodejs/node/pull/46400)
132+
* \[[`bf62da55ad`](https://github.com/nodejs/node/commit/bf62da55ad)] - **tools**: update doc to unist-util-select\@4.0.3 unist-util-visit\@4.1.2 (Node.js GitHub Bot) [#46364](https://github.com/nodejs/node/pull/46364)
133+
* \[[`b0acf55197`](https://github.com/nodejs/node/commit/b0acf55197)] - **tools**: update lint-md-dependencies to rollup\@3.12.0 (Node.js GitHub Bot) [#46398](https://github.com/nodejs/node/pull/46398)
134+
* \[[`88b904cf24`](https://github.com/nodejs/node/commit/88b904cf24)] - **tools**: require more trailing commas (Antoine du Hamel) [#46346](https://github.com/nodejs/node/pull/46346)
135+
* \[[`4440b3ef87`](https://github.com/nodejs/node/commit/4440b3ef87)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#46302](https://github.com/nodejs/node/pull/46302)
136+
* \[[`e75faff4bd`](https://github.com/nodejs/node/commit/e75faff4bd)] - **tools**: allow icutrim.py to run on python2 (Michael Dawson) [#46263](https://github.com/nodejs/node/pull/46263)
137+
* \[[`e460d16d73`](https://github.com/nodejs/node/commit/e460d16d73)] - **url**: refactor to use more primordials (Antoine du Hamel) [#45966](https://github.com/nodejs/node/pull/45966)
138+
* \[[`b4ac794923`](https://github.com/nodejs/node/commit/b4ac794923)] - **(SEMVER-MINOR)** **v8**: support gc profile (theanarkh) [#46255](https://github.com/nodejs/node/pull/46255)
139+
* \[[`34d70ce615`](https://github.com/nodejs/node/commit/34d70ce615)] - **(SEMVER-MINOR)** **vm**: expose cachedDataRejected for vm.compileFunction (Anna Henningsen) [#46320](https://github.com/nodejs/node/pull/46320)
140+
43141
<a id="19.5.0"></a>
44142

45143
## 2023-01-24, Version 19.5.0 (Current), @RafaelGSS

0 commit comments

Comments
 (0)