node-linux-arm64 20.12.1 → 20.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -9,6 +9,8 @@
9
9
  </tr>
10
10
  <tr>
11
11
  <td>
12
+ <a href="#20.13.0">20.13.0</a><br/>
13
+ <a href="#20.12.2">20.12.2</a><br/>
12
14
  <a href="#20.12.1">20.12.1</a><br/>
13
15
  <a href="#20.12.0">20.12.0</a><br/>
14
16
  <a href="#20.11.1">20.11.1</a><br/>
@@ -56,6 +58,385 @@
56
58
  * [io.js](CHANGELOG_IOJS.md)
57
59
  * [Archive](CHANGELOG_ARCHIVE.md)
58
60
 
61
+ <a id="20.13.0"></a>
62
+
63
+ ## 2024-05-07, Version 20.13.0 'Iron' (LTS), @marco-ippolito
64
+
65
+ ### buffer: improve `base64` and `base64url` performance
66
+
67
+ The performance of the `base64` and `base64url` encoding and decoding functions has been improved significantly.
68
+
69
+ Contributed by Yagiz Nizipli in [#52428](https://github.com/nodejs/node/pull/52428)
70
+
71
+ ### crypto: deprecate implicitly shortened GCM tags
72
+
73
+ This release, introduces a doc-only deprecation of using GCM authentication tags that are shorter than the cipher's block size, unless the user specified the `authTagLength` option.
74
+
75
+ Contributed by Tobias Nießen in [#52345](https://github.com/nodejs/node/pull/52345)
76
+
77
+ ### events,doc: mark CustomEvent as stable
78
+
79
+ From this release `CustomEvent` has been marked stable.
80
+
81
+ Contributed by Daeyeon Jeong in [#52618](https://github.com/nodejs/node/pull/52618)
82
+
83
+ ### fs: add stacktrace to fs/promises
84
+
85
+ Sync functions in fs throwed an error with a stacktrace which is helpful for debugging. But functions in fs/promises throwed an error without a stacktrace. This commit adds stacktraces by calling `Error.captureStacktrace` and re-throwing the error.
86
+
87
+ Contributed by 翠 / green in [#49849](https://github.com/nodejs/node/pull/49849)
88
+
89
+ ### report: add `--report-exclude-network` option
90
+
91
+ New option `--report-exclude-network`, also available as `report.excludeNetwork`, enables the user to exclude networking interfaces in their diagnostic report. On some systems, this can cause the report to take minutes to generate so this option can be used to optimize that.
92
+
93
+ Contributed by Ethan Arrowood in [#51645](https://github.com/nodejs/node/pull/51645)
94
+
95
+ ### src: add uv\_get\_available\_memory to report and process
96
+
97
+ From this release it is possible to get the available memory in the system by calling `process.getAvailableMemory()`.
98
+
99
+ Contributed by theanarkh [#52023](https://github.com/nodejs/node/pull/52023)
100
+
101
+ ### stream: support typed arrays
102
+
103
+ This commit adds support for typed arrays in streams.
104
+
105
+ Contributed by IlyasShabi [#51866](https://github.com/nodejs/node/pull/51866)
106
+
107
+ ### util: support array of formats in util.styleText
108
+
109
+ It is now possible to pass an array of format strings to `util.styleText` to apply multiple formats to the same text.
110
+
111
+ ```js
112
+ console.log(util.styleText(['underline', 'italic'], 'My italic underlined message'));
113
+ ```
114
+
115
+ Contributed by Marco Ippolito in [#52040](https://github.com/nodejs/node/pull/52040)
116
+
117
+ ### v8: implement v8.queryObjects() for memory leak regression testing
118
+
119
+ This is similar to the queryObjects() console API provided by the Chromium DevTools console. It can be used to search for objects that have the matching constructor on its prototype chain in the heap after a full garbage collection, which can be useful for memory leak regression tests.
120
+ To avoid surprising results, users should avoid using this API on constructors whose implementation they don't control, or on constructors that can be invoked by other parties in the application.
121
+
122
+ To avoid accidental leaks, this API does not return raw references to the objects found. By default, it returns the count of the objects found. If options.format is 'summary', it returns an array containing brief string representations for each object. The visibility provided in this API is similar to what the heap snapshot provides, while users can save the cost of serialization and parsing and directly filer the target objects during the search.
123
+
124
+ We have been using this API internally for the test suite, which has been more stable than any other leak regression testing strategies in the CI. With a public implementation we can now use the public API instead.
125
+
126
+ ```js
127
+ const { queryObjects } = require('node:v8');
128
+ class A { foo = 'bar'; }
129
+ console.log(queryObjects(A)); // 0
130
+ let a = new A();
131
+ console.log(queryObjects(A)); // 1
132
+ // [ "A { foo: 'bar' }" ]
133
+ console.log(queryObjects(A, { format: 'summary' }));
134
+
135
+ // Release the object.
136
+ a = null;
137
+ // Search again. queryObjects() includes a full garbage collection
138
+ // so a should disappear.
139
+ console.log(queryObjects(A)); // 0
140
+
141
+ class B extends A { bar = 'qux'; }
142
+ // The child class B's prototype has A's prototype on its prototype chain
143
+ // so the prototype object shows up too.
144
+ console.log(queryObjects(A, { format: 'summary' })); // [ A {}' ]
145
+ ```
146
+
147
+ Contributed by Joyee Cheung in [#51927](https://github.com/nodejs/node/pull/51927)
148
+
149
+ ### watch: mark as stable
150
+
151
+ From this release Watch Mode is considered stable.
152
+ When in watch mode, changes in the watched files cause the Node.js process to restart.
153
+
154
+ Contributed by Moshe Atlow in [#52074](https://github.com/nodejs/node/pull/52074)
155
+
156
+ ### Other Notable Changes
157
+
158
+ * \[[`f8ad30048d`](https://github.com/nodejs/node/commit/f8ad30048d)] - **benchmark**: add AbortSignal.abort benchmarks (Raz Luvaton) [#52408](https://github.com/nodejs/node/pull/52408)
159
+ * \[[`3b41da9a56`](https://github.com/nodejs/node/commit/3b41da9a56)] - **(SEMVER-MINOR)** **deps**: update simdutf to 5.0.0 (Daniel Lemire) [#52138](https://github.com/nodejs/node/pull/52138)
160
+ * \[[`0a08c4a7b3`](https://github.com/nodejs/node/commit/0a08c4a7b3)] - **(SEMVER-MINOR)** **deps**: update undici to 6.3.0 (Node.js GitHub Bot) [#51462](https://github.com/nodejs/node/pull/51462)
161
+ * \[[`f1b7bda4f5`](https://github.com/nodejs/node/commit/f1b7bda4f5)] - **(SEMVER-MINOR)** **deps**: update undici to 6.2.1 (Node.js GitHub Bot) [#51278](https://github.com/nodejs/node/pull/51278)
162
+ * \[[`4acca8ed84`](https://github.com/nodejs/node/commit/4acca8ed84)] - **(SEMVER-MINOR)** **dns**: add order option and support ipv6first (Paolo Insogna) [#52492](https://github.com/nodejs/node/pull/52492)
163
+ * \[[`cc67720ff9`](https://github.com/nodejs/node/commit/cc67720ff9)] - **doc**: update release gpg keyserver (marco-ippolito) [#52257](https://github.com/nodejs/node/pull/52257)
164
+ * \[[`c2def7df96`](https://github.com/nodejs/node/commit/c2def7df96)] - **doc**: add release key for marco-ippolito (marco-ippolito) [#52257](https://github.com/nodejs/node/pull/52257)
165
+ * \[[`807c89cb26`](https://github.com/nodejs/node/commit/807c89cb26)] - **doc**: add UlisesGascon as a collaborator (Ulises Gascón) [#51991](https://github.com/nodejs/node/pull/51991)
166
+ * \[[`5e78a20ef9`](https://github.com/nodejs/node/commit/5e78a20ef9)] - **(SEMVER-MINOR)** **doc**: deprecate fs.Stats public constructor (Marco Ippolito) [#51879](https://github.com/nodejs/node/pull/51879)
167
+ * \[[`722fe64ff7`](https://github.com/nodejs/node/commit/722fe64ff7)] - **(SEMVER-MINOR)** **lib, url**: add a `windows` option to path parsing (Aviv Keller) [#52509](https://github.com/nodejs/node/pull/52509)
168
+ * \[[`d116fa1568`](https://github.com/nodejs/node/commit/d116fa1568)] - **(SEMVER-MINOR)** **net**: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) [#52474](https://github.com/nodejs/node/pull/52474)
169
+ * \[[`6af7b78b0d`](https://github.com/nodejs/node/commit/6af7b78b0d)] - **(SEMVER-MINOR)** **src**: add `string_view` overload to snapshot FromBlob (Anna Henningsen) [#52595](https://github.com/nodejs/node/pull/52595)
170
+ * \[[`b3a11b574b`](https://github.com/nodejs/node/commit/b3a11b574b)] - **(SEMVER-MINOR)** **src**: preload function for Environment (Cheng Zhao) [#51539](https://github.com/nodejs/node/pull/51539)
171
+ * \[[`41646d9c9e`](https://github.com/nodejs/node/commit/41646d9c9e)] - **(SEMVER-MINOR)** **test\_runner**: add suite() (Colin Ihrig) [#52127](https://github.com/nodejs/node/pull/52127)
172
+ * \[[`fc9ba17f6c`](https://github.com/nodejs/node/commit/fc9ba17f6c)] - **(SEMVER-MINOR)** **test\_runner**: add `test:complete` event to reflect execution order (Moshe Atlow) [#51909](https://github.com/nodejs/node/pull/51909)
173
+
174
+ ### Commits
175
+
176
+ * \[[`6fdd748b21`](https://github.com/nodejs/node/commit/6fdd748b21)] - **benchmark**: reduce the buffer size for blob (Debadree Chatterjee) [#52548](https://github.com/nodejs/node/pull/52548)
177
+ * \[[`2274d0c868`](https://github.com/nodejs/node/commit/2274d0c868)] - **benchmark**: inherit stdio/stderr instead of pipe (Ali Hassan) [#52456](https://github.com/nodejs/node/pull/52456)
178
+ * \[[`0300598315`](https://github.com/nodejs/node/commit/0300598315)] - **benchmark**: add ipc support to spawn stdio config (Ali Hassan) [#52456](https://github.com/nodejs/node/pull/52456)
179
+ * \[[`f8ad30048d`](https://github.com/nodejs/node/commit/f8ad30048d)] - **benchmark**: add AbortSignal.abort benchmarks (Raz Luvaton) [#52408](https://github.com/nodejs/node/pull/52408)
180
+ * \[[`7508d48736`](https://github.com/nodejs/node/commit/7508d48736)] - **benchmark**: conditionally use spawn with taskset for cpu pinning (Ali Hassan) [#52253](https://github.com/nodejs/node/pull/52253)
181
+ * \[[`ea8e72e185`](https://github.com/nodejs/node/commit/ea8e72e185)] - **benchmark**: add toNamespacedPath bench (Rafael Gonzaga) [#52236](https://github.com/nodejs/node/pull/52236)
182
+ * \[[`c00715cc1e`](https://github.com/nodejs/node/commit/c00715cc1e)] - **benchmark**: add style-text benchmark (Rafael Gonzaga) [#52004](https://github.com/nodejs/node/pull/52004)
183
+ * \[[`1c1a6935ee`](https://github.com/nodejs/node/commit/1c1a6935ee)] - **buffer**: add missing ARG\_TYPE(ArrayBuffer) for isUtf8 (Jungku Lee) [#52477](https://github.com/nodejs/node/pull/52477)
184
+ * \[[`1b2aff7dce`](https://github.com/nodejs/node/commit/1b2aff7dce)] - **buffer**: improve `base64` and `base64url` performance (Yagiz Nizipli) [#52428](https://github.com/nodejs/node/pull/52428)
185
+ * \[[`328bded5ab`](https://github.com/nodejs/node/commit/328bded5ab)] - **buffer**: improve `btoa` performance (Yagiz Nizipli) [#52427](https://github.com/nodejs/node/pull/52427)
186
+ * \[[`e67bc34326`](https://github.com/nodejs/node/commit/e67bc34326)] - **buffer**: use simdutf for `atob` implementation (Yagiz Nizipli) [#52381](https://github.com/nodejs/node/pull/52381)
187
+ * \[[`5abddb45d8`](https://github.com/nodejs/node/commit/5abddb45d8)] - **build**: fix typo in node.gyp (Michaël Zasso) [#52719](https://github.com/nodejs/node/pull/52719)
188
+ * \[[`7d1f304f5e`](https://github.com/nodejs/node/commit/7d1f304f5e)] - **build**: fix headers install for shared mode on Win (Segev Finer) [#52442](https://github.com/nodejs/node/pull/52442)
189
+ * \[[`6826bbf267`](https://github.com/nodejs/node/commit/6826bbf267)] - **build**: fix arm64 cross-compilation bug on non-arm machines (Mahdi Sharifi) [#52559](https://github.com/nodejs/node/pull/52559)
190
+ * \[[`6e85bc431a`](https://github.com/nodejs/node/commit/6e85bc431a)] - **build**: temporary disable ubsan (Rafael Gonzaga) [#52560](https://github.com/nodejs/node/pull/52560)
191
+ * \[[`297368a1ed`](https://github.com/nodejs/node/commit/297368a1ed)] - **build**: fix arm64 cross-compilation (Michaël Zasso) [#51256](https://github.com/nodejs/node/pull/51256)
192
+ * \[[`93bddb598f`](https://github.com/nodejs/node/commit/93bddb598f)] - **build,tools**: add test-ubsan ci (Rafael Gonzaga) [#46297](https://github.com/nodejs/node/pull/46297)
193
+ * \[[`20bb16582f`](https://github.com/nodejs/node/commit/20bb16582f)] - **build,tools,node-api**: fix building node-api tests for Windows Debug (Vladimir Morozov) [#52632](https://github.com/nodejs/node/pull/52632)
194
+ * \[[`9af15cfff1`](https://github.com/nodejs/node/commit/9af15cfff1)] - **child\_process**: use internal addAbortListener (Chemi Atlow) [#52081](https://github.com/nodejs/node/pull/52081)
195
+ * \[[`a4847c4619`](https://github.com/nodejs/node/commit/a4847c4619)] - **crypto**: simplify assertions in Safe\*Print (David Benjamin) [#49709](https://github.com/nodejs/node/pull/49709)
196
+ * \[[`0ec4d9d734`](https://github.com/nodejs/node/commit/0ec4d9d734)] - **crypto**: enable NODE\_EXTRA\_CA\_CERTS with BoringSSL (Shelley Vohr) [#52217](https://github.com/nodejs/node/pull/52217)
197
+ * \[[`03e05b092c`](https://github.com/nodejs/node/commit/03e05b092c)] - **crypto**: deprecate implicitly shortened GCM tags (Tobias Nießen) [#52345](https://github.com/nodejs/node/pull/52345)
198
+ * \[[`0f784c96ba`](https://github.com/nodejs/node/commit/0f784c96ba)] - **crypto**: make timingSafeEqual faster for Uint8Array (Tobias Nießen) [#52341](https://github.com/nodejs/node/pull/52341)
199
+ * \[[`739958e472`](https://github.com/nodejs/node/commit/739958e472)] - **crypto**: reject Ed25519/Ed448 in Sign/Verify prototypes (Filip Skokan) [#52340](https://github.com/nodejs/node/pull/52340)
200
+ * \[[`197b61f210`](https://github.com/nodejs/node/commit/197b61f210)] - **crypto**: validate RSA-PSS saltLength in subtle.sign and subtle.verify (Filip Skokan) [#52262](https://github.com/nodejs/node/pull/52262)
201
+ * \[[`a6eede33f3`](https://github.com/nodejs/node/commit/a6eede33f3)] - **crypto**: fix `input` validation in `crypto.hash` (Antoine du Hamel) [#52070](https://github.com/nodejs/node/pull/52070)
202
+ * \[[`bfa4986e5d`](https://github.com/nodejs/node/commit/bfa4986e5d)] - **deps**: update corepack to 0.28.0 (Node.js GitHub Bot) [#52616](https://github.com/nodejs/node/pull/52616)
203
+ * \[[`70546698d7`](https://github.com/nodejs/node/commit/70546698d7)] - **deps**: update ada to 2.7.8 (Node.js GitHub Bot) [#52517](https://github.com/nodejs/node/pull/52517)
204
+ * \[[`a135027f84`](https://github.com/nodejs/node/commit/a135027f84)] - **deps**: update icu to 75.1 (Node.js GitHub Bot) [#52573](https://github.com/nodejs/node/pull/52573)
205
+ * \[[`c96f1043d4`](https://github.com/nodejs/node/commit/c96f1043d4)] - **deps**: update undici to 6.13.0 (Node.js GitHub Bot) [#52493](https://github.com/nodejs/node/pull/52493)
206
+ * \[[`9c330b610b`](https://github.com/nodejs/node/commit/9c330b610b)] - **deps**: update zlib to 1.3.0.1-motley-7d77fb7 (Node.js GitHub Bot) [#52516](https://github.com/nodejs/node/pull/52516)
207
+ * \[[`7e5bbeebab`](https://github.com/nodejs/node/commit/7e5bbeebab)] - **deps**: update nghttp2 to 1.61.0 (Node.js GitHub Bot) [#52395](https://github.com/nodejs/node/pull/52395)
208
+ * \[[`b42a4735d9`](https://github.com/nodejs/node/commit/b42a4735d9)] - **deps**: update minimatch to 9.0.4 (Node.js GitHub Bot) [#52524](https://github.com/nodejs/node/pull/52524)
209
+ * \[[`d34fd21bc2`](https://github.com/nodejs/node/commit/d34fd21bc2)] - **deps**: update simdutf to 5.2.4 (Node.js GitHub Bot) [#52473](https://github.com/nodejs/node/pull/52473)
210
+ * \[[`ecc180f830`](https://github.com/nodejs/node/commit/ecc180f830)] - **deps**: upgrade npm to 10.5.2 (npm team) [#52458](https://github.com/nodejs/node/pull/52458)
211
+ * \[[`606c183344`](https://github.com/nodejs/node/commit/606c183344)] - **deps**: update simdutf to 5.2.3 (Yagiz Nizipli) [#52381](https://github.com/nodejs/node/pull/52381)
212
+ * \[[`0a103e99fe`](https://github.com/nodejs/node/commit/0a103e99fe)] - **deps**: upgrade npm to 10.5.1 (npm team) [#52351](https://github.com/nodejs/node/pull/52351)
213
+ * \[[`cce861e670`](https://github.com/nodejs/node/commit/cce861e670)] - **deps**: update c-ares to 1.28.1 (Node.js GitHub Bot) [#52285](https://github.com/nodejs/node/pull/52285)
214
+ * \[[`5258b547ea`](https://github.com/nodejs/node/commit/5258b547ea)] - **deps**: update undici to 6.11.1 (Node.js GitHub Bot) [#52328](https://github.com/nodejs/node/pull/52328)
215
+ * \[[`923a77c80a`](https://github.com/nodejs/node/commit/923a77c80a)] - **deps**: update undici to 6.10.2 (Node.js GitHub Bot) [#52227](https://github.com/nodejs/node/pull/52227)
216
+ * \[[`bd3c6a231c`](https://github.com/nodejs/node/commit/bd3c6a231c)] - **deps**: update zlib to 1.3.0.1-motley-24c07df (Node.js GitHub Bot) [#52199](https://github.com/nodejs/node/pull/52199)
217
+ * \[[`3b41da9a56`](https://github.com/nodejs/node/commit/3b41da9a56)] - **(SEMVER-MINOR)** **deps**: update simdutf to 5.0.0 (Daniel Lemire) [#52138](https://github.com/nodejs/node/pull/52138)
218
+ * \[[`d6f9ca385c`](https://github.com/nodejs/node/commit/d6f9ca385c)] - **deps**: update zlib to 1.3.0.1-motley-24342f6 (Node.js GitHub Bot) [#52123](https://github.com/nodejs/node/pull/52123)
219
+ * \[[`f5512897b0`](https://github.com/nodejs/node/commit/f5512897b0)] - **deps**: update corepack to 0.26.0 (Node.js GitHub Bot) [#52027](https://github.com/nodejs/node/pull/52027)
220
+ * \[[`d891275178`](https://github.com/nodejs/node/commit/d891275178)] - **deps**: update ada to 2.7.7 (Node.js GitHub Bot) [#52028](https://github.com/nodejs/node/pull/52028)
221
+ * \[[`18838f2db3`](https://github.com/nodejs/node/commit/18838f2db3)] - **deps**: update simdutf to 4.0.9 (Node.js GitHub Bot) [#51655](https://github.com/nodejs/node/pull/51655)
222
+ * \[[`503c034abc`](https://github.com/nodejs/node/commit/503c034abc)] - **deps**: update undici to 6.6.2 (Node.js GitHub Bot) [#51667](https://github.com/nodejs/node/pull/51667)
223
+ * \[[`256bcba52e`](https://github.com/nodejs/node/commit/256bcba52e)] - **deps**: update undici to 6.6.0 (Node.js GitHub Bot) [#51630](https://github.com/nodejs/node/pull/51630)
224
+ * \[[`7a1e321d95`](https://github.com/nodejs/node/commit/7a1e321d95)] - **deps**: update undici to 6.4.0 (Node.js GitHub Bot) [#51527](https://github.com/nodejs/node/pull/51527)
225
+ * \[[`dde9e08224`](https://github.com/nodejs/node/commit/dde9e08224)] - **deps**: update ngtcp2 to 1.1.0 (Node.js GitHub Bot) [#51319](https://github.com/nodejs/node/pull/51319)
226
+ * \[[`0a08c4a7b3`](https://github.com/nodejs/node/commit/0a08c4a7b3)] - **(SEMVER-MINOR)** **deps**: update undici to 6.3.0 (Node.js GitHub Bot) [#51462](https://github.com/nodejs/node/pull/51462)
227
+ * \[[`f1b7bda4f5`](https://github.com/nodejs/node/commit/f1b7bda4f5)] - **(SEMVER-MINOR)** **deps**: update undici to 6.2.1 (Node.js GitHub Bot) [#51278](https://github.com/nodejs/node/pull/51278)
228
+ * \[[`ecadd638cd`](https://github.com/nodejs/node/commit/ecadd638cd)] - **deps**: V8: remove references to non-existent flags (Richard Lau) [#52256](https://github.com/nodejs/node/pull/52256)
229
+ * \[[`27d364491f`](https://github.com/nodejs/node/commit/27d364491f)] - **dgram**: use internal addAbortListener (Chemi Atlow) [#52081](https://github.com/nodejs/node/pull/52081)
230
+ * \[[`b94d11935a`](https://github.com/nodejs/node/commit/b94d11935a)] - **diagnostics\_channel**: early-exit tracing channel trace methods (Stephen Belanger) [#51915](https://github.com/nodejs/node/pull/51915)
231
+ * \[[`4acca8ed84`](https://github.com/nodejs/node/commit/4acca8ed84)] - **(SEMVER-MINOR)** **dns**: add order option and support ipv6first (Paolo Insogna) [#52492](https://github.com/nodejs/node/pull/52492)
232
+ * \[[`bcc06ac5a9`](https://github.com/nodejs/node/commit/bcc06ac5a9)] - **doc**: remove relative limitation to pm (Rafael Gonzaga) [#52648](https://github.com/nodejs/node/pull/52648)
233
+ * \[[`4d5ef4f7af`](https://github.com/nodejs/node/commit/4d5ef4f7af)] - **doc**: fix info string causing duplicated code blocks (Mathieu Leenhardt) [#52660](https://github.com/nodejs/node/pull/52660)
234
+ * \[[`d5a316f5ea`](https://github.com/nodejs/node/commit/d5a316f5ea)] - **doc**: run license-builder (github-actions\[bot]) [#52631](https://github.com/nodejs/node/pull/52631)
235
+ * \[[`d7434fe411`](https://github.com/nodejs/node/commit/d7434fe411)] - **doc**: deprecate --experimental-policy (RafaelGSS) [#52602](https://github.com/nodejs/node/pull/52602)
236
+ * \[[`02a83d89f7`](https://github.com/nodejs/node/commit/02a83d89f7)] - **doc**: add info on contributor spotlight program (Michael Dawson) [#52598](https://github.com/nodejs/node/pull/52598)
237
+ * \[[`a905eaace1`](https://github.com/nodejs/node/commit/a905eaace1)] - **doc**: correct unsafe URL example in http docs (Malte Legenhausen) [#52555](https://github.com/nodejs/node/pull/52555)
238
+ * \[[`69c21a6522`](https://github.com/nodejs/node/commit/69c21a6522)] - **doc**: replace U+00A0 with U+0020 (Luigi Pinca) [#52590](https://github.com/nodejs/node/pull/52590)
239
+ * \[[`5df34c7d0a`](https://github.com/nodejs/node/commit/5df34c7d0a)] - **doc**: sort options alphabetically (Luigi Pinca) [#52589](https://github.com/nodejs/node/pull/52589)
240
+ * \[[`b49464bc9d`](https://github.com/nodejs/node/commit/b49464bc9d)] - **doc**: correct stream.finished changes (KaKa) [#52551](https://github.com/nodejs/node/pull/52551)
241
+ * \[[`4d051ba89b`](https://github.com/nodejs/node/commit/4d051ba89b)] - **doc**: add RedYetiDev to triage team (Aviv Keller) [#52556](https://github.com/nodejs/node/pull/52556)
242
+ * \[[`4ed55bf16c`](https://github.com/nodejs/node/commit/4ed55bf16c)] - **doc**: fix issue detected in markdown lint update (Rich Trott) [#52566](https://github.com/nodejs/node/pull/52566)
243
+ * \[[`a8bc40fd07`](https://github.com/nodejs/node/commit/a8bc40fd07)] - **doc**: update test runner coverage limitations (Moshe Atlow) [#52515](https://github.com/nodejs/node/pull/52515)
244
+ * \[[`17d5ba9fed`](https://github.com/nodejs/node/commit/17d5ba9fed)] - **doc**: add lint-js-fix into BUILDING.md (jakecastelli) [#52290](https://github.com/nodejs/node/pull/52290)
245
+ * \[[`88adbd0991`](https://github.com/nodejs/node/commit/88adbd0991)] - **doc**: remove Internet Explorer mention in BUILDING.md (Rich Trott) [#52455](https://github.com/nodejs/node/pull/52455)
246
+ * \[[`e8cb29d66d`](https://github.com/nodejs/node/commit/e8cb29d66d)] - **doc**: accommodate upcoming stricter .md linting (Rich Trott) [#52454](https://github.com/nodejs/node/pull/52454)
247
+ * \[[`e2ea984c7b`](https://github.com/nodejs/node/commit/e2ea984c7b)] - **doc**: add Rafael to steward list (Rafael Gonzaga) [#52452](https://github.com/nodejs/node/pull/52452)
248
+ * \[[`93d684097a`](https://github.com/nodejs/node/commit/93d684097a)] - **doc**: correct naming convention in C++ style guide (Mohammed Keyvanzadeh) [#52424](https://github.com/nodejs/node/pull/52424)
249
+ * \[[`b9bdb947ac`](https://github.com/nodejs/node/commit/b9bdb947ac)] - **doc**: update `process.execArg` example to be more useful (Jacob Smith) [#52412](https://github.com/nodejs/node/pull/52412)
250
+ * \[[`f3f67ff84a`](https://github.com/nodejs/node/commit/f3f67ff84a)] - **doc**: call out http(s).globalAgent default (mathis-west-1) [#52392](https://github.com/nodejs/node/pull/52392)
251
+ * \[[`392a0d310e`](https://github.com/nodejs/node/commit/392a0d310e)] - **doc**: update the location of `build_with_cmake` (Emmanuel Ferdman) [#52356](https://github.com/nodejs/node/pull/52356)
252
+ * \[[`3ad62f1cc7`](https://github.com/nodejs/node/commit/3ad62f1cc7)] - **doc**: reserve 125 for Electron 31 (Shelley Vohr) [#52379](https://github.com/nodejs/node/pull/52379)
253
+ * \[[`bfd4c7844b`](https://github.com/nodejs/node/commit/bfd4c7844b)] - **doc**: use consistent plural form of "index" (Rich Trott) [#52373](https://github.com/nodejs/node/pull/52373)
254
+ * \[[`6f31cc8361`](https://github.com/nodejs/node/commit/6f31cc8361)] - **doc**: add Rafael to sec release stewards (Rafael Gonzaga) [#52354](https://github.com/nodejs/node/pull/52354)
255
+ * \[[`c55a3be789`](https://github.com/nodejs/node/commit/c55a3be789)] - **doc**: document missing options of events.on (Chemi Atlow) [#52080](https://github.com/nodejs/node/pull/52080)
256
+ * \[[`1a843f7c6d`](https://github.com/nodejs/node/commit/1a843f7c6d)] - **doc**: add missing space (Augustin Mauroy) [#52360](https://github.com/nodejs/node/pull/52360)
257
+ * \[[`8ee20d8693`](https://github.com/nodejs/node/commit/8ee20d8693)] - **doc**: add tips about vcpkg cause build faild on windows (Cong Zhang) [#52181](https://github.com/nodejs/node/pull/52181)
258
+ * \[[`a86705c113`](https://github.com/nodejs/node/commit/a86705c113)] - **doc**: replace "below" with "following" (Rich Trott) [#52315](https://github.com/nodejs/node/pull/52315)
259
+ * \[[`f3e8d1159a`](https://github.com/nodejs/node/commit/f3e8d1159a)] - **doc**: fix email pattern to be wrapped with `<<` instead of single `<` (Raz Luvaton) [#52284](https://github.com/nodejs/node/pull/52284)
260
+ * \[[`cc67720ff9`](https://github.com/nodejs/node/commit/cc67720ff9)] - **doc**: update release gpg keyserver (marco-ippolito) [#52257](https://github.com/nodejs/node/pull/52257)
261
+ * \[[`c2def7df96`](https://github.com/nodejs/node/commit/c2def7df96)] - **doc**: add release key for marco-ippolito (marco-ippolito) [#52257](https://github.com/nodejs/node/pull/52257)
262
+ * \[[`2509f3be18`](https://github.com/nodejs/node/commit/2509f3be18)] - **doc**: fix arrow vertical alignment in HTML version (Akash Yeole) [#52193](https://github.com/nodejs/node/pull/52193)
263
+ * \[[`2abaea3cdc`](https://github.com/nodejs/node/commit/2abaea3cdc)] - **doc**: move TSC members from regular to emeritus (Michael Dawson) [#52209](https://github.com/nodejs/node/pull/52209)
264
+ * \[[`65618a3d7b`](https://github.com/nodejs/node/commit/65618a3d7b)] - **doc**: add section explaining todo tests (Colin Ihrig) [#52204](https://github.com/nodejs/node/pull/52204)
265
+ * \[[`bf0ed95b04`](https://github.com/nodejs/node/commit/bf0ed95b04)] - **doc**: edit `ChildProcess` `'message'` event docs (theanarkh) [#52154](https://github.com/nodejs/node/pull/52154)
266
+ * \[[`3d67b6b5e8`](https://github.com/nodejs/node/commit/3d67b6b5e8)] - **doc**: add mold to speeding up section (Cong Zhang) [#52179](https://github.com/nodejs/node/pull/52179)
267
+ * \[[`8ba308a838`](https://github.com/nodejs/node/commit/8ba308a838)] - **doc**: http event order correction (wh0) [#51464](https://github.com/nodejs/node/pull/51464)
268
+ * \[[`9771f41069`](https://github.com/nodejs/node/commit/9771f41069)] - **doc**: move gabrielschulhof to TSC emeritus (Gabriel Schulhof) [#52192](https://github.com/nodejs/node/pull/52192)
269
+ * \[[`72bd2b0d62`](https://github.com/nodejs/node/commit/72bd2b0d62)] - **doc**: fix `--env-file` docs for valid quotes for defining values (Gabriel Bota) [#52157](https://github.com/nodejs/node/pull/52157)
270
+ * \[[`4f19203dfb`](https://github.com/nodejs/node/commit/4f19203dfb)] - **doc**: clarify what is supported in NODE\_OPTIONS (Michael Dawson) [#52076](https://github.com/nodejs/node/pull/52076)
271
+ * \[[`5bce596838`](https://github.com/nodejs/node/commit/5bce596838)] - **doc**: fix typos in maintaining-dependencies.md (RoboSchmied) [#52160](https://github.com/nodejs/node/pull/52160)
272
+ * \[[`f5241e20cc`](https://github.com/nodejs/node/commit/f5241e20cc)] - **doc**: add spec for contains module syntax (Geoffrey Booth) [#52059](https://github.com/nodejs/node/pull/52059)
273
+ * \[[`bda3cdea86`](https://github.com/nodejs/node/commit/bda3cdea86)] - **doc**: optimize the doc about Unix abstract socket (theanarkh) [#52043](https://github.com/nodejs/node/pull/52043)
274
+ * \[[`8d7d6eff81`](https://github.com/nodejs/node/commit/8d7d6eff81)] - **doc**: update pnpm link (Superchupu) [#52113](https://github.com/nodejs/node/pull/52113)
275
+ * \[[`af7c55f62d`](https://github.com/nodejs/node/commit/af7c55f62d)] - **doc**: remove ableist language from crypto (Jamie King) [#52063](https://github.com/nodejs/node/pull/52063)
276
+ * \[[`f8362b0a5a`](https://github.com/nodejs/node/commit/f8362b0a5a)] - **doc**: update collaborator email (Ruy Adorno) [#52088](https://github.com/nodejs/node/pull/52088)
277
+ * \[[`48cbd5f71e`](https://github.com/nodejs/node/commit/48cbd5f71e)] - **doc**: state that removing npm is a non-goal (Geoffrey Booth) [#51951](https://github.com/nodejs/node/pull/51951)
278
+ * \[[`0ef2708131`](https://github.com/nodejs/node/commit/0ef2708131)] - **doc**: mention NodeSource in RafaelGSS steward list (Rafael Gonzaga) [#52057](https://github.com/nodejs/node/pull/52057)
279
+ * \[[`a6473a89be`](https://github.com/nodejs/node/commit/a6473a89be)] - **doc**: remove ArrayBuffer from crypto.hash() data parameter type (fengmk2) [#52069](https://github.com/nodejs/node/pull/52069)
280
+ * \[[`ae7a11c787`](https://github.com/nodejs/node/commit/ae7a11c787)] - **doc**: add some commonly used lables up gront (Michael Dawson) [#52006](https://github.com/nodejs/node/pull/52006)
281
+ * \[[`01aaddde3c`](https://github.com/nodejs/node/commit/01aaddde3c)] - **doc**: document that `const c2 = vm.createContext(c1); c1 === c2` is true (Daniel Kaplan) [#51960](https://github.com/nodejs/node/pull/51960)
282
+ * \[[`912145fac4`](https://github.com/nodejs/node/commit/912145fac4)] - **doc**: clarify what moderation issues are for (Antoine du Hamel) [#51990](https://github.com/nodejs/node/pull/51990)
283
+ * \[[`807c89cb26`](https://github.com/nodejs/node/commit/807c89cb26)] - **doc**: add UlisesGascon as a collaborator (Ulises Gascón) [#51991](https://github.com/nodejs/node/pull/51991)
284
+ * \[[`53ff3e5682`](https://github.com/nodejs/node/commit/53ff3e5682)] - **doc**: deprecate hmac public constructor (Marco Ippolito) [#51881](https://github.com/nodejs/node/pull/51881)
285
+ * \[[`5e78a20ef9`](https://github.com/nodejs/node/commit/5e78a20ef9)] - **(SEMVER-MINOR)** **doc**: deprecate fs.Stats public constructor (Marco Ippolito) [#51879](https://github.com/nodejs/node/pull/51879)
286
+ * \[[`7bfb0b43e6`](https://github.com/nodejs/node/commit/7bfb0b43e6)] - **events**: rename high & low watermark for consistency (Chemi Atlow) [#52080](https://github.com/nodejs/node/pull/52080)
287
+ * \[[`5e6967359b`](https://github.com/nodejs/node/commit/5e6967359b)] - **events**: extract addAbortListener for safe internal use (Chemi Atlow) [#52081](https://github.com/nodejs/node/pull/52081)
288
+ * \[[`6930205272`](https://github.com/nodejs/node/commit/6930205272)] - **events**: remove abort listener from signal in `on` (Neal Beeken) [#51091](https://github.com/nodejs/node/pull/51091)
289
+ * \[[`235ab4f99f`](https://github.com/nodejs/node/commit/235ab4f99f)] - **events,doc**: mark CustomEvent as stable (Daeyeon Jeong) [#52618](https://github.com/nodejs/node/pull/52618)
290
+ * \[[`ca5b827148`](https://github.com/nodejs/node/commit/ca5b827148)] - **fs**: fix read / readSync positional offset types (Ruy Adorno) [#52603](https://github.com/nodejs/node/pull/52603)
291
+ * \[[`e7d0d804b2`](https://github.com/nodejs/node/commit/e7d0d804b2)] - **fs**: fixes recursive fs.watch crash on Linux when deleting files (Matteo Collina) [#52349](https://github.com/nodejs/node/pull/52349)
292
+ * \[[`c5fd193d6b`](https://github.com/nodejs/node/commit/c5fd193d6b)] - **fs**: refactor maybeCallback function (Yagiz Nizipli) [#52129](https://github.com/nodejs/node/pull/52129)
293
+ * \[[`0a9910c2c1`](https://github.com/nodejs/node/commit/0a9910c2c1)] - **fs**: fix edge case in readFileSync utf8 fast path (Richard Lau) [#52101](https://github.com/nodejs/node/pull/52101)
294
+ * \[[`51d7cd5de8`](https://github.com/nodejs/node/commit/51d7cd5de8)] - **fs**: validate fd from cpp on `fchown` (Yagiz Nizipli) [#52051](https://github.com/nodejs/node/pull/52051)
295
+ * \[[`33ad86c2be`](https://github.com/nodejs/node/commit/33ad86c2be)] - **fs**: validate fd from cpp on `close` (Yagiz Nizipli) [#52051](https://github.com/nodejs/node/pull/52051)
296
+ * \[[`34667c0a7e`](https://github.com/nodejs/node/commit/34667c0a7e)] - **fs**: validate file mode from cpp (Yagiz Nizipli) [#52050](https://github.com/nodejs/node/pull/52050)
297
+ * \[[`c530520be3`](https://github.com/nodejs/node/commit/c530520be3)] - **fs**: add stacktrace to fs/promises (翠 / green) [#49849](https://github.com/nodejs/node/pull/49849)
298
+ * \[[`edecd464b9`](https://github.com/nodejs/node/commit/edecd464b9)] - **fs,permission**: make handling of buffers consistent (Tobias Nießen) [#52348](https://github.com/nodejs/node/pull/52348)
299
+ * \[[`3bcd68337e`](https://github.com/nodejs/node/commit/3bcd68337e)] - **http2**: fix excessive CPU usage when using `allowHTTP1=true` (Eugene) [#52713](https://github.com/nodejs/node/pull/52713)
300
+ * \[[`e01015996a`](https://github.com/nodejs/node/commit/e01015996a)] - **http2**: fix h2-over-h2 connection proxying (Tim Perry) [#52368](https://github.com/nodejs/node/pull/52368)
301
+ * \[[`9f88736860`](https://github.com/nodejs/node/commit/9f88736860)] - **http2**: use internal addAbortListener (Chemi Atlow) [#52081](https://github.com/nodejs/node/pull/52081)
302
+ * \[[`acd7758959`](https://github.com/nodejs/node/commit/acd7758959)] - **lib**: use predefined variable instead of bit operation (Deokjin Kim) [#52580](https://github.com/nodejs/node/pull/52580)
303
+ * \[[`18ae7a46f6`](https://github.com/nodejs/node/commit/18ae7a46f6)] - **lib**: refactor lazy loading of undici for fetch method (Victor Chen) [#52275](https://github.com/nodejs/node/pull/52275)
304
+ * \[[`64c2c2a7ac`](https://github.com/nodejs/node/commit/64c2c2a7ac)] - **lib**: replace string prototype usage with alternatives (Aviv Keller) [#52440](https://github.com/nodejs/node/pull/52440)
305
+ * \[[`ee11b5315c`](https://github.com/nodejs/node/commit/ee11b5315c)] - **lib**: .load .save add proper error message when no file passed (Thomas Mauran) [#52225](https://github.com/nodejs/node/pull/52225)
306
+ * \[[`e5521b537f`](https://github.com/nodejs/node/commit/e5521b537f)] - **lib**: fix type error for \_refreshLine (Jackson Tian) [#52133](https://github.com/nodejs/node/pull/52133)
307
+ * \[[`d5d6e041c8`](https://github.com/nodejs/node/commit/d5d6e041c8)] - **lib**: emit listening event once when call listen twice (theanarkh) [#52119](https://github.com/nodejs/node/pull/52119)
308
+ * \[[`d33fc36784`](https://github.com/nodejs/node/commit/d33fc36784)] - **lib**: make sure clear the old timer in http server (theanarkh) [#52118](https://github.com/nodejs/node/pull/52118)
309
+ * \[[`ea4905c0f5`](https://github.com/nodejs/node/commit/ea4905c0f5)] - **lib**: fix listen with handle in cluster worker (theanarkh) [#52056](https://github.com/nodejs/node/pull/52056)
310
+ * \[[`8fd8130507`](https://github.com/nodejs/node/commit/8fd8130507)] - **lib, doc**: rename readme.md to README.md (Aviv Keller) [#52471](https://github.com/nodejs/node/pull/52471)
311
+ * \[[`722fe64ff7`](https://github.com/nodejs/node/commit/722fe64ff7)] - **(SEMVER-MINOR)** **lib, url**: add a `windows` option to path parsing (Aviv Keller) [#52509](https://github.com/nodejs/node/pull/52509)
312
+ * \[[`26691e6032`](https://github.com/nodejs/node/commit/26691e6032)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#52633](https://github.com/nodejs/node/pull/52633)
313
+ * \[[`befb90dc83`](https://github.com/nodejs/node/commit/befb90dc83)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#52457](https://github.com/nodejs/node/pull/52457)
314
+ * \[[`22b7167e72`](https://github.com/nodejs/node/commit/22b7167e72)] - **meta**: bump actions/download-artifact from 4.1.3 to 4.1.4 (dependabot\[bot]) [#52314](https://github.com/nodejs/node/pull/52314)
315
+ * \[[`4dafd3ede2`](https://github.com/nodejs/node/commit/4dafd3ede2)] - **meta**: bump rtCamp/action-slack-notify from 2.2.1 to 2.3.0 (dependabot\[bot]) [#52313](https://github.com/nodejs/node/pull/52313)
316
+ * \[[`2760db7640`](https://github.com/nodejs/node/commit/2760db7640)] - **meta**: bump github/codeql-action from 3.24.6 to 3.24.9 (dependabot\[bot]) [#52312](https://github.com/nodejs/node/pull/52312)
317
+ * \[[`542aaf9ca9`](https://github.com/nodejs/node/commit/542aaf9ca9)] - **meta**: bump actions/cache from 4.0.1 to 4.0.2 (dependabot\[bot]) [#52311](https://github.com/nodejs/node/pull/52311)
318
+ * \[[`df330998d9`](https://github.com/nodejs/node/commit/df330998d9)] - **meta**: bump actions/setup-python from 5.0.0 to 5.1.0 (dependabot\[bot]) [#52310](https://github.com/nodejs/node/pull/52310)
319
+ * \[[`5f40fe0cc2`](https://github.com/nodejs/node/commit/5f40fe0cc2)] - **meta**: bump codecov/codecov-action from 4.1.0 to 4.1.1 (dependabot\[bot]) [#52308](https://github.com/nodejs/node/pull/52308)
320
+ * \[[`481420f25c`](https://github.com/nodejs/node/commit/481420f25c)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#52300](https://github.com/nodejs/node/pull/52300)
321
+ * \[[`3121949f85`](https://github.com/nodejs/node/commit/3121949f85)] - **meta**: pass Codecov upload token to codecov action (Michaël Zasso) [#51982](https://github.com/nodejs/node/pull/51982)
322
+ * \[[`882a64e639`](https://github.com/nodejs/node/commit/882a64e639)] - **module**: fix detect-module not retrying as esm for cjs-only errors (Geoffrey Booth) [#52024](https://github.com/nodejs/node/pull/52024)
323
+ * \[[`5fcc1d32a8`](https://github.com/nodejs/node/commit/5fcc1d32a8)] - **module**: refactor ESM loader initialization and entry point handling (Joyee Cheung) [#51999](https://github.com/nodejs/node/pull/51999)
324
+ * \[[`d116fa1568`](https://github.com/nodejs/node/commit/d116fa1568)] - **(SEMVER-MINOR)** **net**: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) [#52474](https://github.com/nodejs/node/pull/52474)
325
+ * \[[`37abad86ae`](https://github.com/nodejs/node/commit/37abad86ae)] - **net**: use internal addAbortListener (Chemi Atlow) [#52081](https://github.com/nodejs/node/pull/52081)
326
+ * \[[`a920489a1f`](https://github.com/nodejs/node/commit/a920489a1f)] - **node-api**: address coverity report (Michael Dawson) [#52584](https://github.com/nodejs/node/pull/52584)
327
+ * \[[`0a225a4b40`](https://github.com/nodejs/node/commit/0a225a4b40)] - **node-api**: copy external type tags when they are set (Niels Martignène) [#52426](https://github.com/nodejs/node/pull/52426)
328
+ * \[[`f9d95674be`](https://github.com/nodejs/node/commit/f9d95674be)] - **node-api**: make tsfn accept napi\_finalize once more (Gabriel Schulhof) [#51801](https://github.com/nodejs/node/pull/51801)
329
+ * \[[`72aabe1139`](https://github.com/nodejs/node/commit/72aabe1139)] - **perf\_hooks**: reduce overhead of createHistogram (Vinícius Lourenço) [#50074](https://github.com/nodejs/node/pull/50074)
330
+ * \[[`fb601c3a94`](https://github.com/nodejs/node/commit/fb601c3a94)] - **readline**: use internal addAbortListener (Chemi Atlow) [#52081](https://github.com/nodejs/node/pull/52081)
331
+ * \[[`29f09f05f7`](https://github.com/nodejs/node/commit/29f09f05f7)] - **(SEMVER-MINOR)** **report**: add `--report-exclude-network` option (Ethan Arrowood) [#51645](https://github.com/nodejs/node/pull/51645)
332
+ * \[[`7e6d923f5b`](https://github.com/nodejs/node/commit/7e6d923f5b)] - **src**: cast to v8::Value before using v8::EmbedderGraph::V8Node (Joyee Cheung) [#52638](https://github.com/nodejs/node/pull/52638)
333
+ * \[[`6af7b78b0d`](https://github.com/nodejs/node/commit/6af7b78b0d)] - **(SEMVER-MINOR)** **src**: add `string_view` overload to snapshot FromBlob (Anna Henningsen) [#52595](https://github.com/nodejs/node/pull/52595)
334
+ * \[[`27491e55c1`](https://github.com/nodejs/node/commit/27491e55c1)] - **src**: remove regex usage for env file parsing (IlyasShabi) [#52406](https://github.com/nodejs/node/pull/52406)
335
+ * \[[`b05e639e27`](https://github.com/nodejs/node/commit/b05e639e27)] - **src**: fix loadEnvFile ENOENT error (mathis-west-1) [#52438](https://github.com/nodejs/node/pull/52438)
336
+ * \[[`1b4d2814d1`](https://github.com/nodejs/node/commit/1b4d2814d1)] - **src**: update branch name in node\_revert.h (Tobias Nießen) [#52390](https://github.com/nodejs/node/pull/52390)
337
+ * \[[`7e35a169ea`](https://github.com/nodejs/node/commit/7e35a169ea)] - **src**: stop using `v8::BackingStore::Reallocate` (Michaël Zasso) [#52292](https://github.com/nodejs/node/pull/52292)
338
+ * \[[`2449d2606a`](https://github.com/nodejs/node/commit/2449d2606a)] - **src**: fix move after use reported by coverity (Michael Dawson) [#52141](https://github.com/nodejs/node/pull/52141)
339
+ * \[[`b33eff887d`](https://github.com/nodejs/node/commit/b33eff887d)] - **(SEMVER-MINOR)** **src**: add C++ ProcessEmitWarningSync() (Joyee Cheung) [#51977](https://github.com/nodejs/node/pull/51977)
340
+ * \[[`f2c7408927`](https://github.com/nodejs/node/commit/f2c7408927)] - **src**: return a number from process.constrainedMemory() constantly (Chengzhong Wu) [#52039](https://github.com/nodejs/node/pull/52039)
341
+ * \[[`7f575c886b`](https://github.com/nodejs/node/commit/7f575c886b)] - **(SEMVER-MINOR)** **src**: add uv\_get\_available\_memory to report and process (theanarkh) [#52023](https://github.com/nodejs/node/pull/52023)
342
+ * \[[`e161e62313`](https://github.com/nodejs/node/commit/e161e62313)] - **src**: use dedicated routine to compile function for builtin CJS loader (Joyee Cheung) [#52016](https://github.com/nodejs/node/pull/52016)
343
+ * \[[`07322b490f`](https://github.com/nodejs/node/commit/07322b490f)] - **src**: fix reading empty string views in Blob\[De]serializer (Joyee Cheung) [#52000](https://github.com/nodejs/node/pull/52000)
344
+ * \[[`e216192390`](https://github.com/nodejs/node/commit/e216192390)] - **src**: refactor out FormatErrorMessage for error formatting (Joyee Cheung) [#51999](https://github.com/nodejs/node/pull/51999)
345
+ * \[[`b3a11b574b`](https://github.com/nodejs/node/commit/b3a11b574b)] - **(SEMVER-MINOR)** **src**: preload function for Environment (Cheng Zhao) [#51539](https://github.com/nodejs/node/pull/51539)
346
+ * \[[`09bd367ef6`](https://github.com/nodejs/node/commit/09bd367ef6)] - **stream**: make Duplex inherit destroy from Writable (Luigi Pinca) [#52318](https://github.com/nodejs/node/pull/52318)
347
+ * \[[`0b853a7576`](https://github.com/nodejs/node/commit/0b853a7576)] - **(SEMVER-MINOR)** **stream**: support typed arrays (IlyasShabi) [#51866](https://github.com/nodejs/node/pull/51866)
348
+ * \[[`f8209ffe45`](https://github.com/nodejs/node/commit/f8209ffe45)] - **stream**: add `new` when constructing `ERR_MULTIPLE_CALLBACK` (haze) [#52110](https://github.com/nodejs/node/pull/52110)
349
+ * \[[`8442457117`](https://github.com/nodejs/node/commit/8442457117)] - **stream**: use internal addAbortListener (Chemi Atlow) [#52081](https://github.com/nodejs/node/pull/52081)
350
+ * \[[`8d20b641a2`](https://github.com/nodejs/node/commit/8d20b641a2)] - _**Revert**_ "**stream**: fix cloned webstreams not being unref'd" (Matteo Collina) [#51491](https://github.com/nodejs/node/pull/51491)
351
+ * \[[`a923adffab`](https://github.com/nodejs/node/commit/a923adffab)] - **test**: mark `test-error-serdes` as flaky (Antoine du Hamel) [#52739](https://github.com/nodejs/node/pull/52739)
352
+ * \[[`d4f1803f0b`](https://github.com/nodejs/node/commit/d4f1803f0b)] - **test**: mark test as flaky (Michael Dawson) [#52671](https://github.com/nodejs/node/pull/52671)
353
+ * \[[`1e88e042c2`](https://github.com/nodejs/node/commit/1e88e042c2)] - **test**: skip test-fs-watch-recursive-delete.js on IBM i (Abdirahim Musse) [#52645](https://github.com/nodejs/node/pull/52645)
354
+ * \[[`6da558af8b`](https://github.com/nodejs/node/commit/6da558af8b)] - **test**: ensure that all worker servers are ready (Luigi Pinca) [#52563](https://github.com/nodejs/node/pull/52563)
355
+ * \[[`c871fadb85`](https://github.com/nodejs/node/commit/c871fadb85)] - **test**: fix test-tls-ticket-cluster.js (Hüseyin Açacak) [#52431](https://github.com/nodejs/node/pull/52431)
356
+ * \[[`b6cb74d775`](https://github.com/nodejs/node/commit/b6cb74d775)] - **test**: split wasi poll test for windows (Hüseyin Açacak) [#52538](https://github.com/nodejs/node/pull/52538)
357
+ * \[[`4ad159bb75`](https://github.com/nodejs/node/commit/4ad159bb75)] - **test**: write tests for assertIsArray http2 util (Sinan Sonmez (Chaush)) [#52511](https://github.com/nodejs/node/pull/52511)
358
+ * \[[`1f7a28cbe7`](https://github.com/nodejs/node/commit/1f7a28cbe7)] - **test**: fix watch test with require not testing pid (Raz Luvaton) [#52353](https://github.com/nodejs/node/pull/52353)
359
+ * \[[`5b758b93d5`](https://github.com/nodejs/node/commit/5b758b93d5)] - **test**: simplify ASan build checks (Michaël Zasso) [#52430](https://github.com/nodejs/node/pull/52430)
360
+ * \[[`375c3db5ea`](https://github.com/nodejs/node/commit/375c3db5ea)] - **test**: fix Windows compiler warnings in overlapped-checker (Michaël Zasso) [#52405](https://github.com/nodejs/node/pull/52405)
361
+ * \[[`a1dd92cdee`](https://github.com/nodejs/node/commit/a1dd92cdee)] - **test**: add test for skip+todo combinations (Colin Ihrig) [#52204](https://github.com/nodejs/node/pull/52204)
362
+ * \[[`8a0b721930`](https://github.com/nodejs/node/commit/8a0b721930)] - **test**: fix incorrect test fixture (Colin Ihrig) [#52185](https://github.com/nodejs/node/pull/52185)
363
+ * \[[`dd1f761f3b`](https://github.com/nodejs/node/commit/dd1f761f3b)] - **test**: add missing cctest/test\_path.cc (Yagiz Nizipli) [#52148](https://github.com/nodejs/node/pull/52148)
364
+ * \[[`6da446d9e1`](https://github.com/nodejs/node/commit/6da446d9e1)] - **test**: add `spawnSyncAndAssert` util (Antoine du Hamel) [#52132](https://github.com/nodejs/node/pull/52132)
365
+ * \[[`d7bfb4e8d8`](https://github.com/nodejs/node/commit/d7bfb4e8d8)] - **test**: reduce flakiness of test-runner-output.mjs (Colin Ihrig) [#52146](https://github.com/nodejs/node/pull/52146)
366
+ * \[[`e4981b3d75`](https://github.com/nodejs/node/commit/e4981b3d75)] - **test**: add test for using `--print` with promises (Antoine du Hamel) [#52137](https://github.com/nodejs/node/pull/52137)
367
+ * \[[`5cc540078e`](https://github.com/nodejs/node/commit/5cc540078e)] - **test**: un-set test-emit-after-on-destroyed as flaky (Abdirahim Musse) [#51995](https://github.com/nodejs/node/pull/51995)
368
+ * \[[`b9eb0035dd`](https://github.com/nodejs/node/commit/b9eb0035dd)] - **test**: skip test for dynamically linked OpenSSL (Richard Lau) [#52542](https://github.com/nodejs/node/pull/52542)
369
+ * \[[`32014f5601`](https://github.com/nodejs/node/commit/32014f5601)] - **test**: avoid v8 deadcode on performance function (Vinícius Lourenço) [#50074](https://github.com/nodejs/node/pull/50074)
370
+ * \[[`29d2011f51`](https://github.com/nodejs/node/commit/29d2011f51)] - **test\_runner**: better error handing for test hook (Alex Yang) [#52401](https://github.com/nodejs/node/pull/52401)
371
+ * \[[`9497097fb3`](https://github.com/nodejs/node/commit/9497097fb3)] - **test\_runner**: fix clearing final timeout in own callback (Ben Richeson) [#52332](https://github.com/nodejs/node/pull/52332)
372
+ * \[[`0f690f0b9e`](https://github.com/nodejs/node/commit/0f690f0b9e)] - **test\_runner**: fix recursive run (Moshe Atlow) [#52322](https://github.com/nodejs/node/pull/52322)
373
+ * \[[`34ab1a36ee`](https://github.com/nodejs/node/commit/34ab1a36ee)] - **test\_runner**: hide new line when no error in spec reporter (Moshe Atlow) [#52297](https://github.com/nodejs/node/pull/52297)
374
+ * \[[`379535abe3`](https://github.com/nodejs/node/commit/379535abe3)] - **test\_runner**: disable highWatermark on TestsStream (Colin Ihrig) [#52287](https://github.com/nodejs/node/pull/52287)
375
+ * \[[`35588cff39`](https://github.com/nodejs/node/commit/35588cff39)] - **test\_runner**: run afterEach hooks in correct order (Colin Ihrig) [#52239](https://github.com/nodejs/node/pull/52239)
376
+ * \[[`5cd3df8fe1`](https://github.com/nodejs/node/commit/5cd3df8fe1)] - **test\_runner**: simplify test end time tracking (Colin Ihrig) [#52182](https://github.com/nodejs/node/pull/52182)
377
+ * \[[`07e4a42e4b`](https://github.com/nodejs/node/commit/07e4a42e4b)] - **test\_runner**: simplify test start time tracking (Colin Ihrig) [#52182](https://github.com/nodejs/node/pull/52182)
378
+ * \[[`caec996831`](https://github.com/nodejs/node/commit/caec996831)] - **test\_runner**: emit diagnostics when watch mode drains (Moshe Atlow) [#52130](https://github.com/nodejs/node/pull/52130)
379
+ * \[[`41646d9c9e`](https://github.com/nodejs/node/commit/41646d9c9e)] - **(SEMVER-MINOR)** **test\_runner**: add suite() (Colin Ihrig) [#52127](https://github.com/nodejs/node/pull/52127)
380
+ * \[[`fd1489a623`](https://github.com/nodejs/node/commit/fd1489a623)] - **test\_runner**: skip each hooks for skipped tests (Colin Ihrig) [#52115](https://github.com/nodejs/node/pull/52115)
381
+ * \[[`73b38bfa9e`](https://github.com/nodejs/node/commit/73b38bfa9e)] - **test\_runner**: remove redundant report call (Colin Ihrig) [#52089](https://github.com/nodejs/node/pull/52089)
382
+ * \[[`68187c4d9e`](https://github.com/nodejs/node/commit/68187c4d9e)] - **test\_runner**: use internal addAbortListener (Chemi Atlow) [#52081](https://github.com/nodejs/node/pull/52081)
383
+ * \[[`61e7ae05ef`](https://github.com/nodejs/node/commit/61e7ae05ef)] - **test\_runner**: use source maps when reporting coverage (Moshe Atlow) [#52060](https://github.com/nodejs/node/pull/52060)
384
+ * \[[`e64a25af61`](https://github.com/nodejs/node/commit/e64a25af61)] - **test\_runner**: handle undefined test locations (Colin Ihrig) [#52036](https://github.com/nodejs/node/pull/52036)
385
+ * \[[`590decf202`](https://github.com/nodejs/node/commit/590decf202)] - **test\_runner**: avoid overwriting root start time (Colin Ihrig) [#52020](https://github.com/nodejs/node/pull/52020)
386
+ * \[[`a4cbb61c65`](https://github.com/nodejs/node/commit/a4cbb61c65)] - **test\_runner**: abort unfinished tests on async error (Colin Ihrig) [#51996](https://github.com/nodejs/node/pull/51996)
387
+ * \[[`a223ca4868`](https://github.com/nodejs/node/commit/a223ca4868)] - **test\_runner**: run before hook immediately if test started (Moshe Atlow) [#52003](https://github.com/nodejs/node/pull/52003)
388
+ * \[[`956ee74c7e`](https://github.com/nodejs/node/commit/956ee74c7e)] - **test\_runner**: add support for null and date value output (Malthe Borch) [#51920](https://github.com/nodejs/node/pull/51920)
389
+ * \[[`fc9ba17f6c`](https://github.com/nodejs/node/commit/fc9ba17f6c)] - **(SEMVER-MINOR)** **test\_runner**: add `test:complete` event to reflect execution order (Moshe Atlow) [#51909](https://github.com/nodejs/node/pull/51909)
390
+ * \[[`d5ac979aeb`](https://github.com/nodejs/node/commit/d5ac979aeb)] - **test\_runner**: format coverage report for tap reporter (Pulkit Gupta) [#51119](https://github.com/nodejs/node/pull/51119)
391
+ * \[[`c925bc18dc`](https://github.com/nodejs/node/commit/c925bc18dc)] - **tools**: take co-authors into account in `find-inactive-collaborators` (Antoine du Hamel) [#52669](https://github.com/nodejs/node/pull/52669)
392
+ * \[[`1d37e772ec`](https://github.com/nodejs/node/commit/1d37e772ec)] - **tools**: fix invalid escape sequence in mkssldef (Michaël Zasso) [#52624](https://github.com/nodejs/node/pull/52624)
393
+ * \[[`5b22fc3a81`](https://github.com/nodejs/node/commit/5b22fc3a81)] - **tools**: update lint-md-dependencies to rollup\@4.15.0 (Node.js GitHub Bot) [#52617](https://github.com/nodejs/node/pull/52617)
394
+ * \[[`9cf47bb2f1`](https://github.com/nodejs/node/commit/9cf47bb2f1)] - **tools**: update lint-md-dependencies (Rich Trott) [#52581](https://github.com/nodejs/node/pull/52581)
395
+ * \[[`c0c60d13c0`](https://github.com/nodejs/node/commit/c0c60d13c0)] - **tools**: fix heading spaces for osx-entitlements.plist (Jackson Tian) [#52561](https://github.com/nodejs/node/pull/52561)
396
+ * \[[`7c349d7819`](https://github.com/nodejs/node/commit/7c349d7819)] - **tools**: update lint-md-dependencies to rollup\@4.14.2 vfile-reporter\@8.1.1 (Node.js GitHub Bot) [#52518](https://github.com/nodejs/node/pull/52518)
397
+ * \[[`b4d703297b`](https://github.com/nodejs/node/commit/b4d703297b)] - **tools**: use stylistic ESLint plugin for formatting (Michaël Zasso) [#50714](https://github.com/nodejs/node/pull/50714)
398
+ * \[[`c6813360c2`](https://github.com/nodejs/node/commit/c6813360c2)] - **tools**: update minimatch index path (Marco Ippolito) [#52523](https://github.com/nodejs/node/pull/52523)
399
+ * \[[`8464c0253c`](https://github.com/nodejs/node/commit/8464c0253c)] - **tools**: add a linter for README lists (Antoine du Hamel) [#52476](https://github.com/nodejs/node/pull/52476)
400
+ * \[[`55a3fbc842`](https://github.com/nodejs/node/commit/55a3fbc842)] - **tools**: change inactive limit to 12 months (Yagiz Nizipli) [#52425](https://github.com/nodejs/node/pull/52425)
401
+ * \[[`74a171f130`](https://github.com/nodejs/node/commit/74a171f130)] - **tools**: update stale bot messaging (Wes Todd) [#52423](https://github.com/nodejs/node/pull/52423)
402
+ * \[[`b2a3dcec2a`](https://github.com/nodejs/node/commit/b2a3dcec2a)] - **tools**: update lint-md-dependencies to rollup\@4.14.0 (Node.js GitHub Bot) [#52398](https://github.com/nodejs/node/pull/52398)
403
+ * \[[`f71a777e6e`](https://github.com/nodejs/node/commit/f71a777e6e)] - **tools**: update Ruff to v0.3.4 (Michaël Zasso) [#52302](https://github.com/nodejs/node/pull/52302)
404
+ * \[[`e3e0c68f8f`](https://github.com/nodejs/node/commit/e3e0c68f8f)] - **tools**: run test-ubsan on ubuntu-latest (Michaël Zasso) [#52375](https://github.com/nodejs/node/pull/52375)
405
+ * \[[`893b5aac31`](https://github.com/nodejs/node/commit/893b5aac31)] - **tools**: update lint-md-dependencies to rollup\@4.13.2 (Node.js GitHub Bot) [#52286](https://github.com/nodejs/node/pull/52286)
406
+ * \[[`049cca419e`](https://github.com/nodejs/node/commit/049cca419e)] - _**Revert**_ "**tools**: run `build-windows` workflow only on source changes" (Michaël Zasso) [#52320](https://github.com/nodejs/node/pull/52320)
407
+ * \[[`b3dfc62cee`](https://github.com/nodejs/node/commit/b3dfc62cee)] - **tools**: use Python 3.12 in GitHub Actions workflows (Michaël Zasso) [#52301](https://github.com/nodejs/node/pull/52301)
408
+ * \[[`c7238d0c04`](https://github.com/nodejs/node/commit/c7238d0c04)] - **tools**: allow local updates for llhttp (Paolo Insogna) [#52085](https://github.com/nodejs/node/pull/52085)
409
+ * \[[`c39f15cafd`](https://github.com/nodejs/node/commit/c39f15cafd)] - **tools**: install npm PowerShell scripts on Windows (Luke Karrys) [#52009](https://github.com/nodejs/node/pull/52009)
410
+ * \[[`b36fea064a`](https://github.com/nodejs/node/commit/b36fea064a)] - **tools**: update lint-md-dependencies to rollup\@4.13.0 (Node.js GitHub Bot) [#52122](https://github.com/nodejs/node/pull/52122)
411
+ * \[[`a5204eb915`](https://github.com/nodejs/node/commit/a5204eb915)] - **tools**: fix error reported by coverity in js2c.cc (Michael Dawson) [#52142](https://github.com/nodejs/node/pull/52142)
412
+ * \[[`cef4b7ef3d`](https://github.com/nodejs/node/commit/cef4b7ef3d)] - **tools**: sync ubsan workflow with asan (Michaël Zasso) [#52152](https://github.com/nodejs/node/pull/52152)
413
+ * \[[`d406976bbe`](https://github.com/nodejs/node/commit/d406976bbe)] - **tools**: update github\_reporter to 1.7.0 (Node.js GitHub Bot) [#52121](https://github.com/nodejs/node/pull/52121)
414
+ * \[[`fb100a2ac8`](https://github.com/nodejs/node/commit/fb100a2ac8)] - **tools**: remove gyp-next .github folder (Marco Ippolito) [#52064](https://github.com/nodejs/node/pull/52064)
415
+ * \[[`5f1e7a0de2`](https://github.com/nodejs/node/commit/5f1e7a0de2)] - **tools**: update gyp-next to 0.16.2 (Node.js GitHub Bot) [#52062](https://github.com/nodejs/node/pull/52062)
416
+ * \[[`1f1253446b`](https://github.com/nodejs/node/commit/1f1253446b)] - **tools**: install manpage to share/man for FreeBSD (Po-Chuan Hsieh) [#51791](https://github.com/nodejs/node/pull/51791)
417
+ * \[[`4b8b92fccc`](https://github.com/nodejs/node/commit/4b8b92fccc)] - **tools**: automate gyp-next update (Marco Ippolito) [#52014](https://github.com/nodejs/node/pull/52014)
418
+ * \[[`1ec9e58692`](https://github.com/nodejs/node/commit/1ec9e58692)] - **typings**: fix invalid JSDoc declarations (Yagiz Nizipli) [#52659](https://github.com/nodejs/node/pull/52659)
419
+ * \[[`2d6b19970b`](https://github.com/nodejs/node/commit/2d6b19970b)] - **(SEMVER-MINOR)** **util**: support array of formats in util.styleText (Marco Ippolito) [#52040](https://github.com/nodejs/node/pull/52040)
420
+ * \[[`d30cccdf8c`](https://github.com/nodejs/node/commit/d30cccdf8c)] - **(SEMVER-MINOR)** **v8**: implement v8.queryObjects() for memory leak regression testing (Joyee Cheung) [#51927](https://github.com/nodejs/node/pull/51927)
421
+ * \[[`7f3b7fdeff`](https://github.com/nodejs/node/commit/7f3b7fdeff)] - **watch**: fix some node argument not passed to watched process (Raz Luvaton) [#52358](https://github.com/nodejs/node/pull/52358)
422
+ * \[[`8ba6f9bc9a`](https://github.com/nodejs/node/commit/8ba6f9bc9a)] - **watch**: use internal addAbortListener (Chemi Atlow) [#52081](https://github.com/nodejs/node/pull/52081)
423
+ * \[[`5a922232da`](https://github.com/nodejs/node/commit/5a922232da)] - **watch**: mark as stable (Moshe Atlow) [#52074](https://github.com/nodejs/node/pull/52074)
424
+ * \[[`508e968a5f`](https://github.com/nodejs/node/commit/508e968a5f)] - **watch**: batch file restarts (Moshe Atlow) [#51992](https://github.com/nodejs/node/pull/51992)
425
+
426
+ <a id="20.12.2"></a>
427
+
428
+ ## 2024-04-10, Version 20.12.2 'Iron' (LTS), @RafaelGSS
429
+
430
+ This is a security release.
431
+
432
+ ### Notable Changes
433
+
434
+ * CVE-2024-27980 - Command injection via args parameter of `child_process.spawn` without shell option enabled on Windows
435
+
436
+ ### Commits
437
+
438
+ * \[[`69ffc6d50d`](https://github.com/nodejs/node/commit/69ffc6d50d)] - **src**: disallow direct .bat and .cmd file spawning (Ben Noordhuis) [nodejs-private/node-private#563](https://github.com/nodejs-private/node-private/pull/563)
439
+
59
440
  <a id="20.12.1"></a>
60
441
 
61
442
  ## 2024-04-03, Version 20.12.1 'Iron' (LTS), @RafaelGSS
package/LICENSE CHANGED
@@ -136,7 +136,7 @@ The externally maintained libraries used by Node.js are:
136
136
 
137
137
  COPYRIGHT AND PERMISSION NOTICE
138
138
 
139
- Copyright © 2016-2023 Unicode, Inc.
139
+ Copyright © 2016-2024 Unicode, Inc.
140
140
 
141
141
  NOTICE TO USER: Carefully read the following legal agreement. BY
142
142
  DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
@@ -172,6 +172,8 @@ The externally maintained libraries used by Node.js are:
172
172
  dealings in these Data Files or Software without prior written
173
173
  authorization of the copyright holder.
174
174
 
175
+ SPDX-License-Identifier: Unicode-3.0
176
+
175
177
  ----------------------------------------------------------------------
176
178
 
177
179
  Third-Party Software Licenses
package/README.md CHANGED
@@ -195,7 +195,7 @@ For information about the governance of the Node.js project, see
195
195
  * [ronag](https://github.com/ronag) -
196
196
  **Robert Nagy** <<ronagy@icloud.com>>
197
197
  * [ruyadorno](https://github.com/ruyadorno) -
198
- **Ruy Adorno** <<ruyadorno@google.com>> (he/him)
198
+ **Ruy Adorno** <<ruy@vlt.sh>> (he/him)
199
199
  * [ShogunPanda](https://github.com/ShogunPanda) -
200
200
  **Paolo Insogna** <<paolo@cowtech.it>> (he/him)
201
201
  * [targos](https://github.com/targos) -
@@ -209,28 +209,14 @@ For information about the governance of the Node.js project, see
209
209
  **Beth Griggs** <<bethanyngriggs@gmail.com>> (she/her)
210
210
  * [bnoordhuis](https://github.com/bnoordhuis) -
211
211
  **Ben Noordhuis** <<info@bnoordhuis.nl>>
212
- * [ChALkeR](https://github.com/ChALkeR) -
213
- **Сковорода Никита Андреевич** <<chalkerx@gmail.com>> (he/him)
214
212
  * [cjihrig](https://github.com/cjihrig) -
215
213
  **Colin Ihrig** <<cjihrig@gmail.com>> (he/him)
216
214
  * [codebytere](https://github.com/codebytere) -
217
215
  **Shelley Vohr** <<shelley.vohr@gmail.com>> (she/her)
218
- * [danbev](https://github.com/danbev) -
219
- **Daniel Bevenius** <<daniel.bevenius@gmail.com>> (he/him)
220
216
  * [danielleadams](https://github.com/danielleadams) -
221
217
  **Danielle Adams** <<adamzdanielle@gmail.com>> (she/her)
222
- * [fhinkel](https://github.com/fhinkel) -
223
- **Franziska Hinkelmann** <<franziska.hinkelmann@gmail.com>> (she/her)
224
- * [gabrielschulhof](https://github.com/gabrielschulhof) -
225
- **Gabriel Schulhof** <<gabrielschulhof@gmail.com>>
226
- * [mscdex](https://github.com/mscdex) -
227
- **Brian White** <<mscdex@mscdex.net>>
228
218
  * [MylesBorins](https://github.com/MylesBorins) -
229
219
  **Myles Borins** <<myles.borins@gmail.com>> (he/him)
230
- * [rvagg](https://github.com/rvagg) -
231
- **Rod Vagg** <<r@va.gg>>
232
- * [TimothyGu](https://github.com/TimothyGu) -
233
- **Tiancheng "Timothy" Gu** <<timothygu99@gmail.com>> (he/him)
234
220
  * [Trott](https://github.com/Trott) -
235
221
  **Rich Trott** <<rtrott@gmail.com>> (he/him)
236
222
 
@@ -242,12 +228,20 @@ For information about the governance of the Node.js project, see
242
228
 
243
229
  * [addaleax](https://github.com/addaleax) -
244
230
  **Anna Henningsen** <<anna@addaleax.net>> (she/her)
231
+ * [ChALkeR](https://github.com/ChALkeR) -
232
+ **Сковорода Никита Андреевич** <<chalkerx@gmail.com>> (he/him)
245
233
  * [chrisdickinson](https://github.com/chrisdickinson) -
246
234
  **Chris Dickinson** <<christopher.s.dickinson@gmail.com>>
235
+ * [danbev](https://github.com/danbev) -
236
+ **Daniel Bevenius** <<daniel.bevenius@gmail.com>> (he/him)
247
237
  * [evanlucas](https://github.com/evanlucas) -
248
238
  **Evan Lucas** <<evanlucas@me.com>> (he/him)
239
+ * [fhinkel](https://github.com/fhinkel) -
240
+ **Franziska Hinkelmann** <<franziska.hinkelmann@gmail.com>> (she/her)
249
241
  * [Fishrock123](https://github.com/Fishrock123) -
250
242
  **Jeremiah Senkpiel** <<fishrock123@rocketmail.com>> (he/they)
243
+ * [gabrielschulhof](https://github.com/gabrielschulhof) -
244
+ **Gabriel Schulhof** <<gabrielschulhof@gmail.com>>
251
245
  * [gibfahn](https://github.com/gibfahn) -
252
246
  **Gibson Fahnestock** <<gibfahn@gmail.com>> (he/him)
253
247
  * [indutny](https://github.com/indutny) -
@@ -258,6 +252,8 @@ For information about the governance of the Node.js project, see
258
252
  **Josh Gavant** <<josh.gavant@outlook.com>>
259
253
  * [mmarchini](https://github.com/mmarchini) -
260
254
  **Mary Marchini** <<oss@mmarchini.me>> (she/her)
255
+ * [mscdex](https://github.com/mscdex) -
256
+ **Brian White** <<mscdex@mscdex.net>>
261
257
  * [nebrius](https://github.com/nebrius) -
262
258
  **Bryan Hughes** <<bryan@nebri.us>>
263
259
  * [ofrobots](https://github.com/ofrobots) -
@@ -268,12 +264,16 @@ For information about the governance of the Node.js project, see
268
264
  **Bert Belder** <<bertbelder@gmail.com>>
269
265
  * [RaisinTen](https://github.com/RaisinTen) -
270
266
  **Darshan Sen** <<raisinten@gmail.com>> (he/him)
267
+ * [rvagg](https://github.com/rvagg) -
268
+ **Rod Vagg** <<r@va.gg>>
271
269
  * [sam-github](https://github.com/sam-github) -
272
270
  **Sam Roberts** <<vieuxtech@gmail.com>>
273
271
  * [shigeki](https://github.com/shigeki) -
274
272
  **Shigeki Ohtsu** <<ohtsu@ohtsu.org>> (he/him)
275
273
  * [thefourtheye](https://github.com/thefourtheye) -
276
274
  **Sakthipriyan Vairamani** <<thechargingvolcano@gmail.com>> (he/him)
275
+ * [TimothyGu](https://github.com/TimothyGu) -
276
+ **Tiancheng "Timothy" Gu** <<timothygu99@gmail.com>> (he/him)
277
277
  * [trevnorris](https://github.com/trevnorris) -
278
278
  **Trevor Norris** <<trev.norris@gmail.com>>
279
279
 
@@ -291,12 +291,8 @@ For information about the governance of the Node.js project, see
291
291
  **Antoine du Hamel** <<duhamelantoine1995@gmail.com>> (he/him)
292
292
  * [anonrig](https://github.com/anonrig) -
293
293
  **Yagiz Nizipli** <<yagiz.nizipli@sentry.io>> (he/him)
294
- * [antsmartian](https://github.com/antsmartian) -
295
- **Anto Aravinth** <<anto.aravinth.cse@gmail.com>> (he/him)
296
294
  * [apapirovski](https://github.com/apapirovski) -
297
295
  **Anatoli Papirovski** <<apapirovski@mac.com>> (he/him)
298
- * [AshCripps](https://github.com/AshCripps) -
299
- **Ash Cripps** <<email@ashleycripps.co.uk>>
300
296
  * [atlowChemi](https://github.com/atlowChemi) -
301
297
  **Chemi Atlow** <<chemi@atlow.co.il>> (he/him)
302
298
  * [Ayase-252](https://github.com/Ayase-252) -
@@ -307,8 +303,6 @@ For information about the governance of the Node.js project, see
307
303
  **Benjamin Gruenbaum** <<benjamingr@gmail.com>>
308
304
  * [BethGriggs](https://github.com/BethGriggs) -
309
305
  **Beth Griggs** <<bethanyngriggs@gmail.com>> (she/her)
310
- * [bmeck](https://github.com/bmeck) -
311
- **Bradley Farias** <<bradley.meck@gmail.com>>
312
306
  * [bnb](https://github.com/bnb) -
313
307
  **Tierney Cyren** <<hello@bnb.im>> (they/them)
314
308
  * [bnoordhuis](https://github.com/bnoordhuis) -
@@ -317,8 +311,6 @@ For information about the governance of the Node.js project, see
317
311
  **Ruben Bridgewater** <<ruben@bridgewater.de>> (he/him)
318
312
  * [cclauss](https://github.com/cclauss) -
319
313
  **Christian Clauss** <<cclauss@me.com>> (he/him)
320
- * [ChALkeR](https://github.com/ChALkeR) -
321
- **Сковорода Никита Андреевич** <<chalkerx@gmail.com>> (he/him)
322
314
  * [cjihrig](https://github.com/cjihrig) -
323
315
  **Colin Ihrig** <<cjihrig@gmail.com>> (he/him)
324
316
  * [codebytere](https://github.com/codebytere) -
@@ -327,26 +319,22 @@ For information about the governance of the Node.js project, see
327
319
  **Kohei Ueno** <<kohei.ueno119@gmail.com>> (he/him)
328
320
  * [daeyeon](https://github.com/daeyeon) -
329
321
  **Daeyeon Jeong** <<daeyeon.dev@gmail.com>> (he/him)
330
- * [danbev](https://github.com/danbev) -
331
- **Daniel Bevenius** <<daniel.bevenius@gmail.com>> (he/him)
332
322
  * [danielleadams](https://github.com/danielleadams) -
333
323
  **Danielle Adams** <<adamzdanielle@gmail.com>> (she/her)
334
324
  * [debadree25](https://github.com/debadree25) -
335
325
  **Debadree Chatterjee** <<debadree333@gmail.com>> (he/him)
336
326
  * [deokjinkim](https://github.com/deokjinkim) -
337
327
  **Deokjin Kim** <<deokjin81.kim@gmail.com>> (he/him)
338
- * [devsnek](https://github.com/devsnek) -
339
- **Gus Caplan** <<me@gus.host>> (they/them)
340
328
  * [edsadr](https://github.com/edsadr) -
341
329
  **Adrian Estrada** <<edsadr@gmail.com>> (he/him)
342
330
  * [erickwendel](https://github.com/erickwendel) -
343
331
  **Erick Wendel** <<erick.workspace@gmail.com>> (he/him)
344
332
  * [Ethan-Arrowood](https://github.com/Ethan-Arrowood) -
345
333
  **Ethan Arrowood** <<ethan@arrowood.dev>> (he/him)
346
- * [fhinkel](https://github.com/fhinkel) -
347
- **Franziska Hinkelmann** <<franziska.hinkelmann@gmail.com>> (she/her)
348
334
  * [F3n67u](https://github.com/F3n67u) -
349
335
  **Feng Yu** <<F3n67u@outlook.com>> (he/him)
336
+ * [fhinkel](https://github.com/fhinkel) -
337
+ **Franziska Hinkelmann** <<franziska.hinkelmann@gmail.com>> (she/her)
350
338
  * [Flarna](https://github.com/Flarna) -
351
339
  **Gerhard Stöbich** <<deb2001-github@yahoo.de>> (he/they)
352
340
  * [gabrielschulhof](https://github.com/gabrielschulhof) -
@@ -365,8 +353,6 @@ For information about the governance of the Node.js project, see
365
353
  **Harshitha K P** <<harshitha014@gmail.com>> (she/her)
366
354
  * [himself65](https://github.com/himself65) -
367
355
  **Zeyu "Alex" Yang** <<himself65@outlook.com>> (he/him)
368
- * [iansu](https://github.com/iansu) -
369
- **Ian Sutherland** <<ian@iansutherland.ca>>
370
356
  * [JakobJingleheimer](https://github.com/JakobJingleheimer) -
371
357
  **Jacob Smith** <<jacob@frende.me>> (he/him)
372
358
  * [jasnell](https://github.com/jasnell) -
@@ -419,8 +405,6 @@ For information about the governance of the Node.js project, see
419
405
  **Moshe Atlow** <<moshe@atlow.co.il>> (he/him)
420
406
  * [MrJithil](https://github.com/MrJithil) -
421
407
  **Jithil P Ponnan** <<jithil@outlook.com>> (he/him)
422
- * [mscdex](https://github.com/mscdex) -
423
- **Brian White** <<mscdex@mscdex.net>>
424
408
  * [MylesBorins](https://github.com/MylesBorins) -
425
409
  **Myles Borins** <<myles.borins@gmail.com>> (he/him)
426
410
  * [ovflowd](https://github.com/ovflowd) -
@@ -431,22 +415,16 @@ For information about the governance of the Node.js project, see
431
415
  **Stephen Belanger** <<admin@stephenbelanger.com>> (he/him)
432
416
  * [RafaelGSS](https://github.com/RafaelGSS) -
433
417
  **Rafael Gonzaga** <<rafael.nunu@hotmail.com>> (he/him)
434
- * [rluvaton](https://github.com/rluvaton) -
435
- **Raz Luvaton** <<rluvaton@gmail.com>> (he/him)
436
418
  * [richardlau](https://github.com/richardlau) -
437
419
  **Richard Lau** <<rlau@redhat.com>>
438
- * [rickyes](https://github.com/rickyes) -
439
- **Ricky Zhou** <<0x19951125@gmail.com>> (he/him)
420
+ * [rluvaton](https://github.com/rluvaton) -
421
+ **Raz Luvaton** <<rluvaton@gmail.com>> (he/him)
440
422
  * [ronag](https://github.com/ronag) -
441
423
  **Robert Nagy** <<ronagy@icloud.com>>
442
424
  * [ruyadorno](https://github.com/ruyadorno) -
443
- **Ruy Adorno** <<ruyadorno@google.com>> (he/him)
444
- * [ryzokuken](https://github.com/ryzokuken) -
445
- **Ujjwal Sharma** <<ryzokuken@disroot.org>> (he/him)
425
+ **Ruy Adorno** <<ruy@vlt.sh>> (he/him)
446
426
  * [santigimeno](https://github.com/santigimeno) -
447
427
  **Santiago Gimeno** <<santiago.gimeno@gmail.com>>
448
- * [shisama](https://github.com/shisama) -
449
- **Masashi Hirano** <<shisama07@gmail.com>> (he/him)
450
428
  * [ShogunPanda](https://github.com/ShogunPanda) -
451
429
  **Paolo Insogna** <<paolo@cowtech.it>> (he/him)
452
430
  * [srl295](https://github.com/srl295) -
@@ -457,16 +435,14 @@ For information about the governance of the Node.js project, see
457
435
  **Michaël Zasso** <<targos@protonmail.com>> (he/him)
458
436
  * [theanarkh](https://github.com/theanarkh) -
459
437
  **theanarkh** <<theratliter@gmail.com>> (he/him)
460
- * [TimothyGu](https://github.com/TimothyGu) -
461
- **Tiancheng "Timothy" Gu** <<timothygu99@gmail.com>> (he/him)
462
438
  * [tniessen](https://github.com/tniessen) -
463
439
  **Tobias Nießen** <<tniessen@tnie.de>> (he/him)
464
440
  * [trivikr](https://github.com/trivikr) -
465
441
  **Trivikram Kamat** <<trivikr.dev@gmail.com>>
466
442
  * [Trott](https://github.com/Trott) -
467
443
  **Rich Trott** <<rtrott@gmail.com>> (he/him)
468
- * [vdeturckheim](https://github.com/vdeturckheim) -
469
- **Vladimir de Turckheim** <<vlad2t@hotmail.com>> (he/him)
444
+ * [UlisesGascon](https://github.com/ulisesgascon) -
445
+ **Ulises Gascón** <<ulisesgascongonzalez@gmail.com>> (he/him)
470
446
  * [vmoroz](https://github.com/vmoroz) -
471
447
  **Vladimir Morozov** <<vmorozov@microsoft.com>> (he/him)
472
448
  * [VoltrexKeyva](https://github.com/VoltrexKeyva) -
@@ -477,10 +453,10 @@ For information about the governance of the Node.js project, see
477
453
  **Khaidi Chu** <<i@2333.moe>> (he/him)
478
454
  * [yashLadha](https://github.com/yashLadha) -
479
455
  **Yash Ladha** <<yash@yashladha.in>> (he/him)
456
+ * [zcbenz](https://github.com/zcbenz) -
457
+ **Cheng Zhao** <<zcbenz@gmail.com>> (he/him)
480
458
  * [ZYSzys](https://github.com/ZYSzys) -
481
459
  **Yongsheng Zhang** <<zyszys98@gmail.com>> (he/him)
482
- * [zcbenz](https://github.com/zcbenz) -
483
- **Cheng Zhao** <zcbenz@gmail.com> (he/him)
484
460
 
485
461
  <details>
486
462
 
@@ -495,14 +471,20 @@ For information about the governance of the Node.js project, see
495
471
  **Aleksei Koziatinskii** <<ak239spb@gmail.com>>
496
472
  * [andrasq](https://github.com/andrasq) -
497
473
  **Andras** <<andras@kinvey.com>>
498
- * [AnnaMag](https://github.com/AnnaMag) -
499
- **Anna M. Kedzierska** <<anna.m.kedzierska@gmail.com>>
500
474
  * [AndreasMadsen](https://github.com/AndreasMadsen) -
501
475
  **Andreas Madsen** <<amwebdk@gmail.com>> (he/him)
476
+ * [AnnaMag](https://github.com/AnnaMag) -
477
+ **Anna M. Kedzierska** <<anna.m.kedzierska@gmail.com>>
478
+ * [antsmartian](https://github.com/antsmartian) -
479
+ **Anto Aravinth** <<anto.aravinth.cse@gmail.com>> (he/him)
502
480
  * [aqrln](https://github.com/aqrln) -
503
481
  **Alexey Orlenko** <<eaglexrlnk@gmail.com>> (he/him)
482
+ * [AshCripps](https://github.com/AshCripps) -
483
+ **Ash Cripps** <<email@ashleycripps.co.uk>>
504
484
  * [bcoe](https://github.com/bcoe) -
505
485
  **Ben Coe** <<bencoe@gmail.com>> (he/him)
486
+ * [bmeck](https://github.com/bmeck) -
487
+ **Bradley Farias** <<bradley.meck@gmail.com>>
506
488
  * [bmeurer](https://github.com/bmeurer) -
507
489
  **Benedikt Meurer** <<benedikt.meurer@gmail.com>>
508
490
  * [boneskull](https://github.com/boneskull) -
@@ -513,16 +495,22 @@ For information about the governance of the Node.js project, see
513
495
  **Bartosz Sosnowski** <<bartosz@janeasystems.com>>
514
496
  * [calvinmetcalf](https://github.com/calvinmetcalf) -
515
497
  **Calvin Metcalf** <<calvin.metcalf@gmail.com>>
498
+ * [ChALkeR](https://github.com/ChALkeR) -
499
+ **Сковорода Никита Андреевич** <<chalkerx@gmail.com>> (he/him)
516
500
  * [chrisdickinson](https://github.com/chrisdickinson) -
517
501
  **Chris Dickinson** <<christopher.s.dickinson@gmail.com>>
518
502
  * [claudiorodriguez](https://github.com/claudiorodriguez) -
519
503
  **Claudio Rodriguez** <<cjrodr@yahoo.com>>
504
+ * [danbev](https://github.com/danbev) -
505
+ **Daniel Bevenius** <<daniel.bevenius@gmail.com>> (he/him)
520
506
  * [DavidCai1993](https://github.com/DavidCai1993) -
521
507
  **David Cai** <<davidcai1993@yahoo.com>> (he/him)
522
508
  * [davisjam](https://github.com/davisjam) -
523
509
  **Jamie Davis** <<davisjam@vt.edu>> (he/him)
524
510
  * [devnexen](https://github.com/devnexen) -
525
511
  **David Carlier** <<devnexen@gmail.com>>
512
+ * [devsnek](https://github.com/devsnek) -
513
+ **Gus Caplan** <<me@gus.host>> (they/them)
526
514
  * [digitalinfinity](https://github.com/digitalinfinity) -
527
515
  **Hitesh Kanwathirtha** <<digitalinfinity@gmail.com>> (he/him)
528
516
  * [dmabupt](https://github.com/dmabupt) -
@@ -553,6 +541,8 @@ For information about the governance of the Node.js project, see
553
541
  **Yang Guo** <<yangguo@chromium.org>> (he/him)
554
542
  * [hiroppy](https://github.com/hiroppy) -
555
543
  **Yuta Hiroto** <<hello@hiroppy.me>> (he/him)
544
+ * [iansu](https://github.com/iansu) -
545
+ **Ian Sutherland** <<ian@iansutherland.ca>>
556
546
  * [iarna](https://github.com/iarna) -
557
547
  **Rebecca Turner** <<me@re-becca.org>>
558
548
  * [imran-iq](https://github.com/imran-iq) -
@@ -615,6 +605,8 @@ For information about the governance of the Node.js project, see
615
605
  **Christopher Monsanto** <<chris@monsan.to>>
616
606
  * [MoonBall](https://github.com/MoonBall) -
617
607
  **Chen Gang** <<gangc.cxy@foxmail.com>>
608
+ * [mscdex](https://github.com/mscdex) -
609
+ **Brian White** <<mscdex@mscdex.net>>
618
610
  * [not-an-aardvark](https://github.com/not-an-aardvark) -
619
611
  **Teddy Katz** <<teddy.katz@gmail.com>> (he/him)
620
612
  * [ofrobots](https://github.com/ofrobots) -
@@ -649,6 +641,8 @@ For information about the governance of the Node.js project, see
649
641
  **Refael Ackermann (רפאל פלחי)** <<refack@gmail.com>> (he/him/הוא/אתה)
650
642
  * [rexagod](https://github.com/rexagod) -
651
643
  **Pranshu Srivastava** <<rexagod@gmail.com>> (he/him)
644
+ * [rickyes](https://github.com/rickyes) -
645
+ **Ricky Zhou** <<0x19951125@gmail.com>> (he/him)
652
646
  * [rlidwka](https://github.com/rlidwka) -
653
647
  **Alex Kocharin** <<alex@kocharin.ru>>
654
648
  * [rmg](https://github.com/rmg) -
@@ -665,6 +659,8 @@ For information about the governance of the Node.js project, see
665
659
  **Sam Ruby** <<rubys@intertwingly.net>>
666
660
  * [rvagg](https://github.com/rvagg) -
667
661
  **Rod Vagg** <<rod@vagg.org>>
662
+ * [ryzokuken](https://github.com/ryzokuken) -
663
+ **Ujjwal Sharma** <<ryzokuken@disroot.org>> (he/him)
668
664
  * [saghul](https://github.com/saghul) -
669
665
  **Saúl Ibarra Corretgé** <<s@saghul.net>>
670
666
  * [sam-github](https://github.com/sam-github) -
@@ -675,6 +671,8 @@ For information about the governance of the Node.js project, see
675
671
  **Nikolai Vavilov** <<vvnicholas@gmail.com>>
676
672
  * [shigeki](https://github.com/shigeki) -
677
673
  **Shigeki Ohtsu** <<ohtsu@ohtsu.org>> (he/him)
674
+ * [shisama](https://github.com/shisama) -
675
+ **Masashi Hirano** <<shisama07@gmail.com>> (he/him)
678
676
  * [silverwind](https://github.com/silverwind) -
679
677
  **Roman Reiss** <<me@silverwind.io>>
680
678
  * [starkwang](https://github.com/starkwang) -
@@ -687,10 +685,14 @@ For information about the governance of the Node.js project, see
687
685
  **Sakthipriyan Vairamani** <<thechargingvolcano@gmail.com>> (he/him)
688
686
  * [thlorenz](https://github.com/thlorenz) -
689
687
  **Thorsten Lorenz** <<thlorenz@gmx.de>>
688
+ * [TimothyGu](https://github.com/TimothyGu) -
689
+ **Tiancheng "Timothy" Gu** <<timothygu99@gmail.com>> (he/him)
690
690
  * [trevnorris](https://github.com/trevnorris) -
691
691
  **Trevor Norris** <<trev.norris@gmail.com>>
692
692
  * [tunniclm](https://github.com/tunniclm) -
693
693
  **Mike Tunnicliffe** <<m.j.tunnicliffe@gmail.com>>
694
+ * [vdeturckheim](https://github.com/vdeturckheim) -
695
+ **Vladimir de Turckheim** <<vlad2t@hotmail.com>> (he/him)
694
696
  * [vkurchatkin](https://github.com/vkurchatkin) -
695
697
  **Vladimir Kurchatkin** <<vladimir.kurchatkin@gmail.com>>
696
698
  * [vsemozhetbyt](https://github.com/vsemozhetbyt) -
@@ -739,10 +741,12 @@ maintaining the Node.js project.
739
741
  **Mert Can Altin** <<mertgold60@gmail.com>>
740
742
  * [Mesteery](https://github.com/Mesteery) -
741
743
  **Mestery** <<mestery@protonmail.com>> (he/him)
742
- * [preveen-stack](https://github.com/preveen-stack) -
743
- **Preveen Padmanabhan** <<wide4head@gmail.com>> (he/him)
744
744
  * [PoojaDurgad](https://github.com/PoojaDurgad) -
745
745
  **Pooja Durgad** <<Pooja.D.P@ibm.com>>
746
+ * [preveen-stack](https://github.com/preveen-stack) -
747
+ **Preveen Padmanabhan** <<wide4head@gmail.com>> (he/him)
748
+ * [RedYetiDev](https://github.com/redyetidev) -
749
+ **Aviv Keller** <<redyetidev@gmail.com>> (they/them)
746
750
  * [VoltrexKeyva](https://github.com/VoltrexKeyva) -
747
751
  **Mohammed Keyvanzadeh** <<mohammadkeyvanzade94@gmail.com>> (he/him)
748
752
 
@@ -761,6 +765,8 @@ Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys):
761
765
  `74F12602B6F1C4E913FAA37AD3A89613643B6201`
762
766
  * **Juan José Arboleda** <<soyjuanarbol@gmail.com>>
763
767
  `DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7`
768
+ * **Marco Ippolito** <<marcoippolito54@gmail.com>>
769
+ `CC68F5A3106FF448322E48ED27F5E38D5B0A215F`
764
770
  * **Michaël Zasso** <<targos@protonmail.com>>
765
771
  `8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600`
766
772
  * **Myles Borins** <<myles.borins@gmail.com>>
@@ -782,6 +788,7 @@ gpg --keyserver hkps://keys.openpgp.org --recv-keys 4ED778F539E3634C779C87C6D706
782
788
  gpg --keyserver hkps://keys.openpgp.org --recv-keys 141F07595B7B3FFE74309A937405533BE57C7D57
783
789
  gpg --keyserver hkps://keys.openpgp.org --recv-keys 74F12602B6F1C4E913FAA37AD3A89613643B6201
784
790
  gpg --keyserver hkps://keys.openpgp.org --recv-keys DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7
791
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys CC68F5A3106FF448322E48ED27F5E38D5B0A215F
785
792
  gpg --keyserver hkps://keys.openpgp.org --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600
786
793
  gpg --keyserver hkps://keys.openpgp.org --recv-keys C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8
787
794
  gpg --keyserver hkps://keys.openpgp.org --recv-keys 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4
@@ -843,12 +850,11 @@ releases on a rotation basis as outlined in the
843
850
  * Datadog
844
851
  * [bengl](https://github.com/bengl) -
845
852
  **Bryan English** <<bryan@bryanenglish.com>> (he/him)
846
- * NearForm
847
- * [RafaelGSS](https://github.com/RafaelGSS) -
848
- **Rafael Gonzaga** <<rafael.nunu@hotmail.com>> (he/him)
849
853
  * NodeSource
850
854
  * [juanarbol](https://github.com/juanarbol) -
851
855
  **Juan José Arboleda** <<soyjuanarbol@gmail.com>> (he/him)
856
+ * [RafaelGSS](https://github.com/RafaelGSS) -
857
+ **Rafael Gonzaga** <<rafael.nunu@hotmail.com>> (he/him)
852
858
  * Platformatic
853
859
  * [mcollina](https://github.com/mcollina) -
854
860
  **Matteo Collina** <<matteo.collina@gmail.com>> (he/him)
package/bin/node CHANGED
Binary file
@@ -2,6 +2,7 @@
2
2
  'variables': {
3
3
  'configuring_node%': 0,
4
4
  'asan%': 0,
5
+ 'ubsan%': 0,
5
6
  'werror': '', # Turn off -Werror in V8 build.
6
7
  'visibility%': 'hidden', # V8's visibility setting
7
8
  'target_arch%': 'ia32', # set v8's target architecture
@@ -36,7 +37,7 @@
36
37
 
37
38
  # Reset this number to 0 on major V8 upgrades.
38
39
  # Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string': '-node.19',
40
+ 'v8_embedder_string': '-node.20',
40
41
 
41
42
  ##### V8 defaults for Node.js #####
42
43
 
@@ -374,6 +375,29 @@
374
375
  }],
375
376
  ],
376
377
  }],
378
+ ['ubsan == 1 and OS != "mac" and OS != "zos"', {
379
+ 'cflags+': [
380
+ '-fno-omit-frame-pointer',
381
+ '-fsanitize=undefined',
382
+ ],
383
+ 'defines': [ 'UNDEFINED_SANITIZER'],
384
+ 'cflags!': [ '-fno-omit-frame-pointer' ],
385
+ 'ldflags': [ '-fsanitize=undefined' ],
386
+ }],
387
+ ['ubsan == 1 and OS == "mac"', {
388
+ 'xcode_settings': {
389
+ 'OTHER_CFLAGS+': [
390
+ '-fno-omit-frame-pointer',
391
+ '-fsanitize=undefined',
392
+ '-DUNDEFINED_SANITIZER'
393
+ ],
394
+ },
395
+ 'target_conditions': [
396
+ ['_type!="static_library"', {
397
+ 'xcode_settings': {'OTHER_LDFLAGS': ['-fsanitize=undefined']},
398
+ }],
399
+ ],
400
+ }],
377
401
  # The defines bellow must include all things from the external_v8_defines
378
402
  # list in v8/BUILD.gn.
379
403
  ['v8_enable_v8_checks == 1', {
@@ -1,5 +1,5 @@
1
1
  # Do not edit. Generated by the configure script.
2
- { 'target_defaults': {'cflags': ['-msign-return-address=all'], 'default_configuration': 'Release', 'defines': ['NODE_OPENSSL_CONF_NAME=nodejs_conf', 'NODE_OPENSSL_HAS_QUIC', 'ICU_NO_USER_DATA_OVERRIDE'], 'include_dirs': [], 'libraries': []},
2
+ { 'target_defaults': {'cflags': [], 'default_configuration': 'Release', 'defines': ['NODE_OPENSSL_CONF_NAME=nodejs_conf', 'NODE_OPENSSL_HAS_QUIC', 'ICU_NO_USER_DATA_OVERRIDE'], 'include_dirs': [], 'libraries': []},
3
3
  'variables': { 'arm_fpu': 'neon',
4
4
  'asan': 0,
5
5
  'coverage': 'false',
@@ -13,12 +13,12 @@
13
13
  'force_dynamic_crt': 0,
14
14
  'gas_version': '2.35',
15
15
  'host_arch': 'arm64',
16
- 'icu_data_in': '../../deps/icu-tmp/icudt74l.dat',
16
+ 'icu_data_in': '../../deps/icu-tmp/icudt75l.dat',
17
17
  'icu_endianness': 'l',
18
18
  'icu_gyp_path': 'tools/icu/icu-generic.gyp',
19
19
  'icu_path': 'deps/icu-small',
20
20
  'icu_small': 'false',
21
- 'icu_ver_major': '74',
21
+ 'icu_ver_major': '75',
22
22
  'is_debug': 0,
23
23
  'libdir': 'lib',
24
24
  'llvm_version': '0.0',
@@ -128,6 +128,7 @@
128
128
  'lib/internal/error_serdes.js',
129
129
  'lib/internal/errors.js',
130
130
  'lib/internal/event_target.js',
131
+ 'lib/internal/events/abort_listener.js',
131
132
  'lib/internal/events/symbols.js',
132
133
  'lib/internal/file.js',
133
134
  'lib/internal/fixed_queue.js',
@@ -175,7 +176,6 @@
175
176
  'lib/internal/modules/esm/fetch_module.js',
176
177
  'lib/internal/modules/esm/formats.js',
177
178
  'lib/internal/modules/esm/get_format.js',
178
- 'lib/internal/modules/esm/handle_process_exit.js',
179
179
  'lib/internal/modules/esm/hooks.js',
180
180
  'lib/internal/modules/esm/initialize_import_meta.js',
181
181
  'lib/internal/modules/esm/load.js',
@@ -210,7 +210,6 @@
210
210
  'lib/internal/policy/manifest.js',
211
211
  'lib/internal/policy/sri.js',
212
212
  'lib/internal/priority_queue.js',
213
- 'lib/internal/process/esm_loader.js',
214
213
  'lib/internal/process/execution.js',
215
214
  'lib/internal/process/per_thread.js',
216
215
  'lib/internal/process/permission.js',
@@ -377,6 +376,7 @@
377
376
  'shlib_suffix': 'so.115',
378
377
  'single_executable_application': 'true',
379
378
  'target_arch': 'arm64',
379
+ 'ubsan': 0,
380
380
  'use_prefix_to_find_headers': 'false',
381
381
  'v8_enable_31bit_smis_on_64bit_arch': 0,
382
382
  'v8_enable_extensible_ro_snapshot': 0,
@@ -537,6 +537,7 @@ class EmbedderSnapshotData {
537
537
  // If the snapshot is invalid, this returns an empty pointer.
538
538
  static Pointer FromFile(FILE* in);
539
539
  static Pointer FromBlob(const std::vector<char>& in);
540
+ static Pointer FromBlob(std::string_view in);
540
541
 
541
542
  // Write this EmbedderSnapshotData object to an output file.
542
543
  // Calling this method will not close the FILE* handle.
@@ -731,12 +732,33 @@ struct StartExecutionCallbackInfo {
731
732
 
732
733
  using StartExecutionCallback =
733
734
  std::function<v8::MaybeLocal<v8::Value>(const StartExecutionCallbackInfo&)>;
735
+ using EmbedderPreloadCallback =
736
+ std::function<void(Environment* env,
737
+ v8::Local<v8::Value> process,
738
+ v8::Local<v8::Value> require)>;
734
739
 
740
+ // Run initialization for the environment.
741
+ //
742
+ // The |preload| function, usually used by embedders to inject scripts,
743
+ // will be run by Node.js before Node.js executes the entry point.
744
+ // The function is guaranteed to run before the user land module loader running
745
+ // any user code, so it is safe to assume that at this point, no user code has
746
+ // been run yet.
747
+ // The function will be executed with preload(process, require), and the passed
748
+ // require function has access to internal Node.js modules. There is no
749
+ // stability guarantee about the internals exposed to the internal require
750
+ // function. Expect breakages when updating Node.js versions if the embedder
751
+ // imports internal modules with the internal require function.
752
+ // Worker threads created in the environment will also respect The |preload|
753
+ // function, so make sure the function is thread-safe.
735
754
  NODE_EXTERN v8::MaybeLocal<v8::Value> LoadEnvironment(
736
755
  Environment* env,
737
- StartExecutionCallback cb);
756
+ StartExecutionCallback cb,
757
+ EmbedderPreloadCallback preload = nullptr);
738
758
  NODE_EXTERN v8::MaybeLocal<v8::Value> LoadEnvironment(
739
- Environment* env, std::string_view main_script_source_utf8);
759
+ Environment* env,
760
+ std::string_view main_script_source_utf8,
761
+ EmbedderPreloadCallback preload = nullptr);
740
762
  NODE_EXTERN void FreeEnvironment(Environment* env);
741
763
 
742
764
  // Set a callback that is called when process.exit() is called from JS,
@@ -209,7 +209,7 @@ napi_create_threadsafe_function(napi_env env,
209
209
  size_t max_queue_size,
210
210
  size_t initial_thread_count,
211
211
  void* thread_finalize_data,
212
- node_api_nogc_finalize thread_finalize_cb,
212
+ napi_finalize thread_finalize_cb,
213
213
  void* context,
214
214
  napi_threadsafe_function_call_js call_js_cb,
215
215
  napi_threadsafe_function* result);
@@ -23,8 +23,8 @@
23
23
  #define SRC_NODE_VERSION_H_
24
24
 
25
25
  #define NODE_MAJOR_VERSION 20
26
- #define NODE_MINOR_VERSION 12
27
- #define NODE_PATCH_VERSION 1
26
+ #define NODE_MINOR_VERSION 13
27
+ #define NODE_PATCH_VERSION 0
28
28
 
29
29
  #define NODE_VERSION_IS_LTS 1
30
30
  #define NODE_VERSION_LTS_CODENAME "Iron"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-linux-arm64",
3
- "version": "v20.12.1",
3
+ "version": "v20.13.0",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"