Update dependency node to v18.8.0
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
node | ironbank-docker | minor |
18.3.0 -> 18.8.0
|
node | minor |
18.3.0 -> 18.8.0
|
|
node | stage | minor |
18.3.0 -> 18.8.0
|
Release Notes
nodejs/node
v18.8.0
Notable changes
bootstrap: implement run-time user-land snapshots via --build-snapshot and --snapshot-blob
This patch introduces --build-snapshot
and --snapshot-blob
options for creating and using user land snapshots.
To generate a snapshot using snapshot.js as an entry point and write the snapshot blob to snapshot.blob:
echo "globalThis.foo = 'I am from the snapshot'" > snapshot.js
node --snapshot-blob snapshot.blob --build-snapshot snapshot.js
To restore application state from snapshot.blob, with index.js as the entry point script for the deserialized application:
echo "console.log(globalThis.foo)" > index.js
node --snapshot-blob snapshot.blob index.js
##### => I am from the snapshot
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:
echo "require('v8').startupSnapshot.setDeserializeMainFunction(() => console.log('I am from the snapshot'))" > snapshot.js
node --snapshot-blob snapshot.blob --build-snapshot snapshot.js
node --snapshot-blob snapshot.blob
##### => I am from the snapshot
Contributed by Joyee Cheung in #38905
Other notable changes
- crypto:
-
deps:
- upgrade npm to 8.18.0 (npm team) #44263 - Adds a new
npm query
command
- upgrade npm to 8.18.0 (npm team) #44263 - Adds a new
- doc:
-
http:
- (SEMVER-MINOR) make idle http parser count configurable (theanarkh) #43974
-
net:
- (SEMVER-MINOR) add local family (theanarkh) #43975
-
src:
- (SEMVER-MINOR) print source map error source on demand (Chengzhong Wu) #43875
-
tls:
- (SEMVER-MINOR) pass a valid socket on
tlsClientError
(Daeyeon Jeong) #44021
- (SEMVER-MINOR) pass a valid socket on
Commits
- [
0e20072e32
] - assert: addgetCalls
andreset
to callTracker (Moshe Atlow) #44191 - [
126fbbab74
] - assert: add assert.Snapshot (Moshe Atlow) #44095 - [
87d7845b4f
] - bootstrap: fixup Error.stackTraceLimit for user-land snapshot (Joyee Cheung) #44203 - [
597a5171ee
] - (SEMVER-MINOR) bootstrap: clean up warning setup during serialization (Joyee Cheung) #38905 - [
3561514ff5
] - (SEMVER-MINOR) bootstrap: implement --snapshot-blob and --build-snapshot (Joyee Cheung) #38905 - [
123b2d6795
] - bootstrap: turn on FunctionCodeHandling::kKeep in the snapshot builder (Joyee Cheung) #44104 - [
e7d101fbd4
] - bootstrap: support more builtins in the embedded code cache (Joyee Cheung) #44018 - [
2ae2828040
] - build: enable pointer authentication for branch protection on arm64 (Jeremiah Gowdy) #43200 - [
fecec4d3ba
] - build: add workflow to label flaky-test platform (Rafael Gonzaga) #44042 - [
c975c4f674
] - build: optimized and fixed building configuration to Android (BuShe) #44016 - [
ec1b31e6ad
] - build: allow test-internet on forks if not scheduled (Rich Trott) #44073 - [
ea48c5673b
] - build: skip test-internet run on forks (Rich Trott) #44054 - [
1c0d66e927
] - (SEMVER-MINOR) crypto: allow zero-length IKM in HKDF and in webcrypto PBKDF2 (Filip Skokan) #44201 - [
07d90c8a71
] - (SEMVER-MINOR) crypto: allow zero-length secret KeyObject (Filip Skokan) #44201 - [
ac2b10e0c7
] - crypto: fix webcrypto deriveBits validations (Filip Skokan) #44173 - [
4c902be5a5
] - crypto: fix webcrypto EC key namedCurve validation errors (Filip Skokan) #44172 - [
81e1ec4f6f
] - crypto: fix webcrypto generateKey() AES key length validation error (Filip Skokan) #44170 - [
ad8ef3a56c
] - crypto: fix webcrypto operation errors to be OperationError (Filip Skokan) #44171 - [
c270b9a0aa
] - deps: update corepack to 0.13.0 (Node.js GitHub Bot) #44318 - [
bce8041d67
] - deps: upgrade npm to 8.18.0 (npm team) #44263 - [
a26997263b
] - deps: update corepack to 0.12.3 (Node.js GitHub Bot) #44229 - [
b1590bbca2
] - deps: upgrade npm to 8.17.0 (npm team) #44205 - [
818271c1c3
] - deps: update undici to 5.8.2 (Node.js GitHub Bot) #44187 - [
d09bc5402d
] - deps: update undici to 5.8.1 (Node.js GitHub Bot) #44158 - [
a92d90b482
] - deps: update corepack to 0.12.2 (Node.js GitHub Bot) #44159 - [
52a516a281
] - deps: V8: cherry-pick9861ce1
(Milad Fa) #44115 - [
763b956f07
] - deps: remove unnecessary file (Brian White) #44133 - [
194587e767
] - deps: upgrade npm to 8.16.0 (npm team) #44119 - [
116dcccc79
] - deps: upgrade base64 todc6a41c
(Brian White) #44032 - [
b7aaf3d4ca
] - deps: upgrade npm to 8.15.1 (npm team) #44013 - [
a0c57837c4
] - deps: cherry-pick00704f5
from V8 upstream (Keyhan Vakil) #43921 - [
19557ad6a4
] - dgram: add dgram send queue info (theanarkh) #44149 - [
a93371205b
] - doc: fix optionality of callback arg of checkPrime (Tobias Nießen) #44311 - [
d3f3bf602d
] - doc: fix typo (Hana) #44262 - [
7a567875b0
] - doc: add TypeScript execution requirements (Michael Dawson) #44030 - [
e8916fa758
] - doc: add cola119 to collaborators (cola119) #44248 - [
8c1fe86026
] - doc: fix added version for readable.closed/destroyed (Matthew Peveler) #44033 - [
f39a0514d3
] - doc: improved building doc for Android (BuShe) #44166 - [
4d26cb9bb2
] - doc: add MoLow to collaborators (Moshe Atlow) #44214 - [
6bff14b6f1
] - doc: update tags in adding-new-napi-api.md (Chengzhong Wu) #44190 - [
721639a1d4
] - doc: fix typo in diagnostics_channel (Evan Lucas) #44199 - [
0fffc24caa
] - doc: add Retry CI in collaborator guide (Livia Medeiros) #44130 - [
fb11643e31
] - doc: add performance note to--enable-source-maps
docs (Saurabh Daware) #43817 - [
cb7a9e78fd
] - doc: remove unused code in call tracker example (Colin Ihrig) #44127 - [
8c26daff7c
] - doc: add theanarkh to collaborators (theanarkh) #44131 - [
46f8fb8e53
] - doc: clarify tls.tlsSocket.getCipher().version (Adam Majer) #44086 - [
02236032f0
] - doc: update repository list in onboarding doc (Rich Trott) #44089 - [
58f2739e32
] - doc: add Erick Wendel to collaborators (Erick Wendel) #44088 - [
fe83d514b2
] - doc: update collaborator email (Ruy Adorno) #44044 - [
76011dd7f7
] - doc: copyedittest.md
(Antoine du Hamel) #44061 - [
1d6029aa3d
] - doc: add kvakil to triagers (Keyhan Vakil) #43996 - [
7f7a0eb2f5
] - doc: clarify part of onboarding guide regarding adding to teams (Darshan Sen) #44024 - [
2ae5d853a7
] - doc: fix code examples incrypto.md
(Antoine du Hamel) #44053 - [
1b9537b6a5
] - doc: claim ABI version for Electron 21 (Keeley Hammond) #44034 - [
d23dfa4dcb
] - doc: remove old reference from crypto/README.md (Tobias Nießen) #44012 - [
222ecd6e14
] - doc: add missing env vars to man page (cola119) #43492 - [
374b77619b
] - doc: list supported MODP groups explicitly (Tobias Nießen) #43986 - [
72a9ecf94f
] - doc: fix typo in packages.md (Dominic Saadi) #44005 - [
1b328305f0
] - doc: fix typos intest.md
(Antoine du Hamel) #43997 - [
7af55dbc40
] - doc: add missing test runner option (Moshe Atlow) #43989 - [
e8441a2864
] - doc,report: document special filenames (Chengzhong Wu) #44257 - [
da7bc5acdf
] - doc,worker: deprecate--trace-atomics-wait
(Keyhan Vakil) #44093 - [
37a9d7a754
] - errors: refactor to use optional chaining (SindreXie) #44184 - [
a6dccc969f
] - esm: do not bind loader hook functions (Antoine du Hamel) #44122 - [
5e9c197d85
] - esm: fix loader hooks accepting too many arguments (Jacob Smith) #44109 - [
e072c3aa70
] - esm: move package config helpers (Geoffrey Booth) #43967 - [
d57178cdfc
] - events: use bitset to save memory (Basit Chonka) #43700 - [
4ec3f671af
] - fs: add encoding parameter to benchmarks (Yagiz Nizipli) #44278 - [
851264ca90
] - http: add max for http keepalive (theanarkh) #44217 - [
340ca4d8fe
] - http: fix error message when specifying headerTimeout for createServer (Nick Sia) #44163 - [
c340344641
] - http: trace http request / response (theanarkh) #44102 - [
a2cd8b316c
] - (SEMVER-MINOR) http: make idle http parser count configurable (theanarkh) #43974 - [
5dc39a10bd
] - http: reuse socket only when it is drained (ywave620) #43902 - [
8c2d19b2d6
] - http: do not leak error listeners (Paolo Insogna) #43587 - [
1a44fbc19e
] - lib: add diagnostics channel and perf hooks detail (Danielle Adams) #43984 - [
8cfc8b0e7b
] - lib: refactor to avoid prototype pollution (Antoine du Hamel) #43474 - [
04007f2f51
] - lib: fix diagnostics channel (theanarkh) #44154 - [
c02bbdd921
] - lib: pass env variables to child process on z/OS (alexcfyung) #42255 - [
617ea4af1c
] - lib: add missing env vars to --help (cola119) #43492 - [
94912bb09c
] - lib: addPromise
methods toavoid-prototype-pollution
lint rule (Antoine du Hamel) #43849 - [
8977a87504
] - meta: update AUTHORS (Node.js GitHub Bot) #44321 - [
f7be92fe86
] - meta: updateweb streams
in label-pr-config (Daeyeon Jeong) #44235 - [
2c72ded880
] - meta: update AUTHORS (Node.js GitHub Bot) #44231 - [
c59dc7a4c1
] - meta: update AUTHORS (Node.js GitHub Bot) #44161 - [
e0efd9af50
] - meta: add codeowner for src/node_snapshot* (Chengzhong Wu) #44113 - [
a996f53c78
] - meta: update AUTHORS (Node.js GitHub Bot) #44065 - [
697dbfb174
] - meta: shorten PowerShell snippet for bug-report template (NicoNekoru) #44011 - [
05802c2877
] - module: protect against prototype mutation (Antoine du Hamel) #44007 - [
1b3fcf765f
] - (SEMVER-MINOR) net: create diagnostics channels lazily (Joyee Cheung) #38905 - [
aa7c053926
] - net: remove unused callback (theanarkh) #44204 - [
b6b632c09c
] - (SEMVER-MINOR) net: add local family (theanarkh) #43975 - [
c3d87564d4
] - net, dns: socket should handle its output as input (Adam Majer) #44083 - [
3ba75b341b
] - (SEMVER-MINOR) net,tls: pass a valid socket ontlsClientError
(Daeyeon Jeong) #44021 - [
0e38fba552
] - perf_hooks: add resourcetiming buffer limit (Chengzhong Wu) #44220 - [
b9fd240f63
] - perf_hooks: fix gc elapsed time (theanarkh) #44058 - [
8cf64998e2
] - report: print javascript stack on fatal error (Chengzhong Wu) #44242 - [
c842ab36b6
] - report: skip report if uncaught exception is handled (Chengzhong Wu) #44208 - [
ab73cc8706
] - src: disambiguate terms used to refer to builtins and addons (Joyee Cheung) #44135 - [
e9d19ac64c
] - src: use imported namespaces innode_contextify.cc
(Juan José) #44299 - [
3dadc95cd2
] - src: refactor to avoid using a moved object (Tobias Nießen) #44269 - [
3765c6335b
] - src: extract common context embedder tag checks (Chengzhong Wu) #44258 - [
d2dce59729
] - src: avoid copying BaseObjectPtrs in loop (Tobias Nießen) #44270 - [
9614907104
] - src: remove usage on ScriptCompiler::CompileFunctionInContext (Chengzhong Wu) #44198 - [
4e1ffd932e
] - src: fix --heapsnapshot-near-heap-limit error hint (Chengzhong Wu) #44216 - [
960a20928f
] - src: prevent copying ArrayBufferViewContents (Keyhan Vakil) #44091 - [
4755ad5495
] - src: remove usages of GetBackingStore in crypto (Keyhan Vakil) #44079 - [
a2022e5aff
] - src: remove unowned usages of GetBackingStore (Keyhan Vakil) #44080 - [
8e1b7e2b8f
] - src: remove usages of GetBackingStore in node-api (Keyhan Vakil) #44075 - [
cddf3eda28
] - src: remove usages of GetBackingStore in modules (Keyhan Vakil) #44076 - [
a54e4d4170
] - src: remove usages of GetBackingStore in WASI (Keyhan Vakil) #44077 - [
38cdb1f9b6
] - src: remove usages of GetBackingStore in startup (Keyhan Vakil) #44078 - [
c4783e37d7
] - src: nest namespace report in namespace node (Chengzhong Wu) #44069 - [
04bcdf63a0
] - src: use a typed array internally for process._exiting (Darshan Sen) #43883 - [
b90b8abdd5
] - src: fix bug in GetErrorSource() (Tobias Nießen) #44019 - [
728e18e025
] - src: fix to use replacement character (Kohei Ueno) #43999 - [
cc6e0fc8ff
] - src: improve SPKAC::ExportChallenge() (Tobias Nießen) #44002 - [
9763e2fba9
] - src: fix typo in src/README.md (Anna Henningsen) #44009 - [
460397709b
] - src: remove unnecessary cast in crypto_sig.cc (Tobias Nießen) #44001 - [
68ee8e9089
] - src: split property helpers from node::Environment (Chengzhong Wu) #44056 - [
9990dc7d18
] - src,buffer: remove unused chars_written parameter (Keyhan Vakil) #44092 - [
ecf82186e0
] - src,fs: refactor duplicated code in fs.readdir (Daeyeon Jeong) #43204 - [
ee6412a992
] - src,lib: print prinstine source when source map source not found (Chengzhong Wu) #44052 - [
4249276783
] - (SEMVER-MINOR) src,lib: print source map error source on demand (Chengzhong Wu) #43875 - [
1dabdbf05c
] - src,test: fix typos (SADIK KUZU) #44110 - [
a3ac445198
] - stream: fixisDetachedBuffer
validations (Daeyeon Jeong) #44114 - [
c079abe017
] - stream: improve views validation onBYOBRequest
(Daeyeon Jeong) #44155 - [
2f904bc8bf
] - stream: update TextEncoderStream to align the latest spec (Kohei Ueno) #44101 - [
40b817cfb9
] - (SEMVER-MINOR) test: test snapshotting TypeScript compiler (Joyee Cheung) #38905 - [
d4189ab609
] - (SEMVER-MINOR) test: add UMD module test with marked (Joyee Cheung) #38905 - [
514e5162d2
] - test: deflake test-diagnostics-channel-net (Keyhan Vakil) #44144 - [
a2707d0f48
] - test: add coverage for invalid RSA-PSS digests (Tobias Nießen) #44271 - [
7b6126a59a
] - test: update Web Streams WPT (Daeyeon Jeong) #44234 - [
a02492f96c
] - test: move "errors" test to "parallel" (Michaël Zasso) #44233 - [
b4224dd192
] - test: reduce http-server-request-timeouts-mixed flakiness (Nick Sia) #44169 - [
f5e2f6c362
] - test: remove cjs loader from stack traces (Geoffrey Booth) #44197 - [
e37314497a
] - test: add filesystem check totest-fs-stat-date.mjs
(Livia Medeiros) #44174 - [
9755b1f979
] - test: mark connection leak test flaky on IBM i (Richard Lau) #44215 - [
beaf5f5776
] - test: usemustSucceed
instead ofmustCall
withassert.ifError
(MURAKAMI Masahiko) #44196 - [
11f74e72a7
] - test: update WPT runner (Filip Skokan) #43455 - [
b2a15b6275
] - test: update wpt url status (Kohei Ueno) #44175 - [
6b84451d70
] - test: update wasm/jsapi web platform tests (Yagiz Nizipli) #44100 - [
537d52fa0f
] - test: update hr-time web platform tests (Yagiz Nizipli) #44100 - [
79445cb215
] - test: update console web platform tests (Yagiz Nizipli) #44100 - [
70267a0eeb
] - test: move tests with many workers to sequential (Keyhan Vakil) #44139 - [
86a7fb0c8a
] - test: deflake gc-http-client tests by restricting number of requests (Nick Sia) #44146 - [
e17117dfda
] - test: move test-vm-break-on-sigint to sequential (Keyhan Vakil) #44140 - [
e5113fab05
] - test: remove test-http-client-response-timeout flaky designation (Luigi Pinca) #44145 - [
f1b5f933d7
] - test: s390x z15 accelerated zlib fixes (Adam Majer) #44117 - [
86bbd5e61a
] - test: tune down parallelism for some flaky tests (Keyhan Vakil) #44090 - [
40e2ca7f66
] - test: fixinternet/test-inspector-help-page
(Daeyeon Jeong) #44025 - [
b19564b9d2
] - test: refactor ESM tests to improve performance (Jacob Smith) #43784 - [
d964b308ae
] - test: remove test-gc-http-client-timeout from flaky list (Feng Yu) #43971 - [
2cab7bb791
] - test: reduce loop times for preventing test from timeout (theanarkh) #43981 - [
9244d6d416
] - test: fix test-cluster-concurrent-disconnect (Daeyeon Jeong) #43961 - [
3c8037a9fa
] - test: change misleading variable name (Tobias Nießen) #43990 - [
82164344e2
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #44223 - [
c0b160c842
] - test_runner: fix test runner hooks failure stack (Moshe Atlow) #44284 - [
8ed39397d5
] - test_runner: refactor to use more primordials (Antoine du Hamel) #44062 - [
d8749c3b87
] - test_runner: verbous error when entire test tree is canceled (Moshe Atlow) #44060 - [
0d007471fa
] - test_runner: empty pending tests queue post running (Moshe Atlow) #44059 - [
c3fa82f007
] - test_runner: add before/after/each hooks (Moshe Atlow) #43730 - [
50c854bbfe
] - test_runner: fix top leveldescribe
queuing (Moshe Atlow) #43998 - [
04fdc3e1fa
] - test_runner: graceful termination on--test
only (Moshe Atlow) #43977 - [
51a0310398
] - test_runner: validateconcurrency
option (Antoine du Hamel) #43976 - [
ecf7b0720a
] - tls: use logical OR operator (Mohammed Keyvanzadeh) #44236 - [
f7c1b838ba
] - tools: update lint-md-dependencies to rollup@2.78.1 (Node.js GitHub Bot) #44320 - [
36b39db74d
] - tools: update ESLint to 8.22.0 (Luigi Pinca) #44243 - [
87f75a27fb
] - tools: update lint-md-dependencies to rollup@2.78.0 (Node.js GitHub Bot) #44244 - [
a3cc8ce959
] - tools: update lint-md-dependencies to rollup@2.77.3 (Node.js GitHub Bot) #44230 - [
873941a43e
] - tools: update eslint to 8.21.0 (Node.js GitHub Bot) #44162 - [
6be7e6d136
] - tools: update lint-md-dependencies to @rollup/plugin-commonjs@22.0.2 (Node.js GitHub Bot) #44160 - [
b252f389d7
] - tools: update undici CPE in vuln checking script (Facundo Tuesca) #44128 - [
3eacf25789
] - tools: update lint-md-dependencies to rollup@2.77.2 (Node.js GitHub Bot) #44064 - [
1175d9036a
] - tools: add verbose flag to find-inactive-collaborators (Rich Trott) #43964 - [
2cf3ce83d8
] - trace_events: add example (theanarkh) #43253 - [
2efce0fe5b
] - typings: add JSDoc forinternal/validators
(Yagiz Nizipli) #44181
v18.7.0
Notable changes
- doc:
- events:
-
http:
- (SEMVER-MINOR) add drop request event for http server (theanarkh) #43806
-
lib:
- (SEMVER-MINOR) improved diagnostics_channel subscribe/unsubscribe (Stephen Belanger) #42714
-
util:
- (SEMVER-MINOR) add tokens to parseArgs (John Gee) #43459
Commits
- [
0aa255ab72
] - bootstrap: handle snapshot errors gracefully (Joyee Cheung) #43531 - [
0783ddf57e
] - buffer: do not leak memory if buffer is too big (Keyhan Vakil) #43938 - [
12657accdd
] - build: add .gitattributes for npm and other shims (Hrishikesh Kadam) #43879 - [
c2db4f4581
] - build: make GitPod less noisy (Rich Trott) #43829 - [
364deeadcd
] - build: add GitHub token permissions for workflows (Varun Sharma) #43743 - [
8b83b4d5be
] - child_process: do not need to count length when maxBuffer is Infinity (theanarkh) #43822 - [
c1893b7a7c
] - child_process: avoid repeated calls tonormalizeSpawnArguments
(木杉) #43345 - [
7b276b89b9
] - cluster: send connection to other server when worker drop it (theanarkh) #43747 - [
e8c66f92a5
] - crypto: remove unneeded guard (Rich Trott) #43856 - [
c95132e9ea
] - deps: cherry-pick libuv/libuv@3a7b955
(Ben Noordhuis) #43950 - [
cc8d5426d2
] - deps: cherry-pick libuv/libuv@abb109f
(Ben Noordhuis) #43950 - [
7762e463d6
] - deps: update corepack to 0.12.1 (Node.js GitHub Bot) #43965 - [
1256c4dad5
] - deps: update hast-util-raw (Moshe Atlow) #43927 - [
aac97c2d2a
] - deps: update undici to 5.8.0 (Node.js GitHub Bot) #43886 - [
cdff61917d
] - deps: clean archs files for OpenSSL (RafaelGSS) #43735 - [
fc936a84e4
] - deps: remove not used architectures (RafaelGSS) #43735 - [
361a643d8b
] - deps: V8: backportf3cad8c
(Joyee Cheung) #43531 - [
2e1732ebd0
] - deps: V8: backport22698d2
(Chengzhong Wu) #43751 - [
979f469d3a
] - deps: upgrade npm to 8.15.0 (npm team) #43917 - [
4096d81988
] - deps: upgrade npm to 8.14.0 (npm team) #43826 - [
2ec8092e2c
] - deps,src: use SIMD for normal base64 encoding (Brian White) #39775 - [
67b4edde37
] - dns: fix getServers return undefined (jiahao.si) #43922 - [
7c75539a88
] - dns: fix cares memory leak (theanarkh) #43912 - [
1f80b88da5
] - doc: update email and mailmap for BethGriggs (Beth Griggs) #43985 - [
8a2a6e16eb
] - doc: add 15.x - 18.x to Other Versions section (shhh7612) #43940 - [
51cb0d42ca
] - doc: inspector.close undefined in worker threads (Keyhan Vakil) #43867 - [
c789c0f5f7
] - doc: improve documentation for safePromise
statics alternatives (Antoine du Hamel) #43759 - [
cb9b0e0011
] - doc: recommend git-node-v8 (Keyhan Vakil) #43934 - [
d7e9bd1830
] - doc: clarify subprocess.stdout/in/err property (Kohei Ueno) #43910 - [
808793ebb5
] - doc: fix typo insrc/crypto/README.md
(Jianru Lin) #43968 - [
bbc455c4f9
] - doc: remind backporter about v8_embedder_string (Keyhan Vakil) #43924 - [
a86b66c8b4
] - doc: fix typo in http.md (Airing) #43933 - [
a96af37233
] - doc: add F3n67u to collaborators (Feng Yu) #43953 - [
aa7d4e59f7
] - doc: improve test runner timeout docs (Tobias Nießen) #43836 - [
80c2fa8212
] - doc: mention Win 32-bit openssl build issue (RafaelGSS) #43853 - [
8b8c55df7e
] - doc: add security release specifics to releases.md (Beth Griggs) #43835 - [
42693aaf9f
] - doc: add history info forglobal.performance
(Antoine du Hamel) #43841 - [
140d6af572
] - doc: add platform-windows-arm to who to CC (Michael Dawson) #43808 - [
976093efe3
] - doc: document ES2022's Error "cause" property (James Ide) #43830 - [
ec7e45e4a2
] - doc: include make clean to openssl arch (RafaelGSS) #43735 - [
d64dfd53c9
] - doc: add link to diagnostic tools (Rafael Gonzaga) #43736 - [
2910136920
] - doc: update links to MDN page about dynamic imports (Jannis R) #43847 - [
d88a9fae79
] - doc: deprecate coercion to integer in process.exit (Daeyeon Jeong) #43738 - [
fc843e103d
] - doc: add MoLow to triagers (Moshe Atlow) #43799 - [
8c8c97da61
] - (SEMVER-MINOR) doc: deprecate diagnostics_channel object subscribe method (Stephen Belanger) #42714 - [
9b53a694b5
] - doc: revert anachronistic 'node:' module require()s in API history notes (DeeDeeG) #43768 - [
2815bd3002
] - doc: clarify release process for new releasers (Rafael Gonzaga) #43739 - [
50b3750e67
] - doc: fix typo in ngtcp2 readme (Dan Castillo) #43767 - [
6bcd40dd85
] - domain: fix vm promise tracking while keeping isolation (Stephen Belanger) #43556 - [
e89e0b470b
] - esm: remove superfluous argument (Rich Trott) #43884 - [
0d2921f396
] - esm: fix erroneous re-initialization of ESMLoader (Jacob Smith) #43763 - [
9b5b8d78c3
] - esm: throw on any non-2xx response (LiviaMedeiros) #43742 - [
dfc4832ef1
] - (SEMVER-MINOR) events: expose CustomEvent on global with CLI flag (Daeyeon Jeong) #43885 - [
e4473952ae
] - (SEMVER-MINOR) events: addCustomEvent
(Daeyeon Jeong) #43514 - [
100f6deb09
] - fs: use signed types for stat data (LiviaMedeiros) #43714 - [
25ec71db63
] - http: fix http server connection list when close (theanarkh) #43949 - [
ca658c8afe
] - (SEMVER-MINOR) http: add drop request event for http server (theanarkh) #43806 - [
9c699bd8a8
] - http: wait for pending responses in closeIdleConnections (Paolo Insogna) #43890 - [
781d5e54e3
] - inspector: set sampling interval before start (Shelley Vohr) #43779 - [
0b5dbb2a56
] - lib: refactor PriorityQueue to use private field (Finn Yu) #43889 - [
324473ca32
] - (SEMVER-MINOR) lib: improved diagnostics_channel subscribe/unsubscribe (Stephen Belanger) #42714 - [
5aa3b213ac
] - meta: update AUTHORS (Node.js GitHub Bot) #43966 - [
e707552357
] - meta: updatenode-api
in label-pr-config (Daeyeon Jeong) #43794 - [
8a8de94034
] - meta: update AUTHORS (Node.js GitHub Bot) #43872 - [
7d49fc766c
] - meta: use platform dropdown on flaky template (Rafael Gonzaga) #43855 - [
e4aa50fc3f
] - meta: enable blank issues (Matteo Collina) #43775 - [
ceb7c150ec
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #43770 - [
29bcd47738
] - net: fix socket._getpeername (Daeyeon Jeong) #43010 - [
380659daf1
] - process: usedefineProperty
instead of assignment (Mark S. Miller) #43907 - [
aba9c8ebea
] - repl: fix overzealous top-level await (Tobias Nießen) #43827 - [
1deb6b73b7
] - repl: useSafePromiseAll
andSafePromiseRace
(Antoine du Hamel) #43758 - [
bf8f2e23ff
] - src: refactor DH groups to delete crypto_groups.h (Tobias Nießen) #43896 - [
9435fbf8cd
] - src: remove dead code in base64_encode (Tobias Nießen) #43979 - [
2c47e58ea0
] - src: fix regression that a source marker is lost (cola119) #43086 - [
d084150320
] - src: per-isolate eternal template properties (Chengzhong Wu) #43802 - [
9f9d00ccbb
] - src: merge NativeModuleEnv into NativeModuleLoader (Joyee Cheung) #43824 - [
bb512904e9
] - src: use named struct instead of typedef (Tobias Nießen) #43881 - [
bb5511e8cc
] - src: use named enum instead of typedef (Tobias Nießen) #43880 - [
5db0c8f667
] - src: pass only Isolate* and env_vars to EnabledDebugList::Parse() (Darshan Sen) #43668 - [
249365524e
] - src: fix node watchdog race condition (theanarkh) #43780 - [
17cb27237d
] - src: deduplicateSetALPN
implementations (Tobias Nießen) #43756 - [
b4c75a96be
] - src: fixnapi_check_object_type_tag()
(Daeyeon Jeong) #43788 - [
8432d6596f
] - src: slim down env-inl.h (Ben Noordhuis) #43745 - [
2266a4b6d6
] - stream: improverespondWithNewView()
(Daeyeon Jeong) #43866 - [
bf3991b406
] - stream: fix 0 transform hwm backpressure (Robert Nagy) #43685 - [
a057510037
] - stream: initial approach to include strategy options on Readable.toWeb() (txxnano) #43515 - [
198cf59d2c
] - test: update WPT encoding tests (Kohei Ueno) #43958 - [
f0ed1aed8d
] - test: remove test-whatwg-events-add-event-listener-options-once.js (Feng Yu) #43877 - [
88505556fe
] - test: work scheduled in process.nextTick can keep the event loop alive (Andreu Botella) #43787 - [
81a21946eb
] - test: simplify test-tls-set-secure-context (Tobias Nießen) #43878 - [
61cd11a8a7
] - test: usecommon.mustNotMutateObjectDeep()
in fs tests (LiviaMedeiros) #43819 - [
b1081dbe12
] - test: fix test http upload timeout (theanarkh) #43935 - [
efd5e0e925
] - test: simplify ReplStream.wait() (Tobias Nießen) #43857 - [
ef21ad2996
] - test: merge test-crypto-dh-hash with modp18 test (Tobias Nießen) #43891 - [
e502c50a90
] - test: refactortest/es-module/test-esm-resolve-type
(Antoine du Hamel) #43178 - [
c782c3dc69
] - test: ensure NODE_EXTRA_CA_CERTS not set before tests (KrayzeeKev) #43858 - [
bb6787cb57
] - test: add check to test-fs-readfile-tostring-fail (Richard Lau) #43850 - [
7571704186
] - test: complete TODO in test/wpt/test-url.js (Kohei Ueno) #43797 - [
6f1d2dfb9d
] - test: add test on worker process.exit in async modules (Chengzhong Wu) #43751 - [
776cc3abbd
] - test: usecommon.mustNotMutateObjectDeep()
in immutability tests (LiviaMedeiros) #43196 - [
42f2deb3a0
] - test: addcommon.mustNotMutateObjectDeep()
(LiviaMedeiros) #43196 - [
f3fc51c508
] - test: fix coverity warning in test (Michael Dawson) #43631 - [
a9ecba2fa8
] - test: mark test-http-client-response-timeout flaky (Tobias Nießen) #43792 - [
cd0d9ddb7c
] - test_runner: add support for boolean values forconcurrency
option (Lenvin Gonsalves) #43887 - [
f98020138a
] - test_runner: validatetimeout
option (Antoine du Hamel) #43843 - [
58d15b3687
] - test_runner: pass signal on timeout (Moshe Atlow) #43911 - [
8b0248506f
] - test_runner: do not report an error when tests are passing (Antoine du Hamel) #43919 - [
aa8053e1fa
] - test_runner: recieve and pass AbortSignal (Moshe Atlow) #43554 - [
f13e4c1be9
] - test_runner: fixit
concurrency (Moshe Atlow) #43757 - [
e404a3ef6d
] - test_runner: support timeout for tests (Moshe Atlow) #43505 - [
f28198cc05
] - test_runner: catch errors thrown withindescribe
(Moshe Atlow) #43729 - [
bfe0ac6cd0
] - tools: add more options to track flaky tests (Antoine du Hamel) #43954 - [
17a4e5e775
] - tools: add verbose flag to inactive TSC finder (Rich Trott) #43913 - [
373304b0c7
] - tools: add support for using API key to vuln checking script (Facundo Tuesca) #43909 - [
ed45088c14
] - tools: support versioned node shared libs on z/OS (alexcfyung) #42256 - [
c9ecd6d21f
] - tools: update doc to highlight.js@11.6.0 (Node.js GitHub Bot) #43870 - [
c92135aa0f
] - tools: update lint-md-dependencies to rollup@2.77.0 (Node.js GitHub Bot) #43871 - [
e12bf40fd1
] - tools: update eslint to 8.20.0 (Node.js GitHub Bot) #43873 - [
09fe9b30a9
] - tools: add script for vulnerability checking (Facundo Tuesca) #43362 - [
19e8876877
] - trace_events: trace net connect event (theanarkh) #43903 - [
1af7f24143
] - util: remove unicode support todo for perf implications (Rhys) #43762 - [
acfc33ca8c
] - (SEMVER-MINOR) util: add tokens to parseArgs (John Gee) #43459 - [
f32aec8a6d
] - util: refactor to use validateObject (Kohei Ueno) #43769 - [
d7cfd0c5ba
] - v8: serialize BigInt64Array and BigUint64Array (Ben Noordhuis) #43571
v18.6.0
Notable Changes
Experimental ESM Loader Hooks API
Node.js ESM Loader hooks now support multiple custom loaders, and composition is
achieved via "chaining": foo-loader
calls bar-loader
calls qux-loader
(a custom loader must now signal a short circuit when intentionally not
calling the next). See the ESM docs for details.
Real-world use-cases are laid out for end-users with working examples in the article Custom ESM loaders: Who, what, when, where, why, how.
Contributed by Jacob Smith, Geoffrey Booth, and Bradley Farias - #42623
Commits
Semver-minor commits
- [
0bca7b722e
] - (SEMVER-MINOR) dns: export error code constants fromdns/promises
(Feng Yu) #43176 - [
da61e2330f
] - (SEMVER-MINOR) esm: add chaining to loaders (Jacob Smith) #42623 - [
8c97f63401
] - (SEMVER-MINOR) http: add diagnostics channel for http client (theanarkh) #43580 - [
b27856d3d4
] - (SEMVER-MINOR) http: add perf_hooks detail for http request and client (theanarkh) #43361 - [
9d918d9923
] - (SEMVER-MINOR) module: add isBuiltIn method (hemanth.hm) #43396 - [
a0e7b9983c
] - (SEMVER-MINOR) net: add drop event for net server (theanarkh) #43582 - [
4bda6e02a3
] - (SEMVER-MINOR) test_runner: exposedescribe
andit
(Moshe Atlow) #43420 - [
34e83312a4
] - (SEMVER-MINOR) v8: add v8.startupSnapshot utils (Joyee Cheung) #43329
Semver-patch commits
- [
ef174eac87
] - assert: callTracker throw a specific error message when possible (Moshe Atlow) #43640 - [
07836637af
] - bootstrap: move global initialization to js (Alena Khineika) #43625 - [
e9ee7e44be
] - build,test: increase stack size limit on Windows (Tobias Nießen) #43632 - [
3ca9e653a6
] - child_process: improve ipc write performance (rubikscraft) #42931 - [
cad6d990ec
] - child_process: speed up 'advanced' ipc receiving (rubikscraft) #42931 - [
ce3a22a9e3
] - cluster: fix closing dgram sockets in cluster workers throws errors (Ouyang Yadong) #43709 - [
5d8ee519db
] - cluster: fix fd leak (theanarkh) #43650 - [
fa5c4643e2
] - cluster, net: fix listen pipe with readable and writable in cluster (theanarkh) #43634 - [
4df96b501d
] - crypto: don't disable TLS 1.3 without suites (Adam Majer) #43427 - [
a43928ae78
] - crypto: use ByteSource::Builder in To*Copy (Tobias Nießen) #43477 - [
bb326f7ece
] - crypto: handle webcrypto generateKey() usages edge case (Filip Skokan) #43454 - [
9bd13bbb3a
] - crypto: update Wrapping and unwrapping keys webcrypto example (Filip Skokan) #43452 - [
679f19128e
] - crypto: fix webcrypto generateKey() with empty usages (Filip Skokan) #43431 - [
64a9dd7b83
] - crypto: fix webcrypto digest() invalid algorithm (Filip Skokan) #43431 - [
dedb22e965
] - crypto: fix webcrypto RSA generateKey() use of publicExponent (Filip Skokan) #43431 - [
018f61cb4f
] - crypto: fix webcrypto AES-KW keys accepting encrypt/decrypt usages (Filip Skokan) #43431 - [
3ee0bb8d03
] - crypto: fix webcrypto deriveBits for non-byte lengths (Filip Skokan) #43431 - [
7fc075b23a
] - deps: update undici to 5.7.0 (Node.js GitHub Bot) #43790 - [
d6a9e93426
] - deps: patch V8 to 10.2.154.13 (Michaël Zasso) #43727 - [
428d03cb94
] - deps: update corepack to 0.12.0 (Node.js GitHub Bot) #43748 - [
74914698e5
] - deps: upgrade npm to 8.13.2 (npm team) #43622 - [
0636f86ecc
] - deps: upgrade npm to 8.13.1 (npm team) #43552 - [
2149acda60
] - dns: make promise API fully constructed fromlib/internal/dns/promises
(Feng Yu) #43227 - [
79ea19e5e2
] - errors: extract type detection & use inERR_INVALID_RETURN_VALUE
(Jacob Smith) #43558 - [
80ced1ae31
] - esm: treat307
and308
as redirects in HTTPS imports (Kid) #43689 - [
953fefe77b
] - esm: restorenext<HookName>
'scontext
as optional arg (Jacob Smith) #43553 - [
10bcad5c6e
] - esm: fix chain advances when loader calls next<HookName> multiple times (Jacob Smith) #43303 - [
50d64edd49
] - esm: refactor responseURL handling (Guy Bedford) #43164 - [
254efd9e3b
] - esm: fix http(s) import via custom loader (Jacob Smith) #43130 - [
061ed0e76b
] - events: improveEvent
compatibility (Daeyeon Jeong) #43461 - [
66fb059547
] - events: improveEventListener
validation (Daeyeon Jeong) #43491 - [
12a591a676
] - fs: refactor realpath with Map and Set (LiviaMedeiros) #43569 - [
df501316c1
] - fs: don't end fs promises on Isolate termination (Santiago Gimeno) #42910 - [
e6d4837fad
] - http: fix failing test (Paolo Insogna) #43641 - [
491c7619c4
] - http: defer reentrant execution of Parser::Execute (Paolo Insogna) #43369 - [
d71ba322b0
] - http: fix http agent keep alive (theanarkh) #43380 - [
1f4f811de5
] - http2: log debug only when in debug mode (Basit) #43626 - [
c8cbec4cef
] - lib: makevalidateObject
less affected by prototype tampering (Antoine du Hamel) #42929 - [
dc484b6f6f
] - lib: implement safe alternatives toPromise
static methods (Antoine du Hamel) #43728 - [
2233567331
] - lib: use null-prototype objects for property descriptors (Antoine du Hamel) #43473 - [
b9198d977f
] - lib: refactor to avoid unsafe regex primordials (Antoine du Hamel) #43475 - [
deaf4bb5cd
] - lib: fix TODO infreeze_intrinsics
(Antoine du Hamel) #43472 - [
61e6d7858a
] - lib,src: add source map support for global eval (Chengzhong Wu) #43428 - [
58646eaad6
] - loader: makerequire.resolve
throw for unknown builtin modules (木杉) #43336 - [
e914185c44
] - module: cjs-module-lexer WebAssembly fallback (Guy Bedford) #43612 - [
3ad4d37b3c
] - module: also enable subpath imports in REPL (Ray) #43450 - [
bf4ac4c55f
] - net: remove redundant connecting assignment (Ouyang Yadong) #43710 - [
ad1d0541c5
] - net: fix net keepalive and noDelay (theanarkh) #43561 - [
f8bdc53e4f
] - net: prevent /32 ipv4 mask from matching all ips (supriyo-biswas) #43381 - [
47a252257b
] - net: fix net.Server keepalive and noDelay (theanarkh) #43497 - [
d834d216f2
] - perf_hooks: add initiatorType getter (Rafael Gonzaga) #43593 - [
02009b7069
] - perf_hooks: fix miscounted gc performance entry starttime (#43066) (Xuguang Mei) #43066 - [
e9574f3009
] - readline: fix to not access a property on an undefined value (Kohei Ueno) #43543 - [
fe1f740f61
] - src: merge RunInThisContext() with RunInContext() (Daeyeon Jeong) #43225 - [
0f6d19489a
] - src: fix crash on FSReqPromise destructor (Santiago Gimeno) #43533 - [
4e6a844207
] - src: delegate NodeArrayBufferAllocator to v8's allocator (Jeremy Rose) #43594 - [
5ae30bf17a
] - src: remove a stale comment inasync_hooks
(Daeyeon Jeong) #43317 - [
0b432b957e
] - src: fix compiler warning in src/heap_utils.cc (Darshan Sen) #43579 - [
d3fc791c3d
] - src: improve and update ByteSource description (Tobias Nießen) #43478 - [
4e0afa4133
] - src: remove CopyBuffer (Tobias Nießen) #43463 - [
0659d5e3b0
] - src: change FormatSize to actually accept a size_t (Tobias Nießen) #43464 - [
66ee1f1e3c
] - src: register StreamBase while registering LibuvStreamWrap (Darshan Sen) #43321 - [
48ee6b9dc9
] - src,bootstrap: remove NodeMainInstance::registry_ (Darshan Sen) #43392 - [
2e181f68a3
] - src,stream: change return type toMaybe
(Daeyeon Jeong) #43575 - [
0f07abc80d
] - stream: finish pipeline if dst closes before src (Robert Nagy) #43701 - [
1617a4621e
] - stream: pass error on legacy destroy (Giacomo Gregoletto) #43519 - [
40f51d8e83
] - test_runner: protect internals against prototype tampering (Antoine du Hamel) #43578 - [
ddf7518520
] - test_runner: cancel on termination (Moshe Atlow) #43549 - [
e51d8c6004
] - test_runner: wait for stderr and stdout to complete (Moshe Atlow) #43666 - [
dda64ddfbd
] - test_runner: add Subtest to tap protocol output (Moshe Atlow) #43417 - [
a1f1d3a7b3
] - url: update WHATWG URL parser to align with latest spec (Feng Yu) #43190 - [
5a5c4be5a3
] - util: addAggregateError.prototype.errors
to inspect output (LiviaMedeiros) #43646 - [
bdca4d3ccf
] - util: remove unnecessary template string (Ruben Bridgewater) #41082 - [
6b16836448
] - util: mark cwd grey while inspecting errors (Ruben Bridgewater) #41082 - [
baa22a7b7d
] - util: avoid inline access to Symbol.iterator (Kohei Ueno) #43683 - [
a1f581a61e
] - util: fix TypeError of symbol in template literals (cola119) #42790 - [
ba9b2f021f
] - wasi: use WasmMemoryObject handle for perf (#43544) (snek) #43544
Documentation commits
- [
e0769554a5
] - doc: remove bullet point referring to Node.js 12 (Luigi Pinca) #43744 - [
7ffcd85ace
] - doc: include last security release date (Rafael Gonzaga) #43774 - [
4569d6ebcb
] - doc: add details for July 2022 security releases (Beth Griggs) #43733 - [
1bd56339c5
] - doc: remove openssl 1.x reference (Rafael Gonzaga) #43734 - [
bf62ffd848
] - doc: remove node-report from support tiers (RafaelGSS) #43737 - [
ca5af0dbf7
] - doc: update changelog-maker to the new flags (RafaelGSS) #43696 - [
088b9266d0
] - doc: remove extra 'in's (Colin Ihrig) #43705 - [
7679c77347
] - doc: add Geoffrey Booth to TSC (Rich Trott) #43706 - [
d46261ceed
] - doc: improve readability ofdns.md
(0xSanyam) #43694 - [
ca0fbfd87f
] - doc: add note regarding special case of 0 stat.size (Douglas Wilson) #43690 - [
267f66b5cc
] - doc: fix default of duplex.allowHalfOpen (Vincent Weevers) #43665 - [
46ad2061db
] - doc: fix typo in errors.md (Kazuma Ohashi) #43677 - [
3a8edb363e
] - doc: improve description of --input-type (cola119) #43507 - [
b4b15b71d7
] - doc: add daeyeon to triagers (Daeyeon Jeong) #43637 - [
cb77b3e3f7
] - doc: remove appmetrics from tierlist (Tony Gorez) #43608 - [
0fe825ac07
] - doc: remove systemtap from tierlist (Tony Gorez) #43605 - [
6fc5a13fe0
] - doc: add single executable application initiative (Michael Dawson) #43611 - [
350e6ae04c
] - doc: remove windows xperf from tierlist (Tony Gorez) #43607 - [
a6e98dfd65
] - doc: remove lttng from tierlist (Tony Gorez) #43604 - [
22512427b3
] - doc: remove dtrace from tierlist (Tony Gorez) #43606 - [
a3659e3547
] - doc: promote 0x to tier 4 (Tony Gorez) #43609 - [
6ede1c2162
] - doc: include CVSS mention (Rafael Gonzaga) #43602 - [
23c5de3579
] - doc: fix icu-small example (Michael Dawson) #43591 - [
54a8a0c9c7
] - doc: addbackport-open-vN.x
step to backporting guide (LiviaMedeiros) #43590 - [
60b949d8ff
] - doc: move MylesBorins to TSC Emeritus (Myles Borins) #43524 - [
08ed28c31e
] - doc: add Juan as a security steward (Michael Dawson) #43512 - [
2e799bcd35
] - doc: update link to MDN page about dynamic imports (James Scott-Brown) #43530 - [
c8aafe2036
] - doc: fix Visual Studio 2019 download link (Feng Yu) #43236 - [
d0c78d21e0
] - doc: update link ofICU data slicer
(Feng Yu) #43483 - [
324728094c
] - doc: update v8 doc link to v8.dev (Feng Yu) #43482 - [
b111331c9c
] - doc: add ESM version examples to events api doc (Feng Yu) #43226 - [
038decfbc3
] - doc: update default branch name intest/**
(Luigi Pinca) #43445 - [
a23051af84
] - doc: add new useful V8 option (JialuZhang-intel) #42575 - [
7f406fd77b
] - doc: remove branch name mention insrc/README.md
(Feng Yu) #43442 - [
06fe60a6f9
] - doc: update default branch name inMakefile
(Feng Yu) #43441 - [
9d61da0aef
] - doc: update main branch name in release guide (Richard Lau) #43437 - [
739d3a35ed
] - doc: update main branch name in onboarding.md (Feng Yu) #43443 - [
e0fedcfb18
] - doc: fixup after rename of primary nodejs branch (Michael Dawson) #43453 - [
429e0f433b
] - doc: update main branch name in doc/contributing/* (Luigi Pinca) #43438 - [
cbaf1207f4
] - doc: add code examples to node test runner (Wassim Chegham) #43359 - [
462e526237
] - doc,test: clarify timingSafeEqual semantics (Tobias Nießen) #43228
Other commits
- [
7ee0be71f9
] - benchmark: fix output regression (Brian White) #43635 - [
d90a6f9bda
] - benchmark: fix fork detection (Paolo Insogna) #43601 - [
f9c30abcdc
] - benchmark: forcefully close processes (Paolo Insogna) #43557 - [
ebf962c053
] - build: enable GitPod prebuilds (Rich Trott) #43698 - [
482bd53357
] - build: clarify missing clang-format tool (Tobias Nießen) #42762 - [
919c5ee5c2
] - build: update main branch name in GH workflow (Feng Yu) #43481 - [
3b08dfdc5d
] - meta: update AUTHORS (Node.js GitHub Bot) #43750 - [
508cbbcbf9
] - meta: update AUTHORS (Node.js GitHub Bot) #43660 - [
d650c9c6b0
] - meta: update AUTHORS (Node.js GitHub Bot) #43573 - [
b9204c9be8
] - meta: update AUTHORS (Node.js GitHub Bot) #43480 - [
294f0ef4df
] - test: mark test-net-connect-reset-until-connected flaky on freebsd (Feng Yu) #43613 - [
f2f7d7b207
] - test: remove unnecessary .toString() calls in HTTP tests (Anna Henningsen) #43731 - [
38e92fd88f
] - test: mark test-gc-http-client-timeout as flaky on arm (Chengzhong Wu) #43754 - [
b164848c55
] - test: fix typo in file name (Antoine du Hamel) #43764 - [
a0b799f645
] - test: add test for profile command of node inspect (Kohei Ueno) #43058 - [
c4d88b3345
] - test: use Object fortests
variable in fs trace test (Feng Yu) #43585 - [
c9f130e1cf
] - test: improve code coverage for performance_entry (Kohei Ueno) #43434 - [
0b4956079a
] - test: add test to ensure repl doesn't support --input-type (cola119) #43507 - [
2adf4e7727
] - test: fix flaky test-perf-hooks-histogram (Santiago Gimeno) #43567 - [
043756d540
] - test: fill DOMException names (LiviaMedeiros) #43615 - [
e718a6e913
] - test: fix Buffer.from(ArrayBufferView) call (LiviaMedeiros) #43614 - [
ac72f4e812
] - test: mark test-worker-http2-stream-terminate flaky on all platforms (Finn Yu) #43620 - [
dabccef69f
] - test: mark flaky tests on smartos (Feng Yu) #43596 - [
705e85e736
] - test: improve code coverage for SourceMap class (italo jose) #43285 - [
7c6f548382
] - test: mark test-http-server-request-timeouts-mixed flaky on macOS (F3n67u) #43597 - [
bd91337988
] - test: refactor to top-level await (Meek Simbule) #43500 - [
9940dc38c1
] - test: skip test-v8-serialize-leak on IBM i (Richard Lau) #43511 - [
17b92f0679
] - test: use unique file names in fs trace test (Ben Noordhuis) #43504 - [
7ca58b8ee7
] - test: allow EOVERFLOW errors in fs position tests (Richard Lau) #43510 - [
eece34cddb
] - test: add WPT tests for dom/events (Daiki Nishikawa) #43151 - [
70d297c271
] - test: replace gc(true) with gc({ type: 'minor' }) (Tobias Nießen) #43493 - [
1022c0d0d4
] - test: fix flaky test-https-server-close- tests (Santiago Gimeno) #43216 - [
a9ab41cb38
] - test: refactor to top-level await (Meek Simbule) #43366 - [
b1a7798821
] - test: skip test-net-connect-reset-until-connected on SmartOS (Filip Skokan) #43449 - [
3b0703fd0d
] - test: renametest-eventtarget-whatwg-*.js
(Daeyeon Jeong) #43467 - [
5c0a24d5be
] - test: mark test-worker-http2-stream-terminate flaky on Windows (Darshan Sen) #43425 - [
48ae00c0b1
] - test: improve coverage for load hooks (Antoine du Hamel) #43374 - [
2b55b606f7
] - Revert "test: mark test_buffer/test_finalizer flaky" (Matteo Collina) #43418 - [
3948accbf4
] - test: make node-api/test_buffer/test_finalizer not flaky (Matteo Collina) #43418 - [
c954bcd20b
] - tools: remove rpm build scripts (Ben Noordhuis) #43647 - [
8a06b7b9d0
] - tools: update lint-md-dependencies to rollup@2.76.0 (Node.js GitHub Bot) #43749 - [
aafdf1239e
] - tools: refactortools/license2rtf
to ESM (Feng Yu) #43232 - [
99ffabf2dd
] - tools: update eslint to 8.19.0 (Node.js GitHub Bot) #43662 - [
c6396c179f
] - tools: update lint-md-dependencies (Node.js GitHub Bot) #43572 - [
8d14d6e215
] - tools: fix CJS/ESM toggle on small screens (Antoine du Hamel) #43506 - [
59d4da699e
] - tools: update eslint to 8.18.0 (Node.js GitHub Bot) #43479 - [
752380a959
] - tools: update main branch name (Feng Yu) #43440 - [
06c367ef8b
] - tools: update lint-md-dependencies to rollup@2.75.6 (Node.js GitHub Bot) #43386
v18.5.0
This is a security release.
Notable Changes
- [
3f0c3e142d
] - (SEMVER-MAJOR) src,deps,build,test: add OpenSSL config appname (Daniel Bevenius) #43124 - [
9578158ff8
] - (SEMVER-MAJOR) src,doc,test: add --openssl-shared-config option (Daniel Bevenius) #43124- Node.js now reads
nodejs_conf
section in theopenssl
config
- Node.js now reads
- [
dc7af13486
] - deps: update archs files for quictls/openssl-3.0.5+quic (RafaelGSS) #43693 - [
fa72c534eb
] - deps: upgrade openssl sources to quictls/openssl-3.0.5+quic (RafaelGSS) #43693
Commits
- [
dc7af13486
] - deps: update archs files for quictls/openssl-3.0.5+quic (RafaelGSS) #43693 - [
fa72c534eb
] - deps: upgrade openssl sources to quictls/openssl-3.0.5+quic (RafaelGSS) #43693 - [
a5fc2deb43
] - deps: update default openssl.cnf directory (Michael Dawson) nodejs-private/node-private#335 - [
f2407748e3
] - http: stricter Transfer-Encoding and header separator parsing (Paolo Insogna) nodejs-private/node-private#315 - [
e4af5eba95
] - src: fix IPv4 validation in inspector_socket (Tobias Nießen) nodejs-private/node-private#320 - [
3f0c3e142d
] - (SEMVER-MAJOR) src,deps,build,test: add OpenSSL config appname (Daniel Bevenius) #43124 - [
9578158ff8
] - (SEMVER-MAJOR) src,doc,test: add --openssl-shared-config option (Daniel Bevenius) #43124
v18.4.0
Notable Changes
- crypto:
-
dns:
- accept
'IPv4'
and'IPv6'
forfamily
(Antoine du Hamel) #43054
- accept
-
report:
- add more heap infos in process report (theanarkh) #43116
Commits
- [
702bfa0b7c
] - async_hooks: usekEmptyObject
(LiviaMedeiros) #43159 - [
f7c4015fd8
] - bootstrap: consolidate global properties definition (Chengzhong Wu) #43357 - [
8d892f5259
] - build: add nonpm and nocorepack to vcbuild.bat (Darshan Sen) #43219 - [
4109ddc005
] - child_process: usekEmptyObject
(LiviaMedeiros) #43159 - [
7b5cb14f0c
] - cluster: usekEmptyObject
(LiviaMedeiros) #43159 - [
9f1de2c005
] - crypto: fix webcrypto import of cfrg raw public keys (Filip Skokan) #43404 - [
7f02e22998
] - crypto: test webcrypto ec raw public key import (Filip Skokan) #43405 - [
0a075cb548
] - crypto: fix webcrypto JWK EC and OKP import crv check (Filip Skokan) #43346 - [
df0903c8e8
] - crypto: usekEmptyObject
(LiviaMedeiros) #43159 - [
6d0053345e
] - (SEMVER-MINOR) crypto: remove Node.js-specific webcrypto extensions (Filip Skokan) #43310 - [
28c034d6b5
] - (SEMVER-MINOR) crypto: add CFRG curves to Web Crypto API (Filip Skokan) #42507 - [
fe7fd85109
] - deps: update Corepack to 0.11.2 (Maël Nison) #43402 - [
517f17b214
] - deps: update undici to 5.5.1 (Node.js GitHub Bot) #43412 - [
f4c830fbe4
] - deps: upgrade npm to 8.12.1 (npm CLI robot) #43301 - [
0bb84b09a5
] - (SEMVER-MINOR) dns: accept'IPv4'
and'IPv6'
forfamily
(Antoine du Hamel) #43054 - [
f91babe494
] - doc: packages documentation updates for 12 EOL (Guy Bedford) #43375 - [
066f963ec1
] - doc: add initial doc on how to update cjs-module-lexer (Michael Dawson) #43255 - [
36e5684ae0
] - doc: clarify use of deps/icu-small (Michael Dawson) #43287 - [
b9634e7ef3
] - doc: remove llnode from diag tierlist (Tony Gorez) #43289 - [
4caeb10e7b
] - doc: remove ETW from diag tierlist (Tony Gorez) #43295 - [
41955e5ce5
] - doc: use serial comma in report docs (Tobias Nießen) #43394 - [
e30d4c1cb0
] - doc: add fspromises mkdir example (Tierney Cyren) #40843 - [
adec5fa929
] - doc: add F3n67u to triagers (Feng Yu) #43350 - [
cc3505b192
] - doc: fix typo in globals.md (Daeyeon Jeong) #43365 - [
052c8eaf6a
] - doc: use serial comma in webstreams docs (Tobias Nießen) #43353 - [
b824a0b7d0
] - doc: fix specifier example inesm.md
(hiroki osame) #43351 - [
d558b3c028
] - doc: add undici to glossary (F3n67u) #43327 - [
f9ad98f5cb
] - doc: change glossary link in pull request guide to node's glossary doc (Feng Yu) #43318 - [
02944a6783
] - doc: fix typo in util.parseArgs usage example (Michael Ficarra) #43332 - [
f2bc6a3f71
] - doc: improve description of TZ (Tobias Nießen) #43334 - [
9335ea6c35
] - doc: use serial comma in net docs (Tobias Nießen) #43335 - [
05f38c6c3e
] - doc: make clear the result of comparison between Symbol.for (Kohei Ueno) #43309 - [
c9aed9de9f
] - doc: add missing require to stream api doc (Feng Yu) #43237 - [
f3188c1c9c
] - doc: add CIGTM toglossary.md
(Feng Yu) #43316 - [
c572d2d115
] - doc: use serial comma in pull request doc (Feng Yu) #43319 - [
8a4e1fa002
] - doc: use serial comma in ESM docs (Tobias Nießen) #43322 - [
fff0560a66
] - doc: promote cdt to tier 3 (Tony Gorez) #43290 - [
7d0f6da97f
] - doc: fix chromium document link in pull-requests.md (rikapo) #43265 - [
4674b0d2a5
] - doc: fix 404 link of BUILDING.md (Feng Yu) #43234 - [
ee392c5c0b
] - doc: update CHANGELOG_V18.md (Filip Skokan) #43298 - [
5a3a2a197f
] - doc: add src/crypto to CC list for nodejs/crypto (Tobias Nießen) #43286 - [
69ce50396c
] - doc: use serial comma in console docs (Tobias Nießen) #43257 - [
0c5092c51c
] - events: fix adding abort listener inevents.once
(Daeyeon Jeong) #43373 - [
fda2105481
] - events: usekEmptyObject
(LiviaMedeiros) #43159 - [
63bf49b143
] - fs: usekEmptyObject
(LiviaMedeiros) #43159 - [
9b764531b9
] - fs: export constants fromfs/promises
(Feng Yu) #43177 - [
a4409f85f8
] - http: usekEmptyObject
(LiviaMedeiros) #43159 - [
2ffd54105a
] - http2: usekEmptyObject
(LiviaMedeiros) #43159 - [
b468b8fe51
] - https: usekEmptyObject
(LiviaMedeiros) #43159 - [
d2a98dc6cf
] - inspector: add missing initialization (Michael Dawson) #43254 - [
3b2f7eed39
] - lib: usekEmptyObject
in various places (LiviaMedeiros) #43159 - [
4a9511d971
] - lib: give names to promisified methods (LiviaMedeiros) #43218 - [
b8644606eb
] - lib: use null-prototype objects for property descriptors (Antoine du Hamel) #43270 - [
64edd6cbc3
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #43399 - [
b05cea57ba
] - meta: update AUTHORS (Node.js GitHub Bot) #43387 - [
a8ecec57e3
] - meta: move one or more collaborators to emeritus (#43183) (Node.js GitHub Bot) #43183 - [
60dc36244a
] - meta: update AUTHORS (Node.js GitHub Bot) #43312 - [
9803b82ac7
] - net,dns: move hasObserver out of perf function (theanarkh) #43217 - [
112518fb1d
] - perf_hooks: fix function wrapped bytimerify
to work correctly (Kohei Ueno) #43330 - [
a3310d13bf
] - perf_hooks: usekEmptyObject
(LiviaMedeiros) #43159 - [
7e8a00a26d
] - readline: fix question stack overflow (Eugene Chapko) #43320 - [
5e98cacf77
] - readline: usekEmptyObject
(LiviaMedeiros) #43159 - [
66d956ca49
] - repl: make autocomplete case-insensitive (Sergey Petushkov) #41632 - [
201f3d7f56
] - (SEMVER-MINOR) report: add more heap infos in process report (theanarkh) #43116 - [
a0568409b6
] - src: fix json utils escapes for U+000B (Chengzhong Wu) #43206 - [
931ecfa033
] - src: fix memory leaks and refactorByteSource
(Tobias Nießen) #43202 - [
5e65c1f3da
] - src: convey potential exceptions during StreamPipe construction (Darshan Sen) #43240 - [
b200a5ff67
] - stream: usekEmptyObject
(LiviaMedeiros) #43159 - [
1cc1a57cdb
] - test: remove unused argument in test-util-inspect.js (Colin Ihrig) #43395 - [
42c2115a82
] - test: mark test_buffer/test_finalizer flaky (Michael Dawson) #43414 - [
71802c32d0
] - test: fix address in use error (Caleb Everett) #43199 - [
e1b8c85a7a
] - test: add test for short-option followed by its value (Kohei Ueno) #43358 - [
f8d26c6011
] - test: fixcommon.mustNotCall
error message (Antoine du Hamel) #42917 - [
18fffe6108
] - test: convert then to async/await (Meek Simbule) #43292 - [
acd96d80eb
] - test: addBigInt
s tocommon.getArrayBufferViews()
(LiviaMedeiros) #43235 - [
e576a7fa50
] - test_runner: usekEmptyObject
(LiviaMedeiros) #43159 - [
fecad7a3a5
] - timers: usekEmptyObject
(LiviaMedeiros) #43159 - [
e31baca76a
] - tls: usekEmptyObject
(LiviaMedeiros) #43159 - [
7f8f61a749
] - tls: fix performance regression inconvertALPNProtocols()
(LiviaMedeiros) #43250 - [
ac9599a718
] - tools: report unsafe string and regex primordials as lint errors (Antoine du Hamel) #43393 - [
b69d874592
] - tools: fixcreate-or-update-pull-request-action
hash on GHA (Antoine du Hamel) #43378 - [
cf8a115983
] - tools: addavoid-prototype-pollution
lint rule (Antoine du Hamel) #43308 - [
8c0fe1e184
] - tools: fix find-inactive actions (LiviaMedeiros) #43377 - [
7f45d69f83
] - tools: update lint-md-dependencies to rollup@2.75.5 (Node.js GitHub Bot) #43313 - [
d5d0f01c5a
] - tools: update eslint to 8.17.0 (Node.js GitHub Bot) #43314 - [
f598fe1585
] - tools: use hashes instead of tags for external actions (#43284) (Antoine du Hamel) #43284 - [
10f79947d9
] - tools: updatecodecov/codecov-action
version (Antoine du Hamel) #43297 - [
f93848fa50
] - tools: update lint-md-dependencies to rollup@2.75.3 (Node.js GitHub Bot) #43261 - [
b3d7dc1de8
] - tools: update clang-format 1.7.0 to 1.8.0 (Darshan Sen) #43241 - [
812140c65a
] - tools,doc: add guards against prototype pollution when creating proxies (Antoine du Hamel) #43391 - [
56b8cc5cef
] - util: freezekEnumerableProperty
(LiviaMedeiros) #43390 - [
b187d55b6d
] - util: addkEmptyObject
to internal/util (LiviaMedeiros) #43159 - [
024b396275
] - vm: usekEmptyObject
(LiviaMedeiros) #43159 - [
7fc432fa35
] - wasi: usekEmptyObject
(LiviaMedeiros) #43159 - [
44b65d0ca7
] - worker: usekEmptyObject
(LiviaMedeiros) #43159
Configuration
-
If you want to rebase/retry this MR, click this checkbox.
This MR has been generated by Renovate Bot.