node-aix-ppc64 20.13.1 → 20.15.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.15.0">20.15.0</a><br/>
13
+ <a href="#20.14.0">20.14.0</a><br/>
12
14
  <a href="#20.13.1">20.13.1</a><br/>
13
15
  <a href="#20.13.0">20.13.0</a><br/>
14
16
  <a href="#20.12.2">20.12.2</a><br/>
@@ -59,6 +61,250 @@
59
61
  * [io.js](CHANGELOG_IOJS.md)
60
62
  * [Archive](CHANGELOG_ARCHIVE.md)
61
63
 
64
+ <a id="20.15.0"></a>
65
+
66
+ ## 2024-06-20, Version 20.15.0 'Iron' (LTS), @marco-ippolito
67
+
68
+ ### test\_runner: support test plans
69
+
70
+ It is now possible to count the number of assertions and subtests that are expected to run within a test. If the number of assertions and subtests that run does not match the expected count, the test will fail.
71
+
72
+ ```js
73
+ test('top level test', (t) => {
74
+ t.plan(2);
75
+ t.assert.ok('some relevant assertion here');
76
+ t.subtest('subtest', () => {});
77
+ });
78
+ ```
79
+
80
+ Contributed by Colin Ihrig in [#52860](https://github.com/nodejs/node/pull/52860)
81
+
82
+ ### inspector: introduce the `--inspect-wait` flag
83
+
84
+ This release introduces the `--inspect-wait` flag, which allows debugger to wait for attachement. This flag is useful when you want to debug the code from the beginning. Unlike `--inspect-brk`, which breaks on the first line, this flag waits for debugger to be connected and then runs the code as soon as a session is established.
85
+
86
+ Contributed by Kohei Ueno in [#52734](https://github.com/nodejs/node/pull/52734)
87
+
88
+ ### zlib: expose zlib.crc32()
89
+
90
+ This release exposes the crc32() function from zlib to user-land.
91
+
92
+ It computes a 32-bit Cyclic Redundancy Check checksum of data. If
93
+ value is specified, it is used as the starting value of the checksum,
94
+ otherwise, 0 is used as the starting value.
95
+
96
+ The CRC algorithm is designed to compute checksums and to detect error
97
+ in data transmission. It's not suitable for cryptographic authentication.
98
+
99
+ ```js
100
+ const zlib = require('node:zlib');
101
+ const { Buffer } = require('node:buffer');
102
+
103
+ let crc = zlib.crc32('hello'); // 907060870
104
+ crc = zlib.crc32('world', crc); // 4192936109
105
+
106
+ crc = zlib.crc32(Buffer.from('hello', 'utf16le')); // 1427272415
107
+ crc = zlib.crc32(Buffer.from('world', 'utf16le'), crc); // 4150509955
108
+ ```
109
+
110
+ Contributed by Joyee Cheung in [#52692](https://github.com/nodejs/node/pull/52692)
111
+
112
+ ### cli: allow running wasm in limited vmem with --disable-wasm-trap-handler
113
+
114
+ By default, Node.js enables trap-handler-based WebAssembly bound
115
+ checks. As a result, V8 does not need to insert inline bound checks
116
+ int the code compiled from WebAssembly which may speedup WebAssembly
117
+ execution significantly, but this optimization requires allocating
118
+ a big virtual memory cage (currently 10GB). If the Node.js process
119
+ does not have access to a large enough virtual memory address space
120
+ due to system configurations or hardware limitations, users won't
121
+ be able to run any WebAssembly that involves allocation in this
122
+ virtual memory cage and will see an out-of-memory error.
123
+
124
+ ```console
125
+ $ ulimit -v 5000000
126
+ $ node -p "new WebAssembly.Memory({ initial: 10, maximum: 100 });"
127
+ [eval]:1
128
+ new WebAssembly.Memory({ initial: 10, maximum: 100 });
129
+ ^
130
+
131
+ RangeError: WebAssembly.Memory(): could not allocate memory
132
+ at [eval]:1:1
133
+ at runScriptInThisContext (node:internal/vm:209:10)
134
+ at node:internal/process/execution:118:14
135
+ at [eval]-wrapper:6:24
136
+ at runScript (node:internal/process/execution:101:62)
137
+ at evalScript (node:internal/process/execution:136:3)
138
+ at node:internal/main/eval_string:49:3
139
+
140
+ ```
141
+
142
+ `--disable-wasm-trap-handler` disables this optimization so that
143
+ users can at least run WebAssembly (with a less optimial performance)
144
+ when the virtual memory address space available to their Node.js
145
+ process is lower than what the V8 WebAssembly memory cage needs.
146
+
147
+ Contributed by Joyee Cheung in [#52766](https://github.com/nodejs/node/pull/52766)
148
+
149
+ ### Other Notable Changes
150
+
151
+ * \[[`12512c3d0e`](https://github.com/nodejs/node/commit/12512c3d0e)] - **doc**: add pimterry to collaborators (Tim Perry) [#52874](https://github.com/nodejs/node/pull/52874)
152
+ * \[[`9d485b40bb`](https://github.com/nodejs/node/commit/9d485b40bb)] - **(SEMVER-MINOR)** **tools**: fix get\_asan\_state() in tools/test.py (Joyee Cheung) [#52766](https://github.com/nodejs/node/pull/52766)
153
+ * \[[`e98c305f52`](https://github.com/nodejs/node/commit/e98c305f52)] - **(SEMVER-MINOR)** **tools**: support max\_virtual\_memory test configuration (Joyee Cheung) [#52766](https://github.com/nodejs/node/pull/52766)
154
+ * \[[`dce0300896`](https://github.com/nodejs/node/commit/dce0300896)] - **(SEMVER-MINOR)** **tools**: support != in test status files (Joyee Cheung) [#52766](https://github.com/nodejs/node/pull/52766)
155
+
156
+ ### Commits
157
+
158
+ * \[[`227093bfec`](https://github.com/nodejs/node/commit/227093bfec)] - **assert**: add deep equal check for more Error type (Zhenwei Jin) [#51805](https://github.com/nodejs/node/pull/51805)
159
+ * \[[`184cfe5a71`](https://github.com/nodejs/node/commit/184cfe5a71)] - **benchmark**: filter non-present deps from `start-cli-version` (Adam Majer) [#51746](https://github.com/nodejs/node/pull/51746)
160
+ * \[[`8b3e83bb53`](https://github.com/nodejs/node/commit/8b3e83bb53)] - **buffer**: even faster atob (Daniel Lemire) [#52443](https://github.com/nodejs/node/pull/52443)
161
+ * \[[`8d628c3255`](https://github.com/nodejs/node/commit/8d628c3255)] - **buffer**: use size\_t instead of uint32\_t to avoid segmentation fault (Xavier Stouder) [#48033](https://github.com/nodejs/node/pull/48033)
162
+ * \[[`16ae2b2933`](https://github.com/nodejs/node/commit/16ae2b2933)] - **buffer**: remove lines setting indexes to integer value (Zhenwei Jin) [#52588](https://github.com/nodejs/node/pull/52588)
163
+ * \[[`48c15d0dcd`](https://github.com/nodejs/node/commit/48c15d0dcd)] - **build**: remove deprecated calls for argument groups (Mohammed Keyvanzadeh) [#52913](https://github.com/nodejs/node/pull/52913)
164
+ * \[[`1be8232d17`](https://github.com/nodejs/node/commit/1be8232d17)] - **build**: drop base64 dep in GN build (Cheng) [#52856](https://github.com/nodejs/node/pull/52856)
165
+ * \[[`918962d6e7`](https://github.com/nodejs/node/commit/918962d6e7)] - **build**: make simdjson a public dep in GN build (Cheng) [#52755](https://github.com/nodejs/node/pull/52755)
166
+ * \[[`5215b6fd8e`](https://github.com/nodejs/node/commit/5215b6fd8e)] - **build, tools**: copy release assets to staging R2 bucket once built (flakey5) [#51394](https://github.com/nodejs/node/pull/51394)
167
+ * \[[`473fa73857`](https://github.com/nodejs/node/commit/473fa73857)] - **(SEMVER-MINOR)** **cli**: allow running wasm in limited vmem with --disable-wasm-trap-handler (Joyee Cheung) [#52766](https://github.com/nodejs/node/pull/52766)
168
+ * \[[`954d2aded4`](https://github.com/nodejs/node/commit/954d2aded4)] - **cluster**: replace `forEach` with `for-of` loop (Jérôme Benoit) [#50317](https://github.com/nodejs/node/pull/50317)
169
+ * \[[`794e450ea7`](https://github.com/nodejs/node/commit/794e450ea7)] - **console**: colorize console error and warn (Jithil P Ponnan) [#51629](https://github.com/nodejs/node/pull/51629)
170
+ * \[[`0fb7c18f10`](https://github.com/nodejs/node/commit/0fb7c18f10)] - **crypto**: fix duplicated switch-case return values (Mustafa Ateş UZUN) [#49030](https://github.com/nodejs/node/pull/49030)
171
+ * \[[`cd1415c8b2`](https://github.com/nodejs/node/commit/cd1415c8b2)] - _**Revert**_ "**crypto**: make timingSafeEqual faster for Uint8Array" (Tobias Nießen) [#53390](https://github.com/nodejs/node/pull/53390)
172
+ * \[[`b774544bb1`](https://github.com/nodejs/node/commit/b774544bb1)] - **deps**: enable unbundling of simdjson, simdutf, ada (Daniel Lemire) [#52924](https://github.com/nodejs/node/pull/52924)
173
+ * \[[`da4dbfc5fd`](https://github.com/nodejs/node/commit/da4dbfc5fd)] - **doc**: remove reference to AUTHORS file (Marco Ippolito) [#52960](https://github.com/nodejs/node/pull/52960)
174
+ * \[[`2f3f2ff8af`](https://github.com/nodejs/node/commit/2f3f2ff8af)] - **doc**: update hljs with the latest styles (Aviv Keller) [#52911](https://github.com/nodejs/node/pull/52911)
175
+ * \[[`3a1d17a9b1`](https://github.com/nodejs/node/commit/3a1d17a9b1)] - **doc**: mention quicker way to build docs (Alex Crawford) [#52937](https://github.com/nodejs/node/pull/52937)
176
+ * \[[`be309bd19d`](https://github.com/nodejs/node/commit/be309bd19d)] - **doc**: mention push.followTags config (Rafael Gonzaga) [#52906](https://github.com/nodejs/node/pull/52906)
177
+ * \[[`e62c6e2684`](https://github.com/nodejs/node/commit/e62c6e2684)] - **doc**: document pipeline with `end` option (Alois Klink) [#48970](https://github.com/nodejs/node/pull/48970)
178
+ * \[[`af27225cf6`](https://github.com/nodejs/node/commit/af27225cf6)] - **doc**: add example for `execFileSync` method and ref to stdio (Evan Shortiss) [#39412](https://github.com/nodejs/node/pull/39412)
179
+ * \[[`086626f9b1`](https://github.com/nodejs/node/commit/086626f9b1)] - **doc**: add examples and notes to http server.close et al (mary marchini) [#49091](https://github.com/nodejs/node/pull/49091)
180
+ * \[[`3aa3337a00`](https://github.com/nodejs/node/commit/3aa3337a00)] - **doc**: fix `dns.lookup` family `0` and `all` descriptions (Adam Jones) [#51653](https://github.com/nodejs/node/pull/51653)
181
+ * \[[`585f2a2e7f`](https://github.com/nodejs/node/commit/585f2a2e7f)] - **doc**: update `fs.realpath` documentation (sinkhaha) [#48170](https://github.com/nodejs/node/pull/48170)
182
+ * \[[`4bf3d44e1d`](https://github.com/nodejs/node/commit/4bf3d44e1d)] - **doc**: update fs read documentation for clarity (Mert Can Altin) [#52453](https://github.com/nodejs/node/pull/52453)
183
+ * \[[`ae5d47dde3`](https://github.com/nodejs/node/commit/ae5d47dde3)] - **doc**: watermark string behavior (Benjamin Gruenbaum) [#52842](https://github.com/nodejs/node/pull/52842)
184
+ * \[[`1e429d10d3`](https://github.com/nodejs/node/commit/1e429d10d3)] - **doc**: exclude commits with baking-for-lts (Marco Ippolito) [#52896](https://github.com/nodejs/node/pull/52896)
185
+ * \[[`3df3e37cdb`](https://github.com/nodejs/node/commit/3df3e37cdb)] - **doc**: add names next to release key bash commands (Aviv Keller) [#52878](https://github.com/nodejs/node/pull/52878)
186
+ * \[[`12512c3d0e`](https://github.com/nodejs/node/commit/12512c3d0e)] - **doc**: add pimterry to collaborators (Tim Perry) [#52874](https://github.com/nodejs/node/pull/52874)
187
+ * \[[`97e0fef019`](https://github.com/nodejs/node/commit/97e0fef019)] - **doc**: add more definitions to GLOSSARY.md (Aviv Keller) [#52798](https://github.com/nodejs/node/pull/52798)
188
+ * \[[`91fadac162`](https://github.com/nodejs/node/commit/91fadac162)] - **doc**: make docs more welcoming and descriptive for newcomers (Serkan Özel) [#38056](https://github.com/nodejs/node/pull/38056)
189
+ * \[[`a3b20126fd`](https://github.com/nodejs/node/commit/a3b20126fd)] - **doc**: add OpenSSL errors to API docs (John Lamp) [#34213](https://github.com/nodejs/node/pull/34213)
190
+ * \[[`9587ae9b5b`](https://github.com/nodejs/node/commit/9587ae9b5b)] - **doc**: simplify copy-pasting of `branch-diff` commands (Antoine du Hamel) [#52757](https://github.com/nodejs/node/pull/52757)
191
+ * \[[`6ea72a53c3`](https://github.com/nodejs/node/commit/6ea72a53c3)] - **doc**: add test\_runner to subsystem (Raz Luvaton) [#52774](https://github.com/nodejs/node/pull/52774)
192
+ * \[[`972eafd983`](https://github.com/nodejs/node/commit/972eafd983)] - **events**: update MaxListenersExceededWarning message log (sinkhaha) [#51921](https://github.com/nodejs/node/pull/51921)
193
+ * \[[`74753ed1fe`](https://github.com/nodejs/node/commit/74753ed1fe)] - **events**: add stop propagation flag to `Event.stopImmediatePropagation` (Mickael Meausoone) [#39463](https://github.com/nodejs/node/pull/39463)
194
+ * \[[`75dd009649`](https://github.com/nodejs/node/commit/75dd009649)] - **events**: replace NodeCustomEvent with CustomEvent (Feng Yu) [#43876](https://github.com/nodejs/node/pull/43876)
195
+ * \[[`7d38c2e012`](https://github.com/nodejs/node/commit/7d38c2e012)] - **fs**: keep fs.promises.readFile read until EOF is reached (Zhenwei Jin) [#52178](https://github.com/nodejs/node/pull/52178)
196
+ * \[[`8cb13120d3`](https://github.com/nodejs/node/commit/8cb13120d3)] - **(SEMVER-MINOR)** **inspector**: introduce the `--inspect-wait` flag (Kohei Ueno) [#52734](https://github.com/nodejs/node/pull/52734)
197
+ * \[[`d5ab1de1fd`](https://github.com/nodejs/node/commit/d5ab1de1fd)] - **meta**: move `@anonrig` to TSC regular member (Yagiz Nizipli) [#52932](https://github.com/nodejs/node/pull/52932)
198
+ * \[[`f82d086e90`](https://github.com/nodejs/node/commit/f82d086e90)] - **path**: fix toNamespacedPath on Windows (Hüseyin Açacak) [#52915](https://github.com/nodejs/node/pull/52915)
199
+ * \[[`121ea13b50`](https://github.com/nodejs/node/commit/121ea13b50)] - **process**: improve event-loop (Aras Abbasi) [#52108](https://github.com/nodejs/node/pull/52108)
200
+ * \[[`eceac784aa`](https://github.com/nodejs/node/commit/eceac784aa)] - **repl**: fix disruptive autocomplete without inspector (Nitzan Uziely) [#40661](https://github.com/nodejs/node/pull/40661)
201
+ * \[[`89a910be82`](https://github.com/nodejs/node/commit/89a910be82)] - **src**: fix Worker termination in `inspector.waitForDebugger` (Daeyeon Jeong) [#52527](https://github.com/nodejs/node/pull/52527)
202
+ * \[[`033f985e8a`](https://github.com/nodejs/node/commit/033f985e8a)] - **src**: use `S_ISDIR` to check if the file is a directory (theanarkh) [#52164](https://github.com/nodejs/node/pull/52164)
203
+ * \[[`95128399f8`](https://github.com/nodejs/node/commit/95128399f8)] - **src**: allow preventing debug signal handler start (Shelley Vohr) [#46681](https://github.com/nodejs/node/pull/46681)
204
+ * \[[`b162aeae9e`](https://github.com/nodejs/node/commit/b162aeae9e)] - **src**: fix typo Unabled -> Unable (Simon Siefke) [#52820](https://github.com/nodejs/node/pull/52820)
205
+ * \[[`2dcbf1894a`](https://github.com/nodejs/node/commit/2dcbf1894a)] - **src**: avoid unused variable 'error' warning (Michaël Zasso) [#52886](https://github.com/nodejs/node/pull/52886)
206
+ * \[[`978ee0a635`](https://github.com/nodejs/node/commit/978ee0a635)] - **src**: only apply fix in main thread (Paolo Insogna) [#52702](https://github.com/nodejs/node/pull/52702)
207
+ * \[[`8fc52b38c6`](https://github.com/nodejs/node/commit/8fc52b38c6)] - **src**: fix test local edge case (Paolo Insogna) [#52702](https://github.com/nodejs/node/pull/52702)
208
+ * \[[`d02907ecc4`](https://github.com/nodejs/node/commit/d02907ecc4)] - **src**: remove misplaced windows code under posix guard in node.cc (Ali Hassan) [#52545](https://github.com/nodejs/node/pull/52545)
209
+ * \[[`af29120fa7`](https://github.com/nodejs/node/commit/af29120fa7)] - **stream**: use `ByteLengthQueuingStrategy` when not in `objectMode` (Jason) [#48847](https://github.com/nodejs/node/pull/48847)
210
+ * \[[`a5f3dd137c`](https://github.com/nodejs/node/commit/a5f3dd137c)] - **string\_decoder**: throw an error when writing a too long buffer (zhenweijin) [#52215](https://github.com/nodejs/node/pull/52215)
211
+ * \[[`65fa95d57d`](https://github.com/nodejs/node/commit/65fa95d57d)] - **test**: add `Debugger.setInstrumentationBreakpoint` known issue (Konstantin Ulitin) [#31137](https://github.com/nodejs/node/pull/31137)
212
+ * \[[`0513e07805`](https://github.com/nodejs/node/commit/0513e07805)] - **test**: use `for-of` instead of `forEach` (Gibby Free) [#49790](https://github.com/nodejs/node/pull/49790)
213
+ * \[[`1d01325928`](https://github.com/nodejs/node/commit/1d01325928)] - **test**: verify request payload is uploaded consistently (Austin Wright) [#34066](https://github.com/nodejs/node/pull/34066)
214
+ * \[[`7dda156872`](https://github.com/nodejs/node/commit/7dda156872)] - **test**: add fuzzer for native/js string conversion (Adam Korczynski) [#51120](https://github.com/nodejs/node/pull/51120)
215
+ * \[[`5fb829b340`](https://github.com/nodejs/node/commit/5fb829b340)] - **test**: add fuzzer for `ClientHelloParser` (AdamKorcz) [#51088](https://github.com/nodejs/node/pull/51088)
216
+ * \[[`cc74bf789f`](https://github.com/nodejs/node/commit/cc74bf789f)] - **test**: fix broken env fuzzer by initializing process (AdamKorcz) [#51080](https://github.com/nodejs/node/pull/51080)
217
+ * \[[`800b6f65cf`](https://github.com/nodejs/node/commit/800b6f65cf)] - **test**: replace `forEach()` in `test-stream-pipe-unpipe-stream` (Dario) [#50786](https://github.com/nodejs/node/pull/50786)
218
+ * \[[`d08c9a6a31`](https://github.com/nodejs/node/commit/d08c9a6a31)] - **test**: test pipeline `end` on transform streams (Alois Klink) [#48970](https://github.com/nodejs/node/pull/48970)
219
+ * \[[`0be8123ede`](https://github.com/nodejs/node/commit/0be8123ede)] - **test**: improve coverage of lib/readline.js (Rongjian Zhang) [#38646](https://github.com/nodejs/node/pull/38646)
220
+ * \[[`410224415c`](https://github.com/nodejs/node/commit/410224415c)] - **test**: updated for each to for of in test file (lyannel) [#50308](https://github.com/nodejs/node/pull/50308)
221
+ * \[[`556e9a2127`](https://github.com/nodejs/node/commit/556e9a2127)] - **test**: move `test-http-server-request-timeouts-mixed` to sequential (Madhuri) [#45722](https://github.com/nodejs/node/pull/45722)
222
+ * \[[`0638274c07`](https://github.com/nodejs/node/commit/0638274c07)] - **test**: fix DNS cancel tests (Szymon Marczak) [#44432](https://github.com/nodejs/node/pull/44432)
223
+ * \[[`311bdc62bd`](https://github.com/nodejs/node/commit/311bdc62bd)] - **test**: add http agent to `executionAsyncResource` (psj-tar-gz) [#34966](https://github.com/nodejs/node/pull/34966)
224
+ * \[[`6001b164ab`](https://github.com/nodejs/node/commit/6001b164ab)] - **test**: reduce memory usage of test-worker-stdio (Adam Majer) [#37769](https://github.com/nodejs/node/pull/37769)
225
+ * \[[`986bfa26e9`](https://github.com/nodejs/node/commit/986bfa26e9)] - **test**: add common.expectRequiredModule() (Joyee Cheung) [#52868](https://github.com/nodejs/node/pull/52868)
226
+ * \[[`2246d4fd1e`](https://github.com/nodejs/node/commit/2246d4fd1e)] - **test**: crypto-rsa-dsa testing for dynamic openssl (Michael Dawson) [#52781](https://github.com/nodejs/node/pull/52781)
227
+ * \[[`1dce5dea0b`](https://github.com/nodejs/node/commit/1dce5dea0b)] - **test**: skip some console tests on dumb terminal (Adam Majer) [#37770](https://github.com/nodejs/node/pull/37770)
228
+ * \[[`0addeb240c`](https://github.com/nodejs/node/commit/0addeb240c)] - **test**: skip v8-updates/test-linux-perf-logger (Michaël Zasso) [#52821](https://github.com/nodejs/node/pull/52821)
229
+ * \[[`56e19e38f3`](https://github.com/nodejs/node/commit/56e19e38f3)] - **test**: drop test-crypto-timing-safe-equal-benchmarks (Rafael Gonzaga) [#52751](https://github.com/nodejs/node/pull/52751)
230
+ * \[[`0c5e58958c`](https://github.com/nodejs/node/commit/0c5e58958c)] - **test, crypto**: use correct object on assert (响马) [#51820](https://github.com/nodejs/node/pull/51820)
231
+ * \[[`d54aa47ec1`](https://github.com/nodejs/node/commit/d54aa47ec1)] - **(SEMVER-MINOR)** **test\_runner**: support test plans (Colin Ihrig) [#52860](https://github.com/nodejs/node/pull/52860)
232
+ * \[[`0289a023a5`](https://github.com/nodejs/node/commit/0289a023a5)] - **test\_runner**: fix watch mode race condition (Moshe Atlow) [#52954](https://github.com/nodejs/node/pull/52954)
233
+ * \[[`cf817e192e`](https://github.com/nodejs/node/commit/cf817e192e)] - **test\_runner**: preserve hook promise when executed twice (Moshe Atlow) [#52791](https://github.com/nodejs/node/pull/52791)
234
+ * \[[`de541235fe`](https://github.com/nodejs/node/commit/de541235fe)] - **tools**: fix v8-update workflow (Michaël Zasso) [#52957](https://github.com/nodejs/node/pull/52957)
235
+ * \[[`f6290bc327`](https://github.com/nodejs/node/commit/f6290bc327)] - **tools**: add --certify-safe to nci-ci (Matteo Collina) [#52940](https://github.com/nodejs/node/pull/52940)
236
+ * \[[`0830b3115d`](https://github.com/nodejs/node/commit/0830b3115d)] - **tools**: fix doc update action (Marco Ippolito) [#52890](https://github.com/nodejs/node/pull/52890)
237
+ * \[[`9d485b40bb`](https://github.com/nodejs/node/commit/9d485b40bb)] - **(SEMVER-MINOR)** **tools**: fix get\_asan\_state() in tools/test.py (Joyee Cheung) [#52766](https://github.com/nodejs/node/pull/52766)
238
+ * \[[`e98c305f52`](https://github.com/nodejs/node/commit/e98c305f52)] - **(SEMVER-MINOR)** **tools**: support max\_virtual\_memory test configuration (Joyee Cheung) [#52766](https://github.com/nodejs/node/pull/52766)
239
+ * \[[`dce0300896`](https://github.com/nodejs/node/commit/dce0300896)] - **(SEMVER-MINOR)** **tools**: support != in test status files (Joyee Cheung) [#52766](https://github.com/nodejs/node/pull/52766)
240
+ * \[[`57006001ec`](https://github.com/nodejs/node/commit/57006001ec)] - **tools**: prepare custom rules for ESLint v9 (Michaël Zasso) [#52889](https://github.com/nodejs/node/pull/52889)
241
+ * \[[`403a4a7557`](https://github.com/nodejs/node/commit/403a4a7557)] - **tools**: update lint-md-dependencies to rollup\@4.17.2 (Node.js GitHub Bot) [#52836](https://github.com/nodejs/node/pull/52836)
242
+ * \[[`01eff5860e`](https://github.com/nodejs/node/commit/01eff5860e)] - **tools**: update `gr2m/create-or-update-pull-request-action` (Antoine du Hamel) [#52843](https://github.com/nodejs/node/pull/52843)
243
+ * \[[`514f01ed59`](https://github.com/nodejs/node/commit/514f01ed59)] - **tools**: use sccache GitHub action (Michaël Zasso) [#52839](https://github.com/nodejs/node/pull/52839)
244
+ * \[[`8f8fb91927`](https://github.com/nodejs/node/commit/8f8fb91927)] - **tools**: specify a commit-message for V8 update workflow (Antoine du Hamel) [#52844](https://github.com/nodejs/node/pull/52844)
245
+ * \[[`b83fbf8709`](https://github.com/nodejs/node/commit/b83fbf8709)] - **tools**: fix V8 update workflow (Antoine du Hamel) [#52822](https://github.com/nodejs/node/pull/52822)
246
+ * \[[`be9d6f2176`](https://github.com/nodejs/node/commit/be9d6f2176)] - **url,tools,benchmark**: replace deprecated `substr()` (Jungku Lee) [#51546](https://github.com/nodejs/node/pull/51546)
247
+ * \[[`7603a51d45`](https://github.com/nodejs/node/commit/7603a51d45)] - **util**: fix `%s` format behavior with `Symbol.toPrimitive` (Chenyu Yang) [#50992](https://github.com/nodejs/node/pull/50992)
248
+ * \[[`d7eba50cf3`](https://github.com/nodejs/node/commit/d7eba50cf3)] - **util**: improve `isInsideNodeModules` (uzlopak) [#52147](https://github.com/nodejs/node/pull/52147)
249
+ * \[[`4ae4f7e517`](https://github.com/nodejs/node/commit/4ae4f7e517)] - **watch**: allow listening for grouped changes (Matthieu Sieben) [#52722](https://github.com/nodejs/node/pull/52722)
250
+ * \[[`1ff8f318c0`](https://github.com/nodejs/node/commit/1ff8f318c0)] - **watch**: enable passthrough ipc in watch mode (Zack) [#50890](https://github.com/nodejs/node/pull/50890)
251
+ * \[[`739adf90b1`](https://github.com/nodejs/node/commit/739adf90b1)] - **watch**: fix arguments parsing (Moshe Atlow) [#52760](https://github.com/nodejs/node/pull/52760)
252
+ * \[[`5161d95c30`](https://github.com/nodejs/node/commit/5161d95c30)] - **(SEMVER-MINOR)** **zlib**: expose zlib.crc32() (Joyee Cheung) [#52692](https://github.com/nodejs/node/pull/52692)
253
+
254
+ <a id="20.14.0"></a>
255
+
256
+ ## 2024-05-28, Version 20.14.0 'Iron' (LTS), @marco-ippolito
257
+
258
+ ### Notable Changes
259
+
260
+ * \[[`28d2baa17c`](https://github.com/nodejs/node/commit/28d2baa17c)] - **src,permission**: throw async errors on async APIs (Rafael Gonzaga) [#52730](https://github.com/nodejs/node/pull/52730)
261
+ * \[[`77e2bf029a`](https://github.com/nodejs/node/commit/77e2bf029a)] - **(SEMVER-MINOR)** **test\_runner**: support forced exit (Colin Ihrig) [#52038](https://github.com/nodejs/node/pull/52038)
262
+
263
+ ### Commits
264
+
265
+ * \[[`e3ad05d8b0`](https://github.com/nodejs/node/commit/e3ad05d8b0)] - **deps**: V8: cherry-pick 500de8bd371b (Richard Lau) [#52676](https://github.com/nodejs/node/pull/52676)
266
+ * \[[`053282e661`](https://github.com/nodejs/node/commit/053282e661)] - **deps**: V8: backport c4be0a97f981 (Richard Lau) [#52183](https://github.com/nodejs/node/pull/52183)
267
+ * \[[`200dadb879`](https://github.com/nodejs/node/commit/200dadb879)] - **deps**: V8: cherry-pick f8d5e576b814 (Richard Lau) [#52183](https://github.com/nodejs/node/pull/52183)
268
+ * \[[`f5cd125e02`](https://github.com/nodejs/node/commit/f5cd125e02)] - **deps**: update googletest to fa6de7f (Node.js GitHub Bot) [#52949](https://github.com/nodejs/node/pull/52949)
269
+ * \[[`bbbfd7f4e1`](https://github.com/nodejs/node/commit/bbbfd7f4e1)] - **deps**: update corepack to 0.28.1 (Node.js GitHub Bot) [#52946](https://github.com/nodejs/node/pull/52946)
270
+ * \[[`7ba30a57a6`](https://github.com/nodejs/node/commit/7ba30a57a6)] - **deps**: update simdutf to 5.2.8 (Node.js GitHub Bot) [#52727](https://github.com/nodejs/node/pull/52727)
271
+ * \[[`b21a480a28`](https://github.com/nodejs/node/commit/b21a480a28)] - **deps**: update simdutf to 5.2.6 (Node.js GitHub Bot) [#52727](https://github.com/nodejs/node/pull/52727)
272
+ * \[[`6cfad60d97`](https://github.com/nodejs/node/commit/6cfad60d97)] - **deps**: update googletest to 2d16ed0 (Node.js GitHub Bot) [#51657](https://github.com/nodejs/node/pull/51657)
273
+ * \[[`34708d1429`](https://github.com/nodejs/node/commit/34708d1429)] - **deps**: update googletest to d83fee1 (Node.js GitHub Bot) [#51657](https://github.com/nodejs/node/pull/51657)
274
+ * \[[`c1d3e558e8`](https://github.com/nodejs/node/commit/c1d3e558e8)] - **deps**: update googletest to 5a37b51 (Node.js GitHub Bot) [#51657](https://github.com/nodejs/node/pull/51657)
275
+ * \[[`69959d0fca`](https://github.com/nodejs/node/commit/69959d0fca)] - **deps**: update googletest to 5197b1a (Node.js GitHub Bot) [#51657](https://github.com/nodejs/node/pull/51657)
276
+ * \[[`c8305f6057`](https://github.com/nodejs/node/commit/c8305f6057)] - **deps**: update googletest to eff443c (Node.js GitHub Bot) [#51657](https://github.com/nodejs/node/pull/51657)
277
+ * \[[`760b788704`](https://github.com/nodejs/node/commit/760b788704)] - **deps**: update googletest to c231e6f (Node.js GitHub Bot) [#51657](https://github.com/nodejs/node/pull/51657)
278
+ * \[[`301541cc8f`](https://github.com/nodejs/node/commit/301541cc8f)] - **deps**: update googletest to e4fdb87 (Node.js GitHub Bot) [#51657](https://github.com/nodejs/node/pull/51657)
279
+ * \[[`981d57e401`](https://github.com/nodejs/node/commit/981d57e401)] - **deps**: update googletest to 5df0241 (Node.js GitHub Bot) [#51657](https://github.com/nodejs/node/pull/51657)
280
+ * \[[`a1817f534d`](https://github.com/nodejs/node/commit/a1817f534d)] - **deps**: update googletest to b75ecf1 (Node.js GitHub Bot) [#51657](https://github.com/nodejs/node/pull/51657)
281
+ * \[[`42070ca189`](https://github.com/nodejs/node/commit/42070ca189)] - **deps**: update googletest to 4565741 (Node.js GitHub Bot) [#51657](https://github.com/nodejs/node/pull/51657)
282
+ * \[[`edc3e5d056`](https://github.com/nodejs/node/commit/edc3e5d056)] - **deps**: update uvwasi to 0.0.21 (Node.js GitHub Bot) [#52863](https://github.com/nodejs/node/pull/52863)
283
+ * \[[`26b1231ffb`](https://github.com/nodejs/node/commit/26b1231ffb)] - **deps**: upgrade npm to 10.7.0 (npm team) [#52767](https://github.com/nodejs/node/pull/52767)
284
+ * \[[`e6d9fbece2`](https://github.com/nodejs/node/commit/e6d9fbece2)] - **doc**: update process.versions properties (ishabi) [#52736](https://github.com/nodejs/node/pull/52736)
285
+ * \[[`8c1f837c0a`](https://github.com/nodejs/node/commit/8c1f837c0a)] - **doc**: remove mold use on mac for speeding up build (Cong Zhang) [#52252](https://github.com/nodejs/node/pull/52252)
286
+ * \[[`d9c5114694`](https://github.com/nodejs/node/commit/d9c5114694)] - **doc**: fix grammatical mistake (codershiba) [#52808](https://github.com/nodejs/node/pull/52808)
287
+ * \[[`b350f435b7`](https://github.com/nodejs/node/commit/b350f435b7)] - **meta**: add mailmap entry for legendecas (Chengzhong Wu) [#52795](https://github.com/nodejs/node/pull/52795)
288
+ * \[[`61f9f12eff`](https://github.com/nodejs/node/commit/61f9f12eff)] - **meta**: bump actions/checkout from 4.1.1 to 4.1.4 (dependabot\[bot]) [#52787](https://github.com/nodejs/node/pull/52787)
289
+ * \[[`ac563667d6`](https://github.com/nodejs/node/commit/ac563667d6)] - **meta**: bump github/codeql-action from 3.24.9 to 3.25.3 (dependabot\[bot]) [#52786](https://github.com/nodejs/node/pull/52786)
290
+ * \[[`70611d7924`](https://github.com/nodejs/node/commit/70611d7924)] - **meta**: bump actions/upload-artifact from 4.3.1 to 4.3.3 (dependabot\[bot]) [#52785](https://github.com/nodejs/node/pull/52785)
291
+ * \[[`30482ea273`](https://github.com/nodejs/node/commit/30482ea273)] - **meta**: bump actions/download-artifact from 4.1.4 to 4.1.7 (dependabot\[bot]) [#52784](https://github.com/nodejs/node/pull/52784)
292
+ * \[[`d1607cdebb`](https://github.com/nodejs/node/commit/d1607cdebb)] - **meta**: bump codecov/codecov-action from 4.1.1 to 4.3.1 (dependabot\[bot]) [#52783](https://github.com/nodejs/node/pull/52783)
293
+ * \[[`21f1b6bfc3`](https://github.com/nodejs/node/commit/21f1b6bfc3)] - **meta**: bump step-security/harden-runner from 2.7.0 to 2.7.1 (dependabot\[bot]) [#52782](https://github.com/nodejs/node/pull/52782)
294
+ * \[[`0c6019a222`](https://github.com/nodejs/node/commit/0c6019a222)] - **meta**: standardize regex (Aviv Keller) [#52693](https://github.com/nodejs/node/pull/52693)
295
+ * \[[`28d2baa17c`](https://github.com/nodejs/node/commit/28d2baa17c)] - **src,permission**: throw async errors on async APIs (Rafael Gonzaga) [#52730](https://github.com/nodejs/node/pull/52730)
296
+ * \[[`cffd2cc0c9`](https://github.com/nodejs/node/commit/cffd2cc0c9)] - _**Revert**_ "**stream**: revert fix cloned webstreams not being unref'd" (Marco Ippolito) [#53144](https://github.com/nodejs/node/pull/53144)
297
+ * \[[`3dd96f1fab`](https://github.com/nodejs/node/commit/3dd96f1fab)] - **stream**: implement TransformStream cleanup using "transformer.cancel" (Debadree Chatterjee) [#50126](https://github.com/nodejs/node/pull/50126)
298
+ * \[[`8e7e778e01`](https://github.com/nodejs/node/commit/8e7e778e01)] - **test**: skip v8-updates/test-linux-perf (Michaël Zasso) [#49639](https://github.com/nodejs/node/pull/49639)
299
+ * \[[`f8e18869e9`](https://github.com/nodejs/node/commit/f8e18869e9)] - **test**: replace always-opt flag with alway-turbofan (Michaël Zasso) [#50115](https://github.com/nodejs/node/pull/50115)
300
+ * \[[`a501860d63`](https://github.com/nodejs/node/commit/a501860d63)] - **test\_runner**: don't await the same promise for each test (Colin Ihrig) [#52185](https://github.com/nodejs/node/pull/52185)
301
+ * \[[`e2ae4367f4`](https://github.com/nodejs/node/commit/e2ae4367f4)] - **test\_runner**: run top level tests in a microtask (Colin Ihrig) [#52092](https://github.com/nodejs/node/pull/52092)
302
+ * \[[`77e2bf029a`](https://github.com/nodejs/node/commit/77e2bf029a)] - **(SEMVER-MINOR)** **test\_runner**: support forced exit (Colin Ihrig) [#52038](https://github.com/nodejs/node/pull/52038)
303
+ * \[[`b7bc63565e`](https://github.com/nodejs/node/commit/b7bc63565e)] - **test\_runner**: ignore todo flag when running suites (Colin Ihrig) [#52117](https://github.com/nodejs/node/pull/52117)
304
+ * \[[`be587e3ae3`](https://github.com/nodejs/node/commit/be587e3ae3)] - **test\_runner**: use paths for test locations (Colin Ihrig) [#52010](https://github.com/nodejs/node/pull/52010)
305
+ * \[[`743281ab25`](https://github.com/nodejs/node/commit/743281ab25)] - **test\_runner**: support source mapped test locations (Colin Ihrig) [#52010](https://github.com/nodejs/node/pull/52010)
306
+ * \[[`4051316d95`](https://github.com/nodejs/node/commit/4051316d95)] - **tools**: update lint-md-dependencies to rollup\@4.17.0 (Node.js GitHub Bot) [#52729](https://github.com/nodejs/node/pull/52729)
307
+
62
308
  <a id="20.13.1"></a>
63
309
 
64
310
  ## 2024-05-09, Version 20.13.1 'Iron' (LTS), @marco-ippolito
package/README.md CHANGED
@@ -164,8 +164,6 @@ For information about the governance of the Node.js project, see
164
164
 
165
165
  * [aduh95](https://github.com/aduh95) -
166
166
  **Antoine du Hamel** <<duhamelantoine1995@gmail.com>> (he/him)
167
- * [anonrig](https://github.com/anonrig) -
168
- **Yagiz Nizipli** <<yagiz.nizipli@sentry.io>> (he/him)
169
167
  * [apapirovski](https://github.com/apapirovski) -
170
168
  **Anatoli Papirovski** <<apapirovski@mac.com>> (he/him)
171
169
  * [benjamingr](https://github.com/benjamingr) -
@@ -205,6 +203,8 @@ For information about the governance of the Node.js project, see
205
203
 
206
204
  #### TSC regular members
207
205
 
206
+ * [anonrig](https://github.com/anonrig) -
207
+ **Yagiz Nizipli** <<yagiz.nizipli@sentry.io>> (he/him)
208
208
  * [BethGriggs](https://github.com/BethGriggs) -
209
209
  **Beth Griggs** <<bethanyngriggs@gmail.com>> (she/her)
210
210
  * [bnoordhuis](https://github.com/bnoordhuis) -
@@ -411,6 +411,8 @@ For information about the governance of the Node.js project, see
411
411
  **Claudio Wunder** <<cwunder@gnome.org>> (he/they)
412
412
  * [panva](https://github.com/panva) -
413
413
  **Filip Skokan** <<panva.ip@gmail.com>> (he/him)
414
+ * [pimterry](https://github.com/pimterry) -
415
+ **Tim Perry** <<pimterry@gmail.com>> (he/him)
414
416
  * [Qard](https://github.com/Qard) -
415
417
  **Stephen Belanger** <<admin@stephenbelanger.com>> (he/him)
416
418
  * [RafaelGSS](https://github.com/RafaelGSS) -
@@ -771,7 +773,7 @@ Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys):
771
773
  `8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600`
772
774
  * **Myles Borins** <<myles.borins@gmail.com>>
773
775
  `C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8`
774
- * **RafaelGSS** <<rafael.nunu@hotmail.com>>
776
+ * **Rafael Gonzaga** <<rafael.nunu@hotmail.com>>
775
777
  `890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4`
776
778
  * **Richard Lau** <<rlau@redhat.com>>
777
779
  `C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C`
@@ -784,17 +786,17 @@ To import the full set of trusted release keys (including subkeys possibly used
784
786
  to sign releases):
785
787
 
786
788
  ```bash
787
- gpg --keyserver hkps://keys.openpgp.org --recv-keys 4ED778F539E3634C779C87C6D7062848A1AB005C
788
- gpg --keyserver hkps://keys.openpgp.org --recv-keys 141F07595B7B3FFE74309A937405533BE57C7D57
789
- gpg --keyserver hkps://keys.openpgp.org --recv-keys 74F12602B6F1C4E913FAA37AD3A89613643B6201
790
- gpg --keyserver hkps://keys.openpgp.org --recv-keys DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7
791
- gpg --keyserver hkps://keys.openpgp.org --recv-keys CC68F5A3106FF448322E48ED27F5E38D5B0A215F
792
- gpg --keyserver hkps://keys.openpgp.org --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600
793
- gpg --keyserver hkps://keys.openpgp.org --recv-keys C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8
794
- gpg --keyserver hkps://keys.openpgp.org --recv-keys 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4
795
- gpg --keyserver hkps://keys.openpgp.org --recv-keys C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C
796
- gpg --keyserver hkps://keys.openpgp.org --recv-keys 108F52B48DB57BB0CC439B2997B01419BD92F80A
797
- gpg --keyserver hkps://keys.openpgp.org --recv-keys A363A499291CBBC940DD62E41F10027AF002F8B0
789
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 4ED778F539E3634C779C87C6D7062848A1AB005C # Beth Griggs
790
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 141F07595B7B3FFE74309A937405533BE57C7D57 # Bryan English
791
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 74F12602B6F1C4E913FAA37AD3A89613643B6201 # Danielle Adams
792
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 # Juan José Arboleda
793
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys CC68F5A3106FF448322E48ED27F5E38D5B0A215F # Marco Ippolito
794
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 # Michaël Zasso
795
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 # Myles Borins
796
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4 # Rafael Gonzaga
797
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C # Richard Lau
798
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 108F52B48DB57BB0CC439B2997B01419BD92F80A # Ruy Adorno
799
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys A363A499291CBBC940DD62E41F10027AF002F8B0 # Ulises Gascón
798
800
  ```
799
801
 
800
802
  See [Verifying binaries](#verifying-binaries) for how to use these keys to
package/bin/node CHANGED
Binary file
@@ -37,7 +37,7 @@
37
37
 
38
38
  # Reset this number to 0 on major V8 upgrades.
39
39
  # Increment by one for each non-official patch applied to deps/v8.
40
- 'v8_embedder_string': '-node.20',
40
+ 'v8_embedder_string': '-node.23',
41
41
 
42
42
  ##### V8 defaults for Node.js #####
43
43
 
@@ -349,6 +349,7 @@
349
349
  'node_prefix': '/',
350
350
  'node_release_urlbase': 'https://nodejs.org/download/release/',
351
351
  'node_shared': 'false',
352
+ 'node_shared_ada': 'false',
352
353
  'node_shared_brotli': 'false',
353
354
  'node_shared_cares': 'false',
354
355
  'node_shared_http_parser': 'false',
@@ -357,6 +358,8 @@
357
358
  'node_shared_nghttp3': 'false',
358
359
  'node_shared_ngtcp2': 'false',
359
360
  'node_shared_openssl': 'false',
361
+ 'node_shared_simdjson': 'false',
362
+ 'node_shared_simdutf': 'false',
360
363
  'node_shared_zlib': 'false',
361
364
  'node_tag': '',
362
365
  'node_target_type': 'executable',
@@ -5979,22 +5979,22 @@ _GLOBAL__F__ZN2v88internal6torque5Block13SetInputTypesERKNS1_5StackIPKNS1_4TypeE
5979
5979
  _GLOBAL__F__ZN2v88internal6torque9KytheData21AddConstantDefinitionEPKNS1_5ValueE
5980
5980
  _GLOBAL__F__ZNK2v88internal6torque3cpp8Function22PrintDeclarationHeaderERSoi
5981
5981
  _GLOBAL__F__ZNK2v88internal6torque4Rule9RunActionEPKNS1_4ItemERKNS1_11LexerResultE
5982
- _GLOBAL__I_65535_0_.._deps_v8_src_compiler_int64_lowering.cc_E21CEA7D_0x1f330878ef4b35e1
5983
- _GLOBAL__I_65535_0_.._deps_v8_src_compiler_turboshaft_utils.cc_DFF67DD7_0x649a7b0570946363
5984
- _GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_gdb_jit.cc_DFF67DD7_0x9c3487cae393ad56
5985
- _GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_objects_debug.cc_E21CEA7D_0xa4ea2f0b82a003ce
5986
- _GLOBAL__I_65535_0_.._deps_v8_src_execution_arguments.cc_DFF67DD7_0xf775d96f7f1957d4
5987
- _GLOBAL__I_65535_0_.._deps_v8_src_execution_simulator_base.cc_7874F2D3_0x1f56a6f9baa1b1bb
5988
- _GLOBAL__I_65535_0_.._deps_v8_src_heap_evacuation_verifier.cc_E21CEA7D_0xec678b7482d47cf1
5989
- _GLOBAL__I_65535_0_.._deps_v8_src_heap_factory_base.cc_7874F2D3_0xd360a2c764f2449c
5990
- _GLOBAL__I_65535_0_.._deps_v8_src_heap_heap_verifier.cc_7874F2D3_0x34d426545f0f06a4
5991
- _GLOBAL__I_65535_0_.._deps_v8_src_heap_objects_visiting.cc_DFF67DD7_0x7f6bf3ab90fb1313
5992
- _GLOBAL__I_65535_0_.._deps_v8_src_objects_tagged_impl.cc_87E8306D_0x12fe2c1fdb173327
5993
- _GLOBAL__I_65535_0_.._deps_v8_src_runtime_runtime_trace.cc_E21CEA7D_0x82ada0eded20e216
5994
- _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_external_pointer_table.cc_87E8306D_0x257acdf06b74b4c9
5995
- _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_sandbox.cc_87E8306D_0xeb131b8fd74dc1ab
5996
- _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_testing.cc_7874F2D3_0xed733cd0664e8bb5
5997
- _GLOBAL__I_65535_0_.._src_connection_wrap.cc_E21CEA7D_0x58cb3dd673062ef2
5982
+ _GLOBAL__I_65535_0_.._deps_v8_src_compiler_int64_lowering.cc_E21CEA7D_0xf618be405cf34fa0
5983
+ _GLOBAL__I_65535_0_.._deps_v8_src_compiler_turboshaft_utils.cc_DFF67DD7_0x1adfa4623bcc7525
5984
+ _GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_gdb_jit.cc_DFF67DD7_0xd990a6be4c336cdb
5985
+ _GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_objects_debug.cc_E21CEA7D_0x540b917ef63dcd25
5986
+ _GLOBAL__I_65535_0_.._deps_v8_src_execution_arguments.cc_DFF67DD7_0x9d9eed3a1d8c7ff6
5987
+ _GLOBAL__I_65535_0_.._deps_v8_src_execution_simulator_base.cc_7874F2D3_0xa085b63cccfb6596
5988
+ _GLOBAL__I_65535_0_.._deps_v8_src_heap_evacuation_verifier.cc_E21CEA7D_0x1bcb7d38d72406bd
5989
+ _GLOBAL__I_65535_0_.._deps_v8_src_heap_factory_base.cc_7874F2D3_0xbdaffaefd3db4fdb
5990
+ _GLOBAL__I_65535_0_.._deps_v8_src_heap_heap_verifier.cc_7874F2D3_0xf4893108e906fab1
5991
+ _GLOBAL__I_65535_0_.._deps_v8_src_heap_objects_visiting.cc_DFF67DD7_0x473312408c65a804
5992
+ _GLOBAL__I_65535_0_.._deps_v8_src_objects_tagged_impl.cc_87E8306D_0xa8af8c619fb7d5f0
5993
+ _GLOBAL__I_65535_0_.._deps_v8_src_runtime_runtime_trace.cc_E21CEA7D_0x84c714c182e02dc
5994
+ _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_external_pointer_table.cc_87E8306D_0xabbc5b639b3cd624
5995
+ _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_sandbox.cc_87E8306D_0xb00cd82c56d4a3eb
5996
+ _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_testing.cc_7874F2D3_0xb3c1619980eaa8f5
5997
+ _GLOBAL__I_65535_0_.._src_connection_wrap.cc_E21CEA7D_0xa9eb09a182ca4e1c
5998
5998
  _GLOBAL__I_65535_0_OPENSSL_ppccap_P
5999
5999
  _GLOBAL__I_65535_0__Z16_register_configv
6000
6000
  _GLOBAL__I_65535_0__Z17_register_symbolsv
@@ -7086,10 +7086,9 @@ _GLOBAL__I_65535_0__ZNK4node3sea11SeaResource12use_snapshotEv
7086
7086
  _GLOBAL__I_65535_0__ZNK4node3url11BindingData10MemoryInfoEPNS_13MemoryTrackerE
7087
7087
  _GLOBAL__I_65535_0__ZNK4node4quic10TLSContext4sideEv
7088
7088
  _GLOBAL__I_65535_0__ZNK4node4quic6Packet11destinationEv
7089
- _GLOBAL__I_65535_0__ZNK7simdutf14implementation27supported_by_runtime_systemEv
7090
- _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_enum_verifiers.cc_E21CEA7D_0x1c2e7649195ea5ae
7091
- _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_factory.cc_7874F2D3_0xa1f971d89add0698
7092
- _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_torque_defined_classes_tq_csa.cc_E21CEA7D_0x48f5867e4af70ca5
7089
+ _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_enum_verifiers.cc_E21CEA7D_0x1bd25e1080e8963e
7090
+ _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_factory.cc_7874F2D3_0xdefbeb74d568733
7091
+ _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_torque_defined_classes_tq_csa.cc_E21CEA7D_0x306b58dcdb94f83b
7093
7092
  _GLOBAL__I_65535_0_nodedbg_const_ContextEmbedderIndex__kEnvironment__int
7094
7093
  _GLOBAL__I_65535_0_v8dbg_frametype_EntryFrame
7095
7094
  _HZData_75
@@ -7326,7 +7325,6 @@ _Z9V8_DcheckPKciS0_
7326
7325
  _ZGVN3ada22url_search_params_iterISt17basic_string_viewIcSt11char_traitsIcEELNS_27url_search_params_iter_typeE0EE5EMPTYE
7327
7326
  _ZGVN3ada22url_search_params_iterISt17basic_string_viewIcSt11char_traitsIcEELNS_27url_search_params_iter_typeE1EE5EMPTYE
7328
7327
  _ZGVN3ada22url_search_params_iterISt4pairISt17basic_string_viewIcSt11char_traitsIcEES5_ELNS_27url_search_params_iter_typeE2EE5EMPTYE
7329
- _ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIbJEEEJNS2_INS_5LocalINS_5ValueEEEJEEENS2_IRKNS_17FastApiTypedArrayIhEEJEEESC_NS2_IRNS_22FastApiCallbackOptionsEJEEEEE5BuildEvE8instance
7330
7328
  _ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIbJEEEJNS2_INS_5LocalINS_5ValueEEEJEEENS2_IRKNS_17FastOneByteStringEJEEEEE5BuildEvE8instance
7331
7329
  _ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIbJEEEJNS2_INS_5LocalINS_5ValueEEEJEEENS2_IRKNS_17FastOneByteStringEJEEESB_EE5BuildEvE8instance
7332
7330
  _ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIdJEEEJNS2_INS_5LocalINS_5ValueEEEJEEEEE5BuildEvE8instance
@@ -51987,6 +51985,7 @@ _ZN4node10permission10Permission17EnablePermissionsEv
51987
51985
  _ZN4node10permission10Permission17ThrowAccessDeniedEPNS_11EnvironmentENS0_15PermissionScopeERKSt17basic_string_viewIcSt11char_traitsIcEE
51988
51986
  _ZN4node10permission10Permission18PermissionToStringENS0_15PermissionScopeE
51989
51987
  _ZN4node10permission10Permission18StringToPermissionERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
51988
+ _ZN4node10permission10Permission22AsyncThrowAccessDeniedEPNS_11EnvironmentEPNS_2fs9FSReqBaseENS0_15PermissionScopeERKSt17basic_string_viewIcSt11char_traitsIcEE
51990
51989
  _ZN4node10permission10Permission5ApplyEPNS_11EnvironmentERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EENS0_15PermissionScopeE
51991
51990
  _ZN4node10permission10PermissionC1Ev
51992
51991
  _ZN4node10permission10PermissionC2Ev
@@ -52001,6 +52000,7 @@ _ZN4node10permission12FSPermission9RadixTreeD2Ev
52001
52000
  _ZN4node10permission16WorkerPermission5ApplyEPNS_11EnvironmentERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EENS0_15PermissionScopeE
52002
52001
  _ZN4node10permission19InspectorPermission5ApplyEPNS_11EnvironmentERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EENS0_15PermissionScopeE
52003
52002
  _ZN4node10permission22ChildProcessPermission5ApplyEPNS_11EnvironmentERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EENS0_15PermissionScopeE
52003
+ _ZN4node10permission23CreateAccessDeniedErrorEPNS_11EnvironmentENS0_15PermissionScopeERKSt17basic_string_viewIcSt11char_traitsIcEE
52004
52004
  _ZN4node10permission26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
52005
52005
  _ZN4node10task_queue26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
52006
52006
  _ZN4node11AddressToJSEPNS_11EnvironmentEPK8sockaddrN2v85LocalINS5_6ObjectEEE
@@ -55076,7 +55076,6 @@ _ZN4node6crypto6Random10InitializeEPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEE
55076
55076
  _ZN4node6crypto6Random26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
55077
55077
  _ZN4node6crypto6Timing10InitializeEPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEE
55078
55078
  _ZN4node6crypto6Timing15TimingSafeEqualERKN2v820FunctionCallbackInfoINS2_5ValueEEE
55079
- _ZN4node6crypto6Timing19FastTimingSafeEqualEN2v85LocalINS2_5ValueEEERKNS2_17FastApiTypedArrayIhEES9_RNS2_22FastApiCallbackOptionsE
55080
55079
  _ZN4node6crypto6Timing26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
55081
55080
  _ZN4node6crypto6Verify10InitializeEPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEE
55082
55081
  _ZN4node6crypto6Verify10VerifyInitERKN2v820FunctionCallbackInfoINS2_5ValueEEE
@@ -56213,6 +56212,7 @@ _ZN4node9inspector19MainThreadInterface12RemoveObjectEi
56213
56212
  _ZN4node9inspector19MainThreadInterface16DispatchMessagesEv
56214
56213
  _ZN4node9inspector19MainThreadInterface17GetObjectIfExistsEi
56215
56214
  _ZN4node9inspector19MainThreadInterface20WaitForFrontendEventEv
56215
+ _ZN4node9inspector19MainThreadInterface27StopWaitingForFrontendEventEv
56216
56216
  _ZN4node9inspector19MainThreadInterface4PostESt10unique_ptrINS0_7RequestESt14default_deleteIS3_EE
56217
56217
  _ZN4node9inspector19MainThreadInterface9AddObjectEiSt10unique_ptrINS0_9DeletableESt14default_deleteIS3_EE
56218
56218
  _ZN4node9inspector19MainThreadInterface9GetHandleEv
@@ -56281,6 +56281,7 @@ _ZN4node9inspector5Agent19ConnectToMainThreadESt10unique_ptrINS0_24InspectorSess
56281
56281
  _ZN4node9inspector5Agent20RequestIoThreadStartEv
56282
56282
  _ZN4node9inspector5Agent21AllAsyncTasksCanceledEv
56283
56283
  _ZN4node9inspector5Agent23ReportUncaughtExceptionEN2v85LocalINS2_5ValueEEENS3_INS2_7MessageEEE
56284
+ _ZN4node9inspector5Agent23StopIfWaitingForConnectEv
56284
56285
  _ZN4node9inspector5Agent30PauseOnNextJavascriptStatementERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
56285
56286
  _ZN4node9inspector5Agent4StopEv
56286
56287
  _ZN4node9inspector5Agent5StartERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_12DebugOptionsESt10shared_ptrINS_15ExclusiveAccessINS_8HostPortENS_9MutexBaseINS_16LibuvMutexTraitsEEEEEEb
@@ -64087,11 +64088,7 @@ _ZN7simdutf37convert_utf16le_to_latin1_with_errorsEPKDsmPc
64087
64088
  _ZN7simdutf3BOM13bom_byte_sizeENS_13encoding_typeE
64088
64089
  _ZN7simdutf3BOM9check_bomEPKcm
64089
64090
  _ZN7simdutf3BOM9check_bomEPKhm
64090
- _ZN7simdutf8fallback14implementationD0Ev
64091
- _ZN7simdutf8fallback14implementationD1Ev
64092
- _ZN7simdutf8internal26unsupported_implementationC1Ev
64093
- _ZN7simdutf8internal26unsupported_implementationD0Ev
64094
- _ZN7simdutf8internal26unsupported_implementationD1Ev
64091
+ _ZN7simdutf8internal25get_unsupported_singletonEv
64095
64092
  _ZN7simdutf9to_stringB5cxx11ENS_13encoding_typeE
64096
64093
  _ZN7unibrow4Utf814CalculateValueEPKhmPm
64097
64094
  _ZN7unibrow4Utf816ValidateEncodingEPKhm
@@ -79389,7 +79386,6 @@ _ZZN2v88internal25TranslationOpcodeToStringENS0_17TranslationOpcodeEE5names
79389
79386
  _ZZN2v88internal26EphemeronTableUpdatingItem7ProcessEvE29trace_event_unique_atomic5057
79390
79387
  _ZZN2v88internal26TracingAccountingAllocator39UpdateMemoryTrafficAndReportMemoryUsageEmE29trace_event_unique_atomic3216
79391
79388
  _ZZN2v88internal27OptimizingCompileDispatcher11CompileTask11RunInternalEvE27trace_event_unique_atomic54
79392
- _ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIbJEEEJNS2_INS_5LocalINS_5ValueEEEJEEENS2_IRKNS_17FastApiTypedArrayIhEEJEEESC_NS2_IRNS_22FastApiCallbackOptionsEJEEEEE5BuildEvE8instance
79393
79389
  _ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIbJEEEJNS2_INS_5LocalINS_5ValueEEEJEEENS2_IRKNS_17FastOneByteStringEJEEEEE5BuildEvE8instance
79394
79390
  _ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIbJEEEJNS2_INS_5LocalINS_5ValueEEEJEEENS2_IRKNS_17FastOneByteStringEJEEESB_EE5BuildEvE8instance
79395
79391
  _ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIdJEEEJNS2_INS_5LocalINS_5ValueEEEJEEEEE5BuildEvE8instance
@@ -657,7 +657,11 @@ enum Flags : uint64_t {
657
657
  // This control is needed by embedders who may not want to initialize the V8
658
658
  // inspector in situations where one has already been created,
659
659
  // e.g. Blink's in Chromium.
660
- kNoCreateInspector = 1 << 9
660
+ kNoCreateInspector = 1 << 9,
661
+ // Controls where or not the InspectorAgent for this Environment should
662
+ // call StartDebugSignalHandler. This control is needed by embedders who may
663
+ // not want to allow other processes to start the V8 inspector.
664
+ kNoStartDebugSignalHandler = 1 << 10
661
665
  };
662
666
  } // namespace EnvironmentFlags
663
667
 
@@ -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 13
27
- #define NODE_PATCH_VERSION 1
26
+ #define NODE_MINOR_VERSION 15
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-aix-ppc64",
3
- "version": "v20.13.1",
3
+ "version": "v20.15.0",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"
@@ -142,6 +142,11 @@ is `delete`, the property will be removed entirely. If
142
142
  is `throw`, accesses to the property will throw an exception with the code
143
143
  `ERR_PROTO_ACCESS`.
144
144
  .
145
+ .It Fl -disable-wasm-trap-handler Ns = Ns Ar mode
146
+ Disable trap-handler-based WebAssembly bound checks and fall back to
147
+ inline bound checks so that WebAssembly can be run with limited virtual
148
+ memory.
149
+ .
145
150
  .It Fl -disallow-code-generation-from-strings
146
151
  Make built-in language features like `eval` and `new Function` that generate
147
152
  code from strings throw an exception instead. This does not affect the Node.js
@@ -282,6 +287,11 @@ and
282
287
  Default is
283
288
  .Sy stderr,http .
284
289
  .
290
+ .It Fl -inspect-wait Ns = Ns Ar [host:]port
291
+ Activate inspector on
292
+ .Ar host:port
293
+ and wait for debugger to be attached.
294
+ .
285
295
  .It Fl -inspect Ns = Ns Ar [host:]port
286
296
  Activate inspector on
287
297
  .Ar host:port .
@@ -425,6 +435,10 @@ Starts the Node.js command line test runner.
425
435
  The maximum number of test files that the test runner CLI will execute
426
436
  concurrently.
427
437
  .
438
+ .It Fl -test-force-exit
439
+ Configures the test runner to exit the process once all known tests have
440
+ finished executing even if the event loop would otherwise remain active.
441
+ .
428
442
  .It Fl -test-name-pattern
429
443
  A regular expression that configures the test runner to only execute tests
430
444
  whose name matches the provided pattern.
@@ -793,8 +807,3 @@ GitHub repository and issue tracker:
793
807
  IRC (general questions):
794
808
  .Sy "libera.chat #node.js"
795
809
  (unofficial)
796
- .
797
- .\"======================================================================
798
- .Sh AUTHORS
799
- Written and maintained by 1000+ contributors:
800
- .Sy https://github.com/nodejs/node/blob/HEAD/AUTHORS