node-linux-arm64 22.17.0 → 22.18.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 +195 -0
- package/LICENSE +2 -2
- package/README.md +13 -7
- package/bin/node +0 -0
- package/include/node/common.gypi +2 -1
- package/include/node/config.gypi +1 -0
- package/include/node/node_version.h +1 -1
- package/include/node/zconf.h +1 -9
- package/include/node/zlib.h +12 -12
- package/package.json +1 -1
- package/share/man/man1/node.1 +16 -3
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
</tr>
|
|
10
10
|
<tr>
|
|
11
11
|
<td>
|
|
12
|
+
<a href="#22.18.0">22.18.0</a><br/>
|
|
13
|
+
<a href="#22.17.1">22.17.1</a><br/>
|
|
12
14
|
<a href="#22.17.0">22.17.0</a><br/>
|
|
13
15
|
<a href="#22.16.0">22.16.0</a><br/>
|
|
14
16
|
<a href="#22.15.1">22.15.1</a><br/>
|
|
@@ -61,6 +63,199 @@
|
|
|
61
63
|
* [io.js](CHANGELOG_IOJS.md)
|
|
62
64
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
63
65
|
|
|
66
|
+
<a id="22.18.0"></a>
|
|
67
|
+
|
|
68
|
+
## 2025-07-31, Version 22.18.0 'Jod' (LTS), @aduh95
|
|
69
|
+
|
|
70
|
+
### Notable Changes
|
|
71
|
+
|
|
72
|
+
#### Type stripping is enabled by default
|
|
73
|
+
|
|
74
|
+
Node.js will be able to execute TypeScript files without additional configuration:
|
|
75
|
+
|
|
76
|
+
```console
|
|
77
|
+
$ echo 'const foo: string = 'World'; console.log(`Hello ${foo}!`);' > file.ts
|
|
78
|
+
$ node file.ts
|
|
79
|
+
Hello World!
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
There are some limitations in the supported syntax documented at
|
|
83
|
+
<https://nodejs.org/api/typescript.html#type-stripping>.
|
|
84
|
+
|
|
85
|
+
This feature is experimental and is subject to change. Disable it by passing
|
|
86
|
+
`--no-experimental-strip-types` CLI flag.
|
|
87
|
+
|
|
88
|
+
Contributed by Marco Ippolito in [#56350](https://github.com/nodejs/node/pull/56350).
|
|
89
|
+
|
|
90
|
+
#### Other notable changes
|
|
91
|
+
|
|
92
|
+
* \[[`26f3711228`](https://github.com/nodejs/node/commit/26f3711228)] - **(SEMVER-MINOR)** **deps**: update amaro to 1.1.0 (Node.js GitHub Bot) [#56350](https://github.com/nodejs/node/pull/56350)
|
|
93
|
+
* \[[`d80ef2a71f`](https://github.com/nodejs/node/commit/d80ef2a71f)] - **(SEMVER-MINOR)** **doc**: add all watch-mode related flags to node.1 (Dario Piotrowicz) [#58719](https://github.com/nodejs/node/pull/58719)
|
|
94
|
+
* \[[`8ab24d21c9`](https://github.com/nodejs/node/commit/8ab24d21c9)] - **doc**: add islandryu to collaborators (Shima Ryuhei) [#58714](https://github.com/nodejs/node/pull/58714)
|
|
95
|
+
* \[[`430e66b9b8`](https://github.com/nodejs/node/commit/430e66b9b8)] - **(SEMVER-MINOR)** **esm**: implement `import.meta.main` (Joe) [#57804](https://github.com/nodejs/node/pull/57804)
|
|
96
|
+
* \[[`62f7926b6a`](https://github.com/nodejs/node/commit/62f7926b6a)] - **(SEMVER-MINOR)** **fs**: allow correct handling of burst in fs-events with AsyncIterator (Philipp Dunkel) [#58490](https://github.com/nodejs/node/pull/58490)
|
|
97
|
+
* \[[`65f19a00c3`](https://github.com/nodejs/node/commit/65f19a00c3)] - **(SEMVER-MINOR)** **permission**: propagate permission model flags on spawn (Rafael Gonzaga) [#58853](https://github.com/nodejs/node/pull/58853)
|
|
98
|
+
* \[[`ccca1517f9`](https://github.com/nodejs/node/commit/ccca1517f9)] - **(SEMVER-MINOR)** **sqlite**: add support for `readBigInts` option in db connection level (Miguel Marcondes Filho) [#58697](https://github.com/nodejs/node/pull/58697)
|
|
99
|
+
* \[[`48003e87e8`](https://github.com/nodejs/node/commit/48003e87e8)] - **(SEMVER-MINOR)** **src,permission**: add support to `permission.has(addon)` (Rafael Gonzaga) [#58951](https://github.com/nodejs/node/pull/58951)
|
|
100
|
+
* \[[`fe4290a0e6`](https://github.com/nodejs/node/commit/fe4290a0e6)] - **(SEMVER-MINOR)** **url**: add `fileURLToPathBuffer` API (James M Snell) [#58700](https://github.com/nodejs/node/pull/58700)
|
|
101
|
+
* \[[`4dc6b4c67a`](https://github.com/nodejs/node/commit/4dc6b4c67a)] - **(SEMVER-MINOR)** **watch**: add `--watch-kill-signal` flag (Dario Piotrowicz) [#58719](https://github.com/nodejs/node/pull/58719)
|
|
102
|
+
* \[[`8dbc6b210f`](https://github.com/nodejs/node/commit/8dbc6b210f)] - **(SEMVER-MINOR)** **worker**: make `Worker` async disposable (James M Snell) [#58385](https://github.com/nodejs/node/pull/58385)
|
|
103
|
+
|
|
104
|
+
### Commits
|
|
105
|
+
|
|
106
|
+
* \[[`b19ffebea7`](https://github.com/nodejs/node/commit/b19ffebea7)] - **assert**: remove dead code (Yoshiya Hinosawa) [#58760](https://github.com/nodejs/node/pull/58760)
|
|
107
|
+
* \[[`5bc828beae`](https://github.com/nodejs/node/commit/5bc828beae)] - **benchmark**: add source map and source map cache (Miguel Marcondes Filho) [#58125](https://github.com/nodejs/node/pull/58125)
|
|
108
|
+
* \[[`f7c16985a7`](https://github.com/nodejs/node/commit/f7c16985a7)] - **build**: disable v8\_enable\_pointer\_compression\_shared\_cage on non-64bit (Shelley Vohr) [#58867](https://github.com/nodejs/node/pull/58867)
|
|
109
|
+
* \[[`ba42c72f7f`](https://github.com/nodejs/node/commit/ba42c72f7f)] - **build**: option to use custom inspector\_protocol path (Shelley Vohr) [#58839](https://github.com/nodejs/node/pull/58839)
|
|
110
|
+
* \[[`4fd8911653`](https://github.com/nodejs/node/commit/4fd8911653)] - **build**: fix typo 'Stoage' to 'Storage' in help text (ganglike) [#58777](https://github.com/nodejs/node/pull/58777)
|
|
111
|
+
* \[[`114cd95919`](https://github.com/nodejs/node/commit/114cd95919)] - **crypto**: fix inclusion of OPENSSL\_IS\_BORINGSSL define (Shelley Vohr) [#58845](https://github.com/nodejs/node/pull/58845)
|
|
112
|
+
* \[[`6699c75eac`](https://github.com/nodejs/node/commit/6699c75eac)] - **crypto**: fix SHAKE128/256 breaking change introduced with OpenSSL 3.4 (Filip Skokan) [#58942](https://github.com/nodejs/node/pull/58942)
|
|
113
|
+
* \[[`f99aa748c0`](https://github.com/nodejs/node/commit/f99aa748c0)] - **deps**: upgrade npm to 10.9.3 (npm team) [#58847](https://github.com/nodejs/node/pull/58847)
|
|
114
|
+
* \[[`02e971190b`](https://github.com/nodejs/node/commit/02e971190b)] - **deps**: update sqlite to 3.50.2 (Node.js GitHub Bot) [#58882](https://github.com/nodejs/node/pull/58882)
|
|
115
|
+
* \[[`de2b85b5ae`](https://github.com/nodejs/node/commit/de2b85b5ae)] - **deps**: update googletest to 35b75a2 (Node.js GitHub Bot) [#58710](https://github.com/nodejs/node/pull/58710)
|
|
116
|
+
* \[[`e7591d7a19`](https://github.com/nodejs/node/commit/e7591d7a19)] - **deps**: update minimatch to 10.0.3 (Node.js GitHub Bot) [#58712](https://github.com/nodejs/node/pull/58712)
|
|
117
|
+
* \[[`8c61b96c43`](https://github.com/nodejs/node/commit/8c61b96c43)] - **deps**: update acorn to 8.15.0 (Node.js GitHub Bot) [#58711](https://github.com/nodejs/node/pull/58711)
|
|
118
|
+
* \[[`113f4e2d3c`](https://github.com/nodejs/node/commit/113f4e2d3c)] - **deps**: update sqlite to 3.50.1 (Node.js GitHub Bot) [#58630](https://github.com/nodejs/node/pull/58630)
|
|
119
|
+
* \[[`7ccd848995`](https://github.com/nodejs/node/commit/7ccd848995)] - **deps**: update simdjson to 3.13.0 (Node.js GitHub Bot) [#58629](https://github.com/nodejs/node/pull/58629)
|
|
120
|
+
* \[[`e9c51deb5c`](https://github.com/nodejs/node/commit/e9c51deb5c)] - **deps**: update zlib to 1.3.1-470d3a2 (Node.js GitHub Bot) [#58628](https://github.com/nodejs/node/pull/58628)
|
|
121
|
+
* \[[`26f3711228`](https://github.com/nodejs/node/commit/26f3711228)] - **(SEMVER-MINOR)** **deps**: update amaro to 1.1.0 (Node.js GitHub Bot) [#56350](https://github.com/nodejs/node/pull/56350)
|
|
122
|
+
* \[[`752dde182f`](https://github.com/nodejs/node/commit/752dde182f)] - **(SEMVER-MINOR)** **deps**: update amaro to 1.0.0 (Node.js GitHub Bot) [#56350](https://github.com/nodejs/node/pull/56350)
|
|
123
|
+
* \[[`258534d0dc`](https://github.com/nodejs/node/commit/258534d0dc)] - **(SEMVER-MINOR)** **deps**: update amaro to 0.5.3 (Node.js GitHub Bot) [#56350](https://github.com/nodejs/node/pull/56350)
|
|
124
|
+
* \[[`7fcf675503`](https://github.com/nodejs/node/commit/7fcf675503)] - **(SEMVER-MINOR)** **deps**: update amaro to 0.5.2 (Node.js GitHub Bot) [#56350](https://github.com/nodejs/node/pull/56350)
|
|
125
|
+
* \[[`81a10a67d5`](https://github.com/nodejs/node/commit/81a10a67d5)] - **(SEMVER-MINOR)** **deps**: update amaro to 0.5.1 (Marco Ippolito) [#56350](https://github.com/nodejs/node/pull/56350)
|
|
126
|
+
* \[[`25f8682a62`](https://github.com/nodejs/node/commit/25f8682a62)] - **(SEMVER-MINOR)** **deps**: update amaro to 0.5.0 (nodejs-github-bot) [#56350](https://github.com/nodejs/node/pull/56350)
|
|
127
|
+
* \[[`4baf2167e7`](https://github.com/nodejs/node/commit/4baf2167e7)] - **dns**: fix parse memory leaky (theanarkh) [#58973](https://github.com/nodejs/node/pull/58973)
|
|
128
|
+
* \[[`e8f4a7df22`](https://github.com/nodejs/node/commit/e8f4a7df22)] - **dns**: set timeout to 1000ms when timeout < 0 (theanarkh) [#58441](https://github.com/nodejs/node/pull/58441)
|
|
129
|
+
* \[[`1e373a0a25`](https://github.com/nodejs/node/commit/1e373a0a25)] - **doc**: update release key for aduh95 (Antoine du Hamel) [#58877](https://github.com/nodejs/node/pull/58877)
|
|
130
|
+
* \[[`d5c104246f`](https://github.com/nodejs/node/commit/d5c104246f)] - **doc**: remove broken link to permission model source code (Juan José) [#58972](https://github.com/nodejs/node/pull/58972)
|
|
131
|
+
* \[[`b8885a25ff`](https://github.com/nodejs/node/commit/b8885a25ff)] - **doc**: clarify details of TSC public and private meetings (James M Snell) [#58925](https://github.com/nodejs/node/pull/58925)
|
|
132
|
+
* \[[`aa05823b37`](https://github.com/nodejs/node/commit/aa05823b37)] - **doc**: mark stability markers consistent in `globals.md` (Antoine du Hamel) [#58932](https://github.com/nodejs/node/pull/58932)
|
|
133
|
+
* \[[`3856aee9b2`](https://github.com/nodejs/node/commit/3856aee9b2)] - **doc**: move "Core Promise APIs" to "Completed initiatives" (Antoine du Hamel) [#58934](https://github.com/nodejs/node/pull/58934)
|
|
134
|
+
* \[[`c2f9735422`](https://github.com/nodejs/node/commit/c2f9735422)] - **doc**: fix `fetch` subsections in `globals.md` (Antoine du Hamel) [#58933](https://github.com/nodejs/node/pull/58933)
|
|
135
|
+
* \[[`5f4c7a9d2d`](https://github.com/nodejs/node/commit/5f4c7a9d2d)] - **doc**: add missing `Class:` mentions (Antoine du Hamel) [#58931](https://github.com/nodejs/node/pull/58931)
|
|
136
|
+
* \[[`88ee38b37c`](https://github.com/nodejs/node/commit/88ee38b37c)] - **doc**: remove myself from security steward rotation (Michael Dawson) [#58927](https://github.com/nodejs/node/pull/58927)
|
|
137
|
+
* \[[`02031a9b0d`](https://github.com/nodejs/node/commit/02031a9b0d)] - **doc**: add ovflowd back to core collaborators (Claudio W.) [#58911](https://github.com/nodejs/node/pull/58911)
|
|
138
|
+
* \[[`9551fa3c8f`](https://github.com/nodejs/node/commit/9551fa3c8f)] - **doc**: update email address for Richard Lau (Richard Lau) [#58910](https://github.com/nodejs/node/pull/58910)
|
|
139
|
+
* \[[`cd6bc982c0`](https://github.com/nodejs/node/commit/cd6bc982c0)] - **doc**: update vm doc links (Chengzhong Wu) [#58885](https://github.com/nodejs/node/pull/58885)
|
|
140
|
+
* \[[`ce49303cd0`](https://github.com/nodejs/node/commit/ce49303cd0)] - **doc**: add missing comma in `child_process.md` (ronijames008) [#58862](https://github.com/nodejs/node/pull/58862)
|
|
141
|
+
* \[[`d80ef2a71f`](https://github.com/nodejs/node/commit/d80ef2a71f)] - **(SEMVER-MINOR)** **doc**: add all watch-mode related flags to node.1 (Dario Piotrowicz) [#58719](https://github.com/nodejs/node/pull/58719)
|
|
142
|
+
* \[[`f8fcb1c83a`](https://github.com/nodejs/node/commit/f8fcb1c83a)] - **doc**: fix jsdoc definition of assert.ifError() fn in lib/assert.js (jesh) [#58573](https://github.com/nodejs/node/pull/58573)
|
|
143
|
+
* \[[`28fddc04ca`](https://github.com/nodejs/node/commit/28fddc04ca)] - **doc**: add array type in http request headers (Michael Henrique) [#58049](https://github.com/nodejs/node/pull/58049)
|
|
144
|
+
* \[[`8bd698b688`](https://github.com/nodejs/node/commit/8bd698b688)] - **doc**: add missing colon to headers in `globals.md` (Aviv Keller) [#58825](https://github.com/nodejs/node/pull/58825)
|
|
145
|
+
* \[[`fa5818e3c1`](https://github.com/nodejs/node/commit/fa5818e3c1)] - **doc**: fix `stream.md` section order (Antoine du Hamel) [#58811](https://github.com/nodejs/node/pull/58811)
|
|
146
|
+
* \[[`2384bfdcbd`](https://github.com/nodejs/node/commit/2384bfdcbd)] - **doc**: fix stability 1.x links excluding the decimal digit (Dario Piotrowicz) [#58783](https://github.com/nodejs/node/pull/58783)
|
|
147
|
+
* \[[`4e9fe670c9`](https://github.com/nodejs/node/commit/4e9fe670c9)] - **doc**: fix wrong RFC number in http2 (Deokjin Kim) [#58753](https://github.com/nodejs/node/pull/58753)
|
|
148
|
+
* \[[`bbe4ad7351`](https://github.com/nodejs/node/commit/bbe4ad7351)] - **doc**: add history entry for TS support in hooks (Antoine du Hamel) [#58732](https://github.com/nodejs/node/pull/58732)
|
|
149
|
+
* \[[`ec60473ab1`](https://github.com/nodejs/node/commit/ec60473ab1)] - **doc**: run license-builder (github-actions\[bot]) [#58722](https://github.com/nodejs/node/pull/58722)
|
|
150
|
+
* \[[`8ab24d21c9`](https://github.com/nodejs/node/commit/8ab24d21c9)] - **doc**: add islandryu to collaborators (Shima Ryuhei) [#58714](https://github.com/nodejs/node/pull/58714)
|
|
151
|
+
* \[[`8c641105cd`](https://github.com/nodejs/node/commit/8c641105cd)] - **doc**: punctuation fix for Node-API versioning clarification (Jiacai Liu) [#58599](https://github.com/nodejs/node/pull/58599)
|
|
152
|
+
* \[[`133b10a0bb`](https://github.com/nodejs/node/commit/133b10a0bb)] - **doc**: add path rules and validation for export targets in package.json (0hm☘️) [#58604](https://github.com/nodejs/node/pull/58604)
|
|
153
|
+
* \[[`354a68c460`](https://github.com/nodejs/node/commit/354a68c460)] - **doc**: add history entries to `--input-type` section (Antoine du Hamel) [#56350](https://github.com/nodejs/node/pull/56350)
|
|
154
|
+
* \[[`430e66b9b8`](https://github.com/nodejs/node/commit/430e66b9b8)] - **(SEMVER-MINOR)** **esm**: implement import.meta.main (Joe) [#57804](https://github.com/nodejs/node/pull/57804)
|
|
155
|
+
* \[[`42c4ca6024`](https://github.com/nodejs/node/commit/42c4ca6024)] - **esm**: syncify default path of `ModuleLoader.load` (Jacob Smith) [#57419](https://github.com/nodejs/node/pull/57419)
|
|
156
|
+
* \[[`3ac8c686a3`](https://github.com/nodejs/node/commit/3ac8c686a3)] - **esm**: unwrap WebAssembly.Global on Wasm Namespaces (Guy Bedford) [#57525](https://github.com/nodejs/node/pull/57525)
|
|
157
|
+
* \[[`c7ebf2e245`](https://github.com/nodejs/node/commit/c7ebf2e245)] - **fs**: close dir before throwing if `options.bufferSize` is invalid (Livia Medeiros) [#58856](https://github.com/nodejs/node/pull/58856)
|
|
158
|
+
* \[[`38ffed8744`](https://github.com/nodejs/node/commit/38ffed8744)] - **fs**: special input `-1` on `chown`, `lchown` and `fchown` (Alex Yang) [#58836](https://github.com/nodejs/node/pull/58836)
|
|
159
|
+
* \[[`0e82f72a46`](https://github.com/nodejs/node/commit/0e82f72a46)] - **fs**: throw `ERR_INVALID_THIS` on illegal invocations (Livia Medeiros) [#58848](https://github.com/nodejs/node/pull/58848)
|
|
160
|
+
* \[[`141b2b1954`](https://github.com/nodejs/node/commit/141b2b1954)] - **fs**: make `Dir` disposers idempotent (René) [#58692](https://github.com/nodejs/node/pull/58692)
|
|
161
|
+
* \[[`dedd9d1961`](https://github.com/nodejs/node/commit/dedd9d1961)] - **fs**: avoid computing time coefficient constants in runtime (Livia Medeiros) [#58728](https://github.com/nodejs/node/pull/58728)
|
|
162
|
+
* \[[`a029a06b49`](https://github.com/nodejs/node/commit/a029a06b49)] - **fs**: add UV\_ENOSPC to list of things to pass to err directly (Jacky Zhao) [#56918](https://github.com/nodejs/node/pull/56918)
|
|
163
|
+
* \[[`62f7926b6a`](https://github.com/nodejs/node/commit/62f7926b6a)] - **(SEMVER-MINOR)** **fs**: allow correct handling of burst in fs-events with AsyncIterator (Philipp Dunkel) [#58490](https://github.com/nodejs/node/pull/58490)
|
|
164
|
+
* \[[`927d2e77f3`](https://github.com/nodejs/node/commit/927d2e77f3)] - **http**: fix keep-alive not timing out after post-request empty line (Shima Ryuhei) [#58178](https://github.com/nodejs/node/pull/58178)
|
|
165
|
+
* \[[`5cd8145612`](https://github.com/nodejs/node/commit/5cd8145612)] - **http2**: add diagnostics channel 'http2.server.stream.close' (Darshan Sen) [#58602](https://github.com/nodejs/node/pull/58602)
|
|
166
|
+
* \[[`0f2b31cba4`](https://github.com/nodejs/node/commit/0f2b31cba4)] - **inspector**: add protocol methods retrieving sent/received data (Chengzhong Wu) [#58645](https://github.com/nodejs/node/pull/58645)
|
|
167
|
+
* \[[`79428d8946`](https://github.com/nodejs/node/commit/79428d8946)] - **lib**: fix `getTypeScriptParsingMode` jsdoc (沈鸿飞) [#58681](https://github.com/nodejs/node/pull/58681)
|
|
168
|
+
* \[[`2c205d857c`](https://github.com/nodejs/node/commit/2c205d857c)] - **lib**: rename `validateInternalField` into `validateThisInternalField` (LiviaMedeiros) [#58765](https://github.com/nodejs/node/pull/58765)
|
|
169
|
+
* \[[`f67e927a5f`](https://github.com/nodejs/node/commit/f67e927a5f)] - **lib**: make `validateInternalField()` throw `ERR_INVALID_THIS` (LiviaMedeiros) [#58765](https://github.com/nodejs/node/pull/58765)
|
|
170
|
+
* \[[`914701d4f8`](https://github.com/nodejs/node/commit/914701d4f8)] - **lib,src**: support DOMException ser-des (Chengzhong Wu) [#58649](https://github.com/nodejs/node/pull/58649)
|
|
171
|
+
* \[[`12a75dca8b`](https://github.com/nodejs/node/commit/12a75dca8b)] - **meta**: bump step-security/harden-runner from 2.12.0 to 2.12.2 (dependabot\[bot]) [#58923](https://github.com/nodejs/node/pull/58923)
|
|
172
|
+
* \[[`0d56fec6f0`](https://github.com/nodejs/node/commit/0d56fec6f0)] - **meta**: bump github/codeql-action from 3.28.18 to 3.29.2 (dependabot\[bot]) [#58922](https://github.com/nodejs/node/pull/58922)
|
|
173
|
+
* \[[`7f4f6e0409`](https://github.com/nodejs/node/commit/7f4f6e0409)] - **meta**: add IlyasShabi to collaborators (Ilyas Shabi) [#58916](https://github.com/nodejs/node/pull/58916)
|
|
174
|
+
* \[[`50b62c9663`](https://github.com/nodejs/node/commit/50b62c9663)] - **meta**: add @nodejs/inspector as codeowner (Chengzhong Wu) [#58790](https://github.com/nodejs/node/pull/58790)
|
|
175
|
+
* \[[`2fc89892ab`](https://github.com/nodejs/node/commit/2fc89892ab)] - **module**: fix typescript import.meta.main (Marco Ippolito) [#58661](https://github.com/nodejs/node/pull/58661)
|
|
176
|
+
* \[[`bfc68c8ae8`](https://github.com/nodejs/node/commit/bfc68c8ae8)] - **module**: convert schema-only core module on `convertCJSFilenameToURL` (Alex Yang) [#58612](https://github.com/nodejs/node/pull/58612)
|
|
177
|
+
* \[[`54634f5e53`](https://github.com/nodejs/node/commit/54634f5e53)] - **module**: update tests for combined ambiguous module syntax error (Mert Can Altin) [#55874](https://github.com/nodejs/node/pull/55874)
|
|
178
|
+
* \[[`10eb3db4af`](https://github.com/nodejs/node/commit/10eb3db4af)] - **module**: allow cycles in require() in the CJS handling in ESM loader (Joyee Cheung) [#58598](https://github.com/nodejs/node/pull/58598)
|
|
179
|
+
* \[[`fe7994eb0c`](https://github.com/nodejs/node/commit/fe7994eb0c)] - **module**: improve typescript error message format (Marco Ippolito) [#56350](https://github.com/nodejs/node/pull/56350)
|
|
180
|
+
* \[[`c898491017`](https://github.com/nodejs/node/commit/c898491017)] - **(SEMVER-MINOR)** **module**: remove experimental warning from type stripping (Marco Ippolito) [#56350](https://github.com/nodejs/node/pull/56350)
|
|
181
|
+
* \[[`c07745a436`](https://github.com/nodejs/node/commit/c07745a436)] - **module**: refactor commonjs typescript loader (Marco Ippolito) [#56350](https://github.com/nodejs/node/pull/56350)
|
|
182
|
+
* \[[`8d1f5df313`](https://github.com/nodejs/node/commit/8d1f5df313)] - **(SEMVER-MINOR)** **module**: unflag --experimental-strip-types (Marco Ippolito) [#56350](https://github.com/nodejs/node/pull/56350)
|
|
183
|
+
* \[[`a8a1c9a960`](https://github.com/nodejs/node/commit/a8a1c9a960)] - **os**: fix GetInterfaceAddresses memory lieaky (theanarkh) [#58940](https://github.com/nodejs/node/pull/58940)
|
|
184
|
+
* \[[`65f19a00c3`](https://github.com/nodejs/node/commit/65f19a00c3)] - **(SEMVER-MINOR)** **permission**: propagate permission model flags on spawn (Rafael Gonzaga) [#58853](https://github.com/nodejs/node/pull/58853)
|
|
185
|
+
* \[[`f0a165d89f`](https://github.com/nodejs/node/commit/f0a165d89f)] - **repl**: fix eval errors thrown after close throwing `ERR_USE_AFTER_CLOSE` (Dario Piotrowicz) [#58791](https://github.com/nodejs/node/pull/58791)
|
|
186
|
+
* \[[`9ef1cd1607`](https://github.com/nodejs/node/commit/9ef1cd1607)] - **repl**: avoid deprecated `require.extensions` in tab completion (baki gul) [#58653](https://github.com/nodejs/node/pull/58653)
|
|
187
|
+
* \[[`22a4c60e08`](https://github.com/nodejs/node/commit/22a4c60e08)] - **repl**: fix tab completion not working with computer string properties (Dario Piotrowicz) [#58709](https://github.com/nodejs/node/pull/58709)
|
|
188
|
+
* \[[`ccca1517f9`](https://github.com/nodejs/node/commit/ccca1517f9)] - **(SEMVER-MINOR)** **sqlite**: add support for readBigInts option in db connection level (Miguel Marcondes Filho) [#58697](https://github.com/nodejs/node/pull/58697)
|
|
189
|
+
* \[[`690525881e`](https://github.com/nodejs/node/commit/690525881e)] - **src**: simplify adding fast APIs to ExternalReferenceRegistry (René) [#58896](https://github.com/nodejs/node/pull/58896)
|
|
190
|
+
* \[[`a381b4d990`](https://github.com/nodejs/node/commit/a381b4d990)] - **src**: remove fast API for InternalModuleStat (Joyee Cheung) [#58489](https://github.com/nodejs/node/pull/58489)
|
|
191
|
+
* \[[`390654e996`](https://github.com/nodejs/node/commit/390654e996)] - **src**: fix internalModuleStat v8 fast path (Yagiz Nizipli) [#58054](https://github.com/nodejs/node/pull/58054)
|
|
192
|
+
* \[[`b722647572`](https://github.com/nodejs/node/commit/b722647572)] - **src**: fix -Wunreachable-code in src/node\_api.cc (Shelley Vohr) [#58901](https://github.com/nodejs/node/pull/58901)
|
|
193
|
+
* \[[`6d1fe67f56`](https://github.com/nodejs/node/commit/6d1fe67f56)] - **src**: -Wunreachable-code error in crypto\_context.cc (Shelley Vohr) [#58901](https://github.com/nodejs/node/pull/58901)
|
|
194
|
+
* \[[`2d8e65c6db`](https://github.com/nodejs/node/commit/2d8e65c6db)] - **src**: fix -Wunreachable-code-return in src/node\_contextify.cc (Shelley Vohr) [#58901](https://github.com/nodejs/node/pull/58901)
|
|
195
|
+
* \[[`e07adb3b18`](https://github.com/nodejs/node/commit/e07adb3b18)] - **src**: cleanup uv\_fs\_req before uv\_fs\_stat on existSync (RafaelGSS) [#58915](https://github.com/nodejs/node/pull/58915)
|
|
196
|
+
* \[[`6b30c0a511`](https://github.com/nodejs/node/commit/6b30c0a511)] - **src**: -Wmismatched-new-delete in debug\_utils.cc (Shelley Vohr) [#58844](https://github.com/nodejs/node/pull/58844)
|
|
197
|
+
* \[[`74ef07f2e7`](https://github.com/nodejs/node/commit/74ef07f2e7)] - **src**: add FromV8Value\<T>() for integral and enum types (Aditi) [#57931](https://github.com/nodejs/node/pull/57931)
|
|
198
|
+
* \[[`28bf6ed87d`](https://github.com/nodejs/node/commit/28bf6ed87d)] - **src**: pass resource on permission checks for spawn (Rafael Gonzaga) [#58758](https://github.com/nodejs/node/pull/58758)
|
|
199
|
+
* \[[`daf65d479b`](https://github.com/nodejs/node/commit/daf65d479b)] - **src**: replace std::array with static arrays in contextify (Mert Can Altin) [#58580](https://github.com/nodejs/node/pull/58580)
|
|
200
|
+
* \[[`9cb671fdb1`](https://github.com/nodejs/node/commit/9cb671fdb1)] - **src**: add new CopyUtimes function to reduce code duplication (Dario Piotrowicz) [#58625](https://github.com/nodejs/node/pull/58625)
|
|
201
|
+
* \[[`e515eb861c`](https://github.com/nodejs/node/commit/e515eb861c)] - **src**: replace V8 Fast API todo comment with note comment (Dario Piotrowicz) [#58614](https://github.com/nodejs/node/pull/58614)
|
|
202
|
+
* \[[`48003e87e8`](https://github.com/nodejs/node/commit/48003e87e8)] - **(SEMVER-MINOR)** **src,permission**: add support to permission.has(addon) (Rafael Gonzaga) [#58951](https://github.com/nodejs/node/pull/58951)
|
|
203
|
+
* \[[`72f75bb976`](https://github.com/nodejs/node/commit/72f75bb976)] - **src,permission**: enhance permission model debug (Rafael Gonzaga) [#58898](https://github.com/nodejs/node/pull/58898)
|
|
204
|
+
* \[[`66fccc252b`](https://github.com/nodejs/node/commit/66fccc252b)] - **(SEMVER-MINOR)** **test**: add test for async disposable worker thread (James M Snell) [#58385](https://github.com/nodejs/node/pull/58385)
|
|
205
|
+
* \[[`43d2ad8599`](https://github.com/nodejs/node/commit/43d2ad8599)] - **test**: deflake test-runner-watch-mode-kill-signal (Dario Piotrowicz) [#58952](https://github.com/nodejs/node/pull/58952)
|
|
206
|
+
* \[[`7c54085698`](https://github.com/nodejs/node/commit/7c54085698)] - **test**: add known issue tests for recursive readdir calls with Buffer path (Dario Piotrowicz) [#58893](https://github.com/nodejs/node/pull/58893)
|
|
207
|
+
* \[[`cd2a5d9a51`](https://github.com/nodejs/node/commit/cd2a5d9a51)] - **test**: add known issue tests for fs.cp (James M Snell) [#58883](https://github.com/nodejs/node/pull/58883)
|
|
208
|
+
* \[[`26072a7953`](https://github.com/nodejs/node/commit/26072a7953)] - **test**: add tests to ensure that node.1 is kept in sync with cli.md (Dario Piotrowicz) [#58878](https://github.com/nodejs/node/pull/58878)
|
|
209
|
+
* \[[`3fd187f559`](https://github.com/nodejs/node/commit/3fd187f559)] - **test**: replace `.filter()[0]` with `.find()` (Livia Medeiros) [#58872](https://github.com/nodejs/node/pull/58872)
|
|
210
|
+
* \[[`0d538abb15`](https://github.com/nodejs/node/commit/0d538abb15)] - **test**: remove reliance on in-tree `deps/undici` (Richard Lau) [#58866](https://github.com/nodejs/node/pull/58866)
|
|
211
|
+
* \[[`e24dede403`](https://github.com/nodejs/node/commit/e24dede403)] - **test**: close dirs in `fs-opendir` test (Livia Medeiros) [#58855](https://github.com/nodejs/node/pull/58855)
|
|
212
|
+
* \[[`ac6b8222e6`](https://github.com/nodejs/node/commit/ac6b8222e6)] - **test**: correct SIMD support comment (Richard Lau) [#58767](https://github.com/nodejs/node/pull/58767)
|
|
213
|
+
* \[[`9d3e451181`](https://github.com/nodejs/node/commit/9d3e451181)] - **test**: add tests for REPL custom evals (Dario Piotrowicz) [#57850](https://github.com/nodejs/node/pull/57850)
|
|
214
|
+
* \[[`17a3246718`](https://github.com/nodejs/node/commit/17a3246718)] - **test**: reduce the use of private symbols in test-events-once.js (Yoshiya Hinosawa) [#58685](https://github.com/nodejs/node/pull/58685)
|
|
215
|
+
* \[[`bbf33efcd0`](https://github.com/nodejs/node/commit/bbf33efcd0)] - **test**: use `common.skipIfInspectorDisabled()` to skip tests (Dario Piotrowicz) [#58675](https://github.com/nodejs/node/pull/58675)
|
|
216
|
+
* \[[`d6660baff7`](https://github.com/nodejs/node/commit/d6660baff7)] - **test**: update WPT for dom/abort to dc928169ee (Node.js GitHub Bot) [#58644](https://github.com/nodejs/node/pull/58644)
|
|
217
|
+
* \[[`6d9d5deb44`](https://github.com/nodejs/node/commit/6d9d5deb44)] - **test**: split indirect eval import tests (Chengzhong Wu) [#58637](https://github.com/nodejs/node/pull/58637)
|
|
218
|
+
* \[[`abd5b5fd20`](https://github.com/nodejs/node/commit/abd5b5fd20)] - **test**: deflake async-hooks/test-improper-order on AIX (Baki Gul) [#58567](https://github.com/nodejs/node/pull/58567)
|
|
219
|
+
* \[[`3fc630e7cf`](https://github.com/nodejs/node/commit/3fc630e7cf)] - **test**: close FileHandle objects in tests explicitly (James M Snell) [#58615](https://github.com/nodejs/node/pull/58615)
|
|
220
|
+
* \[[`7f0560dc4b`](https://github.com/nodejs/node/commit/7f0560dc4b)] - **test**: skip broken sea on rhel8 (Marco Ippolito) [#58914](https://github.com/nodejs/node/pull/58914)
|
|
221
|
+
* \[[`898e68a915`](https://github.com/nodejs/node/commit/898e68a915)] - **test**: save the config file in a temporary directory (Luigi Pinca) [#58799](https://github.com/nodejs/node/pull/58799)
|
|
222
|
+
* \[[`9f2132a4f6`](https://github.com/nodejs/node/commit/9f2132a4f6)] - **test**: deflake test-config-file (Luigi Pinca) [#58799](https://github.com/nodejs/node/pull/58799)
|
|
223
|
+
* \[[`f1b74cff9a`](https://github.com/nodejs/node/commit/f1b74cff9a)] - **test**: skip tests failing when run under root (Livia Medeiros) [#58610](https://github.com/nodejs/node/pull/58610)
|
|
224
|
+
* \[[`4b0ee14a97`](https://github.com/nodejs/node/commit/4b0ee14a97)] - **tools**: bump the eslint group in /tools/eslint with 6 updates (dependabot\[bot]) [#58921](https://github.com/nodejs/node/pull/58921)
|
|
225
|
+
* \[[`a84935fb0e`](https://github.com/nodejs/node/commit/a84935fb0e)] - **tools**: update inspector\_protocol to 69d69dd (Shelley Vohr) [#58900](https://github.com/nodejs/node/pull/58900)
|
|
226
|
+
* \[[`af805186cd`](https://github.com/nodejs/node/commit/af805186cd)] - **tools**: update gyp-next to 0.20.2 (Node.js GitHub Bot) [#58788](https://github.com/nodejs/node/pull/58788)
|
|
227
|
+
* \[[`a2d2d36bb1`](https://github.com/nodejs/node/commit/a2d2d36bb1)] - **tools**: make nodedownload module compatible with Python 3.14 (Lumír 'Frenzy' Balhar) [#58752](https://github.com/nodejs/node/pull/58752)
|
|
228
|
+
* \[[`cc8b9aa43d`](https://github.com/nodejs/node/commit/cc8b9aa43d)] - **tools**: include toolchain.gypi in abseil.gyp (Chengzhong Wu) [#58678](https://github.com/nodejs/node/pull/58678)
|
|
229
|
+
* \[[`fbbf49a7d3`](https://github.com/nodejs/node/commit/fbbf49a7d3)] - **tools**: bump `brace-expansion` in `/tools/clang-format` (dependabot\[bot]) [#58699](https://github.com/nodejs/node/pull/58699)
|
|
230
|
+
* \[[`8db92a41c5`](https://github.com/nodejs/node/commit/8db92a41c5)] - **tools**: bump brace-expansion from 1.1.11 to 1.1.12 in /tools/eslint (dependabot\[bot]) [#58698](https://github.com/nodejs/node/pull/58698)
|
|
231
|
+
* \[[`3a099cf88f`](https://github.com/nodejs/node/commit/3a099cf88f)] - **tools**: switch to `@stylistic/eslint-plugin` (Michaël Zasso) [#58623](https://github.com/nodejs/node/pull/58623)
|
|
232
|
+
* \[[`9798511e7c`](https://github.com/nodejs/node/commit/9798511e7c)] - **tools**: remove config.status under `make distclean` (René) [#58603](https://github.com/nodejs/node/pull/58603)
|
|
233
|
+
* \[[`011290a4eb`](https://github.com/nodejs/node/commit/011290a4eb)] - **tools**: edit commit-queue workflow file (Antoine du Hamel) [#58667](https://github.com/nodejs/node/pull/58667)
|
|
234
|
+
* \[[`a7406f56da`](https://github.com/nodejs/node/commit/a7406f56da)] - **tools**: improve release proposal linter (Antoine du Hamel) [#58647](https://github.com/nodejs/node/pull/58647)
|
|
235
|
+
* \[[`c855310f83`](https://github.com/nodejs/node/commit/c855310f83)] - **tools,doc**: move more MDN links to types (Antoine du Hamel) [#58930](https://github.com/nodejs/node/pull/58930)
|
|
236
|
+
* \[[`805239c824`](https://github.com/nodejs/node/commit/805239c824)] - **typings**: add Atomics primordials (Renegade334) [#58577](https://github.com/nodejs/node/pull/58577)
|
|
237
|
+
* \[[`d28b2aa0a2`](https://github.com/nodejs/node/commit/d28b2aa0a2)] - **typings**: add ZSTD\_COMPRESS, ZSTD\_DECOMPRESS to internalBinding (Meghan Denny) [#58655](https://github.com/nodejs/node/pull/58655)
|
|
238
|
+
* \[[`fe4290a0e6`](https://github.com/nodejs/node/commit/fe4290a0e6)] - **(SEMVER-MINOR)** **url**: add fileURLToPathBuffer API (James M Snell) [#58700](https://github.com/nodejs/node/pull/58700)
|
|
239
|
+
* \[[`db648b92c1`](https://github.com/nodejs/node/commit/db648b92c1)] - **util**: inspect: do not crash on an Error stack pointing to itself (Sam Verschueren) [#58196](https://github.com/nodejs/node/pull/58196)
|
|
240
|
+
* \[[`791ecfac14`](https://github.com/nodejs/node/commit/791ecfac14)] - **v8**: fix missing callback in heap utils destroy (Ruben Bridgewater) [#58846](https://github.com/nodejs/node/pull/58846)
|
|
241
|
+
* \[[`4dc6b4c67a`](https://github.com/nodejs/node/commit/4dc6b4c67a)] - **(SEMVER-MINOR)** **watch**: add `--watch-kill-signal` flag (Dario Piotrowicz) [#58719](https://github.com/nodejs/node/pull/58719)
|
|
242
|
+
* \[[`8dbc6b210f`](https://github.com/nodejs/node/commit/8dbc6b210f)] - **(SEMVER-MINOR)** **worker**: make Worker async disposable (James M Snell) [#58385](https://github.com/nodejs/node/pull/58385)
|
|
243
|
+
|
|
244
|
+
<a id="22.17.1"></a>
|
|
245
|
+
|
|
246
|
+
## 2025-07-15, Version 22.17.1 'Jod' (LTS), @RafaelGSS
|
|
247
|
+
|
|
248
|
+
This is a security release.
|
|
249
|
+
|
|
250
|
+
### Notable Changes
|
|
251
|
+
|
|
252
|
+
* (CVE-2025-27210) Windows Device Names (CON, PRN, AUX) Bypass Path Traversal Protection in path.normalize()
|
|
253
|
+
|
|
254
|
+
### Commits
|
|
255
|
+
|
|
256
|
+
* \[[`8cf5d66ab7`](https://github.com/nodejs/node/commit/8cf5d66ab7)] - **(CVE-2025-27210)** **lib**: handle all windows reserved driver name (RafaelGSS) [nodejs-private/node-private#721](https://github.com/nodejs-private/node-private/pull/721)
|
|
257
|
+
* \[[`9c0cb487ec`](https://github.com/nodejs/node/commit/9c0cb487ec)] - **win,build**: fix MSVS v17.14 compilation issue (StefanStojanovic) [#58902](https://github.com/nodejs/node/pull/58902)
|
|
258
|
+
|
|
64
259
|
<a id="22.17.0"></a>
|
|
65
260
|
|
|
66
261
|
## 2025-06-24, Version 22.17.0 'Jod' (LTS), @aduh95
|
package/LICENSE
CHANGED
|
@@ -1545,9 +1545,9 @@ The externally maintained libraries used by Node.js are:
|
|
|
1545
1545
|
- zlib, located at deps/zlib, is licensed as follows:
|
|
1546
1546
|
"""
|
|
1547
1547
|
zlib.h -- interface of the 'zlib' general purpose compression library
|
|
1548
|
-
version 1.3.
|
|
1548
|
+
version 1.3.1, January 22nd, 2024
|
|
1549
1549
|
|
|
1550
|
-
Copyright (C) 1995-
|
|
1550
|
+
Copyright (C) 1995-2024 Jean-loup Gailly and Mark Adler
|
|
1551
1551
|
|
|
1552
1552
|
This software is provided 'as-is', without any express or implied
|
|
1553
1553
|
warranty. In no event will the authors be held liable for any damages
|
package/README.md
CHANGED
|
@@ -187,7 +187,7 @@ For information about the governance of the Node.js project, see
|
|
|
187
187
|
* [RaisinTen](https://github.com/RaisinTen) -
|
|
188
188
|
**Darshan Sen** <<raisinten@gmail.com>> (he/him)
|
|
189
189
|
* [richardlau](https://github.com/richardlau) -
|
|
190
|
-
**Richard Lau** <<
|
|
190
|
+
**Richard Lau** <<richard.lau@ibm.com>>
|
|
191
191
|
* [ronag](https://github.com/ronag) -
|
|
192
192
|
**Robert Nagy** <<ronagy@icloud.com>>
|
|
193
193
|
* [ruyadorno](https://github.com/ruyadorno) -
|
|
@@ -355,6 +355,10 @@ For information about the governance of the Node.js project, see
|
|
|
355
355
|
**Harshitha K P** <<harshitha014@gmail.com>> (she/her)
|
|
356
356
|
* [himself65](https://github.com/himself65) -
|
|
357
357
|
**Zeyu "Alex" Yang** <<himself65@outlook.com>> (he/him)
|
|
358
|
+
* [IlyasShabi](https://github.com/IlyasShabi) -
|
|
359
|
+
**Ilyas Shabi** <<ilyasshabi94@gmail.com>> (he/him)
|
|
360
|
+
* [islandryu](https://github.com/islandryu) -
|
|
361
|
+
**Ryuhei Shima** <<shimaryuhei@gmail.com>> (he/him)
|
|
358
362
|
* [jakecastelli](https://github.com/jakecastelli) -
|
|
359
363
|
**Jake Yuesong Li** <<jake.yuesong@gmail.com>> (he/him)
|
|
360
364
|
* [JakobJingleheimer](https://github.com/JakobJingleheimer) -
|
|
@@ -407,6 +411,8 @@ For information about the governance of the Node.js project, see
|
|
|
407
411
|
**Moshe Atlow** <<moshe@atlow.co.il>> (he/him)
|
|
408
412
|
* [MrJithil](https://github.com/MrJithil) -
|
|
409
413
|
**Jithil P Ponnan** <<jithil@outlook.com>> (he/him)
|
|
414
|
+
* [ovflowd](https://github.com/ovflowd) -
|
|
415
|
+
**Claudio Wunder** <<cwunder@gnome.org>> (he/they)
|
|
410
416
|
* [panva](https://github.com/panva) -
|
|
411
417
|
**Filip Skokan** <<panva.ip@gmail.com>> (he/him) - [Support me](https://github.com/sponsors/panva)
|
|
412
418
|
* [pimterry](https://github.com/pimterry) -
|
|
@@ -422,7 +428,7 @@ For information about the governance of the Node.js project, see
|
|
|
422
428
|
* [RaisinTen](https://github.com/RaisinTen) -
|
|
423
429
|
**Darshan Sen** <<raisinten@gmail.com>> (he/him) - [Support me](https://github.com/sponsors/RaisinTen)
|
|
424
430
|
* [richardlau](https://github.com/richardlau) -
|
|
425
|
-
**Richard Lau** <<
|
|
431
|
+
**Richard Lau** <<richard.lau@ibm.com>>
|
|
426
432
|
* [rluvaton](https://github.com/rluvaton) -
|
|
427
433
|
**Raz Luvaton** <<rluvaton@gmail.com>> (he/him)
|
|
428
434
|
* [ronag](https://github.com/ronag) -
|
|
@@ -635,8 +641,6 @@ For information about the governance of the Node.js project, see
|
|
|
635
641
|
**Alexis Campailla** <<orangemocha@nodejs.org>>
|
|
636
642
|
* [othiym23](https://github.com/othiym23) -
|
|
637
643
|
**Forrest L Norvell** <<ogd@aoaioxxysz.net>> (they/them/themself)
|
|
638
|
-
* [ovflowd](https://github.com/ovflowd) -
|
|
639
|
-
**Claudio Wunder** <<cwunder@gnome.org>> (he/they)
|
|
640
644
|
* [oyyd](https://github.com/oyyd) -
|
|
641
645
|
**Ouyang Yadong** <<oyydoibh@gmail.com>> (he/him)
|
|
642
646
|
* [petkaantonov](https://github.com/petkaantonov) -
|
|
@@ -786,7 +790,7 @@ responding to new issues.
|
|
|
786
790
|
Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys):
|
|
787
791
|
|
|
788
792
|
* **Antoine du Hamel** <<duhamelantoine1995@gmail.com>>
|
|
789
|
-
`
|
|
793
|
+
`5BE8A3F6C8A5C01D106C0AD820B1A390B168D356`
|
|
790
794
|
* **Juan José Arboleda** <<soyjuanarbol@gmail.com>>
|
|
791
795
|
`DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7`
|
|
792
796
|
* **Marco Ippolito** <<marcoippolito54@gmail.com>>
|
|
@@ -795,7 +799,7 @@ Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys):
|
|
|
795
799
|
`8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600`
|
|
796
800
|
* **Rafael Gonzaga** <<rafael.nunu@hotmail.com>>
|
|
797
801
|
`890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4`
|
|
798
|
-
* **Richard Lau** <<
|
|
802
|
+
* **Richard Lau** <<richard.lau@ibm.com>>
|
|
799
803
|
`C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C`
|
|
800
804
|
* **Ruy Adorno** <<ruyadorno@hotmail.com>>
|
|
801
805
|
`108F52B48DB57BB0CC439B2997B01419BD92F80A`
|
|
@@ -806,7 +810,7 @@ To import the full set of trusted release keys (including subkeys possibly used
|
|
|
806
810
|
to sign releases):
|
|
807
811
|
|
|
808
812
|
```bash
|
|
809
|
-
gpg --keyserver hkps://keys.openpgp.org --recv-keys
|
|
813
|
+
gpg --keyserver hkps://keys.openpgp.org --recv-keys 5BE8A3F6C8A5C01D106C0AD820B1A390B168D356 # Antoine du Hamel
|
|
810
814
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 # Juan José Arboleda
|
|
811
815
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys CC68F5A3106FF448322E48ED27F5E38D5B0A215F # Marco Ippolito
|
|
812
816
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 # Michaël Zasso
|
|
@@ -823,6 +827,8 @@ verify a downloaded file.
|
|
|
823
827
|
|
|
824
828
|
<summary>Other keys used to sign some previous releases</summary>
|
|
825
829
|
|
|
830
|
+
* **Antoine du Hamel** <<duhamelantoine1995@gmail.com>>
|
|
831
|
+
`C0D6248439F1D5604AAFFB4021D900FFDB233756`
|
|
826
832
|
* **Beth Griggs** <<bethanyngriggs@gmail.com>>
|
|
827
833
|
`4ED778F539E3634C779C87C6D7062848A1AB005C`
|
|
828
834
|
* **Bryan English** <<bryan@bryanenglish.com>>
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/common.gypi
CHANGED
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
|
|
39
39
|
# Reset this number to 0 on major V8 upgrades.
|
|
40
40
|
# Increment by one for each non-official patch applied to deps/v8.
|
|
41
|
-
'v8_embedder_string': '-node.
|
|
41
|
+
'v8_embedder_string': '-node.27',
|
|
42
42
|
|
|
43
43
|
##### V8 defaults for Node.js #####
|
|
44
44
|
|
|
@@ -115,6 +115,7 @@
|
|
|
115
115
|
# V8 pointer compression only supports 64bit architectures.
|
|
116
116
|
['target_arch in "arm ia32 mips mipsel ppc"', {
|
|
117
117
|
'v8_enable_pointer_compression': 0,
|
|
118
|
+
'v8_enable_pointer_compression_shared_cage': 0,
|
|
118
119
|
'v8_enable_31bit_smis_on_64bit_arch': 0,
|
|
119
120
|
'v8_enable_external_code_space': 0,
|
|
120
121
|
'v8_enable_sandbox': 0
|
package/include/node/config.gypi
CHANGED
|
@@ -366,6 +366,7 @@
|
|
|
366
366
|
'lib/internal/webstreams/util.js',
|
|
367
367
|
'lib/internal/webstreams/writablestream.js',
|
|
368
368
|
'lib/internal/worker.js',
|
|
369
|
+
'lib/internal/worker/clone_dom_exception.js',
|
|
369
370
|
'lib/internal/worker/io.js',
|
|
370
371
|
'lib/internal/worker/js_transferable.js',
|
|
371
372
|
'lib/internal/worker/messaging.js',
|
package/include/node/zconf.h
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* zconf.h -- configuration of the zlib compression library
|
|
2
|
-
* Copyright (C) 1995-
|
|
2
|
+
* Copyright (C) 1995-2024 Jean-loup Gailly, Mark Adler
|
|
3
3
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -312,14 +312,6 @@
|
|
|
312
312
|
# endif
|
|
313
313
|
#endif
|
|
314
314
|
|
|
315
|
-
#ifndef Z_ARG /* function prototypes for stdarg */
|
|
316
|
-
# if defined(STDC) || defined(Z_HAVE_STDARG_H)
|
|
317
|
-
# define Z_ARG(args) args
|
|
318
|
-
# else
|
|
319
|
-
# define Z_ARG(args) ()
|
|
320
|
-
# endif
|
|
321
|
-
#endif
|
|
322
|
-
|
|
323
315
|
/* The following definitions for FAR are needed only for MSDOS mixed
|
|
324
316
|
* model programming (small or medium model with some far allocations).
|
|
325
317
|
* This was tested only with MSC; for other MSDOS compilers you may have
|
package/include/node/zlib.h
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* zlib.h -- interface of the 'zlib' general purpose compression library
|
|
2
|
-
version 1.3.
|
|
2
|
+
version 1.3.1, January 22nd, 2024
|
|
3
3
|
|
|
4
|
-
Copyright (C) 1995-
|
|
4
|
+
Copyright (C) 1995-2024 Jean-loup Gailly and Mark Adler
|
|
5
5
|
|
|
6
6
|
This software is provided 'as-is', without any express or implied
|
|
7
7
|
warranty. In no event will the authors be held liable for any damages
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
extern "C" {
|
|
38
38
|
#endif
|
|
39
39
|
|
|
40
|
-
#define ZLIB_VERSION "1.3.
|
|
41
|
-
#define ZLIB_VERNUM
|
|
40
|
+
#define ZLIB_VERSION "1.3.1"
|
|
41
|
+
#define ZLIB_VERNUM 0x1310
|
|
42
42
|
#define ZLIB_VER_MAJOR 1
|
|
43
43
|
#define ZLIB_VER_MINOR 3
|
|
44
|
-
#define ZLIB_VER_REVISION
|
|
45
|
-
#define ZLIB_VER_SUBREVISION
|
|
44
|
+
#define ZLIB_VER_REVISION 1
|
|
45
|
+
#define ZLIB_VER_SUBREVISION 0
|
|
46
46
|
|
|
47
47
|
/*
|
|
48
48
|
The 'zlib' compression library provides in-memory compression and
|
|
@@ -935,10 +935,10 @@ ZEXTERN int ZEXPORT inflateSync(z_streamp strm);
|
|
|
935
935
|
inflateSync returns Z_OK if a possible full flush point has been found,
|
|
936
936
|
Z_BUF_ERROR if no more input was provided, Z_DATA_ERROR if no flush point
|
|
937
937
|
has been found, or Z_STREAM_ERROR if the stream structure was inconsistent.
|
|
938
|
-
In the success case, the application may save the current
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
938
|
+
In the success case, the application may save the current value of total_in
|
|
939
|
+
which indicates where valid compressed data was found. In the error case,
|
|
940
|
+
the application may repeatedly call inflateSync, providing more input each
|
|
941
|
+
time, until success or end of the input data.
|
|
942
942
|
*/
|
|
943
943
|
|
|
944
944
|
ZEXTERN int ZEXPORT inflateCopy(z_streamp dest,
|
|
@@ -1757,14 +1757,14 @@ ZEXTERN uLong ZEXPORT crc32_combine(uLong crc1, uLong crc2, z_off_t len2);
|
|
|
1757
1757
|
seq1 and seq2 with lengths len1 and len2, CRC-32 check values were
|
|
1758
1758
|
calculated for each, crc1 and crc2. crc32_combine() returns the CRC-32
|
|
1759
1759
|
check value of seq1 and seq2 concatenated, requiring only crc1, crc2, and
|
|
1760
|
-
len2.
|
|
1760
|
+
len2. len2 must be non-negative.
|
|
1761
1761
|
*/
|
|
1762
1762
|
|
|
1763
1763
|
/*
|
|
1764
1764
|
ZEXTERN uLong ZEXPORT crc32_combine_gen(z_off_t len2);
|
|
1765
1765
|
|
|
1766
1766
|
Return the operator corresponding to length len2, to be used with
|
|
1767
|
-
crc32_combine_op().
|
|
1767
|
+
crc32_combine_op(). len2 must be non-negative.
|
|
1768
1768
|
*/
|
|
1769
1769
|
|
|
1770
1770
|
ZEXTERN uLong ZEXPORT crc32_combine_op(uLong crc1, uLong crc2, uLong op);
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -197,9 +197,6 @@ Configures the type of test isolation used in the test runner.
|
|
|
197
197
|
.It Fl -experimental-test-module-mocks
|
|
198
198
|
Enable module mocking in the test runner.
|
|
199
199
|
.
|
|
200
|
-
.It Fl -experimental-strip-types
|
|
201
|
-
Enable experimental type-stripping for TypeScript files.
|
|
202
|
-
.
|
|
203
200
|
.It Fl -experimental-transform-types
|
|
204
201
|
Enable transformation of TypeScript-only syntax into JavaScript code.
|
|
205
202
|
.
|
|
@@ -227,6 +224,9 @@ Disable top-level await keyword support in REPL.
|
|
|
227
224
|
.It Fl -no-experimental-sqlite
|
|
228
225
|
Disable the experimental node:sqlite module.
|
|
229
226
|
.
|
|
227
|
+
.It Fl -no-experimental-strip-types
|
|
228
|
+
Disable experimental type-stripping for TypeScript files.
|
|
229
|
+
.
|
|
230
230
|
.It Fl -experimental-vm-modules
|
|
231
231
|
Enable experimental ES module support in VM module.
|
|
232
232
|
.
|
|
@@ -628,6 +628,19 @@ Set V8's thread pool size which will be used to allocate background jobs.
|
|
|
628
628
|
If set to 0 then V8 will choose an appropriate size of the thread pool based on the number of online processors.
|
|
629
629
|
If the value provided is larger than V8's maximum, then the largest value will be chosen.
|
|
630
630
|
.
|
|
631
|
+
.It Fl -watch
|
|
632
|
+
Starts Node.js in watch mode. When in watch mode, changes in the watched files cause the Node.js process to restart.
|
|
633
|
+
|
|
634
|
+
By default, watch mode will watch the entry point and any required or imported module. Use --watch-path to specify what paths to watch.
|
|
635
|
+
.
|
|
636
|
+
.It Fl -watch-path
|
|
637
|
+
Starts Node.js in watch mode and specifies what paths to watch. When in watch mode, changes in the watched paths cause the Node.js process to restart.
|
|
638
|
+
|
|
639
|
+
This will turn off watching of required or imported modules, even when used in combination with --watch.
|
|
640
|
+
.
|
|
641
|
+
.It Fl -watch-kill-signal
|
|
642
|
+
Customizes the signal sent to the process on watch mode restarts.
|
|
643
|
+
.
|
|
631
644
|
.It Fl -zero-fill-buffers
|
|
632
645
|
Automatically zero-fills all newly allocated Buffer and SlowBuffer instances.
|
|
633
646
|
.
|