node-aix-ppc64 20.15.0 → 20.16.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 +254 -0
- package/README.md +8 -4
- package/bin/node +0 -0
- package/include/node/node.exp +59 -27
- package/include/node/node_version.h +1 -1
- package/package.json +1 -1
- package/share/man/man1/node.1 +3 -5
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
</tr>
|
|
10
10
|
<tr>
|
|
11
11
|
<td>
|
|
12
|
+
<a href="#20.16.0">20.16.0</a><br/>
|
|
13
|
+
<a href="#20.15.1">20.15.1</a><br/>
|
|
12
14
|
<a href="#20.15.0">20.15.0</a><br/>
|
|
13
15
|
<a href="#20.14.0">20.14.0</a><br/>
|
|
14
16
|
<a href="#20.13.1">20.13.1</a><br/>
|
|
@@ -61,6 +63,258 @@
|
|
|
61
63
|
* [io.js](CHANGELOG_IOJS.md)
|
|
62
64
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
63
65
|
|
|
66
|
+
<a id="20.16.0"></a>
|
|
67
|
+
|
|
68
|
+
## 2024-07-24, Version 20.16.0 'Iron' (LTS), @marco-ippolito
|
|
69
|
+
|
|
70
|
+
### process: add process.getBuiltinModule(id)
|
|
71
|
+
|
|
72
|
+
`process.getBuiltinModule(id)` provides a way to load built-in modules
|
|
73
|
+
in a globally available function. ES Modules that need to support
|
|
74
|
+
other environments can use it to conditionally load a Node.js built-in
|
|
75
|
+
when it is run in Node.js, without having to deal with the resolution
|
|
76
|
+
error that can be thrown by `import` in a non-Node.js environment or
|
|
77
|
+
having to use dynamic `import()` which either turns the module into
|
|
78
|
+
an asynchronous module, or turns a synchronous API into an asynchronous one.
|
|
79
|
+
|
|
80
|
+
```mjs
|
|
81
|
+
if (globalThis.process?.getBuiltinModule) {
|
|
82
|
+
// Run in Node.js, use the Node.js fs module.
|
|
83
|
+
const fs = globalThis.process.getBuiltinModule('fs');
|
|
84
|
+
// If `require()` is needed to load user-modules, use createRequire()
|
|
85
|
+
const module = globalThis.process.getBuiltinModule('module');
|
|
86
|
+
const require = module.createRequire(import.meta.url);
|
|
87
|
+
const foo = require('foo');
|
|
88
|
+
}
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
If `id` specifies a built-in module available in the current Node.js process,
|
|
92
|
+
`process.getBuiltinModule(id)` method returns the corresponding built-in
|
|
93
|
+
module. If `id` does not correspond to any built-in module, `undefined`
|
|
94
|
+
is returned.
|
|
95
|
+
|
|
96
|
+
`process.getBuiltinModule(id)` accepts built-in module IDs that are recognized
|
|
97
|
+
by `module.isBuiltin(id)`.
|
|
98
|
+
|
|
99
|
+
The references returned by `process.getBuiltinModule(id)` always point to
|
|
100
|
+
the built-in module corresponding to `id` even if users modify
|
|
101
|
+
`require.cache` so that `require(id)` returns something else.
|
|
102
|
+
|
|
103
|
+
Contributed by Joyee Cheung in [#52762](https://github.com/nodejs/node/pull/52762)
|
|
104
|
+
|
|
105
|
+
### doc: doc-only deprecate OpenSSL engine-based APIs
|
|
106
|
+
|
|
107
|
+
OpenSSL 3 deprecated support for custom engines with a recommendation to switch to its new provider model.
|
|
108
|
+
The `clientCertEngine` option for `https.request()`, `tls.createSecureContext()`, and `tls.createServer()`; the `privateKeyEngine` and `privateKeyIdentifier` for `tls.createSecureContext();` and `crypto.setEngine()` all depend on this functionality from OpenSSL.
|
|
109
|
+
|
|
110
|
+
Contributed by Richard Lau in [#53329](https://github.com/nodejs/node/pull/53329)
|
|
111
|
+
|
|
112
|
+
### inspector: fix disable async hooks on Debugger.setAsyncCallStackDepth
|
|
113
|
+
|
|
114
|
+
`Debugger.setAsyncCallStackDepth` was previously calling the enable function by mistake. As a result, when profiling using Chrome DevTools, the async hooks won't be turned off properly after receiving `Debugger.setAsyncCallStackDepth` with depth 0.
|
|
115
|
+
|
|
116
|
+
Contributed by Joyee Cheung in [#53473](https://github.com/nodejs/node/pull/53473)
|
|
117
|
+
|
|
118
|
+
### Other Notable Changes
|
|
119
|
+
|
|
120
|
+
* \[[`09e2191432`](https://github.com/nodejs/node/commit/09e2191432)] - **(SEMVER-MINOR)** **buffer**: add .bytes() method to Blob (Matthew Aitken) [#53221](https://github.com/nodejs/node/pull/53221)
|
|
121
|
+
* \[[`394e00f41c`](https://github.com/nodejs/node/commit/394e00f41c)] - **(SEMVER-MINOR)** **doc**: add context.assert docs (Colin Ihrig) [#53169](https://github.com/nodejs/node/pull/53169)
|
|
122
|
+
* \[[`a8601efa5e`](https://github.com/nodejs/node/commit/a8601efa5e)] - **(SEMVER-MINOR)** **doc**: improve explanation about built-in modules (Joyee Cheung) [#52762](https://github.com/nodejs/node/pull/52762)
|
|
123
|
+
* \[[`5e76c258f7`](https://github.com/nodejs/node/commit/5e76c258f7)] - **doc**: add StefanStojanovic to collaborators (StefanStojanovic) [#53118](https://github.com/nodejs/node/pull/53118)
|
|
124
|
+
* \[[`5e694026f1`](https://github.com/nodejs/node/commit/5e694026f1)] - **doc**: add Marco Ippolito to TSC (Rafael Gonzaga) [#53008](https://github.com/nodejs/node/pull/53008)
|
|
125
|
+
* \[[`f3ba1eb72f`](https://github.com/nodejs/node/commit/f3ba1eb72f)] - **(SEMVER-MINOR)** **net**: add new net.server.listen tracing channel (Paolo Insogna) [#53136](https://github.com/nodejs/node/pull/53136)
|
|
126
|
+
* \[[`2bcce3255b`](https://github.com/nodejs/node/commit/2bcce3255b)] - **(SEMVER-MINOR)** **src,permission**: --allow-wasi & prevent WASI exec (Rafael Gonzaga) [#53124](https://github.com/nodejs/node/pull/53124)
|
|
127
|
+
* \[[`a03a4c7bdd`](https://github.com/nodejs/node/commit/a03a4c7bdd)] - **(SEMVER-MINOR)** **test\_runner**: add context.fullName (Colin Ihrig) [#53169](https://github.com/nodejs/node/pull/53169)
|
|
128
|
+
* \[[`69b828f5a5`](https://github.com/nodejs/node/commit/69b828f5a5)] - **(SEMVER-MINOR)** **util**: support `--no-` for argument with boolean type for parseArgs (Zhenwei Jin) [#53107](https://github.com/nodejs/node/pull/53107)
|
|
129
|
+
|
|
130
|
+
### Commits
|
|
131
|
+
|
|
132
|
+
* \[[`76fd0ea92e`](https://github.com/nodejs/node/commit/76fd0ea92e)] - **assert,util**: correct comparison when both contain same reference (Daniel Lemire) [#53431](https://github.com/nodejs/node/pull/53431)
|
|
133
|
+
* \[[`65308b6692`](https://github.com/nodejs/node/commit/65308b6692)] - **benchmark**: fix api restriction for the permission category (Ryan Tsien) [#51528](https://github.com/nodejs/node/pull/51528)
|
|
134
|
+
* \[[`1e2bc2c2d0`](https://github.com/nodejs/node/commit/1e2bc2c2d0)] - **benchmark**: fix napi/ref addon (Michaël Zasso) [#53233](https://github.com/nodejs/node/pull/53233)
|
|
135
|
+
* \[[`09e2191432`](https://github.com/nodejs/node/commit/09e2191432)] - **(SEMVER-MINOR)** **buffer**: add .bytes() method to Blob (Matthew Aitken) [#53221](https://github.com/nodejs/node/pull/53221)
|
|
136
|
+
* \[[`e1951a4804`](https://github.com/nodejs/node/commit/e1951a4804)] - **build**: fix spacing before NINJA\_ARGS (jakecastelli) [#53181](https://github.com/nodejs/node/pull/53181)
|
|
137
|
+
* \[[`76f3bb3460`](https://github.com/nodejs/node/commit/76f3bb3460)] - **build**: generate binlog in out directories (Chengzhong Wu) [#53325](https://github.com/nodejs/node/pull/53325)
|
|
138
|
+
* \[[`eded0c187b`](https://github.com/nodejs/node/commit/eded0c187b)] - **build**: support python 3.13 (Chengzhong Wu) [#53190](https://github.com/nodejs/node/pull/53190)
|
|
139
|
+
* \[[`1e57c67fdb`](https://github.com/nodejs/node/commit/1e57c67fdb)] - **build**: update ruff to v0.4.5 (Yagiz Nizipli) [#53180](https://github.com/nodejs/node/pull/53180)
|
|
140
|
+
* \[[`28e71ede63`](https://github.com/nodejs/node/commit/28e71ede63)] - **build**: add `--skip-tests` to `test-ci-js` target (Antoine du Hamel) [#53105](https://github.com/nodejs/node/pull/53105)
|
|
141
|
+
* \[[`bb06778a65`](https://github.com/nodejs/node/commit/bb06778a65)] - **build**: fix building embedtest in GN build (Cheng) [#53145](https://github.com/nodejs/node/pull/53145)
|
|
142
|
+
* \[[`117ff5f139`](https://github.com/nodejs/node/commit/117ff5f139)] - **build**: use broader detection for 'help' (Aviv Keller) [#53045](https://github.com/nodejs/node/pull/53045)
|
|
143
|
+
* \[[`9aa896e7f5`](https://github.com/nodejs/node/commit/9aa896e7f5)] - **build**: fix -j propagation to ninja (Tobias Nießen) [#53088](https://github.com/nodejs/node/pull/53088)
|
|
144
|
+
* \[[`acdbc78955`](https://github.com/nodejs/node/commit/acdbc78955)] - **build**: exit on unsupported host OS for Android (Mohammed Keyvanzadeh) [#52882](https://github.com/nodejs/node/pull/52882)
|
|
145
|
+
* \[[`bf3d94478e`](https://github.com/nodejs/node/commit/bf3d94478e)] - **build**: fix `--enable-d8` builds (Richard Lau) [#53106](https://github.com/nodejs/node/pull/53106)
|
|
146
|
+
* \[[`99da7d7237`](https://github.com/nodejs/node/commit/99da7d7237)] - **build**: set "clang" in config.gypi in GN build (Cheng) [#53004](https://github.com/nodejs/node/pull/53004)
|
|
147
|
+
* \[[`9446278f03`](https://github.com/nodejs/node/commit/9446278f03)] - **crypto**: improve GetECGroupBits signature (Tobias Nießen) [#53364](https://github.com/nodejs/node/pull/53364)
|
|
148
|
+
* \[[`dc2a4af68d`](https://github.com/nodejs/node/commit/dc2a4af68d)] - **crypto**: fix propagation of "memory limit exceeded" (Tobias Nießen) [#53300](https://github.com/nodejs/node/pull/53300)
|
|
149
|
+
* \[[`c5174f5e60`](https://github.com/nodejs/node/commit/c5174f5e60)] - **deps**: update c-ares to v1.31.0 (Node.js GitHub Bot) [#53554](https://github.com/nodejs/node/pull/53554)
|
|
150
|
+
* \[[`28e932dc7a`](https://github.com/nodejs/node/commit/28e932dc7a)] - **deps**: update undici to 6.19.2 (Node.js GitHub Bot) [#53468](https://github.com/nodejs/node/pull/53468)
|
|
151
|
+
* \[[`e4f9c663c4`](https://github.com/nodejs/node/commit/e4f9c663c4)] - **deps**: update undici to 6.19.1 (Node.js GitHub Bot) [#53468](https://github.com/nodejs/node/pull/53468)
|
|
152
|
+
* \[[`171dc50fdc`](https://github.com/nodejs/node/commit/171dc50fdc)] - **deps**: update undici to 6.19.1 (Node.js GitHub Bot) [#53468](https://github.com/nodejs/node/pull/53468)
|
|
153
|
+
* \[[`6bb6a9100d`](https://github.com/nodejs/node/commit/6bb6a9100d)] - **deps**: update undici to 6.19.0 (Node.js GitHub Bot) [#53468](https://github.com/nodejs/node/pull/53468)
|
|
154
|
+
* \[[`815d71b4cd`](https://github.com/nodejs/node/commit/815d71b4cd)] - **deps**: update acorn-walk to 8.3.3 (Node.js GitHub Bot) [#53466](https://github.com/nodejs/node/pull/53466)
|
|
155
|
+
* \[[`8b5f1d765a`](https://github.com/nodejs/node/commit/8b5f1d765a)] - **deps**: update zlib to 1.3.0.1-motley-209717d (Node.js GitHub Bot) [#53156](https://github.com/nodejs/node/pull/53156)
|
|
156
|
+
* \[[`fc73da6f50`](https://github.com/nodejs/node/commit/fc73da6f50)] - **deps**: update c-ares to v1.30.0 (Node.js GitHub Bot) [#53416](https://github.com/nodejs/node/pull/53416)
|
|
157
|
+
* \[[`a6b803abd6`](https://github.com/nodejs/node/commit/a6b803abd6)] - **deps**: update undici to 6.18.2 (Node.js GitHub Bot) [#53255](https://github.com/nodejs/node/pull/53255)
|
|
158
|
+
* \[[`0f235535bb`](https://github.com/nodejs/node/commit/0f235535bb)] - **deps**: update ada to 2.8.0 (Node.js GitHub Bot) [#53254](https://github.com/nodejs/node/pull/53254)
|
|
159
|
+
* \[[`63407269a8`](https://github.com/nodejs/node/commit/63407269a8)] - **deps**: update corepack to 0.28.2 (Node.js GitHub Bot) [#53253](https://github.com/nodejs/node/pull/53253)
|
|
160
|
+
* \[[`7a126e8773`](https://github.com/nodejs/node/commit/7a126e8773)] - **deps**: update c-ares to 1.29.0 (Node.js GitHub Bot) [#53155](https://github.com/nodejs/node/pull/53155)
|
|
161
|
+
* \[[`0c8fcceefa`](https://github.com/nodejs/node/commit/0c8fcceefa)] - **deps**: upgrade npm to 10.8.1 (npm team) [#53207](https://github.com/nodejs/node/pull/53207)
|
|
162
|
+
* \[[`23866979f2`](https://github.com/nodejs/node/commit/23866979f2)] - **deps**: update undici to 6.18.1 (Node.js GitHub Bot) [#53073](https://github.com/nodejs/node/pull/53073)
|
|
163
|
+
* \[[`4987a00142`](https://github.com/nodejs/node/commit/4987a00142)] - **deps**: update undici to 6.18.0 (Node.js GitHub Bot) [#53073](https://github.com/nodejs/node/pull/53073)
|
|
164
|
+
* \[[`af226d0d9c`](https://github.com/nodejs/node/commit/af226d0d9c)] - **deps**: update undici to 6.17.0 (Node.js GitHub Bot) [#53034](https://github.com/nodejs/node/pull/53034)
|
|
165
|
+
* \[[`c9c6bf8bfb`](https://github.com/nodejs/node/commit/c9c6bf8bfb)] - **deps**: update undici to 6.16.1 (Node.js GitHub Bot) [#52948](https://github.com/nodejs/node/pull/52948)
|
|
166
|
+
* \[[`b32b62d590`](https://github.com/nodejs/node/commit/b32b62d590)] - **deps**: update undici to 6.15.0 (Matthew Aitken) [#52763](https://github.com/nodejs/node/pull/52763)
|
|
167
|
+
* \[[`6e6641bea2`](https://github.com/nodejs/node/commit/6e6641bea2)] - **deps**: update googletest to 33af80a (Node.js GitHub Bot) [#53053](https://github.com/nodejs/node/pull/53053)
|
|
168
|
+
* \[[`aa96fbe03e`](https://github.com/nodejs/node/commit/aa96fbe03e)] - **deps**: update zlib to 1.3.0.1-motley-4f653ff (Node.js GitHub Bot) [#53052](https://github.com/nodejs/node/pull/53052)
|
|
169
|
+
* \[[`ba3310ded5`](https://github.com/nodejs/node/commit/ba3310ded5)] - **deps**: upgrade npm to 10.8.0 (npm team) [#53014](https://github.com/nodejs/node/pull/53014)
|
|
170
|
+
* \[[`8537a2aecf`](https://github.com/nodejs/node/commit/8537a2aecf)] - **doc**: recommend not using libuv node-api function (Michael Dawson) [#53521](https://github.com/nodejs/node/pull/53521)
|
|
171
|
+
* \[[`c13600f0db`](https://github.com/nodejs/node/commit/c13600f0db)] - **doc**: add additional guidance for PRs to deps (Michael Dawson) [#53499](https://github.com/nodejs/node/pull/53499)
|
|
172
|
+
* \[[`7c3edd952e`](https://github.com/nodejs/node/commit/7c3edd952e)] - **doc**: only apply content-visibility on all.html (Filip Skokan) [#53510](https://github.com/nodejs/node/pull/53510)
|
|
173
|
+
* \[[`ac5be14ed8`](https://github.com/nodejs/node/commit/ac5be14ed8)] - **doc**: update the description of the return type for options.filter (Zhenwei Jin) [#52742](https://github.com/nodejs/node/pull/52742)
|
|
174
|
+
* \[[`cac300e351`](https://github.com/nodejs/node/commit/cac300e351)] - **doc**: remove first timer badge (Aviv Keller) [#53338](https://github.com/nodejs/node/pull/53338)
|
|
175
|
+
* \[[`feb61459fd`](https://github.com/nodejs/node/commit/feb61459fd)] - **doc**: add Buffer.from(string) to functions that use buffer pool (Christian Bates-White) [#52801](https://github.com/nodejs/node/pull/52801)
|
|
176
|
+
* \[[`9e0a6e938b`](https://github.com/nodejs/node/commit/9e0a6e938b)] - **doc**: add initial text for ambassadors program (Michael Dawson) [#52857](https://github.com/nodejs/node/pull/52857)
|
|
177
|
+
* \[[`55ac53cb0b`](https://github.com/nodejs/node/commit/55ac53cb0b)] - **doc**: define more cases for stream event emissions (Aviv Keller) [#53317](https://github.com/nodejs/node/pull/53317)
|
|
178
|
+
* \[[`7128e0f9c9`](https://github.com/nodejs/node/commit/7128e0f9c9)] - **doc**: remove mentions of policy model from security info (Aviv Keller) [#53249](https://github.com/nodejs/node/pull/53249)
|
|
179
|
+
* \[[`3e290433df`](https://github.com/nodejs/node/commit/3e290433df)] - **doc**: fix mistakes in the module `load` hook api (István Donkó) [#53349](https://github.com/nodejs/node/pull/53349)
|
|
180
|
+
* \[[`3445c08144`](https://github.com/nodejs/node/commit/3445c08144)] - **doc**: doc-only deprecate OpenSSL engine-based APIs (Richard Lau) [#53329](https://github.com/nodejs/node/pull/53329)
|
|
181
|
+
* \[[`a3e8cda019`](https://github.com/nodejs/node/commit/a3e8cda019)] - **doc**: mark --heap-prof and related flags stable (Joyee Cheung) [#53343](https://github.com/nodejs/node/pull/53343)
|
|
182
|
+
* \[[`0b9daaae4d`](https://github.com/nodejs/node/commit/0b9daaae4d)] - **doc**: mark --cpu-prof and related flags stable (Joyee Cheung) [#53343](https://github.com/nodejs/node/pull/53343)
|
|
183
|
+
* \[[`daf91834f6`](https://github.com/nodejs/node/commit/daf91834f6)] - **doc**: remove IRC from man page (Tobias Nießen) [#53344](https://github.com/nodejs/node/pull/53344)
|
|
184
|
+
* \[[`4246c8fa31`](https://github.com/nodejs/node/commit/4246c8fa31)] - **doc**: fix broken link in `static-analysis.md` (Richard Lau) [#53345](https://github.com/nodejs/node/pull/53345)
|
|
185
|
+
* \[[`955b98a0e4`](https://github.com/nodejs/node/commit/955b98a0e4)] - **doc**: remove cases for keys not containing "\*" in PATTERN\_KEY\_COMPARE (Maarten Zuidhoorn) [#53215](https://github.com/nodejs/node/pull/53215)
|
|
186
|
+
* \[[`7832b1815f`](https://github.com/nodejs/node/commit/7832b1815f)] - **doc**: add err param to fs.cp callback (Feng Yu) [#53234](https://github.com/nodejs/node/pull/53234)
|
|
187
|
+
* \[[`01533df87f`](https://github.com/nodejs/node/commit/01533df87f)] - **doc**: add `err` param to fs.copyFile callback (Feng Yu) [#53234](https://github.com/nodejs/node/pull/53234)
|
|
188
|
+
* \[[`b081bc7d5e`](https://github.com/nodejs/node/commit/b081bc7d5e)] - **doc**: reserve 128 for Electron 32 (Keeley Hammond) [#53203](https://github.com/nodejs/node/pull/53203)
|
|
189
|
+
* \[[`6b8460b560`](https://github.com/nodejs/node/commit/6b8460b560)] - **doc**: add note to ninjia build for macOS using -jn flag (jakecastelli) [#53187](https://github.com/nodejs/node/pull/53187)
|
|
190
|
+
* \[[`394e00f41c`](https://github.com/nodejs/node/commit/394e00f41c)] - **(SEMVER-MINOR)** **doc**: add context.assert docs (Colin Ihrig) [#53169](https://github.com/nodejs/node/pull/53169)
|
|
191
|
+
* \[[`c143d61d0e`](https://github.com/nodejs/node/commit/c143d61d0e)] - **doc**: include ESM import for HTTP (Aviv Keller) [#53165](https://github.com/nodejs/node/pull/53165)
|
|
192
|
+
* \[[`a8601efa5e`](https://github.com/nodejs/node/commit/a8601efa5e)] - **(SEMVER-MINOR)** **doc**: improve explanation about built-in modules (Joyee Cheung) [#52762](https://github.com/nodejs/node/pull/52762)
|
|
193
|
+
* \[[`560392de3d`](https://github.com/nodejs/node/commit/560392de3d)] - **doc**: fix minor grammar and style issues in SECURITY.md (Rich Trott) [#53168](https://github.com/nodejs/node/pull/53168)
|
|
194
|
+
* \[[`9f8e34323d`](https://github.com/nodejs/node/commit/9f8e34323d)] - **doc**: mention pm is not enforced when using fd (Rafael Gonzaga) [#53125](https://github.com/nodejs/node/pull/53125)
|
|
195
|
+
* \[[`3ac775b015`](https://github.com/nodejs/node/commit/3ac775b015)] - **doc**: fix format in `esm.md` (Pop Moore) [#53170](https://github.com/nodejs/node/pull/53170)
|
|
196
|
+
* \[[`41b08bdcf7`](https://github.com/nodejs/node/commit/41b08bdcf7)] - **doc**: fix wrong variable name in example of `timers.tick()` (Deokjin Kim) [#53147](https://github.com/nodejs/node/pull/53147)
|
|
197
|
+
* \[[`698ea7aa5a`](https://github.com/nodejs/node/commit/698ea7aa5a)] - **doc**: fix wrong function name in example of `context.plan()` (Deokjin Kim) [#53140](https://github.com/nodejs/node/pull/53140)
|
|
198
|
+
* \[[`a99359d79d`](https://github.com/nodejs/node/commit/a99359d79d)] - **doc**: add note for windows users and symlinks (Aviv Keller) [#53117](https://github.com/nodejs/node/pull/53117)
|
|
199
|
+
* \[[`61ec2af292`](https://github.com/nodejs/node/commit/61ec2af292)] - **doc**: move all TLS-PSK documentation to its section (Alba Mendez) [#35717](https://github.com/nodejs/node/pull/35717)
|
|
200
|
+
* \[[`5e76c258f7`](https://github.com/nodejs/node/commit/5e76c258f7)] - **doc**: add StefanStojanovic to collaborators (StefanStojanovic) [#53118](https://github.com/nodejs/node/pull/53118)
|
|
201
|
+
* \[[`1dc406ba62`](https://github.com/nodejs/node/commit/1dc406ba62)] - **doc**: improve ninja build for --built-in-modules-path (jakecastelli) [#53007](https://github.com/nodejs/node/pull/53007)
|
|
202
|
+
* \[[`2854585662`](https://github.com/nodejs/node/commit/2854585662)] - **doc**: avoid hiding by navigation bar in anchor jumping (Cloyd Lau) [#45131](https://github.com/nodejs/node/pull/45131)
|
|
203
|
+
* \[[`3f432f829f`](https://github.com/nodejs/node/commit/3f432f829f)] - **doc**: remove unavailable youtube link in pull requests (Deokjin Kim) [#52982](https://github.com/nodejs/node/pull/52982)
|
|
204
|
+
* \[[`5e694026f1`](https://github.com/nodejs/node/commit/5e694026f1)] - **doc**: add Marco Ippolito to TSC (Rafael Gonzaga) [#53008](https://github.com/nodejs/node/pull/53008)
|
|
205
|
+
* \[[`231e44043e`](https://github.com/nodejs/node/commit/231e44043e)] - **doc**: add missing supported timer values in `timers.enable()` (Deokjin Kim) [#52969](https://github.com/nodejs/node/pull/52969)
|
|
206
|
+
* \[[`b8944f6938`](https://github.com/nodejs/node/commit/b8944f6938)] - **doc, http**: add `rejectNonStandardBodyWrites` option, clear its behaviour (jakecastelli) [#53396](https://github.com/nodejs/node/pull/53396)
|
|
207
|
+
* \[[`0354584738`](https://github.com/nodejs/node/commit/0354584738)] - **doc, meta**: organize contributing to Node-API guide (Aviv Keller) [#53243](https://github.com/nodejs/node/pull/53243)
|
|
208
|
+
* \[[`9ae3719c4e`](https://github.com/nodejs/node/commit/9ae3719c4e)] - **doc, meta**: use markdown rather than HTML in CONTRIBUTING.md (Aviv Keller) [#53235](https://github.com/nodejs/node/pull/53235)
|
|
209
|
+
* \[[`621e073c96`](https://github.com/nodejs/node/commit/621e073c96)] - **fs**: do not crash if the watched file is removed while setting up watch (Matteo Collina) [#53452](https://github.com/nodejs/node/pull/53452)
|
|
210
|
+
* \[[`f00ee1c377`](https://github.com/nodejs/node/commit/f00ee1c377)] - **fs**: fix cp dir/non-dir mismatch error messages (Mathis Wiehl) [#53150](https://github.com/nodejs/node/pull/53150)
|
|
211
|
+
* \[[`655b960418`](https://github.com/nodejs/node/commit/655b960418)] - **http2**: reject failed http2.connect when used with promisify (ehsankhfr) [#53475](https://github.com/nodejs/node/pull/53475)
|
|
212
|
+
* \[[`eb0b68bb29`](https://github.com/nodejs/node/commit/eb0b68bb29)] - **inspector**: fix disable async hooks on Debugger.setAsyncCallStackDepth (Joyee Cheung) [#53473](https://github.com/nodejs/node/pull/53473)
|
|
213
|
+
* \[[`1c0b89be4c`](https://github.com/nodejs/node/commit/1c0b89be4c)] - **lib**: fix typo in comment (codediverdev) [#53543](https://github.com/nodejs/node/pull/53543)
|
|
214
|
+
* \[[`55922d9cb0`](https://github.com/nodejs/node/commit/55922d9cb0)] - **lib**: remove the unused code (theanarkh) [#53463](https://github.com/nodejs/node/pull/53463)
|
|
215
|
+
* \[[`06374ef96b`](https://github.com/nodejs/node/commit/06374ef96b)] - **lib**: fix naming convention of `Symbol` (Deokjin Kim) [#53387](https://github.com/nodejs/node/pull/53387)
|
|
216
|
+
* \[[`d1a780039a`](https://github.com/nodejs/node/commit/d1a780039a)] - **lib**: fix timer leak (theanarkh) [#53337](https://github.com/nodejs/node/pull/53337)
|
|
217
|
+
* \[[`8689ce4b41`](https://github.com/nodejs/node/commit/8689ce4b41)] - **lib**: fix misleading argument of validateUint32 (Tobias Nießen) [#53307](https://github.com/nodejs/node/pull/53307)
|
|
218
|
+
* \[[`57d7bbf624`](https://github.com/nodejs/node/commit/57d7bbf624)] - **lib**: fix the name of the fetch global function (Gabriel Bota) [#53227](https://github.com/nodejs/node/pull/53227)
|
|
219
|
+
* \[[`23f086c363`](https://github.com/nodejs/node/commit/23f086c363)] - **lib**: do not call callback if socket is closed (theanarkh) [#52829](https://github.com/nodejs/node/pull/52829)
|
|
220
|
+
* \[[`f325c54c80`](https://github.com/nodejs/node/commit/f325c54c80)] - **meta**: use correct source for workflow in PR (Aviv Keller) [#53490](https://github.com/nodejs/node/pull/53490)
|
|
221
|
+
* \[[`8172412dbe`](https://github.com/nodejs/node/commit/8172412dbe)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#53480](https://github.com/nodejs/node/pull/53480)
|
|
222
|
+
* \[[`01b61d65d3`](https://github.com/nodejs/node/commit/01b61d65d3)] - **meta**: fix typo in dependency updates (Aviv Keller) [#53471](https://github.com/nodejs/node/pull/53471)
|
|
223
|
+
* \[[`12f5737cd3`](https://github.com/nodejs/node/commit/12f5737cd3)] - **meta**: bump step-security/harden-runner from 2.7.1 to 2.8.0 (dependabot\[bot]) [#53245](https://github.com/nodejs/node/pull/53245)
|
|
224
|
+
* \[[`102e4eee3c`](https://github.com/nodejs/node/commit/102e4eee3c)] - **meta**: bump ossf/scorecard-action from 2.3.1 to 2.3.3 (dependabot\[bot]) [#53248](https://github.com/nodejs/node/pull/53248)
|
|
225
|
+
* \[[`5ba185580d`](https://github.com/nodejs/node/commit/5ba185580d)] - **meta**: bump actions/checkout from 4.1.4 to 4.1.6 (dependabot\[bot]) [#53247](https://github.com/nodejs/node/pull/53247)
|
|
226
|
+
* \[[`9d186cce2b`](https://github.com/nodejs/node/commit/9d186cce2b)] - **meta**: bump github/codeql-action from 3.25.3 to 3.25.7 (dependabot\[bot]) [#53246](https://github.com/nodejs/node/pull/53246)
|
|
227
|
+
* \[[`29ab74009e`](https://github.com/nodejs/node/commit/29ab74009e)] - **meta**: bump codecov/codecov-action from 4.3.1 to 4.4.1 (dependabot\[bot]) [#53244](https://github.com/nodejs/node/pull/53244)
|
|
228
|
+
* \[[`bd4b593f30`](https://github.com/nodejs/node/commit/bd4b593f30)] - **meta**: remove `initializeCommand` from devcontainer (Aviv Keller) [#53137](https://github.com/nodejs/node/pull/53137)
|
|
229
|
+
* \[[`61b1f573cf`](https://github.com/nodejs/node/commit/61b1f573cf)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#53065](https://github.com/nodejs/node/pull/53065)
|
|
230
|
+
* \[[`f3ba1eb72f`](https://github.com/nodejs/node/commit/f3ba1eb72f)] - **(SEMVER-MINOR)** **net**: add new net.server.listen tracing channel (Paolo Insogna) [#53136](https://github.com/nodejs/node/pull/53136)
|
|
231
|
+
* \[[`67333a5796`](https://github.com/nodejs/node/commit/67333a5796)] - **(SEMVER-MINOR)** **process**: add process.getBuiltinModule(id) (Joyee Cheung) [#52762](https://github.com/nodejs/node/pull/52762)
|
|
232
|
+
* \[[`092aa09eb3`](https://github.com/nodejs/node/commit/092aa09eb3)] - **repl**: fix await object patterns without values (Luke Haas) [#53331](https://github.com/nodejs/node/pull/53331)
|
|
233
|
+
* \[[`554d25f526`](https://github.com/nodejs/node/commit/554d25f526)] - **src**: reset `process.versions` during pre-execution (Richard Lau) [#53444](https://github.com/nodejs/node/pull/53444)
|
|
234
|
+
* \[[`a0879ad628`](https://github.com/nodejs/node/commit/a0879ad628)] - **src**: fix dynamically linked OpenSSL version (Richard Lau) [#53456](https://github.com/nodejs/node/pull/53456)
|
|
235
|
+
* \[[`91c05f34de`](https://github.com/nodejs/node/commit/91c05f34de)] - **src**: remove `SetEncoding` from StringEncoder (Yagiz Nizipli) [#53441](https://github.com/nodejs/node/pull/53441)
|
|
236
|
+
* \[[`4f49384be5`](https://github.com/nodejs/node/commit/4f49384be5)] - **src**: fix typo in env.cc (EhsanKhaki) [#53418](https://github.com/nodejs/node/pull/53418)
|
|
237
|
+
* \[[`9730d1e186`](https://github.com/nodejs/node/commit/9730d1e186)] - **src**: avoid strcmp in favor of operator== (Tobias Nießen) [#53439](https://github.com/nodejs/node/pull/53439)
|
|
238
|
+
* \[[`436ad8ceb9`](https://github.com/nodejs/node/commit/436ad8ceb9)] - **src**: print v8::OOMDetails::detail when it's available (Joyee Cheung) [#53360](https://github.com/nodejs/node/pull/53360)
|
|
239
|
+
* \[[`f773b289eb`](https://github.com/nodejs/node/commit/f773b289eb)] - **src**: fix IsIPAddress for IPv6 (Hüseyin Açacak) [#53400](https://github.com/nodejs/node/pull/53400)
|
|
240
|
+
* \[[`7705efd860`](https://github.com/nodejs/node/commit/7705efd860)] - **src**: fix permission inspector crash (theanarkh) [#53389](https://github.com/nodejs/node/pull/53389)
|
|
241
|
+
* \[[`260d8d9ae1`](https://github.com/nodejs/node/commit/260d8d9ae1)] - **src**: use \_\_FUNCSIG\_\_ on Windows in backtrace (Joyee Cheung) [#53135](https://github.com/nodejs/node/pull/53135)
|
|
242
|
+
* \[[`3b79e9c24e`](https://github.com/nodejs/node/commit/3b79e9c24e)] - **src**: fix external module env and kDisableNodeOptionsEnv (Rafael Gonzaga) [#52905](https://github.com/nodejs/node/pull/52905)
|
|
243
|
+
* \[[`32839c63cb`](https://github.com/nodejs/node/commit/32839c63cb)] - **src**: reduce unnecessary `GetCwd` calls (Yagiz Nizipli) [#53064](https://github.com/nodejs/node/pull/53064)
|
|
244
|
+
* \[[`840dd092ce`](https://github.com/nodejs/node/commit/840dd092ce)] - **src**: improve node::Dotenv declarations (Tobias Nießen) [#52973](https://github.com/nodejs/node/pull/52973)
|
|
245
|
+
* \[[`2bcce3255b`](https://github.com/nodejs/node/commit/2bcce3255b)] - **(SEMVER-MINOR)** **src,permission**: --allow-wasi & prevent WASI exec (Rafael Gonzaga) [#53124](https://github.com/nodejs/node/pull/53124)
|
|
246
|
+
* \[[`e092c62a22`](https://github.com/nodejs/node/commit/e092c62a22)] - **stream**: update outdated highwatermark doc (Jay Kim) [#53494](https://github.com/nodejs/node/pull/53494)
|
|
247
|
+
* \[[`71af3e8172`](https://github.com/nodejs/node/commit/71af3e8172)] - **stream**: support dispose in writable (Benjamin Gruenbaum) [#48547](https://github.com/nodejs/node/pull/48547)
|
|
248
|
+
* \[[`33a15be32f`](https://github.com/nodejs/node/commit/33a15be32f)] - **stream**: callback should be called when pendingcb is 0 (jakecastelli) [#53438](https://github.com/nodejs/node/pull/53438)
|
|
249
|
+
* \[[`1b46ebbf69`](https://github.com/nodejs/node/commit/1b46ebbf69)] - **stream**: make sure \_destroy is called (jakecastelli) [#53213](https://github.com/nodejs/node/pull/53213)
|
|
250
|
+
* \[[`9f95d41947`](https://github.com/nodejs/node/commit/9f95d41947)] - **stream**: prevent stream unexpected pause when highWaterMark set to 0 (jakecastelli) [#53261](https://github.com/nodejs/node/pull/53261)
|
|
251
|
+
* \[[`d02651c9d6`](https://github.com/nodejs/node/commit/d02651c9d6)] - **stream**: micro-optimize writable condition (Orgad Shaneh) [#53189](https://github.com/nodejs/node/pull/53189)
|
|
252
|
+
* \[[`324070c410`](https://github.com/nodejs/node/commit/324070c410)] - **stream**: fix memory usage regression in writable (Orgad Shaneh) [#53188](https://github.com/nodejs/node/pull/53188)
|
|
253
|
+
* \[[`48138afd35`](https://github.com/nodejs/node/commit/48138afd35)] - **stream**: fixes for webstreams (Mattias Buelens) [#51168](https://github.com/nodejs/node/pull/51168)
|
|
254
|
+
* \[[`24f078a22b`](https://github.com/nodejs/node/commit/24f078a22b)] - **test**: mark `test-benchmark-crypto` as flaky (Antoine du Hamel) [#52955](https://github.com/nodejs/node/pull/52955)
|
|
255
|
+
* \[[`0d69ce3474`](https://github.com/nodejs/node/commit/0d69ce3474)] - **test**: extend env for `test-node-output-errors` (Richard Lau) [#53535](https://github.com/nodejs/node/pull/53535)
|
|
256
|
+
* \[[`1aaaad8518`](https://github.com/nodejs/node/commit/1aaaad8518)] - **test**: update encoding web-platform tests (Yagiz Nizipli) [#53477](https://github.com/nodejs/node/pull/53477)
|
|
257
|
+
* \[[`54e0ba8771`](https://github.com/nodejs/node/commit/54e0ba8771)] - **test**: check against run-time OpenSSL version (Richard Lau) [#53456](https://github.com/nodejs/node/pull/53456)
|
|
258
|
+
* \[[`059e47c320`](https://github.com/nodejs/node/commit/059e47c320)] - **test**: update tests for OpenSSL 3.0.14 (Richard Lau) [#53373](https://github.com/nodejs/node/pull/53373)
|
|
259
|
+
* \[[`49e6f33021`](https://github.com/nodejs/node/commit/49e6f33021)] - **test**: fix test-http-server-keepalive-req-gc (Etienne Pierre-doray) [#53292](https://github.com/nodejs/node/pull/53292)
|
|
260
|
+
* \[[`292d13a289`](https://github.com/nodejs/node/commit/292d13a289)] - **test**: update TLS tests for OpenSSL 3.2 (Richard Lau) [#53384](https://github.com/nodejs/node/pull/53384)
|
|
261
|
+
* \[[`82017c90bb`](https://github.com/nodejs/node/commit/82017c90bb)] - **test**: fix test when compiled without engine support (Richard Lau) [#53232](https://github.com/nodejs/node/pull/53232)
|
|
262
|
+
* \[[`a54090b385`](https://github.com/nodejs/node/commit/a54090b385)] - **test**: update TLS trace tests for OpenSSL >= 3.2 (Richard Lau) [#53229](https://github.com/nodejs/node/pull/53229)
|
|
263
|
+
* \[[`3a1693421d`](https://github.com/nodejs/node/commit/3a1693421d)] - **test**: fix Windows native test suites (Stefan Stojanovic) [#53173](https://github.com/nodejs/node/pull/53173)
|
|
264
|
+
* \[[`2b07d01272`](https://github.com/nodejs/node/commit/2b07d01272)] - **test**: skip `test-setproctitle` when `ps` is not available (Antoine du Hamel) [#53104](https://github.com/nodejs/node/pull/53104)
|
|
265
|
+
* \[[`0051d1c83d`](https://github.com/nodejs/node/commit/0051d1c83d)] - **test**: increase allocation so it fails for the test (Adam Majer) [#53099](https://github.com/nodejs/node/pull/53099)
|
|
266
|
+
* \[[`048cbe3304`](https://github.com/nodejs/node/commit/048cbe3304)] - **test**: remove timers from test-tls-socket-close (Luigi Pinca) [#53019](https://github.com/nodejs/node/pull/53019)
|
|
267
|
+
* \[[`8653d9223e`](https://github.com/nodejs/node/commit/8653d9223e)] - **test**: replace `.substr` with `.slice` (Antoine du Hamel) [#53070](https://github.com/nodejs/node/pull/53070)
|
|
268
|
+
* \[[`d74bda4241`](https://github.com/nodejs/node/commit/d74bda4241)] - **test**: add AbortController to knownGlobals (Luigi Pinca) [#53020](https://github.com/nodejs/node/pull/53020)
|
|
269
|
+
* \[[`f29e1e9838`](https://github.com/nodejs/node/commit/f29e1e9838)] - **test**: skip unstable shadow realm gc tests (Chengzhong Wu) [#52855](https://github.com/nodejs/node/pull/52855)
|
|
270
|
+
* \[[`dfa498697e`](https://github.com/nodejs/node/commit/dfa498697e)] - **test,doc**: enable running embedtest for Windows (Vladimir Morozov) [#52646](https://github.com/nodejs/node/pull/52646)
|
|
271
|
+
* \[[`0381817f1d`](https://github.com/nodejs/node/commit/0381817f1d)] - **test\_runner**: calculate executed lines using source map (Moshe Atlow) [#53315](https://github.com/nodejs/node/pull/53315)
|
|
272
|
+
* \[[`9d3699b5b0`](https://github.com/nodejs/node/commit/9d3699b5b0)] - **test\_runner**: handle file rename and deletion under watch mode (jakecastelli) [#53114](https://github.com/nodejs/node/pull/53114)
|
|
273
|
+
* \[[`9a36258ca0`](https://github.com/nodejs/node/commit/9a36258ca0)] - **test\_runner**: refactor to use min/max of `validateInteger` (Deokjin Kim) [#53148](https://github.com/nodejs/node/pull/53148)
|
|
274
|
+
* \[[`a03a4c7bdd`](https://github.com/nodejs/node/commit/a03a4c7bdd)] - **(SEMVER-MINOR)** **test\_runner**: add context.fullName (Colin Ihrig) [#53169](https://github.com/nodejs/node/pull/53169)
|
|
275
|
+
* \[[`a72157077a`](https://github.com/nodejs/node/commit/a72157077a)] - **test\_runner**: fix t.assert methods (Colin Ihrig) [#53049](https://github.com/nodejs/node/pull/53049)
|
|
276
|
+
* \[[`ba764db9ab`](https://github.com/nodejs/node/commit/ba764db9ab)] - **test\_runner**: avoid error when coverage line not found (Moshe Atlow) [#53000](https://github.com/nodejs/node/pull/53000)
|
|
277
|
+
* \[[`3a4a0ebd06`](https://github.com/nodejs/node/commit/3a4a0ebd06)] - **test\_runner,doc**: align documentation with actual stdout/stderr behavior (Moshe Atlow) [#53131](https://github.com/nodejs/node/pull/53131)
|
|
278
|
+
* \[[`6e6646bdd5`](https://github.com/nodejs/node/commit/6e6646bdd5)] - **tls**: check result of SSL\_CTX\_set\_\*\_proto\_version (Tobias Nießen) [#53459](https://github.com/nodejs/node/pull/53459)
|
|
279
|
+
* \[[`2aceed4297`](https://github.com/nodejs/node/commit/2aceed4297)] - **tls**: avoid taking ownership of OpenSSL objects (Tobias Nießen) [#53436](https://github.com/nodejs/node/pull/53436)
|
|
280
|
+
* \[[`faa5cac18c`](https://github.com/nodejs/node/commit/faa5cac18c)] - **tls**: use SSL\_get\_peer\_tmp\_key (Tobias Nießen) [#53366](https://github.com/nodejs/node/pull/53366)
|
|
281
|
+
* \[[`68fcbb635e`](https://github.com/nodejs/node/commit/68fcbb635e)] - **tls**: fix negative sessionTimeout handling (Tobias Nießen) [#53002](https://github.com/nodejs/node/pull/53002)
|
|
282
|
+
* \[[`61a1c43ef1`](https://github.com/nodejs/node/commit/61a1c43ef1)] - **tools**: fix skip detection of test runner output (Richard Lau) [#53545](https://github.com/nodejs/node/pull/53545)
|
|
283
|
+
* \[[`53a7b6e1c0`](https://github.com/nodejs/node/commit/53a7b6e1c0)] - **tools**: fix c-ares update script (Marco Ippolito) [#53414](https://github.com/nodejs/node/pull/53414)
|
|
284
|
+
* \[[`3bd5f46a15`](https://github.com/nodejs/node/commit/3bd5f46a15)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#53158](https://github.com/nodejs/node/pull/53158)
|
|
285
|
+
* \[[`daab9e170f`](https://github.com/nodejs/node/commit/daab9e170f)] - **tools**: do not run Corepack code before it's reviewed (Antoine du Hamel) [#53405](https://github.com/nodejs/node/pull/53405)
|
|
286
|
+
* \[[`d18a67f937`](https://github.com/nodejs/node/commit/d18a67f937)] - **tools**: use Ubuntu 24.04 and Clang on GitHub actions (Michaël Zasso) [#53212](https://github.com/nodejs/node/pull/53212)
|
|
287
|
+
* \[[`e9b7a52848`](https://github.com/nodejs/node/commit/e9b7a52848)] - **tools**: add stream label on PR when related files being changed in lib (jakecastelli) [#53269](https://github.com/nodejs/node/pull/53269)
|
|
288
|
+
* \[[`04d78dd56d`](https://github.com/nodejs/node/commit/04d78dd56d)] - **tools**: remove no-goma arg from make-v8 script (Michaël Zasso) [#53336](https://github.com/nodejs/node/pull/53336)
|
|
289
|
+
* \[[`37e725a500`](https://github.com/nodejs/node/commit/37e725a500)] - **tools**: use sccache Github action (Moshe Atlow) [#53316](https://github.com/nodejs/node/pull/53316)
|
|
290
|
+
* \[[`2a1fde7e32`](https://github.com/nodejs/node/commit/2a1fde7e32)] - **tools**: update error message for Type Error (Aviv Keller) [#53047](https://github.com/nodejs/node/pull/53047)
|
|
291
|
+
* \[[`8f5fb4192d`](https://github.com/nodejs/node/commit/8f5fb4192d)] - _**Revert**_ "**tools**: add --certify-safe to nci-ci" (Antoine du Hamel) [#53098](https://github.com/nodejs/node/pull/53098)
|
|
292
|
+
* \[[`69b828f5a5`](https://github.com/nodejs/node/commit/69b828f5a5)] - **(SEMVER-MINOR)** **util**: support `--no-` for argument with boolean type for parseArgs (Zhenwei Jin) [#53107](https://github.com/nodejs/node/pull/53107)
|
|
293
|
+
* \[[`1a2f3ab4f5`](https://github.com/nodejs/node/commit/1a2f3ab4f5)] - **watch**: fix variable naming (jakecastelli) [#53101](https://github.com/nodejs/node/pull/53101)
|
|
294
|
+
|
|
295
|
+
<a id="20.15.1"></a>
|
|
296
|
+
|
|
297
|
+
## 2024-07-08, Version 20.15.1 'Iron' (LTS), @RafaelGSS
|
|
298
|
+
|
|
299
|
+
This is a security release.
|
|
300
|
+
|
|
301
|
+
### Notable Changes
|
|
302
|
+
|
|
303
|
+
* CVE-2024-36138 - Bypass incomplete fix of CVE-2024-27980 (High)
|
|
304
|
+
* CVE-2024-22020 - Bypass network import restriction via data URL (Medium)
|
|
305
|
+
* CVE-2024-22018 - fs.lstat bypasses permission model (Low)
|
|
306
|
+
* CVE-2024-36137 - fs.fchown/fchmod bypasses permission model (Low)
|
|
307
|
+
* CVE-2024-37372 - Permission model improperly processes UNC paths (Low)
|
|
308
|
+
|
|
309
|
+
### Commits
|
|
310
|
+
|
|
311
|
+
* \[[`60e184a6e4`](https://github.com/nodejs/node/commit/60e184a6e4)] - **lib,esm**: handle bypass network-import via data: (RafaelGSS) [nodejs-private/node-private#522](https://github.com/nodejs-private/node-private/pull/522)
|
|
312
|
+
* \[[`025cbd6936`](https://github.com/nodejs/node/commit/025cbd6936)] - **lib,permission**: support fs.lstat (RafaelGSS) [nodejs-private/node-private#486](https://github.com/nodejs-private/node-private/pull/486)
|
|
313
|
+
* \[[`d38ea17341`](https://github.com/nodejs/node/commit/d38ea17341)] - **lib,permission**: disable fchmod/fchown when pm enabled (RafaelGSS) [nodejs-private/node-private#584](https://github.com/nodejs-private/node-private/pull/584)
|
|
314
|
+
* \[[`1ba624cd3b`](https://github.com/nodejs/node/commit/1ba624cd3b)] - **src**: handle permissive extension on cmd check (RafaelGSS) [nodejs-private/node-private#596](https://github.com/nodejs-private/node-private/pull/596)
|
|
315
|
+
* \[[`2524d00c3d`](https://github.com/nodejs/node/commit/2524d00c3d)] - **src,permission**: fix UNC path resolution (RafaelGSS) [nodejs-private/node-private#581](https://github.com/nodejs-private/node-private/pull/581)
|
|
316
|
+
* \[[`484cb0f13c`](https://github.com/nodejs/node/commit/484cb0f13c)] - **src,permission**: resolve path on fs\_permission (Rafael Gonzaga) [#52761](https://github.com/nodejs/node/pull/52761)
|
|
317
|
+
|
|
64
318
|
<a id="20.15.0"></a>
|
|
65
319
|
|
|
66
320
|
## 2024-06-20, Version 20.15.0 'Iron' (LTS), @marco-ippolito
|
package/README.md
CHANGED
|
@@ -180,6 +180,8 @@ For information about the governance of the Node.js project, see
|
|
|
180
180
|
**Joyee Cheung** <<joyeec9h3@gmail.com>> (she/her)
|
|
181
181
|
* [legendecas](https://github.com/legendecas) -
|
|
182
182
|
**Chengzhong Wu** <<legendecas@gmail.com>> (he/him)
|
|
183
|
+
* [marco-ippolito](https://github.com/marco-ippolito) -
|
|
184
|
+
**Marco Ippolito** <<marcoippolito54@gmail.com>> (he/him)
|
|
183
185
|
* [mcollina](https://github.com/mcollina) -
|
|
184
186
|
**Matteo Collina** <<matteo.collina@gmail.com>> (he/him)
|
|
185
187
|
* [mhdawson](https://github.com/mhdawson) -
|
|
@@ -431,6 +433,8 @@ For information about the governance of the Node.js project, see
|
|
|
431
433
|
**Paolo Insogna** <<paolo@cowtech.it>> (he/him)
|
|
432
434
|
* [srl295](https://github.com/srl295) -
|
|
433
435
|
**Steven R Loomis** <<srl295@gmail.com>>
|
|
436
|
+
* [StefanStojanovic](https://github.com/StefanStojanovic) -
|
|
437
|
+
**Stefan Stojanovic** <<stefan.stojanovic@janeasystems.com>> (he/him)
|
|
434
438
|
* [sxa](https://github.com/sxa) -
|
|
435
439
|
**Stewart X Addison** <<sxa@redhat.com>> (he/him)
|
|
436
440
|
* [targos](https://github.com/targos) -
|
|
@@ -451,10 +455,6 @@ For information about the governance of the Node.js project, see
|
|
|
451
455
|
**Mohammed Keyvanzadeh** <<mohammadkeyvanzade94@gmail.com>> (he/him)
|
|
452
456
|
* [watilde](https://github.com/watilde) -
|
|
453
457
|
**Daijiro Wachi** <<daijiro.wachi@gmail.com>> (he/him)
|
|
454
|
-
* [XadillaX](https://github.com/XadillaX) -
|
|
455
|
-
**Khaidi Chu** <<i@2333.moe>> (he/him)
|
|
456
|
-
* [yashLadha](https://github.com/yashLadha) -
|
|
457
|
-
**Yash Ladha** <<yash@yashladha.in>> (he/him)
|
|
458
458
|
* [zcbenz](https://github.com/zcbenz) -
|
|
459
459
|
**Cheng Zhao** <<zcbenz@gmail.com>> (he/him)
|
|
460
460
|
* [ZYSzys](https://github.com/ZYSzys) -
|
|
@@ -703,6 +703,10 @@ For information about the governance of the Node.js project, see
|
|
|
703
703
|
**Thomas Watson** <<w@tson.dk>>
|
|
704
704
|
* [whitlockjc](https://github.com/whitlockjc) -
|
|
705
705
|
**Jeremy Whitlock** <<jwhitlock@apache.org>>
|
|
706
|
+
* [XadillaX](https://github.com/XadillaX) -
|
|
707
|
+
**Khaidi Chu** <<i@2333.moe>> (he/him)
|
|
708
|
+
* [yashLadha](https://github.com/yashLadha) -
|
|
709
|
+
**Yash Ladha** <<yash@yashladha.in>> (he/him)
|
|
706
710
|
* [yhwang](https://github.com/yhwang) -
|
|
707
711
|
**Yihong Wang** <<yh.wang@ibm.com>>
|
|
708
712
|
* [yorkie](https://github.com/yorkie) -
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/node.exp
CHANGED
|
@@ -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.
|
|
5983
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_compiler_turboshaft_utils.
|
|
5984
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_gdb_jit.
|
|
5985
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_objects_debug.
|
|
5986
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_execution_arguments.
|
|
5987
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_execution_simulator_base.
|
|
5988
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_heap_evacuation_verifier.
|
|
5989
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_heap_factory_base.
|
|
5990
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_heap_heap_verifier.
|
|
5991
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_heap_objects_visiting.
|
|
5992
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_objects_tagged_impl.
|
|
5993
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_runtime_runtime_trace.
|
|
5994
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_external_pointer_table.
|
|
5995
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_sandbox.
|
|
5996
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_testing.
|
|
5997
|
-
_GLOBAL__I_65535_0_.._src_connection_wrap.
|
|
5982
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_compiler_int64_lowering.cc_E21CEA7D_0xcc97226d936997d1
|
|
5983
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_compiler_turboshaft_utils.cc_DFF67DD7_0x408791eee820a73
|
|
5984
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_gdb_jit.cc_DFF67DD7_0x844832a9e6ca385e
|
|
5985
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_objects_debug.cc_E21CEA7D_0x31da12625b21f792
|
|
5986
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_execution_arguments.cc_DFF67DD7_0x259b9abfae1af239
|
|
5987
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_execution_simulator_base.cc_7874F2D3_0x6a65e794cc63090e
|
|
5988
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_heap_evacuation_verifier.cc_E21CEA7D_0x15d3de63f77aecf7
|
|
5989
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_heap_factory_base.cc_7874F2D3_0xf577e173f89041a3
|
|
5990
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_heap_heap_verifier.cc_7874F2D3_0xe63cbfa256763e48
|
|
5991
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_heap_objects_visiting.cc_DFF67DD7_0xb45b50767ae914ce
|
|
5992
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_objects_tagged_impl.cc_87E8306D_0x4940819539b1c499
|
|
5993
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_runtime_runtime_trace.cc_E21CEA7D_0x6272ee520d192adb
|
|
5994
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_external_pointer_table.cc_87E8306D_0x127af1290765d7a4
|
|
5995
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_sandbox.cc_87E8306D_0x38ad74b1792dfdb2
|
|
5996
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_testing.cc_7874F2D3_0xa8e952323324e7f
|
|
5997
|
+
_GLOBAL__I_65535_0_.._src_connection_wrap.cc_E21CEA7D_0xbcba28b5ffb31507
|
|
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,9 +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__home_iojs_build_ws_out_Release_obj_gen_torque_generated_enum_verifiers.
|
|
7090
|
-
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_factory.
|
|
7091
|
-
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_torque_defined_classes_tq_csa.
|
|
7089
|
+
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_enum_verifiers.cc_E21CEA7D_0x467e524e78418702
|
|
7090
|
+
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_factory.cc_7874F2D3_0xe6a673d6c3e0cd4a
|
|
7091
|
+
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_torque_defined_classes_tq_csa.cc_E21CEA7D_0xa3919e38b0882c68
|
|
7092
7092
|
_GLOBAL__I_65535_0_nodedbg_const_ContextEmbedderIndex__kEnvironment__int
|
|
7093
7093
|
_GLOBAL__I_65535_0_v8dbg_frametype_EntryFrame
|
|
7094
7094
|
_HZData_75
|
|
@@ -51668,6 +51668,7 @@ _ZN4heap4base8WorklistISt4pairIN2v88internal10HeapObjectEiELt256EE5Local18Publis
|
|
|
51668
51668
|
_ZN4heap4base8WorklistISt4pairIN2v88internal10HeapObjectEiELt256EE5Local7PublishEv
|
|
51669
51669
|
_ZN4heap4base8internal11SegmentBase25GetSentinelSegmentAddressEv
|
|
51670
51670
|
_ZN4node10AsyncHooks11DeserializeEN2v85LocalINS1_7ContextEEE
|
|
51671
|
+
_ZN4node10AsyncHooks15GetPromiseHooksEPN2v87IsolateE
|
|
51671
51672
|
_ZN4node10AsyncHooks17ResetPromiseHooksEN2v85LocalINS1_8FunctionEEES4_S4_S4_
|
|
51672
51673
|
_ZN4node10AsyncHooks17pop_async_contextEd
|
|
51673
51674
|
_ZN4node10AsyncHooks18push_async_contextEddN2v85LocalINS1_6ObjectEEE
|
|
@@ -51997,6 +51998,7 @@ _ZN4node10permission12FSPermission9RadixTreeC1Ev
|
|
|
51997
51998
|
_ZN4node10permission12FSPermission9RadixTreeC2Ev
|
|
51998
51999
|
_ZN4node10permission12FSPermission9RadixTreeD1Ev
|
|
51999
52000
|
_ZN4node10permission12FSPermission9RadixTreeD2Ev
|
|
52001
|
+
_ZN4node10permission14WASIPermission5ApplyEPNS_11EnvironmentERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EENS0_15PermissionScopeE
|
|
52000
52002
|
_ZN4node10permission16WorkerPermission5ApplyEPNS_11EnvironmentERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EENS0_15PermissionScopeE
|
|
52001
52003
|
_ZN4node10permission19InspectorPermission5ApplyEPNS_11EnvironmentERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EENS0_15PermissionScopeE
|
|
52002
52004
|
_ZN4node10permission22ChildProcessPermission5ApplyEPNS_11EnvironmentERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EENS0_15PermissionScopeE
|
|
@@ -52120,6 +52122,7 @@ _ZN4node11SPrintFImplIRA20_KcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESa
|
|
|
52120
52122
|
_ZN4node11SPrintFImplIRA21_KcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS1_OT_DpOT0_
|
|
52121
52123
|
_ZN4node11SPrintFImplIRA22_KcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS1_OT_DpOT0_
|
|
52122
52124
|
_ZN4node11SPrintFImplIRA24_KcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS1_OT_DpOT0_
|
|
52125
|
+
_ZN4node11SPrintFImplIRA256_cJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_
|
|
52123
52126
|
_ZN4node11SPrintFImplIRA2_KcJRSt17basic_string_viewIcSt11char_traitsIcEEEEENSt7__cxx1112basic_stringIcS6_SaIcEEEPS1_OT_DpOT0_
|
|
52124
52127
|
_ZN4node11SPrintFImplIRA30_KcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS1_OT_DpOT0_
|
|
52125
52128
|
_ZN4node11SPrintFImplIRA3_KcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS1_OT_DpOT0_
|
|
@@ -52128,6 +52131,7 @@ _ZN4node11SPrintFImplIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJEEE
|
|
|
52128
52131
|
_ZN4node11SPrintFImplIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJPKcSA_EEES6_SA_OT_DpOT0_
|
|
52129
52132
|
_ZN4node11SPrintFImplIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJRPKcEEES6_SA_OT_DpOT0_
|
|
52130
52133
|
_ZN4node11SPrintFImplIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJS8_EEES6_PKcOT_DpOT0_
|
|
52134
|
+
_ZN4node11SPrintFImplIRKPKcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_
|
|
52131
52135
|
_ZN4node11SPrintFImplIRKSt17basic_string_viewIcSt11char_traitsIcEEJPKcmEEENSt7__cxx1112basic_stringIcS3_SaIcEEES8_OT_DpOT0_
|
|
52132
52136
|
_ZN4node11SPrintFImplIRKhJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_
|
|
52133
52137
|
_ZN4node11SPrintFImplIRKhJRiEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_
|
|
@@ -53673,6 +53677,7 @@ _ZN4node31THROW_ERR_CRYPTO_UNKNOWN_CIPHEREPN2v87IsolateE
|
|
|
53673
53677
|
_ZN4node32ERR_BUFFER_CONTEXT_NOT_AVAILABLEIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
|
|
53674
53678
|
_ZN4node32ERR_CRYPTO_INITIALIZATION_FAILEDIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
|
|
53675
53679
|
_ZN4node32ERR_CRYPTO_INVALID_SCRYPT_PARAMSIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
|
|
53680
|
+
_ZN4node32ERR_CRYPTO_INVALID_SCRYPT_PARAMSIJRA256_cEEEN2v85LocalINS3_5ValueEEEPNS3_7IsolateEPKcDpOT_
|
|
53676
53681
|
_ZN4node32ERR_CRYPTO_JWK_UNSUPPORTED_CURVEIJPKcEEEN2v85LocalINS3_5ValueEEEPNS3_7IsolateES2_DpOT_
|
|
53677
53682
|
_ZN4node32ERR_CRYPTO_UNSUPPORTED_OPERATIONIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
|
|
53678
53683
|
_ZN4node32ERR_SCRIPT_EXECUTION_INTERRUPTEDIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
|
|
@@ -54454,8 +54459,6 @@ _ZN4node6Buffer6LengthEN2v85LocalINS1_6ObjectEEE
|
|
|
54454
54459
|
_ZN4node6Dotenv12ParseContentESt17basic_string_viewIcSt11char_traitsIcEE
|
|
54455
54460
|
_ZN4node6Dotenv14SetEnvironmentEPNS_11EnvironmentE
|
|
54456
54461
|
_ZN4node6Dotenv15GetPathFromArgsERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS7_EE
|
|
54457
|
-
_ZN4node6Dotenv28AssignNodeOptionsIfAvailableEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
|
|
54458
|
-
_ZN4node6Dotenv8ToObjectEPNS_11EnvironmentE
|
|
54459
54462
|
_ZN4node6Dotenv9ParsePathESt17basic_string_viewIcSt11char_traitsIcEE
|
|
54460
54463
|
_ZN4node6DotenvD1Ev
|
|
54461
54464
|
_ZN4node6EncodeEPN2v87IsolateEPKcmNS_8encodingE
|
|
@@ -55534,6 +55537,7 @@ _ZN4node7FPrintFIJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEEvP4FI
|
|
|
55534
55537
|
_ZN4node7FPrintFIJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcSA_EEEvP4FILESA_DpOT_
|
|
55535
55538
|
_ZN4node7FPrintFIJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERPKcEEEvP4FILESA_DpOT_
|
|
55536
55539
|
_ZN4node7FPrintFIJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEEvP4FILEPKcDpOT_
|
|
55540
|
+
_ZN4node7FPrintFIJRKPKcEEEvP4FILES2_DpOT_
|
|
55537
55541
|
_ZN4node7FPrintFIJRKSt17basic_string_viewIcSt11char_traitsIcEEPKcmEEEvP4FILES8_DpOT_
|
|
55538
55542
|
_ZN4node7FPrintFIJRKhEEEvP4FILEPKcDpOT_
|
|
55539
55543
|
_ZN4node7FPrintFIJRKhRiEEEvP4FILEPKcDpOT_
|
|
@@ -55641,6 +55645,7 @@ _ZN4node7SPrintFIJPcRKiiEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEP
|
|
|
55641
55645
|
_ZN4node7SPrintFIJPcS1_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
55642
55646
|
_ZN4node7SPrintFIJPcS1_RKiS3_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
55643
55647
|
_ZN4node7SPrintFIJR24nghttp2_headers_categoryEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
55648
|
+
_ZN4node7SPrintFIJRA256_cEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
55644
55649
|
_ZN4node7SPrintFIJRA2_KcRSt17basic_string_viewIcSt11char_traitsIcEEEEENSt7__cxx1112basic_stringIcS6_SaIcEEEPS1_DpOT_
|
|
55645
55650
|
_ZN4node7SPrintFIJRA3_KcEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS1_DpOT_
|
|
55646
55651
|
_ZN4node7SPrintFIJRA9_KcEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS1_DpOT_
|
|
@@ -55648,6 +55653,7 @@ _ZN4node7SPrintFIJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES6_PK
|
|
|
55648
55653
|
_ZN4node7SPrintFIJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcSA_EEES6_SA_DpOT_
|
|
55649
55654
|
_ZN4node7SPrintFIJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERPKcEEES6_SA_DpOT_
|
|
55650
55655
|
_ZN4node7SPrintFIJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES6_PKcDpOT_
|
|
55656
|
+
_ZN4node7SPrintFIJRKPKcEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_DpOT_
|
|
55651
55657
|
_ZN4node7SPrintFIJRKSt17basic_string_viewIcSt11char_traitsIcEEPKcmEEENSt7__cxx1112basic_stringIcS3_SaIcEEES8_DpOT_
|
|
55652
55658
|
_ZN4node7SPrintFIJRKhEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
55653
55659
|
_ZN4node7SPrintFIJRKhRiEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
@@ -68205,12 +68211,13 @@ _ZNK4node10contextify17ContextifyContext8SelfSizeEv
|
|
|
68205
68211
|
_ZNK4node10mksnapshot11BindingData10MemoryInfoEPNS_13MemoryTrackerE
|
|
68206
68212
|
_ZNK4node10mksnapshot11BindingData14MemoryInfoNameEv
|
|
68207
68213
|
_ZNK4node10mksnapshot11BindingData8SelfSizeEv
|
|
68208
|
-
|
|
68209
|
-
|
|
68214
|
+
_ZNK4node10permission10Permission16is_scope_grantedEPNS_11EnvironmentENS0_15PermissionScopeERKSt17basic_string_viewIcSt11char_traitsIcEE
|
|
68215
|
+
_ZNK4node10permission12FSPermission10is_grantedEPNS_11EnvironmentENS0_15PermissionScopeERKSt17basic_string_viewIcSt11char_traitsIcEE
|
|
68210
68216
|
_ZNK4node10permission12FSPermission9RadixTree6LookupERKSt17basic_string_viewIcSt11char_traitsIcEEb
|
|
68211
|
-
|
|
68212
|
-
|
|
68213
|
-
|
|
68217
|
+
_ZNK4node10permission14WASIPermission10is_grantedEPNS_11EnvironmentENS0_15PermissionScopeERKSt17basic_string_viewIcSt11char_traitsIcEE
|
|
68218
|
+
_ZNK4node10permission16WorkerPermission10is_grantedEPNS_11EnvironmentENS0_15PermissionScopeERKSt17basic_string_viewIcSt11char_traitsIcEE
|
|
68219
|
+
_ZNK4node10permission19InspectorPermission10is_grantedEPNS_11EnvironmentENS0_15PermissionScopeERKSt17basic_string_viewIcSt11char_traitsIcEE
|
|
68220
|
+
_ZNK4node10permission22ChildProcessPermission10is_grantedEPNS_11EnvironmentENS0_15PermissionScopeERKSt17basic_string_viewIcSt11char_traitsIcEE
|
|
68214
68221
|
_ZNK4node11ConnectWrap10MemoryInfoEPNS_13MemoryTrackerE
|
|
68215
68222
|
_ZNK4node11ConnectWrap14MemoryInfoNameEv
|
|
68216
68223
|
_ZNK4node11ConnectWrap8SelfSizeEv
|
|
@@ -68806,6 +68813,8 @@ _ZNK4node5http29Http2Ping10MemoryInfoEPNS_13MemoryTrackerE
|
|
|
68806
68813
|
_ZNK4node5http29Http2Ping14MemoryInfoNameEv
|
|
68807
68814
|
_ZNK4node5http29Http2Ping8SelfSizeEv
|
|
68808
68815
|
_ZNK4node5http29Http2Ping8callbackEv
|
|
68816
|
+
_ZNK4node6Dotenv28AssignNodeOptionsIfAvailableEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
|
|
68817
|
+
_ZNK4node6Dotenv8ToObjectEPNS_11EnvironmentE
|
|
68809
68818
|
_ZNK4node6crypto10CipherBase10MemoryInfoEPNS_13MemoryTrackerE
|
|
68810
68819
|
_ZNK4node6crypto10CipherBase14MemoryInfoNameEv
|
|
68811
68820
|
_ZNK4node6crypto10CipherBase19IsAuthenticatedModeEv
|
|
@@ -73169,6 +73178,11 @@ _ZNSt23_Sp_counted_ptr_inplaceIN4node10permission12FSPermissionESaIS2_ELN9__gnu_
|
|
|
73169
73178
|
_ZNSt23_Sp_counted_ptr_inplaceIN4node10permission12FSPermissionESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info
|
|
73170
73179
|
_ZNSt23_Sp_counted_ptr_inplaceIN4node10permission12FSPermissionESaIS2_ELN9__gnu_cxx12_Lock_policyE2EED0Ev
|
|
73171
73180
|
_ZNSt23_Sp_counted_ptr_inplaceIN4node10permission12FSPermissionESaIS2_ELN9__gnu_cxx12_Lock_policyE2EED1Ev
|
|
73181
|
+
_ZNSt23_Sp_counted_ptr_inplaceIN4node10permission14WASIPermissionESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE10_M_destroyEv
|
|
73182
|
+
_ZNSt23_Sp_counted_ptr_inplaceIN4node10permission14WASIPermissionESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv
|
|
73183
|
+
_ZNSt23_Sp_counted_ptr_inplaceIN4node10permission14WASIPermissionESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info
|
|
73184
|
+
_ZNSt23_Sp_counted_ptr_inplaceIN4node10permission14WASIPermissionESaIS2_ELN9__gnu_cxx12_Lock_policyE2EED0Ev
|
|
73185
|
+
_ZNSt23_Sp_counted_ptr_inplaceIN4node10permission14WASIPermissionESaIS2_ELN9__gnu_cxx12_Lock_policyE2EED1Ev
|
|
73172
73186
|
_ZNSt23_Sp_counted_ptr_inplaceIN4node10permission16WorkerPermissionESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE10_M_destroyEv
|
|
73173
73187
|
_ZNSt23_Sp_counted_ptr_inplaceIN4node10permission16WorkerPermissionESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv
|
|
73174
73188
|
_ZNSt23_Sp_counted_ptr_inplaceIN4node10permission16WorkerPermissionESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info
|
|
@@ -77844,6 +77858,7 @@ _ZTVN4node10contextify16ContextifyScriptE
|
|
|
77844
77858
|
_ZTVN4node10contextify17ContextifyContextE
|
|
77845
77859
|
_ZTVN4node10mksnapshot11BindingDataE
|
|
77846
77860
|
_ZTVN4node10permission12FSPermissionE
|
|
77861
|
+
_ZTVN4node10permission14WASIPermissionE
|
|
77847
77862
|
_ZTVN4node10permission16WorkerPermissionE
|
|
77848
77863
|
_ZTVN4node10permission19InspectorPermissionE
|
|
77849
77864
|
_ZTVN4node10permission22ChildProcessPermissionE
|
|
@@ -78809,6 +78824,7 @@ _ZTVSt23_Sp_counted_ptr_inplaceIN2v88platform27DefaultForegroundTaskRunnerESaIS2
|
|
|
78809
78824
|
_ZTVSt23_Sp_counted_ptr_inplaceIN2v88platform30DefaultWorkerThreadsTaskRunnerESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE
|
|
78810
78825
|
_ZTVSt23_Sp_counted_ptr_inplaceIN4node10MapKVStoreESaIS1_ELN9__gnu_cxx12_Lock_policyE2EE
|
|
78811
78826
|
_ZTVSt23_Sp_counted_ptr_inplaceIN4node10permission12FSPermissionESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE
|
|
78827
|
+
_ZTVSt23_Sp_counted_ptr_inplaceIN4node10permission14WASIPermissionESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE
|
|
78812
78828
|
_ZTVSt23_Sp_counted_ptr_inplaceIN4node10permission16WorkerPermissionESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE
|
|
78813
78829
|
_ZTVSt23_Sp_counted_ptr_inplaceIN4node10permission19InspectorPermissionESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE
|
|
78814
78830
|
_ZTVSt23_Sp_counted_ptr_inplaceIN4node10permission22ChildProcessPermissionESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE
|
|
@@ -80141,6 +80157,8 @@ _ZZN4node11SPrintFImplIRA22_KcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcES
|
|
|
80141
80157
|
_ZZN4node11SPrintFImplIRA22_KcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS1_OT_DpOT0_E4args_0
|
|
80142
80158
|
_ZZN4node11SPrintFImplIRA24_KcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS1_OT_DpOT0_E4args
|
|
80143
80159
|
_ZZN4node11SPrintFImplIRA24_KcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS1_OT_DpOT0_E4args_0
|
|
80160
|
+
_ZZN4node11SPrintFImplIRA256_cJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_E4args
|
|
80161
|
+
_ZZN4node11SPrintFImplIRA256_cJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_E4args_0
|
|
80144
80162
|
_ZZN4node11SPrintFImplIRA2_KcJRSt17basic_string_viewIcSt11char_traitsIcEEEEENSt7__cxx1112basic_stringIcS6_SaIcEEEPS1_OT_DpOT0_E4args
|
|
80145
80163
|
_ZZN4node11SPrintFImplIRA2_KcJRSt17basic_string_viewIcSt11char_traitsIcEEEEENSt7__cxx1112basic_stringIcS6_SaIcEEEPS1_OT_DpOT0_E4args_0
|
|
80146
80164
|
_ZZN4node11SPrintFImplIRA30_KcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS1_OT_DpOT0_E4args
|
|
@@ -80157,6 +80175,8 @@ _ZZN4node11SPrintFImplIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJRP
|
|
|
80157
80175
|
_ZZN4node11SPrintFImplIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJRPKcEEES6_SA_OT_DpOT0_E4args_0
|
|
80158
80176
|
_ZZN4node11SPrintFImplIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJS8_EEES6_PKcOT_DpOT0_E4args
|
|
80159
80177
|
_ZZN4node11SPrintFImplIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJS8_EEES6_PKcOT_DpOT0_E4args_0
|
|
80178
|
+
_ZZN4node11SPrintFImplIRKPKcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_E4args
|
|
80179
|
+
_ZZN4node11SPrintFImplIRKPKcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_E4args_1
|
|
80160
80180
|
_ZZN4node11SPrintFImplIRKSt17basic_string_viewIcSt11char_traitsIcEEJPKcmEEENSt7__cxx1112basic_stringIcS3_SaIcEEES8_OT_DpOT0_E4args
|
|
80161
80181
|
_ZZN4node11SPrintFImplIRKSt17basic_string_viewIcSt11char_traitsIcEEJPKcmEEENSt7__cxx1112basic_stringIcS3_SaIcEEES8_OT_DpOT0_E4args_0
|
|
80162
80182
|
_ZZN4node11SPrintFImplIRKhJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_E4args
|
|
@@ -81072,7 +81092,6 @@ ares__dns_name_parse
|
|
|
81072
81092
|
ares__dns_name_write
|
|
81073
81093
|
ares__dnsrec_convert_arg
|
|
81074
81094
|
ares__dnsrec_convert_cb
|
|
81075
|
-
ares__expand_name_for_response
|
|
81076
81095
|
ares__expand_name_validated
|
|
81077
81096
|
ares__free_query
|
|
81078
81097
|
ares__freeaddrinfo_cnames
|
|
@@ -81114,6 +81133,13 @@ ares__htable_szvp_get_direct
|
|
|
81114
81133
|
ares__htable_szvp_insert
|
|
81115
81134
|
ares__htable_szvp_num_keys
|
|
81116
81135
|
ares__htable_szvp_remove
|
|
81136
|
+
ares__htable_vpvp_create
|
|
81137
|
+
ares__htable_vpvp_destroy
|
|
81138
|
+
ares__htable_vpvp_get
|
|
81139
|
+
ares__htable_vpvp_get_direct
|
|
81140
|
+
ares__htable_vpvp_insert
|
|
81141
|
+
ares__htable_vpvp_num_keys
|
|
81142
|
+
ares__htable_vpvp_remove
|
|
81117
81143
|
ares__if_indextoname
|
|
81118
81144
|
ares__if_nametoindex
|
|
81119
81145
|
ares__iface_ips
|
|
@@ -81196,6 +81222,7 @@ ares__socket_recv
|
|
|
81196
81222
|
ares__socket_recvfrom
|
|
81197
81223
|
ares__socket_write
|
|
81198
81224
|
ares__sortaddrinfo
|
|
81225
|
+
ares__str_isprint
|
|
81199
81226
|
ares__str_ltrim
|
|
81200
81227
|
ares__str_rtrim
|
|
81201
81228
|
ares__str_trim
|
|
@@ -81203,6 +81230,7 @@ ares__strsplit
|
|
|
81203
81230
|
ares__strsplit_duplicate
|
|
81204
81231
|
ares__strsplit_free
|
|
81205
81232
|
ares__subnet_match
|
|
81233
|
+
ares__sysconfig_set_options
|
|
81206
81234
|
ares__thread_cond_broadcast
|
|
81207
81235
|
ares__thread_cond_create
|
|
81208
81236
|
ares__thread_cond_destroy
|
|
@@ -81296,6 +81324,8 @@ ares_dns_section_isvalid
|
|
|
81296
81324
|
ares_dns_section_tostr
|
|
81297
81325
|
ares_dns_write
|
|
81298
81326
|
ares_dup
|
|
81327
|
+
ares_event_configchg_destroy
|
|
81328
|
+
ares_event_configchg_init
|
|
81299
81329
|
ares_event_thread_destroy
|
|
81300
81330
|
ares_event_thread_init
|
|
81301
81331
|
ares_event_update
|
|
@@ -81310,6 +81340,7 @@ ares_free_data
|
|
|
81310
81340
|
ares_free_hostent
|
|
81311
81341
|
ares_free_string
|
|
81312
81342
|
ares_freeaddrinfo
|
|
81343
|
+
ares_get_server_addr
|
|
81313
81344
|
ares_get_servers
|
|
81314
81345
|
ares_get_servers_csv
|
|
81315
81346
|
ares_get_servers_ports
|
|
@@ -81369,6 +81400,7 @@ ares_send_dnsrec
|
|
|
81369
81400
|
ares_set_local_dev
|
|
81370
81401
|
ares_set_local_ip4
|
|
81371
81402
|
ares_set_local_ip6
|
|
81403
|
+
ares_set_server_state_callback
|
|
81372
81404
|
ares_set_servers
|
|
81373
81405
|
ares_set_servers_csv
|
|
81374
81406
|
ares_set_servers_ports
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -88,6 +88,9 @@ Allow using native addons when using the permission model.
|
|
|
88
88
|
.It Fl -allow-child-process
|
|
89
89
|
Allow spawning process when using the permission model.
|
|
90
90
|
.
|
|
91
|
+
.It Fl -allow-wasi
|
|
92
|
+
Allow execution of WASI when using the permission model.
|
|
93
|
+
.
|
|
91
94
|
.It Fl -allow-worker
|
|
92
95
|
Allow creating worker threads when using the permission model.
|
|
93
96
|
.
|
|
@@ -802,8 +805,3 @@ Documentation:
|
|
|
802
805
|
.Pp
|
|
803
806
|
GitHub repository and issue tracker:
|
|
804
807
|
.Sy https://github.com/nodejs/node
|
|
805
|
-
.
|
|
806
|
-
.Pp
|
|
807
|
-
IRC (general questions):
|
|
808
|
-
.Sy "libera.chat #node.js"
|
|
809
|
-
(unofficial)
|