node-linux-arm64 20.14.0 → 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 +191 -0
- package/README.md +16 -14
- package/bin/node +0 -0
- package/include/node/config.gypi +3 -0
- package/include/node/node.h +5 -1
- package/include/node/node_version.h +1 -1
- package/package.json +1 -1
- package/share/man/man1/node.1 +10 -5
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
</tr>
|
|
10
10
|
<tr>
|
|
11
11
|
<td>
|
|
12
|
+
<a href="#20.15.0">20.15.0</a><br/>
|
|
12
13
|
<a href="#20.14.0">20.14.0</a><br/>
|
|
13
14
|
<a href="#20.13.1">20.13.1</a><br/>
|
|
14
15
|
<a href="#20.13.0">20.13.0</a><br/>
|
|
@@ -60,6 +61,196 @@
|
|
|
60
61
|
* [io.js](CHANGELOG_IOJS.md)
|
|
61
62
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
62
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
|
+
|
|
63
254
|
<a id="20.14.0"></a>
|
|
64
255
|
|
|
65
256
|
## 2024-05-28, Version 20.14.0 '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
|
-
* **
|
|
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
|
package/include/node/config.gypi
CHANGED
|
@@ -351,6 +351,7 @@
|
|
|
351
351
|
'node_release_urlbase': 'https://nodejs.org/download/release/',
|
|
352
352
|
'node_section_ordering_info': '',
|
|
353
353
|
'node_shared': 'false',
|
|
354
|
+
'node_shared_ada': 'false',
|
|
354
355
|
'node_shared_brotli': 'false',
|
|
355
356
|
'node_shared_cares': 'false',
|
|
356
357
|
'node_shared_http_parser': 'false',
|
|
@@ -359,6 +360,8 @@
|
|
|
359
360
|
'node_shared_nghttp3': 'false',
|
|
360
361
|
'node_shared_ngtcp2': 'false',
|
|
361
362
|
'node_shared_openssl': 'false',
|
|
363
|
+
'node_shared_simdjson': 'false',
|
|
364
|
+
'node_shared_simdutf': 'false',
|
|
362
365
|
'node_shared_zlib': 'false',
|
|
363
366
|
'node_tag': '',
|
|
364
367
|
'node_target_type': 'executable',
|
package/include/node/node.h
CHANGED
|
@@ -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
|
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -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 .
|
|
@@ -797,8 +807,3 @@ GitHub repository and issue tracker:
|
|
|
797
807
|
IRC (general questions):
|
|
798
808
|
.Sy "libera.chat #node.js"
|
|
799
809
|
(unofficial)
|
|
800
|
-
.
|
|
801
|
-
.\"======================================================================
|
|
802
|
-
.Sh AUTHORS
|
|
803
|
-
Written and maintained by 1000+ contributors:
|
|
804
|
-
.Sy https://github.com/nodejs/node/blob/HEAD/AUTHORS
|