node-linux-arm64 18.7.0 → 18.8.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 +238 -0
- package/README.md +11 -1
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +237 -235
- package/include/node/node_api.h +1 -1
- package/include/node/node_version.h +1 -1
- package/include/node/v8-array-buffer.h +12 -0
- package/package.json +1 -1
- package/share/man/man1/node.1 +9 -0
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
</tr>
|
|
9
9
|
<tr>
|
|
10
10
|
<td>
|
|
11
|
+
<a href="#18.8.0">18.8.0</a><br/>
|
|
11
12
|
<a href="#18.7.0">18.7.0</a><br/>
|
|
12
13
|
<a href="#18.6.0">18.6.0</a><br/>
|
|
13
14
|
<a href="#18.5.0">18.5.0</a><br/>
|
|
@@ -40,6 +41,243 @@
|
|
|
40
41
|
* [io.js](CHANGELOG_IOJS.md)
|
|
41
42
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
42
43
|
|
|
44
|
+
<a id="18.8.0"></a>
|
|
45
|
+
|
|
46
|
+
## 2022-08-24, Version 18.8.0 (Current), @ruyadorno
|
|
47
|
+
|
|
48
|
+
### Notable changes
|
|
49
|
+
|
|
50
|
+
#### bootstrap: implement run-time user-land snapshots via --build-snapshot and --snapshot-blob
|
|
51
|
+
|
|
52
|
+
This patch introduces `--build-snapshot` and `--snapshot-blob` options for creating and using user land snapshots.
|
|
53
|
+
|
|
54
|
+
To generate a snapshot using snapshot.js as an entry point and write the snapshot blob to snapshot.blob:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
echo "globalThis.foo = 'I am from the snapshot'" > snapshot.js
|
|
58
|
+
node --snapshot-blob snapshot.blob --build-snapshot snapshot.js
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
To restore application state from snapshot.blob, with index.js as the entry point script for the deserialized application:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
echo "console.log(globalThis.foo)" > index.js
|
|
65
|
+
node --snapshot-blob snapshot.blob index.js
|
|
66
|
+
# => I am from the snapshot
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
Users can also use the `v8.startupSnapshot` API to specify an entry point at snapshot building time, thus avoiding the need of an additional entry script at deserialization time:
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
echo "require('v8').startupSnapshot.setDeserializeMainFunction(() => console.log('I am from the snapshot'))" > snapshot.js
|
|
73
|
+
node --snapshot-blob snapshot.blob --build-snapshot snapshot.js
|
|
74
|
+
node --snapshot-blob snapshot.blob
|
|
75
|
+
# => I am from the snapshot
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Contributed by Joyee Cheung in [#38905](https://github.com/nodejs/node/pull/38905)
|
|
79
|
+
|
|
80
|
+
### Other notable changes
|
|
81
|
+
|
|
82
|
+
* **crypto**:
|
|
83
|
+
* (SEMVER-MINOR) allow zero-length IKM in HKDF and in webcrypto PBKDF2 (Filip Skokan) [#44201](https://github.com/nodejs/node/pull/44201)
|
|
84
|
+
* (SEMVER-MINOR) allow zero-length secret KeyObject (Filip Skokan) [#44201](https://github.com/nodejs/node/pull/44201)
|
|
85
|
+
* **deps**:
|
|
86
|
+
* upgrade npm to 8.18.0 (npm team) [#44263](https://github.com/nodejs/node/pull/44263) - Adds a new `npm query` command
|
|
87
|
+
* **doc**:
|
|
88
|
+
* add Erick Wendel to collaborators (Erick Wendel) [#44088](https://github.com/nodejs/node/pull/44088)
|
|
89
|
+
* add theanarkh to collaborators (theanarkh) [#44131](https://github.com/nodejs/node/pull/44131)
|
|
90
|
+
* add MoLow to collaborators (Moshe Atlow) [#44214](https://github.com/nodejs/node/pull/44214)
|
|
91
|
+
* add cola119 to collaborators (cola119) [#44248](https://github.com/nodejs/node/pull/44248)
|
|
92
|
+
* deprecate `--trace-atomics-wait` (Keyhan Vakil) [#44093](https://github.com/nodejs/node/pull/44093)
|
|
93
|
+
* **http**:
|
|
94
|
+
* (SEMVER-MINOR) make idle http parser count configurable (theanarkh) [#43974](https://github.com/nodejs/node/pull/43974)
|
|
95
|
+
* **net**:
|
|
96
|
+
* (SEMVER-MINOR) add local family (theanarkh) [#43975](https://github.com/nodejs/node/pull/43975)
|
|
97
|
+
* **src**:
|
|
98
|
+
* (SEMVER-MINOR) print source map error source on demand (Chengzhong Wu) [#43875](https://github.com/nodejs/node/pull/43875)
|
|
99
|
+
* **tls**:
|
|
100
|
+
* (SEMVER-MINOR) pass a valid socket on `tlsClientError` (Daeyeon Jeong) [#44021](https://github.com/nodejs/node/pull/44021)
|
|
101
|
+
|
|
102
|
+
### Commits
|
|
103
|
+
|
|
104
|
+
* \[[`0e20072e32`](https://github.com/nodejs/node/commit/0e20072e32)] - **assert**: add `getCalls` and `reset` to callTracker (Moshe Atlow) [#44191](https://github.com/nodejs/node/pull/44191)
|
|
105
|
+
* \[[`126fbbab74`](https://github.com/nodejs/node/commit/126fbbab74)] - **assert**: add assert.Snapshot (Moshe Atlow) [#44095](https://github.com/nodejs/node/pull/44095)
|
|
106
|
+
* \[[`87d7845b4f`](https://github.com/nodejs/node/commit/87d7845b4f)] - **bootstrap**: fixup Error.stackTraceLimit for user-land snapshot (Joyee Cheung) [#44203](https://github.com/nodejs/node/pull/44203)
|
|
107
|
+
* \[[`597a5171ee`](https://github.com/nodejs/node/commit/597a5171ee)] - **(SEMVER-MINOR)** **bootstrap**: clean up warning setup during serialization (Joyee Cheung) [#38905](https://github.com/nodejs/node/pull/38905)
|
|
108
|
+
* \[[`3561514ff5`](https://github.com/nodejs/node/commit/3561514ff5)] - **(SEMVER-MINOR)** **bootstrap**: implement --snapshot-blob and --build-snapshot (Joyee Cheung) [#38905](https://github.com/nodejs/node/pull/38905)
|
|
109
|
+
* \[[`123b2d6795`](https://github.com/nodejs/node/commit/123b2d6795)] - **bootstrap**: turn on FunctionCodeHandling::kKeep in the snapshot builder (Joyee Cheung) [#44104](https://github.com/nodejs/node/pull/44104)
|
|
110
|
+
* \[[`e7d101fbd4`](https://github.com/nodejs/node/commit/e7d101fbd4)] - **bootstrap**: support more builtins in the embedded code cache (Joyee Cheung) [#44018](https://github.com/nodejs/node/pull/44018)
|
|
111
|
+
* \[[`2ae2828040`](https://github.com/nodejs/node/commit/2ae2828040)] - **build**: enable pointer authentication for branch protection on arm64 (Jeremiah Gowdy) [#43200](https://github.com/nodejs/node/pull/43200)
|
|
112
|
+
* \[[`fecec4d3ba`](https://github.com/nodejs/node/commit/fecec4d3ba)] - **build**: add workflow to label flaky-test platform (Rafael Gonzaga) [#44042](https://github.com/nodejs/node/pull/44042)
|
|
113
|
+
* \[[`c975c4f674`](https://github.com/nodejs/node/commit/c975c4f674)] - **build**: optimized and fixed building configuration to Android (BuShe) [#44016](https://github.com/nodejs/node/pull/44016)
|
|
114
|
+
* \[[`ec1b31e6ad`](https://github.com/nodejs/node/commit/ec1b31e6ad)] - **build**: allow test-internet on forks if not scheduled (Rich Trott) [#44073](https://github.com/nodejs/node/pull/44073)
|
|
115
|
+
* \[[`ea48c5673b`](https://github.com/nodejs/node/commit/ea48c5673b)] - **build**: skip test-internet run on forks (Rich Trott) [#44054](https://github.com/nodejs/node/pull/44054)
|
|
116
|
+
* \[[`1c0d66e927`](https://github.com/nodejs/node/commit/1c0d66e927)] - **(SEMVER-MINOR)** **crypto**: allow zero-length IKM in HKDF and in webcrypto PBKDF2 (Filip Skokan) [#44201](https://github.com/nodejs/node/pull/44201)
|
|
117
|
+
* \[[`07d90c8a71`](https://github.com/nodejs/node/commit/07d90c8a71)] - **(SEMVER-MINOR)** **crypto**: allow zero-length secret KeyObject (Filip Skokan) [#44201](https://github.com/nodejs/node/pull/44201)
|
|
118
|
+
* \[[`ac2b10e0c7`](https://github.com/nodejs/node/commit/ac2b10e0c7)] - **crypto**: fix webcrypto deriveBits validations (Filip Skokan) [#44173](https://github.com/nodejs/node/pull/44173)
|
|
119
|
+
* \[[`4c902be5a5`](https://github.com/nodejs/node/commit/4c902be5a5)] - **crypto**: fix webcrypto EC key namedCurve validation errors (Filip Skokan) [#44172](https://github.com/nodejs/node/pull/44172)
|
|
120
|
+
* \[[`81e1ec4f6f`](https://github.com/nodejs/node/commit/81e1ec4f6f)] - **crypto**: fix webcrypto generateKey() AES key length validation error (Filip Skokan) [#44170](https://github.com/nodejs/node/pull/44170)
|
|
121
|
+
* \[[`ad8ef3a56c`](https://github.com/nodejs/node/commit/ad8ef3a56c)] - **crypto**: fix webcrypto operation errors to be OperationError (Filip Skokan) [#44171](https://github.com/nodejs/node/pull/44171)
|
|
122
|
+
* \[[`c270b9a0aa`](https://github.com/nodejs/node/commit/c270b9a0aa)] - **deps**: update corepack to 0.13.0 (Node.js GitHub Bot) [#44318](https://github.com/nodejs/node/pull/44318)
|
|
123
|
+
* \[[`bce8041d67`](https://github.com/nodejs/node/commit/bce8041d67)] - **deps**: upgrade npm to 8.18.0 (npm team) [#44263](https://github.com/nodejs/node/pull/44263)
|
|
124
|
+
* \[[`a26997263b`](https://github.com/nodejs/node/commit/a26997263b)] - **deps**: update corepack to 0.12.3 (Node.js GitHub Bot) [#44229](https://github.com/nodejs/node/pull/44229)
|
|
125
|
+
* \[[`b1590bbca2`](https://github.com/nodejs/node/commit/b1590bbca2)] - **deps**: upgrade npm to 8.17.0 (npm team) [#44205](https://github.com/nodejs/node/pull/44205)
|
|
126
|
+
* \[[`818271c1c3`](https://github.com/nodejs/node/commit/818271c1c3)] - **deps**: update undici to 5.8.2 (Node.js GitHub Bot) [#44187](https://github.com/nodejs/node/pull/44187)
|
|
127
|
+
* \[[`d09bc5402d`](https://github.com/nodejs/node/commit/d09bc5402d)] - **deps**: update undici to 5.8.1 (Node.js GitHub Bot) [#44158](https://github.com/nodejs/node/pull/44158)
|
|
128
|
+
* \[[`a92d90b482`](https://github.com/nodejs/node/commit/a92d90b482)] - **deps**: update corepack to 0.12.2 (Node.js GitHub Bot) [#44159](https://github.com/nodejs/node/pull/44159)
|
|
129
|
+
* \[[`52a516a281`](https://github.com/nodejs/node/commit/52a516a281)] - **deps**: V8: cherry-pick 9861ce1deae2 (Milad Fa) [#44115](https://github.com/nodejs/node/pull/44115)
|
|
130
|
+
* \[[`763b956f07`](https://github.com/nodejs/node/commit/763b956f07)] - **deps**: remove unnecessary file (Brian White) [#44133](https://github.com/nodejs/node/pull/44133)
|
|
131
|
+
* \[[`194587e767`](https://github.com/nodejs/node/commit/194587e767)] - **deps**: upgrade npm to 8.16.0 (npm team) [#44119](https://github.com/nodejs/node/pull/44119)
|
|
132
|
+
* \[[`116dcccc79`](https://github.com/nodejs/node/commit/116dcccc79)] - **deps**: upgrade base64 to dc6a41ce36e (Brian White) [#44032](https://github.com/nodejs/node/pull/44032)
|
|
133
|
+
* \[[`b7aaf3d4ca`](https://github.com/nodejs/node/commit/b7aaf3d4ca)] - **deps**: upgrade npm to 8.15.1 (npm team) [#44013](https://github.com/nodejs/node/pull/44013)
|
|
134
|
+
* \[[`a0c57837c4`](https://github.com/nodejs/node/commit/a0c57837c4)] - **deps**: cherry-pick 00704f5a from V8 upstream (Keyhan Vakil) [#43921](https://github.com/nodejs/node/pull/43921)
|
|
135
|
+
* \[[`19557ad6a4`](https://github.com/nodejs/node/commit/19557ad6a4)] - **dgram**: add dgram send queue info (theanarkh) [#44149](https://github.com/nodejs/node/pull/44149)
|
|
136
|
+
* \[[`a93371205b`](https://github.com/nodejs/node/commit/a93371205b)] - **doc**: fix optionality of callback arg of checkPrime (Tobias Nießen) [#44311](https://github.com/nodejs/node/pull/44311)
|
|
137
|
+
* \[[`d3f3bf602d`](https://github.com/nodejs/node/commit/d3f3bf602d)] - **doc**: fix typo (Hana) [#44262](https://github.com/nodejs/node/pull/44262)
|
|
138
|
+
* \[[`7a567875b0`](https://github.com/nodejs/node/commit/7a567875b0)] - **doc**: add TypeScript execution requirements (Michael Dawson) [#44030](https://github.com/nodejs/node/pull/44030)
|
|
139
|
+
* \[[`e8916fa758`](https://github.com/nodejs/node/commit/e8916fa758)] - **doc**: add cola119 to collaborators (cola119) [#44248](https://github.com/nodejs/node/pull/44248)
|
|
140
|
+
* \[[`8c1fe86026`](https://github.com/nodejs/node/commit/8c1fe86026)] - **doc**: fix added version for readable.closed/destroyed (Matthew Peveler) [#44033](https://github.com/nodejs/node/pull/44033)
|
|
141
|
+
* \[[`f39a0514d3`](https://github.com/nodejs/node/commit/f39a0514d3)] - **doc**: improved building doc for Android (BuShe) [#44166](https://github.com/nodejs/node/pull/44166)
|
|
142
|
+
* \[[`4d26cb9bb2`](https://github.com/nodejs/node/commit/4d26cb9bb2)] - **doc**: add MoLow to collaborators (Moshe Atlow) [#44214](https://github.com/nodejs/node/pull/44214)
|
|
143
|
+
* \[[`6bff14b6f1`](https://github.com/nodejs/node/commit/6bff14b6f1)] - **doc**: update tags in adding-new-napi-api.md (Chengzhong Wu) [#44190](https://github.com/nodejs/node/pull/44190)
|
|
144
|
+
* \[[`721639a1d4`](https://github.com/nodejs/node/commit/721639a1d4)] - **doc**: fix typo in diagnostics\_channel (Evan Lucas) [#44199](https://github.com/nodejs/node/pull/44199)
|
|
145
|
+
* \[[`0fffc24caa`](https://github.com/nodejs/node/commit/0fffc24caa)] - **doc**: add Retry CI in collaborator guide (Livia Medeiros) [#44130](https://github.com/nodejs/node/pull/44130)
|
|
146
|
+
* \[[`fb11643e31`](https://github.com/nodejs/node/commit/fb11643e31)] - **doc**: add performance note to `--enable-source-maps` docs (Saurabh Daware) [#43817](https://github.com/nodejs/node/pull/43817)
|
|
147
|
+
* \[[`cb7a9e78fd`](https://github.com/nodejs/node/commit/cb7a9e78fd)] - **doc**: remove unused code in call tracker example (Colin Ihrig) [#44127](https://github.com/nodejs/node/pull/44127)
|
|
148
|
+
* \[[`8c26daff7c`](https://github.com/nodejs/node/commit/8c26daff7c)] - **doc**: add theanarkh to collaborators (theanarkh) [#44131](https://github.com/nodejs/node/pull/44131)
|
|
149
|
+
* \[[`46f8fb8e53`](https://github.com/nodejs/node/commit/46f8fb8e53)] - **doc**: clarify tls.tlsSocket.getCipher().version (Adam Majer) [#44086](https://github.com/nodejs/node/pull/44086)
|
|
150
|
+
* \[[`02236032f0`](https://github.com/nodejs/node/commit/02236032f0)] - **doc**: update repository list in onboarding doc (Rich Trott) [#44089](https://github.com/nodejs/node/pull/44089)
|
|
151
|
+
* \[[`58f2739e32`](https://github.com/nodejs/node/commit/58f2739e32)] - **doc**: add Erick Wendel to collaborators (Erick Wendel) [#44088](https://github.com/nodejs/node/pull/44088)
|
|
152
|
+
* \[[`fe83d514b2`](https://github.com/nodejs/node/commit/fe83d514b2)] - **doc**: update collaborator email (Ruy Adorno) [#44044](https://github.com/nodejs/node/pull/44044)
|
|
153
|
+
* \[[`76011dd7f7`](https://github.com/nodejs/node/commit/76011dd7f7)] - **doc**: copyedit `test.md` (Antoine du Hamel) [#44061](https://github.com/nodejs/node/pull/44061)
|
|
154
|
+
* \[[`1d6029aa3d`](https://github.com/nodejs/node/commit/1d6029aa3d)] - **doc**: add kvakil to triagers (Keyhan Vakil) [#43996](https://github.com/nodejs/node/pull/43996)
|
|
155
|
+
* \[[`7f7a0eb2f5`](https://github.com/nodejs/node/commit/7f7a0eb2f5)] - **doc**: clarify part of onboarding guide regarding adding to teams (Darshan Sen) [#44024](https://github.com/nodejs/node/pull/44024)
|
|
156
|
+
* \[[`2ae5d853a7`](https://github.com/nodejs/node/commit/2ae5d853a7)] - **doc**: fix code examples in `crypto.md` (Antoine du Hamel) [#44053](https://github.com/nodejs/node/pull/44053)
|
|
157
|
+
* \[[`1b9537b6a5`](https://github.com/nodejs/node/commit/1b9537b6a5)] - **doc**: claim ABI version for Electron 21 (Keeley Hammond) [#44034](https://github.com/nodejs/node/pull/44034)
|
|
158
|
+
* \[[`d23dfa4dcb`](https://github.com/nodejs/node/commit/d23dfa4dcb)] - **doc**: remove old reference from crypto/README.md (Tobias Nießen) [#44012](https://github.com/nodejs/node/pull/44012)
|
|
159
|
+
* \[[`222ecd6e14`](https://github.com/nodejs/node/commit/222ecd6e14)] - **doc**: add missing env vars to man page (cola119) [#43492](https://github.com/nodejs/node/pull/43492)
|
|
160
|
+
* \[[`374b77619b`](https://github.com/nodejs/node/commit/374b77619b)] - **doc**: list supported MODP groups explicitly (Tobias Nießen) [#43986](https://github.com/nodejs/node/pull/43986)
|
|
161
|
+
* \[[`72a9ecf94f`](https://github.com/nodejs/node/commit/72a9ecf94f)] - **doc**: fix typo in packages.md (Dominic Saadi) [#44005](https://github.com/nodejs/node/pull/44005)
|
|
162
|
+
* \[[`1b328305f0`](https://github.com/nodejs/node/commit/1b328305f0)] - **doc**: fix typos in `test.md` (Antoine du Hamel) [#43997](https://github.com/nodejs/node/pull/43997)
|
|
163
|
+
* \[[`7af55dbc40`](https://github.com/nodejs/node/commit/7af55dbc40)] - **doc**: add missing test runner option (Moshe Atlow) [#43989](https://github.com/nodejs/node/pull/43989)
|
|
164
|
+
* \[[`e8441a2864`](https://github.com/nodejs/node/commit/e8441a2864)] - **doc,report**: document special filenames (Chengzhong Wu) [#44257](https://github.com/nodejs/node/pull/44257)
|
|
165
|
+
* \[[`da7bc5acdf`](https://github.com/nodejs/node/commit/da7bc5acdf)] - **doc,worker**: deprecate `--trace-atomics-wait` (Keyhan Vakil) [#44093](https://github.com/nodejs/node/pull/44093)
|
|
166
|
+
* \[[`37a9d7a754`](https://github.com/nodejs/node/commit/37a9d7a754)] - **errors**: refactor to use optional chaining (SindreXie) [#44184](https://github.com/nodejs/node/pull/44184)
|
|
167
|
+
* \[[`a6dccc969f`](https://github.com/nodejs/node/commit/a6dccc969f)] - **esm**: do not bind loader hook functions (Antoine du Hamel) [#44122](https://github.com/nodejs/node/pull/44122)
|
|
168
|
+
* \[[`5e9c197d85`](https://github.com/nodejs/node/commit/5e9c197d85)] - **esm**: fix loader hooks accepting too many arguments (Jacob Smith) [#44109](https://github.com/nodejs/node/pull/44109)
|
|
169
|
+
* \[[`e072c3aa70`](https://github.com/nodejs/node/commit/e072c3aa70)] - **esm**: move package config helpers (Geoffrey Booth) [#43967](https://github.com/nodejs/node/pull/43967)
|
|
170
|
+
* \[[`d57178cdfc`](https://github.com/nodejs/node/commit/d57178cdfc)] - **events**: use bitset to save memory (Basit Chonka) [#43700](https://github.com/nodejs/node/pull/43700)
|
|
171
|
+
* \[[`4ec3f671af`](https://github.com/nodejs/node/commit/4ec3f671af)] - **fs**: add encoding parameter to benchmarks (Yagiz Nizipli) [#44278](https://github.com/nodejs/node/pull/44278)
|
|
172
|
+
* \[[`851264ca90`](https://github.com/nodejs/node/commit/851264ca90)] - **http**: add max for http keepalive (theanarkh) [#44217](https://github.com/nodejs/node/pull/44217)
|
|
173
|
+
* \[[`340ca4d8fe`](https://github.com/nodejs/node/commit/340ca4d8fe)] - **http**: fix error message when specifying headerTimeout for createServer (Nick Sia) [#44163](https://github.com/nodejs/node/pull/44163)
|
|
174
|
+
* \[[`c340344641`](https://github.com/nodejs/node/commit/c340344641)] - **http**: trace http request / response (theanarkh) [#44102](https://github.com/nodejs/node/pull/44102)
|
|
175
|
+
* \[[`a2cd8b316c`](https://github.com/nodejs/node/commit/a2cd8b316c)] - **(SEMVER-MINOR)** **http**: make idle http parser count configurable (theanarkh) [#43974](https://github.com/nodejs/node/pull/43974)
|
|
176
|
+
* \[[`5dc39a10bd`](https://github.com/nodejs/node/commit/5dc39a10bd)] - **http**: reuse socket only when it is drained (ywave620) [#43902](https://github.com/nodejs/node/pull/43902)
|
|
177
|
+
* \[[`8c2d19b2d6`](https://github.com/nodejs/node/commit/8c2d19b2d6)] - **http**: do not leak error listeners (Paolo Insogna) [#43587](https://github.com/nodejs/node/pull/43587)
|
|
178
|
+
* \[[`1a44fbc19e`](https://github.com/nodejs/node/commit/1a44fbc19e)] - **lib**: add diagnostics channel and perf hooks detail (Danielle Adams) [#43984](https://github.com/nodejs/node/pull/43984)
|
|
179
|
+
* \[[`8cfc8b0e7b`](https://github.com/nodejs/node/commit/8cfc8b0e7b)] - **lib**: refactor to avoid prototype pollution (Antoine du Hamel) [#43474](https://github.com/nodejs/node/pull/43474)
|
|
180
|
+
* \[[`04007f2f51`](https://github.com/nodejs/node/commit/04007f2f51)] - **lib**: fix diagnostics channel (theanarkh) [#44154](https://github.com/nodejs/node/pull/44154)
|
|
181
|
+
* \[[`c02bbdd921`](https://github.com/nodejs/node/commit/c02bbdd921)] - **lib**: pass env variables to child process on z/OS (alexcfyung) [#42255](https://github.com/nodejs/node/pull/42255)
|
|
182
|
+
* \[[`617ea4af1c`](https://github.com/nodejs/node/commit/617ea4af1c)] - **lib**: add missing env vars to --help (cola119) [#43492](https://github.com/nodejs/node/pull/43492)
|
|
183
|
+
* \[[`94912bb09c`](https://github.com/nodejs/node/commit/94912bb09c)] - **lib**: add `Promise` methods to `avoid-prototype-pollution` lint rule (Antoine du Hamel) [#43849](https://github.com/nodejs/node/pull/43849)
|
|
184
|
+
* \[[`8977a87504`](https://github.com/nodejs/node/commit/8977a87504)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#44321](https://github.com/nodejs/node/pull/44321)
|
|
185
|
+
* \[[`f7be92fe86`](https://github.com/nodejs/node/commit/f7be92fe86)] - **meta**: update `web streams` in label-pr-config (Daeyeon Jeong) [#44235](https://github.com/nodejs/node/pull/44235)
|
|
186
|
+
* \[[`2c72ded880`](https://github.com/nodejs/node/commit/2c72ded880)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#44231](https://github.com/nodejs/node/pull/44231)
|
|
187
|
+
* \[[`c59dc7a4c1`](https://github.com/nodejs/node/commit/c59dc7a4c1)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#44161](https://github.com/nodejs/node/pull/44161)
|
|
188
|
+
* \[[`e0efd9af50`](https://github.com/nodejs/node/commit/e0efd9af50)] - **meta**: add codeowner for src/node\_snapshot\* (Chengzhong Wu) [#44113](https://github.com/nodejs/node/pull/44113)
|
|
189
|
+
* \[[`a996f53c78`](https://github.com/nodejs/node/commit/a996f53c78)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#44065](https://github.com/nodejs/node/pull/44065)
|
|
190
|
+
* \[[`697dbfb174`](https://github.com/nodejs/node/commit/697dbfb174)] - **meta**: shorten PowerShell snippet for bug-report template (NicoNekoru) [#44011](https://github.com/nodejs/node/pull/44011)
|
|
191
|
+
* \[[`05802c2877`](https://github.com/nodejs/node/commit/05802c2877)] - **module**: protect against prototype mutation (Antoine du Hamel) [#44007](https://github.com/nodejs/node/pull/44007)
|
|
192
|
+
* \[[`1b3fcf765f`](https://github.com/nodejs/node/commit/1b3fcf765f)] - **(SEMVER-MINOR)** **net**: create diagnostics channels lazily (Joyee Cheung) [#38905](https://github.com/nodejs/node/pull/38905)
|
|
193
|
+
* \[[`aa7c053926`](https://github.com/nodejs/node/commit/aa7c053926)] - **net**: remove unused callback (theanarkh) [#44204](https://github.com/nodejs/node/pull/44204)
|
|
194
|
+
* \[[`b6b632c09c`](https://github.com/nodejs/node/commit/b6b632c09c)] - **(SEMVER-MINOR)** **net**: add local family (theanarkh) [#43975](https://github.com/nodejs/node/pull/43975)
|
|
195
|
+
* \[[`c3d87564d4`](https://github.com/nodejs/node/commit/c3d87564d4)] - **net, dns**: socket should handle its output as input (Adam Majer) [#44083](https://github.com/nodejs/node/pull/44083)
|
|
196
|
+
* \[[`3ba75b341b`](https://github.com/nodejs/node/commit/3ba75b341b)] - **(SEMVER-MINOR)** **net,tls**: pass a valid socket on `tlsClientError` (Daeyeon Jeong) [#44021](https://github.com/nodejs/node/pull/44021)
|
|
197
|
+
* \[[`0e38fba552`](https://github.com/nodejs/node/commit/0e38fba552)] - **perf\_hooks**: add resourcetiming buffer limit (Chengzhong Wu) [#44220](https://github.com/nodejs/node/pull/44220)
|
|
198
|
+
* \[[`b9fd240f63`](https://github.com/nodejs/node/commit/b9fd240f63)] - **perf\_hooks**: fix gc elapsed time (theanarkh) [#44058](https://github.com/nodejs/node/pull/44058)
|
|
199
|
+
* \[[`8cf64998e2`](https://github.com/nodejs/node/commit/8cf64998e2)] - **report**: print javascript stack on fatal error (Chengzhong Wu) [#44242](https://github.com/nodejs/node/pull/44242)
|
|
200
|
+
* \[[`c842ab36b6`](https://github.com/nodejs/node/commit/c842ab36b6)] - **report**: skip report if uncaught exception is handled (Chengzhong Wu) [#44208](https://github.com/nodejs/node/pull/44208)
|
|
201
|
+
* \[[`ab73cc8706`](https://github.com/nodejs/node/commit/ab73cc8706)] - **src**: disambiguate terms used to refer to builtins and addons (Joyee Cheung) [#44135](https://github.com/nodejs/node/pull/44135)
|
|
202
|
+
* \[[`e9d19ac64c`](https://github.com/nodejs/node/commit/e9d19ac64c)] - **src**: use imported namespaces in `node_contextify.cc` (Juan José) [#44299](https://github.com/nodejs/node/pull/44299)
|
|
203
|
+
* \[[`3dadc95cd2`](https://github.com/nodejs/node/commit/3dadc95cd2)] - **src**: refactor to avoid using a moved object (Tobias Nießen) [#44269](https://github.com/nodejs/node/pull/44269)
|
|
204
|
+
* \[[`3765c6335b`](https://github.com/nodejs/node/commit/3765c6335b)] - **src**: extract common context embedder tag checks (Chengzhong Wu) [#44258](https://github.com/nodejs/node/pull/44258)
|
|
205
|
+
* \[[`d2dce59729`](https://github.com/nodejs/node/commit/d2dce59729)] - **src**: avoid copying BaseObjectPtrs in loop (Tobias Nießen) [#44270](https://github.com/nodejs/node/pull/44270)
|
|
206
|
+
* \[[`9614907104`](https://github.com/nodejs/node/commit/9614907104)] - **src**: remove usage on ScriptCompiler::CompileFunctionInContext (Chengzhong Wu) [#44198](https://github.com/nodejs/node/pull/44198)
|
|
207
|
+
* \[[`4e1ffd932e`](https://github.com/nodejs/node/commit/4e1ffd932e)] - **src**: fix --heapsnapshot-near-heap-limit error hint (Chengzhong Wu) [#44216](https://github.com/nodejs/node/pull/44216)
|
|
208
|
+
* \[[`960a20928f`](https://github.com/nodejs/node/commit/960a20928f)] - **src**: prevent copying ArrayBufferViewContents (Keyhan Vakil) [#44091](https://github.com/nodejs/node/pull/44091)
|
|
209
|
+
* \[[`4755ad5495`](https://github.com/nodejs/node/commit/4755ad5495)] - **src**: remove usages of GetBackingStore in crypto (Keyhan Vakil) [#44079](https://github.com/nodejs/node/pull/44079)
|
|
210
|
+
* \[[`a2022e5aff`](https://github.com/nodejs/node/commit/a2022e5aff)] - **src**: remove unowned usages of GetBackingStore (Keyhan Vakil) [#44080](https://github.com/nodejs/node/pull/44080)
|
|
211
|
+
* \[[`8e1b7e2b8f`](https://github.com/nodejs/node/commit/8e1b7e2b8f)] - **src**: remove usages of GetBackingStore in node-api (Keyhan Vakil) [#44075](https://github.com/nodejs/node/pull/44075)
|
|
212
|
+
* \[[`cddf3eda28`](https://github.com/nodejs/node/commit/cddf3eda28)] - **src**: remove usages of GetBackingStore in modules (Keyhan Vakil) [#44076](https://github.com/nodejs/node/pull/44076)
|
|
213
|
+
* \[[`a54e4d4170`](https://github.com/nodejs/node/commit/a54e4d4170)] - **src**: remove usages of GetBackingStore in WASI (Keyhan Vakil) [#44077](https://github.com/nodejs/node/pull/44077)
|
|
214
|
+
* \[[`38cdb1f9b6`](https://github.com/nodejs/node/commit/38cdb1f9b6)] - **src**: remove usages of GetBackingStore in startup (Keyhan Vakil) [#44078](https://github.com/nodejs/node/pull/44078)
|
|
215
|
+
* \[[`c4783e37d7`](https://github.com/nodejs/node/commit/c4783e37d7)] - **src**: nest namespace report in namespace node (Chengzhong Wu) [#44069](https://github.com/nodejs/node/pull/44069)
|
|
216
|
+
* \[[`04bcdf63a0`](https://github.com/nodejs/node/commit/04bcdf63a0)] - **src**: use a typed array internally for process.\_exiting (Darshan Sen) [#43883](https://github.com/nodejs/node/pull/43883)
|
|
217
|
+
* \[[`b90b8abdd5`](https://github.com/nodejs/node/commit/b90b8abdd5)] - **src**: fix bug in GetErrorSource() (Tobias Nießen) [#44019](https://github.com/nodejs/node/pull/44019)
|
|
218
|
+
* \[[`728e18e025`](https://github.com/nodejs/node/commit/728e18e025)] - **src**: fix to use replacement character (Kohei Ueno) [#43999](https://github.com/nodejs/node/pull/43999)
|
|
219
|
+
* \[[`cc6e0fc8ff`](https://github.com/nodejs/node/commit/cc6e0fc8ff)] - **src**: improve SPKAC::ExportChallenge() (Tobias Nießen) [#44002](https://github.com/nodejs/node/pull/44002)
|
|
220
|
+
* \[[`9763e2fba9`](https://github.com/nodejs/node/commit/9763e2fba9)] - **src**: fix typo in src/README.md (Anna Henningsen) [#44009](https://github.com/nodejs/node/pull/44009)
|
|
221
|
+
* \[[`460397709b`](https://github.com/nodejs/node/commit/460397709b)] - **src**: remove unnecessary cast in crypto\_sig.cc (Tobias Nießen) [#44001](https://github.com/nodejs/node/pull/44001)
|
|
222
|
+
* \[[`68ee8e9089`](https://github.com/nodejs/node/commit/68ee8e9089)] - **src**: split property helpers from node::Environment (Chengzhong Wu) [#44056](https://github.com/nodejs/node/pull/44056)
|
|
223
|
+
* \[[`9990dc7d18`](https://github.com/nodejs/node/commit/9990dc7d18)] - **src,buffer**: remove unused chars\_written parameter (Keyhan Vakil) [#44092](https://github.com/nodejs/node/pull/44092)
|
|
224
|
+
* \[[`ecf82186e0`](https://github.com/nodejs/node/commit/ecf82186e0)] - **src,fs**: refactor duplicated code in fs.readdir (Daeyeon Jeong) [#43204](https://github.com/nodejs/node/pull/43204)
|
|
225
|
+
* \[[`ee6412a992`](https://github.com/nodejs/node/commit/ee6412a992)] - **src,lib**: print prinstine source when source map source not found (Chengzhong Wu) [#44052](https://github.com/nodejs/node/pull/44052)
|
|
226
|
+
* \[[`4249276783`](https://github.com/nodejs/node/commit/4249276783)] - **(SEMVER-MINOR)** **src,lib**: print source map error source on demand (Chengzhong Wu) [#43875](https://github.com/nodejs/node/pull/43875)
|
|
227
|
+
* \[[`1dabdbf05c`](https://github.com/nodejs/node/commit/1dabdbf05c)] - **src,test**: fix typos (SADIK KUZU) [#44110](https://github.com/nodejs/node/pull/44110)
|
|
228
|
+
* \[[`a3ac445198`](https://github.com/nodejs/node/commit/a3ac445198)] - **stream**: fix `isDetachedBuffer` validations (Daeyeon Jeong) [#44114](https://github.com/nodejs/node/pull/44114)
|
|
229
|
+
* \[[`c079abe017`](https://github.com/nodejs/node/commit/c079abe017)] - **stream**: improve views validation on `BYOBRequest` (Daeyeon Jeong) [#44155](https://github.com/nodejs/node/pull/44155)
|
|
230
|
+
* \[[`2f904bc8bf`](https://github.com/nodejs/node/commit/2f904bc8bf)] - **stream**: update TextEncoderStream to align the latest spec (Kohei Ueno) [#44101](https://github.com/nodejs/node/pull/44101)
|
|
231
|
+
* \[[`40b817cfb9`](https://github.com/nodejs/node/commit/40b817cfb9)] - **(SEMVER-MINOR)** **test**: test snapshotting TypeScript compiler (Joyee Cheung) [#38905](https://github.com/nodejs/node/pull/38905)
|
|
232
|
+
* \[[`d4189ab609`](https://github.com/nodejs/node/commit/d4189ab609)] - **(SEMVER-MINOR)** **test**: add UMD module test with marked (Joyee Cheung) [#38905](https://github.com/nodejs/node/pull/38905)
|
|
233
|
+
* \[[`514e5162d2`](https://github.com/nodejs/node/commit/514e5162d2)] - **test**: deflake test-diagnostics-channel-net (Keyhan Vakil) [#44144](https://github.com/nodejs/node/pull/44144)
|
|
234
|
+
* \[[`a2707d0f48`](https://github.com/nodejs/node/commit/a2707d0f48)] - **test**: add coverage for invalid RSA-PSS digests (Tobias Nießen) [#44271](https://github.com/nodejs/node/pull/44271)
|
|
235
|
+
* \[[`7b6126a59a`](https://github.com/nodejs/node/commit/7b6126a59a)] - **test**: update Web Streams WPT (Daeyeon Jeong) [#44234](https://github.com/nodejs/node/pull/44234)
|
|
236
|
+
* \[[`a02492f96c`](https://github.com/nodejs/node/commit/a02492f96c)] - **test**: move "errors" test to "parallel" (Michaël Zasso) [#44233](https://github.com/nodejs/node/pull/44233)
|
|
237
|
+
* \[[`b4224dd192`](https://github.com/nodejs/node/commit/b4224dd192)] - **test**: reduce http-server-request-timeouts-mixed flakiness (Nick Sia) [#44169](https://github.com/nodejs/node/pull/44169)
|
|
238
|
+
* \[[`f5e2f6c362`](https://github.com/nodejs/node/commit/f5e2f6c362)] - **test**: remove cjs loader from stack traces (Geoffrey Booth) [#44197](https://github.com/nodejs/node/pull/44197)
|
|
239
|
+
* \[[`e37314497a`](https://github.com/nodejs/node/commit/e37314497a)] - **test**: add filesystem check to `test-fs-stat-date.mjs` (Livia Medeiros) [#44174](https://github.com/nodejs/node/pull/44174)
|
|
240
|
+
* \[[`9755b1f979`](https://github.com/nodejs/node/commit/9755b1f979)] - **test**: mark connection leak test flaky on IBM i (Richard Lau) [#44215](https://github.com/nodejs/node/pull/44215)
|
|
241
|
+
* \[[`beaf5f5776`](https://github.com/nodejs/node/commit/beaf5f5776)] - **test**: use `mustSucceed` instead of `mustCall` with `assert.ifError` (MURAKAMI Masahiko) [#44196](https://github.com/nodejs/node/pull/44196)
|
|
242
|
+
* \[[`11f74e72a7`](https://github.com/nodejs/node/commit/11f74e72a7)] - **test**: update WPT runner (Filip Skokan) [#43455](https://github.com/nodejs/node/pull/43455)
|
|
243
|
+
* \[[`b2a15b6275`](https://github.com/nodejs/node/commit/b2a15b6275)] - **test**: update wpt url status (Kohei Ueno) [#44175](https://github.com/nodejs/node/pull/44175)
|
|
244
|
+
* \[[`6b84451d70`](https://github.com/nodejs/node/commit/6b84451d70)] - **test**: update wasm/jsapi web platform tests (Yagiz Nizipli) [#44100](https://github.com/nodejs/node/pull/44100)
|
|
245
|
+
* \[[`537d52fa0f`](https://github.com/nodejs/node/commit/537d52fa0f)] - **test**: update hr-time web platform tests (Yagiz Nizipli) [#44100](https://github.com/nodejs/node/pull/44100)
|
|
246
|
+
* \[[`79445cb215`](https://github.com/nodejs/node/commit/79445cb215)] - **test**: update console web platform tests (Yagiz Nizipli) [#44100](https://github.com/nodejs/node/pull/44100)
|
|
247
|
+
* \[[`70267a0eeb`](https://github.com/nodejs/node/commit/70267a0eeb)] - **test**: move tests with many workers to sequential (Keyhan Vakil) [#44139](https://github.com/nodejs/node/pull/44139)
|
|
248
|
+
* \[[`86a7fb0c8a`](https://github.com/nodejs/node/commit/86a7fb0c8a)] - **test**: deflake gc-http-client tests by restricting number of requests (Nick Sia) [#44146](https://github.com/nodejs/node/pull/44146)
|
|
249
|
+
* \[[`e17117dfda`](https://github.com/nodejs/node/commit/e17117dfda)] - **test**: move test-vm-break-on-sigint to sequential (Keyhan Vakil) [#44140](https://github.com/nodejs/node/pull/44140)
|
|
250
|
+
* \[[`e5113fab05`](https://github.com/nodejs/node/commit/e5113fab05)] - **test**: remove test-http-client-response-timeout flaky designation (Luigi Pinca) [#44145](https://github.com/nodejs/node/pull/44145)
|
|
251
|
+
* \[[`f1b5f933d7`](https://github.com/nodejs/node/commit/f1b5f933d7)] - **test**: s390x z15 accelerated zlib fixes (Adam Majer) [#44117](https://github.com/nodejs/node/pull/44117)
|
|
252
|
+
* \[[`86bbd5e61a`](https://github.com/nodejs/node/commit/86bbd5e61a)] - **test**: tune down parallelism for some flaky tests (Keyhan Vakil) [#44090](https://github.com/nodejs/node/pull/44090)
|
|
253
|
+
* \[[`40e2ca7f66`](https://github.com/nodejs/node/commit/40e2ca7f66)] - **test**: fix `internet/test-inspector-help-page` (Daeyeon Jeong) [#44025](https://github.com/nodejs/node/pull/44025)
|
|
254
|
+
* \[[`b19564b9d2`](https://github.com/nodejs/node/commit/b19564b9d2)] - **test**: refactor ESM tests to improve performance (Jacob Smith) [#43784](https://github.com/nodejs/node/pull/43784)
|
|
255
|
+
* \[[`d964b308ae`](https://github.com/nodejs/node/commit/d964b308ae)] - **test**: remove test-gc-http-client-timeout from flaky list (Feng Yu) [#43971](https://github.com/nodejs/node/pull/43971)
|
|
256
|
+
* \[[`2cab7bb791`](https://github.com/nodejs/node/commit/2cab7bb791)] - **test**: reduce loop times for preventing test from timeout (theanarkh) [#43981](https://github.com/nodejs/node/pull/43981)
|
|
257
|
+
* \[[`9244d6d416`](https://github.com/nodejs/node/commit/9244d6d416)] - **test**: fix test-cluster-concurrent-disconnect (Daeyeon Jeong) [#43961](https://github.com/nodejs/node/pull/43961)
|
|
258
|
+
* \[[`3c8037a9fa`](https://github.com/nodejs/node/commit/3c8037a9fa)] - **test**: change misleading variable name (Tobias Nießen) [#43990](https://github.com/nodejs/node/pull/43990)
|
|
259
|
+
* \[[`82164344e2`](https://github.com/nodejs/node/commit/82164344e2)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#44223](https://github.com/nodejs/node/pull/44223)
|
|
260
|
+
* \[[`c0b160c842`](https://github.com/nodejs/node/commit/c0b160c842)] - **test\_runner**: fix test runner hooks failure stack (Moshe Atlow) [#44284](https://github.com/nodejs/node/pull/44284)
|
|
261
|
+
* \[[`8ed39397d5`](https://github.com/nodejs/node/commit/8ed39397d5)] - **test\_runner**: refactor to use more primordials (Antoine du Hamel) [#44062](https://github.com/nodejs/node/pull/44062)
|
|
262
|
+
* \[[`d8749c3b87`](https://github.com/nodejs/node/commit/d8749c3b87)] - **test\_runner**: verbous error when entire test tree is canceled (Moshe Atlow) [#44060](https://github.com/nodejs/node/pull/44060)
|
|
263
|
+
* \[[`0d007471fa`](https://github.com/nodejs/node/commit/0d007471fa)] - **test\_runner**: empty pending tests queue post running (Moshe Atlow) [#44059](https://github.com/nodejs/node/pull/44059)
|
|
264
|
+
* \[[`c3fa82f007`](https://github.com/nodejs/node/commit/c3fa82f007)] - **test\_runner**: add before/after/each hooks (Moshe Atlow) [#43730](https://github.com/nodejs/node/pull/43730)
|
|
265
|
+
* \[[`50c854bbfe`](https://github.com/nodejs/node/commit/50c854bbfe)] - **test\_runner**: fix top level `describe` queuing (Moshe Atlow) [#43998](https://github.com/nodejs/node/pull/43998)
|
|
266
|
+
* \[[`04fdc3e1fa`](https://github.com/nodejs/node/commit/04fdc3e1fa)] - **test\_runner**: graceful termination on `--test` only (Moshe Atlow) [#43977](https://github.com/nodejs/node/pull/43977)
|
|
267
|
+
* \[[`51a0310398`](https://github.com/nodejs/node/commit/51a0310398)] - **test\_runner**: validate `concurrency` option (Antoine du Hamel) [#43976](https://github.com/nodejs/node/pull/43976)
|
|
268
|
+
* \[[`ecf7b0720a`](https://github.com/nodejs/node/commit/ecf7b0720a)] - **tls**: use logical OR operator (Mohammed Keyvanzadeh) [#44236](https://github.com/nodejs/node/pull/44236)
|
|
269
|
+
* \[[`f7c1b838ba`](https://github.com/nodejs/node/commit/f7c1b838ba)] - **tools**: update lint-md-dependencies to rollup\@2.78.1 (Node.js GitHub Bot) [#44320](https://github.com/nodejs/node/pull/44320)
|
|
270
|
+
* \[[`36b39db74d`](https://github.com/nodejs/node/commit/36b39db74d)] - **tools**: update ESLint to 8.22.0 (Luigi Pinca) [#44243](https://github.com/nodejs/node/pull/44243)
|
|
271
|
+
* \[[`87f75a27fb`](https://github.com/nodejs/node/commit/87f75a27fb)] - **tools**: update lint-md-dependencies to rollup\@2.78.0 (Node.js GitHub Bot) [#44244](https://github.com/nodejs/node/pull/44244)
|
|
272
|
+
* \[[`a3cc8ce959`](https://github.com/nodejs/node/commit/a3cc8ce959)] - **tools**: update lint-md-dependencies to rollup\@2.77.3 (Node.js GitHub Bot) [#44230](https://github.com/nodejs/node/pull/44230)
|
|
273
|
+
* \[[`873941a43e`](https://github.com/nodejs/node/commit/873941a43e)] - **tools**: update eslint to 8.21.0 (Node.js GitHub Bot) [#44162](https://github.com/nodejs/node/pull/44162)
|
|
274
|
+
* \[[`6be7e6d136`](https://github.com/nodejs/node/commit/6be7e6d136)] - **tools**: update lint-md-dependencies to @rollup/plugin-commonjs\@22.0.2 (Node.js GitHub Bot) [#44160](https://github.com/nodejs/node/pull/44160)
|
|
275
|
+
* \[[`b252f389d7`](https://github.com/nodejs/node/commit/b252f389d7)] - **tools**: update undici CPE in vuln checking script (Facundo Tuesca) [#44128](https://github.com/nodejs/node/pull/44128)
|
|
276
|
+
* \[[`3eacf25789`](https://github.com/nodejs/node/commit/3eacf25789)] - **tools**: update lint-md-dependencies to rollup\@2.77.2 (Node.js GitHub Bot) [#44064](https://github.com/nodejs/node/pull/44064)
|
|
277
|
+
* \[[`1175d9036a`](https://github.com/nodejs/node/commit/1175d9036a)] - **tools**: add verbose flag to find-inactive-collaborators (Rich Trott) [#43964](https://github.com/nodejs/node/pull/43964)
|
|
278
|
+
* \[[`2cf3ce83d8`](https://github.com/nodejs/node/commit/2cf3ce83d8)] - **trace\_events**: add example (theanarkh) [#43253](https://github.com/nodejs/node/pull/43253)
|
|
279
|
+
* \[[`2efce0fe5b`](https://github.com/nodejs/node/commit/2efce0fe5b)] - **typings**: add JSDoc for `internal/validators` (Yagiz Nizipli) [#44181](https://github.com/nodejs/node/pull/44181)
|
|
280
|
+
|
|
43
281
|
<a id="18.7.0"></a>
|
|
44
282
|
|
|
45
283
|
## 2022-07-26, Version 18.7.0 (Current), @danielleadams
|
package/README.md
CHANGED
|
@@ -296,6 +296,8 @@ For information about the governance of the Node.js project, see
|
|
|
296
296
|
**Colin Ihrig** <<cjihrig@gmail.com>> (he/him)
|
|
297
297
|
* [codebytere](https://github.com/codebytere) -
|
|
298
298
|
**Shelley Vohr** <<shelley.vohr@gmail.com>> (she/her)
|
|
299
|
+
* [cola119](https://github.com/cola119) -
|
|
300
|
+
**Kohei Ueno** <<kohei.ueno119@gmail.com>> (he/him)
|
|
299
301
|
* [danbev](https://github.com/danbev) -
|
|
300
302
|
**Daniel Bevenius** <<daniel.bevenius@gmail.com>> (he/him)
|
|
301
303
|
* [danielleadams](https://github.com/danielleadams) -
|
|
@@ -310,6 +312,8 @@ For information about the governance of the Node.js project, see
|
|
|
310
312
|
**Daniele Belardi** <<dwon.dnl@gmail.com>> (he/him)
|
|
311
313
|
* [edsadr](https://github.com/edsadr) -
|
|
312
314
|
**Adrian Estrada** <<edsadr@gmail.com>> (he/him)
|
|
315
|
+
* [erickwendel](https://github.com/erickwendel) -
|
|
316
|
+
**Erick Wendel** <<erick.workspace@gmail.com>> (he/him)
|
|
313
317
|
* [evanlucas](https://github.com/evanlucas) -
|
|
314
318
|
**Evan Lucas** <<evanlucas@me.com>> (he/him)
|
|
315
319
|
* [fhinkel](https://github.com/fhinkel) -
|
|
@@ -380,6 +384,8 @@ For information about the governance of the Node.js project, see
|
|
|
380
384
|
**Milad Fa** <<mfarazma@redhat.com>> (he/him)
|
|
381
385
|
* [mildsunrise](https://github.com/mildsunrise) -
|
|
382
386
|
**Alba Mendez** <<me@alba.sh>> (she/her)
|
|
387
|
+
* [MoLow](https://github.com/MoLow) -
|
|
388
|
+
**Moshe Atlow** <<moshe@atlow.co.il>> (he/him)
|
|
383
389
|
* [mscdex](https://github.com/mscdex) -
|
|
384
390
|
**Brian White** <<mscdex@mscdex.net>>
|
|
385
391
|
* [MylesBorins](https://github.com/MylesBorins) -
|
|
@@ -405,7 +411,7 @@ For information about the governance of the Node.js project, see
|
|
|
405
411
|
* [ronag](https://github.com/ronag) -
|
|
406
412
|
**Robert Nagy** <<ronagy@icloud.com>>
|
|
407
413
|
* [ruyadorno](https://github.com/ruyadorno) -
|
|
408
|
-
**Ruy Adorno** <<ruyadorno@
|
|
414
|
+
**Ruy Adorno** <<ruyadorno@google.com>> (he/him)
|
|
409
415
|
* [rvagg](https://github.com/rvagg) -
|
|
410
416
|
**Rod Vagg** <<rod@vagg.org>>
|
|
411
417
|
* [ryzokuken](https://github.com/ryzokuken) -
|
|
@@ -424,6 +430,8 @@ For information about the governance of the Node.js project, see
|
|
|
424
430
|
**Stewart X Addison** <<sxa@redhat.com>> (he/him)
|
|
425
431
|
* [targos](https://github.com/targos) -
|
|
426
432
|
**Michaël Zasso** <<targos@protonmail.com>> (he/him)
|
|
433
|
+
* [theanarkh](https://github.com/theanarkh) -
|
|
434
|
+
**theanarkh** <<theratliter@gmail.com>> (he/him)
|
|
427
435
|
* [TimothyGu](https://github.com/TimothyGu) -
|
|
428
436
|
**Tiancheng "Timothy" Gu** <<timothygu99@gmail.com>> (he/him)
|
|
429
437
|
* [tniessen](https://github.com/tniessen) -
|
|
@@ -658,6 +666,8 @@ maintaining the Node.js project.
|
|
|
658
666
|
**Himadri Ganguly** <<himadri.tech@gmail.com>> (he/him)
|
|
659
667
|
* [iam-frankqiu](https://github.com/iam-frankqiu) -
|
|
660
668
|
**Frank Qiu** <<iam.frankqiu@gmail.com>> (he/him)
|
|
669
|
+
* [kvakil](https://github.com/kvakil) -
|
|
670
|
+
**Keyhan Vakil** <<kvakil@sylph.kvakil.me>> (they/them)
|
|
661
671
|
* [marsonya](https://github.com/marsonya) -
|
|
662
672
|
**Akhil Marsonya** <<akhil.marsonya27@gmail.com>> (he/him)
|
|
663
673
|
* [meixg](https://github.com/meixg) -
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/common.gypi
CHANGED
package/include/node/config.gypi
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Do not edit. Generated by the configure script.
|
|
2
|
-
{ 'target_defaults': {'cflags': [], 'default_configuration': 'Release', 'defines': ['NODE_OPENSSL_CONF_NAME=nodejs_conf', 'NODE_OPENSSL_HAS_QUIC'], 'include_dirs': [], 'libraries': []},
|
|
2
|
+
{ 'target_defaults': {'cflags': ['-msign-return-address=all'], 'default_configuration': 'Release', 'defines': ['NODE_OPENSSL_CONF_NAME=nodejs_conf', 'NODE_OPENSSL_HAS_QUIC'], 'include_dirs': [], 'libraries': []},
|
|
3
3
|
'variables': { 'asan': 0,
|
|
4
4
|
'coverage': 'false',
|
|
5
5
|
'dcheck_always_on': 0,
|
|
@@ -27,290 +27,292 @@
|
|
|
27
27
|
'node_fipsinstall': 'false',
|
|
28
28
|
'node_install_corepack': 'true',
|
|
29
29
|
'node_install_npm': 'true',
|
|
30
|
-
'node_library_files': [ 'lib/
|
|
31
|
-
'lib/
|
|
30
|
+
'node_library_files': [ 'lib/url.js',
|
|
31
|
+
'lib/_stream_passthrough.js',
|
|
32
32
|
'lib/_stream_wrap.js',
|
|
33
|
-
'lib/
|
|
34
|
-
'lib/
|
|
35
|
-
'lib/
|
|
36
|
-
'lib/_tls_common.js',
|
|
37
|
-
'lib/readline.js',
|
|
33
|
+
'lib/module.js',
|
|
34
|
+
'lib/_stream_transform.js',
|
|
35
|
+
'lib/punycode.js',
|
|
38
36
|
'lib/buffer.js',
|
|
37
|
+
'lib/_stream_writable.js',
|
|
38
|
+
'lib/string_decoder.js',
|
|
39
|
+
'lib/inspector.js',
|
|
40
|
+
'lib/crypto.js',
|
|
41
|
+
'lib/diagnostics_channel.js',
|
|
42
|
+
'lib/wasi.js',
|
|
43
|
+
'lib/test.js',
|
|
39
44
|
'lib/util.js',
|
|
45
|
+
'lib/sys.js',
|
|
46
|
+
'lib/tls.js',
|
|
47
|
+
'lib/dns.js',
|
|
48
|
+
'lib/_tls_common.js',
|
|
49
|
+
'lib/os.js',
|
|
50
|
+
'lib/assert.js',
|
|
40
51
|
'lib/trace_events.js',
|
|
41
|
-
'lib/test.js',
|
|
42
|
-
'lib/dgram.js',
|
|
43
|
-
'lib/_http_incoming.js',
|
|
44
|
-
'lib/url.js',
|
|
45
|
-
'lib/v8.js',
|
|
46
|
-
'lib/zlib.js',
|
|
47
|
-
'lib/wasi.js',
|
|
48
|
-
'lib/punycode.js',
|
|
49
|
-
'lib/net.js',
|
|
50
52
|
'lib/worker_threads.js',
|
|
51
|
-
'lib/
|
|
52
|
-
'lib/http.js',
|
|
53
|
+
'lib/path.js',
|
|
53
54
|
'lib/http2.js',
|
|
54
|
-
'lib/
|
|
55
|
-
'lib/
|
|
56
|
-
'lib/
|
|
57
|
-
'lib/_stream_passthrough.js',
|
|
55
|
+
'lib/readline.js',
|
|
56
|
+
'lib/_http_common.js',
|
|
57
|
+
'lib/_stream_readable.js',
|
|
58
58
|
'lib/_http_client.js',
|
|
59
|
-
'lib/
|
|
60
|
-
'lib/
|
|
61
|
-
'lib/
|
|
59
|
+
'lib/async_hooks.js',
|
|
60
|
+
'lib/_tls_wrap.js',
|
|
61
|
+
'lib/v8.js',
|
|
62
|
+
'lib/events.js',
|
|
63
|
+
'lib/constants.js',
|
|
64
|
+
'lib/tty.js',
|
|
65
|
+
'lib/process.js',
|
|
66
|
+
'lib/dgram.js',
|
|
62
67
|
'lib/_http_server.js',
|
|
63
|
-
'lib/_stream_transform.js',
|
|
64
|
-
'lib/_stream_readable.js',
|
|
65
|
-
'lib/repl.js',
|
|
66
|
-
'lib/module.js',
|
|
67
|
-
'lib/assert.js',
|
|
68
|
-
'lib/dns.js',
|
|
69
|
-
'lib/fs.js',
|
|
70
|
-
'lib/inspector.js',
|
|
71
|
-
'lib/_http_outgoing.js',
|
|
72
|
-
'lib/os.js',
|
|
73
|
-
'lib/path.js',
|
|
74
|
-
'lib/_stream_writable.js',
|
|
75
|
-
'lib/tls.js',
|
|
76
|
-
'lib/console.js',
|
|
77
68
|
'lib/domain.js',
|
|
78
|
-
'lib/
|
|
79
|
-
'lib/
|
|
80
|
-
'lib/
|
|
69
|
+
'lib/http.js',
|
|
70
|
+
'lib/_stream_duplex.js',
|
|
71
|
+
'lib/vm.js',
|
|
81
72
|
'lib/https.js',
|
|
82
|
-
'lib/
|
|
73
|
+
'lib/perf_hooks.js',
|
|
74
|
+
'lib/child_process.js',
|
|
83
75
|
'lib/stream.js',
|
|
76
|
+
'lib/timers.js',
|
|
77
|
+
'lib/querystring.js',
|
|
78
|
+
'lib/net.js',
|
|
79
|
+
'lib/_http_incoming.js',
|
|
80
|
+
'lib/fs.js',
|
|
81
|
+
'lib/cluster.js',
|
|
82
|
+
'lib/console.js',
|
|
83
|
+
'lib/repl.js',
|
|
84
|
+
'lib/zlib.js',
|
|
84
85
|
'lib/_http_agent.js',
|
|
85
|
-
'lib/
|
|
86
|
-
'lib/
|
|
87
|
-
'lib/
|
|
88
|
-
'lib/
|
|
89
|
-
'lib/
|
|
90
|
-
'lib/
|
|
91
|
-
'lib/
|
|
86
|
+
'lib/_http_outgoing.js',
|
|
87
|
+
'lib/readline/promises.js',
|
|
88
|
+
'lib/timers/promises.js',
|
|
89
|
+
'lib/path/win32.js',
|
|
90
|
+
'lib/path/posix.js',
|
|
91
|
+
'lib/stream/promises.js',
|
|
92
|
+
'lib/stream/consumers.js',
|
|
93
|
+
'lib/stream/web.js',
|
|
94
|
+
'lib/fs/promises.js',
|
|
95
|
+
'lib/internal/url.js',
|
|
92
96
|
'lib/internal/priority_queue.js',
|
|
97
|
+
'lib/internal/watchdog.js',
|
|
98
|
+
'lib/internal/socket_list.js',
|
|
99
|
+
'lib/internal/buffer.js',
|
|
100
|
+
'lib/internal/freelist.js',
|
|
101
|
+
'lib/internal/trace_events_async_hooks.js',
|
|
102
|
+
'lib/internal/dtrace.js',
|
|
103
|
+
'lib/internal/inspector_async_hook.js',
|
|
93
104
|
'lib/internal/util.js',
|
|
94
|
-
'lib/internal/error_serdes.js',
|
|
95
105
|
'lib/internal/options.js',
|
|
96
|
-
'lib/internal/
|
|
97
|
-
'lib/internal/
|
|
98
|
-
'lib/internal/
|
|
99
|
-
'lib/internal/structured_clone.js',
|
|
106
|
+
'lib/internal/cli_table.js',
|
|
107
|
+
'lib/internal/assert.js',
|
|
108
|
+
'lib/internal/heap_utils.js',
|
|
100
109
|
'lib/internal/v8_prof_processor.js',
|
|
101
|
-
'lib/internal/
|
|
110
|
+
'lib/internal/encoding.js',
|
|
111
|
+
'lib/internal/validators.js',
|
|
112
|
+
'lib/internal/worker.js',
|
|
113
|
+
'lib/internal/idna.js',
|
|
114
|
+
'lib/internal/abort_controller.js',
|
|
115
|
+
'lib/internal/promise_hooks.js',
|
|
116
|
+
'lib/internal/async_hooks.js',
|
|
117
|
+
'lib/internal/constants.js',
|
|
118
|
+
'lib/internal/tty.js',
|
|
102
119
|
'lib/internal/blob.js',
|
|
103
|
-
'lib/internal/
|
|
104
|
-
'lib/internal/stream_base_commons.js',
|
|
120
|
+
'lib/internal/dgram.js',
|
|
105
121
|
'lib/internal/js_stream_socket.js',
|
|
106
|
-
'lib/internal/net.js',
|
|
107
122
|
'lib/internal/http.js',
|
|
108
|
-
'lib/internal/
|
|
109
|
-
'lib/internal/
|
|
123
|
+
'lib/internal/fixed_queue.js',
|
|
124
|
+
'lib/internal/stream_base_commons.js',
|
|
125
|
+
'lib/internal/structured_clone.js',
|
|
126
|
+
'lib/internal/linkedlist.js',
|
|
127
|
+
'lib/internal/child_process.js',
|
|
110
128
|
'lib/internal/histogram.js',
|
|
129
|
+
'lib/internal/error_serdes.js',
|
|
111
130
|
'lib/internal/timers.js',
|
|
112
|
-
'lib/internal/
|
|
113
|
-
'lib/internal/
|
|
114
|
-
'lib/internal/linkedlist.js',
|
|
115
|
-
'lib/internal/encoding.js',
|
|
116
|
-
'lib/internal/repl.js',
|
|
117
|
-
'lib/internal/idna.js',
|
|
118
|
-
'lib/internal/assert.js',
|
|
119
|
-
'lib/internal/errors.js',
|
|
120
|
-
'lib/internal/heap_utils.js',
|
|
121
|
-
'lib/internal/socket_list.js',
|
|
122
|
-
'lib/internal/freelist.js',
|
|
131
|
+
'lib/internal/querystring.js',
|
|
132
|
+
'lib/internal/net.js',
|
|
123
133
|
'lib/internal/v8_prof_polyfill.js',
|
|
124
|
-
'lib/internal/
|
|
125
|
-
'lib/internal/inspector_async_hook.js',
|
|
126
|
-
'lib/internal/cli_table.js',
|
|
127
|
-
'lib/internal/worker.js',
|
|
128
|
-
'lib/internal/fixed_queue.js',
|
|
134
|
+
'lib/internal/freeze_intrinsics.js',
|
|
129
135
|
'lib/internal/wasm_web_api.js',
|
|
130
|
-
'lib/internal/
|
|
131
|
-
'lib/internal/
|
|
132
|
-
'lib/internal/
|
|
133
|
-
'lib/internal/
|
|
134
|
-
'lib/internal/
|
|
135
|
-
'lib/internal/
|
|
136
|
-
'lib/internal/
|
|
137
|
-
'lib/internal/streams/buffer_list.js',
|
|
138
|
-
'lib/internal/streams/duplexify.js',
|
|
139
|
-
'lib/internal/streams/passthrough.js',
|
|
140
|
-
'lib/internal/streams/legacy.js',
|
|
141
|
-
'lib/internal/streams/duplex.js',
|
|
142
|
-
'lib/internal/streams/end-of-stream.js',
|
|
143
|
-
'lib/internal/streams/state.js',
|
|
144
|
-
'lib/internal/streams/operators.js',
|
|
145
|
-
'lib/internal/streams/pipeline.js',
|
|
146
|
-
'lib/internal/streams/lazy_transform.js',
|
|
147
|
-
'lib/internal/streams/transform.js',
|
|
148
|
-
'lib/internal/streams/compose.js',
|
|
149
|
-
'lib/internal/streams/utils.js',
|
|
150
|
-
'lib/internal/streams/from.js',
|
|
151
|
-
'lib/internal/webstreams/writablestream.js',
|
|
152
|
-
'lib/internal/webstreams/util.js',
|
|
153
|
-
'lib/internal/webstreams/transformstream.js',
|
|
154
|
-
'lib/internal/webstreams/encoding.js',
|
|
155
|
-
'lib/internal/webstreams/queuingstrategies.js',
|
|
156
|
-
'lib/internal/webstreams/compression.js',
|
|
157
|
-
'lib/internal/webstreams/transfer.js',
|
|
158
|
-
'lib/internal/webstreams/adapters.js',
|
|
159
|
-
'lib/internal/webstreams/readablestream.js',
|
|
136
|
+
'lib/internal/errors.js',
|
|
137
|
+
'lib/internal/socketaddress.js',
|
|
138
|
+
'lib/internal/repl.js',
|
|
139
|
+
'lib/internal/event_target.js',
|
|
140
|
+
'lib/internal/blocklist.js',
|
|
141
|
+
'lib/internal/legacy/processbinding.js',
|
|
142
|
+
'lib/internal/child_process/serialization.js',
|
|
160
143
|
'lib/internal/cluster/round_robin_handle.js',
|
|
161
144
|
'lib/internal/cluster/child.js',
|
|
145
|
+
'lib/internal/cluster/worker.js',
|
|
146
|
+
'lib/internal/cluster/utils.js',
|
|
162
147
|
'lib/internal/cluster/shared_handle.js',
|
|
163
148
|
'lib/internal/cluster/primary.js',
|
|
164
|
-
'lib/internal/
|
|
165
|
-
'lib/internal/
|
|
166
|
-
'lib/internal/
|
|
167
|
-
'lib/internal/
|
|
168
|
-
'lib/internal/
|
|
169
|
-
'lib/internal/
|
|
170
|
-
'lib/internal/
|
|
149
|
+
'lib/internal/bootstrap/node.js',
|
|
150
|
+
'lib/internal/bootstrap/browser.js',
|
|
151
|
+
'lib/internal/bootstrap/loaders.js',
|
|
152
|
+
'lib/internal/bootstrap/switches/is_not_main_thread.js',
|
|
153
|
+
'lib/internal/bootstrap/switches/does_own_process_state.js',
|
|
154
|
+
'lib/internal/bootstrap/switches/is_main_thread.js',
|
|
155
|
+
'lib/internal/bootstrap/switches/does_not_own_process_state.js',
|
|
156
|
+
'lib/internal/readline/interface.js',
|
|
171
157
|
'lib/internal/readline/promises.js',
|
|
172
158
|
'lib/internal/readline/emitKeypressEvents.js',
|
|
173
|
-
'lib/internal/readline/interface.js',
|
|
174
|
-
'lib/internal/readline/utils.js',
|
|
175
159
|
'lib/internal/readline/callbacks.js',
|
|
176
|
-
'lib/internal/
|
|
177
|
-
'lib/internal/console/constructor.js',
|
|
178
|
-
'lib/internal/crypto/cfrg.js',
|
|
179
|
-
'lib/internal/crypto/keys.js',
|
|
180
|
-
'lib/internal/crypto/rsa.js',
|
|
181
|
-
'lib/internal/crypto/util.js',
|
|
182
|
-
'lib/internal/crypto/x509.js',
|
|
183
|
-
'lib/internal/crypto/ec.js',
|
|
184
|
-
'lib/internal/crypto/cipher.js',
|
|
185
|
-
'lib/internal/crypto/hashnames.js',
|
|
186
|
-
'lib/internal/crypto/certificate.js',
|
|
187
|
-
'lib/internal/crypto/aes.js',
|
|
188
|
-
'lib/internal/crypto/sig.js',
|
|
189
|
-
'lib/internal/crypto/mac.js',
|
|
190
|
-
'lib/internal/crypto/pbkdf2.js',
|
|
191
|
-
'lib/internal/crypto/random.js',
|
|
192
|
-
'lib/internal/crypto/scrypt.js',
|
|
193
|
-
'lib/internal/crypto/hash.js',
|
|
194
|
-
'lib/internal/crypto/webcrypto.js',
|
|
195
|
-
'lib/internal/crypto/hkdf.js',
|
|
196
|
-
'lib/internal/crypto/diffiehellman.js',
|
|
197
|
-
'lib/internal/crypto/keygen.js',
|
|
198
|
-
'lib/internal/vm/module.js',
|
|
199
|
-
'lib/internal/dns/promises.js',
|
|
200
|
-
'lib/internal/dns/utils.js',
|
|
201
|
-
'lib/internal/assert/calltracker.js',
|
|
202
|
-
'lib/internal/assert/assertion_error.js',
|
|
203
|
-
'lib/internal/repl/history.js',
|
|
204
|
-
'lib/internal/repl/await.js',
|
|
205
|
-
'lib/internal/repl/utils.js',
|
|
206
|
-
'lib/internal/debugger/inspect_repl.js',
|
|
207
|
-
'lib/internal/debugger/inspect_client.js',
|
|
208
|
-
'lib/internal/debugger/inspect.js',
|
|
209
|
-
'lib/internal/v8/startup_snapshot.js',
|
|
210
|
-
'lib/internal/legacy/processbinding.js',
|
|
211
|
-
'lib/internal/perf/usertiming.js',
|
|
212
|
-
'lib/internal/perf/performance_entry.js',
|
|
213
|
-
'lib/internal/perf/event_loop_delay.js',
|
|
214
|
-
'lib/internal/perf/nodetiming.js',
|
|
215
|
-
'lib/internal/perf/resource_timing.js',
|
|
216
|
-
'lib/internal/perf/observe.js',
|
|
217
|
-
'lib/internal/perf/timerify.js',
|
|
218
|
-
'lib/internal/perf/event_loop_utilization.js',
|
|
219
|
-
'lib/internal/perf/performance.js',
|
|
220
|
-
'lib/internal/perf/utils.js',
|
|
221
|
-
'lib/internal/modules/run_main.js',
|
|
160
|
+
'lib/internal/readline/utils.js',
|
|
222
161
|
'lib/internal/modules/package_json_reader.js',
|
|
162
|
+
'lib/internal/modules/run_main.js',
|
|
223
163
|
'lib/internal/modules/cjs/helpers.js',
|
|
224
164
|
'lib/internal/modules/cjs/loader.js',
|
|
165
|
+
'lib/internal/modules/esm/module_map.js',
|
|
166
|
+
'lib/internal/modules/esm/translators.js',
|
|
167
|
+
'lib/internal/modules/esm/load.js',
|
|
225
168
|
'lib/internal/modules/esm/initialize_import_meta.js',
|
|
226
|
-
'lib/internal/modules/esm/
|
|
227
|
-
'lib/internal/modules/esm/create_dynamic_module.js',
|
|
169
|
+
'lib/internal/modules/esm/assert.js',
|
|
228
170
|
'lib/internal/modules/esm/module_job.js',
|
|
229
|
-
'lib/internal/modules/esm/
|
|
171
|
+
'lib/internal/modules/esm/package_config.js',
|
|
172
|
+
'lib/internal/modules/esm/fetch_module.js',
|
|
230
173
|
'lib/internal/modules/esm/get_format.js',
|
|
231
|
-
'lib/internal/modules/esm/
|
|
232
|
-
'lib/internal/modules/esm/load.js',
|
|
233
|
-
'lib/internal/modules/esm/translators.js',
|
|
234
|
-
'lib/internal/modules/esm/module_map.js',
|
|
174
|
+
'lib/internal/modules/esm/create_dynamic_module.js',
|
|
235
175
|
'lib/internal/modules/esm/loader.js',
|
|
176
|
+
'lib/internal/modules/esm/formats.js',
|
|
236
177
|
'lib/internal/modules/esm/handle_process_exit.js',
|
|
237
|
-
'lib/internal/modules/esm/
|
|
238
|
-
'lib/internal/
|
|
239
|
-
'lib/internal/
|
|
240
|
-
'lib/internal/
|
|
241
|
-
'lib/internal/
|
|
242
|
-
'lib/internal/
|
|
243
|
-
'lib/internal/
|
|
244
|
-
'lib/internal/
|
|
245
|
-
'lib/internal/
|
|
246
|
-
'lib/internal/
|
|
247
|
-
'lib/internal/
|
|
248
|
-
'lib/internal/
|
|
249
|
-
'lib/internal/
|
|
178
|
+
'lib/internal/modules/esm/resolve.js',
|
|
179
|
+
'lib/internal/worker/js_transferable.js',
|
|
180
|
+
'lib/internal/worker/io.js',
|
|
181
|
+
'lib/internal/vm/module.js',
|
|
182
|
+
'lib/internal/fs/promises.js',
|
|
183
|
+
'lib/internal/fs/dir.js',
|
|
184
|
+
'lib/internal/fs/streams.js',
|
|
185
|
+
'lib/internal/fs/utils.js',
|
|
186
|
+
'lib/internal/fs/read_file_context.js',
|
|
187
|
+
'lib/internal/fs/watchers.js',
|
|
188
|
+
'lib/internal/fs/rimraf.js',
|
|
189
|
+
'lib/internal/fs/sync_write_stream.js',
|
|
190
|
+
'lib/internal/fs/cp/cp-sync.js',
|
|
191
|
+
'lib/internal/fs/cp/cp.js',
|
|
192
|
+
'lib/internal/streams/compose.js',
|
|
193
|
+
'lib/internal/streams/from.js',
|
|
194
|
+
'lib/internal/streams/state.js',
|
|
195
|
+
'lib/internal/streams/transform.js',
|
|
196
|
+
'lib/internal/streams/end-of-stream.js',
|
|
197
|
+
'lib/internal/streams/destroy.js',
|
|
198
|
+
'lib/internal/streams/writable.js',
|
|
199
|
+
'lib/internal/streams/utils.js',
|
|
200
|
+
'lib/internal/streams/readable.js',
|
|
201
|
+
'lib/internal/streams/add-abort-signal.js',
|
|
202
|
+
'lib/internal/streams/operators.js',
|
|
203
|
+
'lib/internal/streams/duplex.js',
|
|
204
|
+
'lib/internal/streams/duplexify.js',
|
|
205
|
+
'lib/internal/streams/buffer_list.js',
|
|
206
|
+
'lib/internal/streams/passthrough.js',
|
|
207
|
+
'lib/internal/streams/legacy.js',
|
|
208
|
+
'lib/internal/streams/pipeline.js',
|
|
209
|
+
'lib/internal/streams/lazy_transform.js',
|
|
210
|
+
'lib/internal/test_runner/harness.js',
|
|
211
|
+
'lib/internal/test_runner/test.js',
|
|
212
|
+
'lib/internal/test_runner/tap_stream.js',
|
|
213
|
+
'lib/internal/test_runner/utils.js',
|
|
214
|
+
'lib/internal/process/worker_thread_only.js',
|
|
215
|
+
'lib/internal/process/execution.js',
|
|
216
|
+
'lib/internal/process/signal.js',
|
|
217
|
+
'lib/internal/process/promises.js',
|
|
218
|
+
'lib/internal/process/per_thread.js',
|
|
219
|
+
'lib/internal/process/esm_loader.js',
|
|
220
|
+
'lib/internal/process/pre_execution.js',
|
|
221
|
+
'lib/internal/process/task_queues.js',
|
|
222
|
+
'lib/internal/process/warning.js',
|
|
223
|
+
'lib/internal/process/policy.js',
|
|
224
|
+
'lib/internal/process/report.js',
|
|
225
|
+
'lib/internal/per_context/domexception.js',
|
|
250
226
|
'lib/internal/per_context/messageport.js',
|
|
251
227
|
'lib/internal/per_context/primordials.js',
|
|
252
|
-
'lib/internal/
|
|
228
|
+
'lib/internal/tls/secure-pair.js',
|
|
229
|
+
'lib/internal/tls/secure-context.js',
|
|
230
|
+
'lib/internal/v8/startup_snapshot.js',
|
|
231
|
+
'lib/internal/assert/snapshot.js',
|
|
232
|
+
'lib/internal/assert/assertion_error.js',
|
|
233
|
+
'lib/internal/assert/calltracker.js',
|
|
234
|
+
'lib/internal/console/constructor.js',
|
|
235
|
+
'lib/internal/console/global.js',
|
|
236
|
+
'lib/internal/util/comparisons.js',
|
|
237
|
+
'lib/internal/util/inspector.js',
|
|
238
|
+
'lib/internal/util/iterable_weak_map.js',
|
|
239
|
+
'lib/internal/util/debuglog.js',
|
|
240
|
+
'lib/internal/util/types.js',
|
|
241
|
+
'lib/internal/util/inspect.js',
|
|
242
|
+
'lib/internal/util/parse_args/utils.js',
|
|
243
|
+
'lib/internal/util/parse_args/parse_args.js',
|
|
253
244
|
'lib/internal/source_map/source_map_cache.js',
|
|
254
245
|
'lib/internal/source_map/source_map.js',
|
|
255
246
|
'lib/internal/source_map/prepare_stack_trace.js',
|
|
256
|
-
'lib/internal/
|
|
257
|
-
'lib/internal/
|
|
258
|
-
'lib/internal/process/policy.js',
|
|
259
|
-
'lib/internal/process/worker_thread_only.js',
|
|
260
|
-
'lib/internal/process/task_queues.js',
|
|
261
|
-
'lib/internal/process/signal.js',
|
|
262
|
-
'lib/internal/process/esm_loader.js',
|
|
263
|
-
'lib/internal/process/per_thread.js',
|
|
264
|
-
'lib/internal/process/execution.js',
|
|
265
|
-
'lib/internal/process/warning.js',
|
|
266
|
-
'lib/internal/policy/manifest.js',
|
|
247
|
+
'lib/internal/dns/promises.js',
|
|
248
|
+
'lib/internal/dns/utils.js',
|
|
267
249
|
'lib/internal/policy/sri.js',
|
|
268
|
-
'lib/internal/
|
|
269
|
-
'lib/internal/main/run_main_module.js',
|
|
270
|
-
'lib/internal/main/check_syntax.js',
|
|
250
|
+
'lib/internal/policy/manifest.js',
|
|
271
251
|
'lib/internal/main/worker_thread.js',
|
|
272
|
-
'lib/internal/main/
|
|
273
|
-
'lib/internal/main/repl.js',
|
|
274
|
-
'lib/internal/main/inspect.js',
|
|
275
|
-
'lib/internal/main/eval_string.js',
|
|
252
|
+
'lib/internal/main/environment.js',
|
|
276
253
|
'lib/internal/main/eval_stdin.js',
|
|
254
|
+
'lib/internal/main/run_main_module.js',
|
|
255
|
+
'lib/internal/main/print_help.js',
|
|
256
|
+
'lib/internal/main/eval_string.js',
|
|
277
257
|
'lib/internal/main/prof_process.js',
|
|
278
258
|
'lib/internal/main/mksnapshot.js',
|
|
279
|
-
'lib/internal/
|
|
280
|
-
'lib/internal/
|
|
281
|
-
'lib/internal/
|
|
282
|
-
'lib/internal/
|
|
283
|
-
'lib/internal/
|
|
284
|
-
'lib/internal/
|
|
285
|
-
'lib/internal/
|
|
286
|
-
'lib/internal/
|
|
287
|
-
'lib/internal/
|
|
288
|
-
'lib/internal/
|
|
289
|
-
'lib/internal/
|
|
290
|
-
'lib/internal/
|
|
291
|
-
'lib/internal/
|
|
292
|
-
'lib/internal/
|
|
293
|
-
'lib/internal/
|
|
294
|
-
'lib/internal/
|
|
295
|
-
'lib/internal/
|
|
296
|
-
'lib/internal/
|
|
297
|
-
'lib/internal/
|
|
298
|
-
'lib/internal/
|
|
299
|
-
'lib/internal/
|
|
300
|
-
'lib/internal/
|
|
301
|
-
'lib/internal/
|
|
302
|
-
'lib/internal/
|
|
303
|
-
'lib/
|
|
304
|
-
'lib/
|
|
259
|
+
'lib/internal/main/inspect.js',
|
|
260
|
+
'lib/internal/main/test_runner.js',
|
|
261
|
+
'lib/internal/main/check_syntax.js',
|
|
262
|
+
'lib/internal/main/repl.js',
|
|
263
|
+
'lib/internal/repl/history.js',
|
|
264
|
+
'lib/internal/repl/utils.js',
|
|
265
|
+
'lib/internal/repl/await.js',
|
|
266
|
+
'lib/internal/perf/nodetiming.js',
|
|
267
|
+
'lib/internal/perf/observe.js',
|
|
268
|
+
'lib/internal/perf/performance_entry.js',
|
|
269
|
+
'lib/internal/perf/usertiming.js',
|
|
270
|
+
'lib/internal/perf/utils.js',
|
|
271
|
+
'lib/internal/perf/event_loop_delay.js',
|
|
272
|
+
'lib/internal/perf/performance.js',
|
|
273
|
+
'lib/internal/perf/timerify.js',
|
|
274
|
+
'lib/internal/perf/event_loop_utilization.js',
|
|
275
|
+
'lib/internal/perf/resource_timing.js',
|
|
276
|
+
'lib/internal/crypto/keygen.js',
|
|
277
|
+
'lib/internal/crypto/cipher.js',
|
|
278
|
+
'lib/internal/crypto/keys.js',
|
|
279
|
+
'lib/internal/crypto/util.js',
|
|
280
|
+
'lib/internal/crypto/mac.js',
|
|
281
|
+
'lib/internal/crypto/scrypt.js',
|
|
282
|
+
'lib/internal/crypto/sig.js',
|
|
283
|
+
'lib/internal/crypto/rsa.js',
|
|
284
|
+
'lib/internal/crypto/cfrg.js',
|
|
285
|
+
'lib/internal/crypto/x509.js',
|
|
286
|
+
'lib/internal/crypto/hash.js',
|
|
287
|
+
'lib/internal/crypto/hkdf.js',
|
|
288
|
+
'lib/internal/crypto/pbkdf2.js',
|
|
289
|
+
'lib/internal/crypto/diffiehellman.js',
|
|
290
|
+
'lib/internal/crypto/random.js',
|
|
291
|
+
'lib/internal/crypto/certificate.js',
|
|
292
|
+
'lib/internal/crypto/ec.js',
|
|
293
|
+
'lib/internal/crypto/hashnames.js',
|
|
294
|
+
'lib/internal/crypto/aes.js',
|
|
295
|
+
'lib/internal/crypto/webcrypto.js',
|
|
296
|
+
'lib/internal/webstreams/transfer.js',
|
|
297
|
+
'lib/internal/webstreams/adapters.js',
|
|
298
|
+
'lib/internal/webstreams/util.js',
|
|
299
|
+
'lib/internal/webstreams/writablestream.js',
|
|
300
|
+
'lib/internal/webstreams/encoding.js',
|
|
301
|
+
'lib/internal/webstreams/transformstream.js',
|
|
302
|
+
'lib/internal/webstreams/readablestream.js',
|
|
303
|
+
'lib/internal/webstreams/queuingstrategies.js',
|
|
304
|
+
'lib/internal/webstreams/compression.js',
|
|
305
|
+
'lib/internal/http2/util.js',
|
|
306
|
+
'lib/internal/http2/compat.js',
|
|
307
|
+
'lib/internal/http2/core.js',
|
|
308
|
+
'lib/internal/test/transfer.js',
|
|
309
|
+
'lib/internal/test/binding.js',
|
|
310
|
+
'lib/internal/debugger/inspect_client.js',
|
|
311
|
+
'lib/internal/debugger/inspect_repl.js',
|
|
312
|
+
'lib/internal/debugger/inspect.js',
|
|
305
313
|
'lib/assert/strict.js',
|
|
306
|
-
'lib/timers/promises.js',
|
|
307
|
-
'lib/path/posix.js',
|
|
308
|
-
'lib/path/win32.js',
|
|
309
|
-
'lib/stream/promises.js',
|
|
310
|
-
'lib/stream/consumers.js',
|
|
311
|
-
'lib/stream/web.js',
|
|
312
314
|
'lib/util/types.js',
|
|
313
|
-
'lib/
|
|
315
|
+
'lib/dns/promises.js'],
|
|
314
316
|
'node_module_version': 108,
|
|
315
317
|
'node_no_browser_globals': 'false',
|
|
316
318
|
'node_prefix': '/',
|
package/include/node/node_api.h
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#ifdef BUILDING_NODE_EXTENSION
|
|
5
5
|
#ifdef _WIN32
|
|
6
|
-
// Building native
|
|
6
|
+
// Building native addon against node
|
|
7
7
|
#define NAPI_EXTERN __declspec(dllimport)
|
|
8
8
|
#elif defined(__wasm32__)
|
|
9
9
|
#define NAPI_EXTERN __attribute__((__import_module__("napi")))
|
|
@@ -256,6 +256,12 @@ class V8_EXPORT ArrayBuffer : public Object {
|
|
|
256
256
|
*/
|
|
257
257
|
std::shared_ptr<BackingStore> GetBackingStore();
|
|
258
258
|
|
|
259
|
+
/**
|
|
260
|
+
* More efficient shortcut for GetBackingStore()->Data(). The returned pointer
|
|
261
|
+
* is valid as long as the ArrayBuffer is alive.
|
|
262
|
+
*/
|
|
263
|
+
void* Data() const;
|
|
264
|
+
|
|
259
265
|
V8_INLINE static ArrayBuffer* Cast(Value* value) {
|
|
260
266
|
#ifdef V8_ENABLE_CHECKS
|
|
261
267
|
CheckCast(value);
|
|
@@ -414,6 +420,12 @@ class V8_EXPORT SharedArrayBuffer : public Object {
|
|
|
414
420
|
*/
|
|
415
421
|
std::shared_ptr<BackingStore> GetBackingStore();
|
|
416
422
|
|
|
423
|
+
/**
|
|
424
|
+
* More efficient shortcut for GetBackingStore()->Data(). The returned pointer
|
|
425
|
+
* is valid as long as the ArrayBuffer is alive.
|
|
426
|
+
*/
|
|
427
|
+
void* Data() const;
|
|
428
|
+
|
|
417
429
|
V8_INLINE static SharedArrayBuffer* Cast(Value* value) {
|
|
418
430
|
#ifdef V8_ENABLE_CHECKS
|
|
419
431
|
CheckCast(value);
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -432,6 +432,7 @@ favour of TLSv1.3, which is more secure.
|
|
|
432
432
|
Print short summaries of calls to
|
|
433
433
|
.Sy Atomics.wait() .
|
|
434
434
|
.
|
|
435
|
+
This flag is deprecated.
|
|
435
436
|
.It Fl -trace-deprecation
|
|
436
437
|
Print stack traces for deprecations.
|
|
437
438
|
.
|
|
@@ -648,6 +649,7 @@ instead of printing to stderr.
|
|
|
648
649
|
Equivalent to passing
|
|
649
650
|
.Fl -redirect-warnings Ar file
|
|
650
651
|
on the command line.
|
|
652
|
+
.
|
|
651
653
|
.It Ev NODE_REPL_HISTORY Ar file
|
|
652
654
|
Path to the
|
|
653
655
|
.Ar file
|
|
@@ -657,6 +659,10 @@ The default path is
|
|
|
657
659
|
which is overridden by this variable.
|
|
658
660
|
Setting the value to an empty string ("" or " ") will disable persistent REPL history.
|
|
659
661
|
.
|
|
662
|
+
.It Ev NODE_REPL_EXTERNAL_MODULE Ar file
|
|
663
|
+
Path to a Node.js module which will be loaded in place of the built-in REPL.
|
|
664
|
+
Overriding this value to an empty string (`''`) will use the built-in REPL.
|
|
665
|
+
.
|
|
660
666
|
.It Ev NODE_SKIP_PLATFORM_CHECK
|
|
661
667
|
When set to
|
|
662
668
|
.Ar 1 ,
|
|
@@ -692,6 +698,9 @@ If
|
|
|
692
698
|
.Fl -use-openssl-ca
|
|
693
699
|
is enabled, this overrides and sets OpenSSL's file containing trusted certificates.
|
|
694
700
|
.
|
|
701
|
+
.It Ev TZ
|
|
702
|
+
Specify the timezone configuration.
|
|
703
|
+
.
|
|
695
704
|
.It Ev UV_THREADPOOL_SIZE Ar size
|
|
696
705
|
Sets the number of threads used in libuv's threadpool to
|
|
697
706
|
.Ar size .
|