chore(deps): update dependency node to v20.18.0 #9
No reviewers
Labels
No labels
bug
duplicate
enhancement
help wanted
invalid
question
renovate-bot
renovate-security
security
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: mCaptcha/examples#9
Loading…
Reference in a new issue
No description provided.
Delete branch "renovate/node-20.x"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
20.10.0
->20.18.0
Release Notes
nodejs/node (node)
v20.18.0
: 2024-10-03, Version 20.18.0 'Iron' (LTS), @targosCompare Source
Notable Changes
Experimental Network Inspection Support in Node.js
This update introduces the initial support for network inspection in Node.js.
Currently, this is an experimental feature, so you need to enable it using the
--experimental-network-inspection
flag.With this feature enabled, you can inspect network activities occurring within a JavaScript application.
To use network inspection, start your Node.js application with the following command:
Please note that the network inspection capabilities are in active development.
We are actively working on enhancing this feature and will continue to expand its functionality in future updates.
http
andhttps
modules only.feature request on the Chrome DevTools side is addressed.
Contributed by Kohei Ueno in #53593 and #54246
Exposes X509_V_FLAG_PARTIAL_CHAIN to tls.createSecureContext
This releases introduces a new option to the API
tls.createSecureContext
. Fromnow on,
tls.createSecureContext({ allowPartialTrustChain: true })
can be usedto treat intermediate (non-self-signed) certificates in the trust CA certificate
list as trusted.
Contributed by Anna Henningsen in #54790
New option for vm.createContext() to create a context with a freezable globalThis
Node.js implements a flavor of
vm.createContext()
and friends that creates a context without contextifying its globalobject when vm.constants.DONT_CONTEXTIFY is used. This is suitable when users want to freeze the context
(impossible when the global is contextified i.e. has interceptors installed) or speed up the global access if they
don't need the interceptor behavior.
Contributed by Joyee Cheung in #54394
Deprecations
64aa31f6e5
] - repl: doc-deprecate instantiatingnode:repl
classes withoutnew
(Aviv Keller) #548424c52ee3d7f
] - zlib: deprecate instantiating classes without new (Yagiz Nizipli) #54708Other Notable Changes
b80da2f964
] - buffer: optimize createFromString (Robert Nagy) #5432402b36cbd2d
] - (SEMVER-MINOR) lib: add EventSource Client (Aras Abbasi) #51575879546a9bf
] - (SEMVER-MINOR) src,lib: add performance.uvMetricsInfo (Rafael Gonzaga) #54413f789f4c92d
] - (SEMVER-MINOR) test_runner: support module mocking (Colin Ihrig) #528484eb0749b6c
] - (SEMVER-MINOR) url: implement parse method for safer URL parsing (Ali Hassan) #52280Commits
013c48f0e9
] - benchmark: --no-warnings to avoid DEP/ExpWarn log (Rafael Gonzaga) #54928194fc113ac
] - benchmark: add buffer.isAscii benchmark (RafaelGSS) #547407410d51cb9
] - benchmark: add buffer.isUtf8 bench (RafaelGSS) #547402393f21e8a
] - benchmark: add access async version to bench (Rafael Gonzaga) #54747b8779721f0
] - benchmark: enhance dc publish benchmark (Rafael Gonzaga) #547454078aa83ff
] - benchmark: add match and doesNotMatch bench (RafaelGSS) #5473466acab9976
] - benchmark: add rejects and doesNotReject bench (RafaelGSS) #547346db777fb3a
] - benchmark: add throws and doesNotThrow bench (RafaelGSS) #547348f101560ce
] - benchmark: add strictEqual and notStrictEqual bench (RafaelGSS) #547342c9e4c936e
] - benchmark: adds groups to better separate benchmarks (Giovanni Bucci) #54393671c3ac633
] - benchmark: fix benchmark for file path and URL conversion (Early Riser) #541908c8708cb5b
] - benchmark: use assert.ok searchparams (Rafael Gonzaga) #543348b71fa79e2
] - benchmark: add stream.compose benchmark (jakecastelli) #5430893ee36e3a0
] - benchmark: rename count to n (Rafael Gonzaga) #54271f2971b6f0b
] - benchmark: change assert() to assert.ok() (Rafael Gonzaga) #54254f48f2c212c
] - benchmark: support --help in CLI (Aviv Keller) #533580309b0520b
] - benchmark: remove force option as force defaults to true (Yelim Koo) #54203b6e8305b2d
] - benchmark: use assert.ok instead of assert (Rafael Gonzaga) #5417690c660d26a
] - benchmark: add require-esm benchmark (Joyee Cheung) #521661b8584b52e
] - benchmark,doc: add CPU scaling governor to perf (Rafael Gonzaga) #547230b9161b330
] - benchmark,doc: mention bar.R to the list of scripts (Rafael Gonzaga) #5472284bf93b7ea
] - buffer: allow invalid encoding in from (Robert Nagy) #54533d04246a0d7
] - buffer: optimize byteLength for common encodings (Robert Nagy) #54342f36831f694
] - buffer: optimize createFromString (Robert Nagy) #54324f5f40c8088
] - buffer: optimize for common encodings (Robert Nagy) #5431976c37703be
] - buffer: add JSDoc to blob bytes method (Roberto Simonini) #541173012d31404
] - buffer: use faster integer argument check (Robert Nagy) #540893505782801
] - buffer: make indexOf(byte) faster (Tobias Nießen) #53455d285fc1f68
] - build: upgrade clang-format to v18 (Aviv Keller) #53957d288ec3b0a
] - build: fix conflicting V8 object print flags (Daeyeon Jeong) #54785e862eecac9
] - build: do not build with code cache for core coverage collection (Joyee Cheung) #54633f7a606eb96
] - build: turn off-Wrestrict
(Richard Lau) #5473771ca2665e4
] - build: reclaim disk space on macOS GHA runner (jakecastelli) #5465882d8051c39
] - build: don't clean obj.target directory if it doesn't exist (Joyee Cheung) #543376e550b1f26
] - build: updateruff
to0.5.2
(Aviv Keller) #53909e2ea7b26d7
] - build: fix ./configure --help format error (Zhenwei Jin) #53066eb2402d569
] - build: enable building with shared uvwasi lib (Pooja D P) #4398745732314d4
] - build: sync V8 warning cflags with BUILD.gn (Michaël Zasso) #528736e0a2bb54c
] - build: harmonize Clang checks (Michaël Zasso) #528733f78d4eb28
] - cli: add--expose-gc
flag available toNODE_OPTIONS
(Juan José) #53078a110409b2a
] - console: use validateOneOf for colorMode validation (HEESEUNG) #54245231ab788ea
] - crypto: reject dh,x25519,x448 in {Sign,Verify}Final (Huáng Jùnliàng) #53774a5984e4570
] - crypto: return a clearer error when loading an unsupported pkcs12 (Tim Perry) #54485f287cd77bd
] - crypto: remove unusedkHashTypes
internal (Antoine du Hamel) #546271fc904f8c4
] - deps: update cjs-module-lexer to 1.4.1 (Node.js GitHub Bot) #5484695b55c39b1
] - deps: update simdutf to 5.5.0 (Node.js GitHub Bot) #54434cf6ded5dd3
] - deps: update cjs-module-lexer to 1.4.0 (Node.js GitHub Bot) #547137f8edce3f1
] - deps: update c-ares to v1.33.1 (Node.js GitHub Bot) #545499a4a7b7ecc
] - deps: update undici to 6.19.8 (Node.js GitHub Bot) #5445687ca1d7fee
] - deps: update simdutf to 5.3.4 (Node.js GitHub Bot) #54312d3a743f182
] - deps: update zlib to 1.3.0.1-motley-71660e1 (Node.js GitHub Bot) #53464926981aa9f
] - deps: update zlib to 1.3.0.1-motley-c2469fd (Node.js GitHub Bot) #53464654c8d1fdc
] - deps: update zlib to 1.3.0.1-motley-68e57e6 (Node.js GitHub Bot) #534642477e79172
] - deps: update zlib to 1.3.0.1-motley-8b7eff8 (Node.js GitHub Bot) #534643d8113faf5
] - deps: update zlib to 1.3.0.1-motley-e432200 (Node.js GitHub Bot) #53464ac294e3db4
] - deps: update zlib to 1.3.0.1-motley-887bb57 (Node.js GitHub Bot) #53464239588b968
] - deps: update c-ares to v1.33.0 (Node.js GitHub Bot) #541986e7de37ed3
] - deps: update undici to 6.19.7 (Node.js GitHub Bot) #5428638aa9d6ea9
] - deps: update acorn to 8.12.1 (Node.js GitHub Bot) #53465d30145f663
] - deps: update undici to 6.19.5 (Node.js GitHub Bot) #54076c169d9c12b
] - deps: update simdutf to 5.3.1 (Node.js GitHub Bot) #5419692f3447957
] - doc: add missing EventSource docs to globals (Matthew Aitken) #550222879ce9681
] - doc: fix broken Android building link (Niklas Wenzel) #54922096623b59a
] - doc: add support link for aduh95 (Antoine du Hamel) #548661dfd238781
] - doc: run license-builder (github-actions[bot]) #54854a6c748fffb
] - doc: experimental flag for global accessible APIs (Chengzhong Wu) #54330d48a22fa14
] - doc: addERR_INVALID_ADDRESS
toerrors.md
(Aviv Keller) #546614a840cecfa
] - doc: add support link for mcollina (Matteo Collina) #54786ec22d86512
] - doc: mark--conditions
CLI flag as stable (Guy Bedford) #5420977c702ca07
] - doc: fix typo in recognizing-contributors (Tobias Nießen) #5482262953ef9fb
] - doc: clarify--max-old-space-size
and--max-semi-space-size
units (Alexandre ABRIOUX) #54477e2bab0f2b2
] - doc: replace --allow-fs-read by --allow-fs-write in related section (M1CK431) #544279cbfd5b33a
] - doc: add support link for marco-ippolito (Marco Ippolito) #5478953167b29ef
] - doc: fix typo (Michael Dawson) #5464087f78a35f7
] - doc: fix webcrypto.md AES-GCM backticks (Filip Skokan) #546217c83c15221
] - doc: add documentation about os.tmpdir() overrides (Joyee Cheung) #546134bfd832d70
] - doc: add support me link for anonrig (Yagiz Nizipli) #5461122a103e5ec
] - doc: add alert on REPL from TCP socket (Rafael Gonzaga) #54594b6374c24e1
] - doc: fix typo in styleText description (Rafael Gonzaga) #546162f5b98ee1f
] - doc: add getHeapStatistics() property descriptions (Benji Marinacci) #54584482302b99b
] - doc: fix information about including coverage files (Aviv Keller) #54527b3708e7df4
] - doc: support collaborators - talk amplification (Michael Dawson) #54508c86fe23012
] - doc: add note about shasum generation failure (Marco Ippolito) #54487d53e6cf755
] - doc: fix capitalization in module.md (shallow-beach) #54488cdc6713f18
] - doc: add esm examples to node:https (Alfredo González) #543991ac1fe4e65
] - doc: fix error description of the max header size (Egawa Ryo) #54125244542b720
] - doc: add git node security --cleanup (Rafael Gonzaga) #5438169fb71f54c
] - doc: add note on weakness of permission model (Tobias Nießen) #5426883b2cb908b
] - doc: add versions when--watch-preserve-output
was added (Théo LUDWIG) #54328460fb49483
] - doc: replace v19 mention in Current release (Rafael Gonzaga) #54361994b46a160
] - doc: correct peformance entry types (Jason Zhang) #54263f142e668cb
] - doc: fix typo in method name in the sea doc (Eliyah Sundström) #540279529a30dba
] - doc: mark process.nextTick legacy (Marco Ippolito) #512807e25fabb91
] - doc: add esm examples to node:http2 (Alfredo González) #542926a4f05e384
] - doc: explicitly mention node:fs module restriction (Rafael Gonzaga) #5426953f5c54997
] - doc: warn for windows build bug (Jason Zhang) #5421707bde054f3
] - doc: make some parameters optional intracingChannel.traceCallback
(Deokjin Kim) #5406862bf03b5f1
] - doc: add esm examples to node:dns (Alfredo González) #54172fb2b19184b
] - doc: add KevinEady as a triager (Chengzhong Wu) #5417924976bfba0
] - doc: add esm examples to node:console (Alfredo González) #541084e7edc40f7
] - doc: fix sea assets example (Sadzurami) #54192322b5d91e1
] - doc: add links to security steward companies (Aviv Keller) #529816ab271510e
] - doc: moveonread
option fromsocket.connect()
tonew net.socket()
(sendoru) #5419439c30ea08f
] - doc: move release key for Myles Borins (Richard Lau) #54059e9fc54804a
] - doc: refresh instructions for building node from source (Liran Tal) #53768f131dc625a
] - doc: add documentation for blob.bytes() method (jaexxin) #541148d41bb900b
] - doc: add missing new lines to custom test reporter examples (Eddie Abbondanzio) #541522acaeaba77
] - doc: update list of Triagers on theREADME.md
(Antoine du Hamel) #54138fff8eb2792
] - doc: expand troubleshooting section (Liran Tal) #53808402121520f
] - doc: clarifyuseCodeCache
setting for cross-platform SEA generation (Yelim Koo) #53994272484b8b2
] - doc: test for cli options (Aras Abbasi) #51623c4d0ca4710
] - doc, build: fixup build docs (Aviv Keller) #548992e3e17748b
] - doc, child_process: add esm snippets (Aviv Keller) #53616c40b4b4f27
] - doc, meta: fix broken link inonboarding.md
(Aviv Keller) #54886beff587b94
] - doc, meta: add missing,
toBUILDING.md
(Aviv Keller) #54409c114585430
] - doc, meta: replace command with link to keys (Aviv Keller) #537450843077a99
] - doc, test: simplify test README table (Aviv Keller) #539712df7bc0e32
] - doc,tools: enforce use ofnode:
prefix (Antoine du Hamel) #539500dd4639391
] - esm: fix support forURL
instances inimport.meta.resolve
(Antoine du Hamel) #54690f0c55e206d
] - fs: refactor rimraf to avoid using primordials (Yagiz Nizipli) #54834f568384bbd
] - fs: refactor handleTimestampsAndMode to remove redundant call (HEESEUNG) #543692fb7cc9715
] - fs: fix typings (Yagiz Nizipli) #53626596940cfa0
] - http: reduce likelihood of race conditions on keep-alive timeout (jazelly) #548636e13a7ba02
] - http: remove prototype primordials (Antoine du Hamel) #5369899f96eb3f7
] - http2: remove prototype primordials (Antoine du Hamel) #5369641f5eacc1a
] - https: only use default ALPNProtocols when appropriate (Brian White) #5441159a39520e1
] - (SEMVER-MINOR) inspector: supportNetwork.loadingFailed
event (Kohei Ueno) #54246d1007fb1a9
] - inspector: provide detailed info to fix DevTools frontend errors (Kohei Ueno) #541563b93507949
] - (SEMVER-MINOR) inspector: add initial support for network inspection (Kohei Ueno) #53593fc37b801c8
] - lib: remove unnecessary async (jakecastelli) #54829d86f24787b
] - lib: make WeakRef safe in abort_controller (jazelly) #5479177c59224e5
] - lib: add note about removingnode:sys
module (Rafael Gonzaga) #54743b8c06dce02
] - lib: ensure no holey array in fixed_queue (Jason Zhang) #54537b85c8ce1fc
] - lib: refactor SubtleCrypto experimental warnings (Filip Skokan) #54620e84812c1b5
] - lib: respect terminal capabilities on styleText (Rafael Gonzaga) #54389c004abaf17
] - lib: replace spread operator with primordials function (YoonSoo_Shin) #54053b79aeabc4d
] - lib: avoid for of loop and remove unnecessary variable in zlib (YoonSoo_Shin) #54258f4085363c6
] - lib: fix unhandled errors in webstream adapters (Fedor Indutny) #542061ad857e748
] - lib: fix typos in comments within internal/streams (YoonSoo_Shin) #5409302b36cbd2d
] - (SEMVER-MINOR) lib: add EventSource Client (Aras Abbasi) #51575afbf2c0530
] - lib,permission: support Buffer to permission.has (Rafael Gonzaga) #5410454af47395d
] - meta: bump peter-evans/create-pull-request from 6.1.0 to 7.0.1 (dependabot[bot]) #54820a0c10f2ed9
] - meta: addWindows ARM64
to flaky-tests list (Aviv Keller) #5469327b06880e1
] - meta: bump actions/setup-python from 5.1.1 to 5.2.0 (Rich Trott) #546918747af1037
] - meta: update sccache to v0.8.1 (Aviv Keller) #547203f753d87a6
] - meta: bump step-security/harden-runner from 2.9.0 to 2.9.1 (dependabot[bot]) #547046f103ae25d
] - meta: bump actions/upload-artifact from 4.3.4 to 4.4.0 (dependabot[bot]) #547033e6a9bb04e
] - meta: bump github/codeql-action from 3.25.15 to 3.26.6 (dependabot[bot]) #54702c666ebc4e4
] - meta: fix links inSECURITY.md
(Aviv Keller) #546964d361b3bed
] - meta: fixcontributing
codeowners (Aviv Keller) #5464136931aa183
] - meta: remind users to use a supported version in bug reports (Aviv Keller) #54481cf283d9ca7
] - meta: run coverage-windows whenvcbuild.bat
updated (Aviv Keller) #5441267ca397c9f
] - meta: add test-permission-* CODEOWNERS (Rafael Gonzaga) #54267b61a2f5b79
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #54210dd8ab83667
] - meta: add module label for the lib/internal/modules folder (Aviv Keller) #52858db78978d17
] - meta: bumpactions/upload-artifact
from 4.3.3 to 4.3.4 (dependabot[bot]) #54166ca808dd9e5
] - meta: bumpactions/download-artifact
from 4.1.7 to 4.1.8 (dependabot[bot]) #54167a35d980146
] - meta: bump actions/setup-python from 5.1.0 to 5.1.1 (dependabot[bot]) #541653a103c3a17
] - meta: bumpstep-security/harden-runner
from 2.8.1 to 2.9.0 (dependabot[bot]) #54169775ebbe0e8
] - meta: bumpactions/setup-node
from 4.0.2 to 4.0.3 (dependabot[bot]) #541707d5dd6f1d1
] - meta: bumpgithub/codeql-action
from 3.25.11 to 3.25.15 (dependabot[bot]) #5416880dd38dde3
] - meta: bumpossf/scorecard-action
from 2.3.3 to 2.4.0 (dependabot[bot]) #5417190b632ee02
] - module: warn on detection in typeless package (Geoffrey Booth) #521683011927aab
] - node-api: add external buffer creation benchmark (Chengzhong Wu) #548777611093e11
] - node-api: add support for UTF-8 and Latin-1 property keys (Mert Can Altin) #52984d65a8f377c
] - node-api: remove RefBase and CallbackWrapper (Vladimir Morozov) #53590309cb1cbd2
] - path: removeStringPrototypeCharCodeAt
fromposix.extname
(Aviv Keller) #545462859b4ba9a
] - path: changeposix.join
to use array (Wiyeong Seo) #54331c61cee2138
] - path: fix relative on Windows (Hüseyin Açacak) #53991329be5cc35
] - path: use the correct name invalidateString
(Benjamin Pasero) #53669a9837267cb
] - repl: avoid interpreting 'npm' as a command when errors are recoverable (Shima Ryuhei) #54848d6a2317961
] - repl: doc-deprecate instantiatingnode:repl
classes withoutnew
(Aviv Keller) #548427f09d983f3
] - sea: don't set code cache flags when snapshot is used (Joyee Cheung) #5412085542b094c
] - src: add Cleanable class to Environment (Gabriel Schulhof) #548808422064127
] - src: remove redundant AESCipherMode (Tobias Nießen) #54438342c32483a
] - src: handle errors correctly inpermission.cc
(Michaël Zasso) #5454190ff714699
] - src: returnv8::Object
from error constructors (Michaël Zasso) #54541872856cfcb
] - src: improvebuffer.transcode
performance (Yagiz Nizipli) #5415391936ebd12
] - src: skip inspector wait in internal workers (Chengzhong Wu) #542199759049427
] - src: account for OpenSSL unexpected version (Shelley Vohr) #5403887167fa248
] - src: useargs.This()
instead ofHolder
(Michaël Zasso) #53474b05c56e4be
] - src: simplifysize() == 0
checks (Yagiz Nizipli) #53440d53e53699c
] - src: fix execArgv in worker (theanarkh) #5302921776a34b5
] - src: make sure pass theargv
to worker threads (theanarkh) #528273aaae68ec8
] - (SEMVER-MINOR) src,lib: add performance.uvMetricsInfo (Rafael Gonzaga) #54413ef1c0d7def
] - src,permission: handle process.chdir on pm (Rafael Gonzaga) #531750c32918eef
] - stream: change stream to use index instead offor...of
(Wiyeong Seo) #54474337cd412b5
] - stream: make checking pendingcb on WritableStream backward compatible (jakecastelli) #54142713fc0c9eb
] - stream: throw TypeError when criteria fulfilled in getIterator (jakecastelli) #538259686153616
] - stream: fix util.inspect for compression/decompressionStream (Mert Can Altin) #5228376110b0b43
] - test: adjust test-tls-junk-server for OpenSSL32 (Michael Dawson) #549264092889371
] - test: adjust tls test for OpenSSL32 (Michael Dawson) #549095d48543a16
] - test: fix test-http2-socket-close.js (Hüseyin Açacak) #549008048c2eaed
] - test: improve test-internal-fs-syncwritestream (Sunghoon) #54671597bc14c90
] - test: deflake test-dns (Luigi Pinca) #54902a9fc8d9cfa
] - test: fix test test-tls-dhe for OpenSSL32 (Michael Dawson) #549031b3b4f4a9f
] - test: use correct file naming syntax forutil-parse-env
(Aviv Keller) #537059db46b5ea3
] - test: add missing await (Luigi Pinca) #54828124f715679
] - test: move more url tests tonode:test
(Yagiz Nizipli) #54636d2ec96150a
] - test: strip color chars intest-runner-run
(Giovanni Bucci) #54552747d9ae72e
] - test: deflake test-http2-misbehaving-multiplex (Luigi Pinca) #548727b7687eadc
] - test: remove dead code in test-http2-misbehaving-multiplex (Luigi Pinca) #5486060f5f5426d
] - test: reduce test-esm-loader-hooks-inspect-wait flakiness (Luigi Pinca) #54827f5e77385c5
] - test: reduce the allocation size in test-worker-arraybuffer-zerofill (James M Snell) #54839f26cf09d6b
] - test: fix test-tls-client-mindhsize for OpenSSL32 (Michael Dawson) #54739c6f9afec94
] - test: use platform timeout (jakecastelli) #545918f49b7c3ee
] - test: reduce fs calls in test-fs-existssync-false (Yagiz Nizipli) #54815e2c69c9844
] - test: move test-http-server-request-timeouts-mixed (James M Snell) #54841f7af8ca021
] - test: fix volatile for CauseSegfault with clang (Ivan Trubach) #54325d1bae5ede5
] - test: settest-worker-arraybuffer-zerofill
as flaky (Yagiz Nizipli) #54802b5b5cc811f
] - test: settest-http-server-request-timeouts-mixed
as flaky (Yagiz Nizipli) #548029808feecac
] - test: settest-single-executable-application-empty
as flaky (Yagiz Nizipli) #5480297d41c62e3
] - test: settest-macos-app-sandbox
as flaky (Yagiz Nizipli) #5480257ae68001c
] - test: settest-fs-utimes
as flaky (Yagiz Nizipli) #5480238afc4da03
] - test: settest-runner-run-watch
as flaky (Yagiz Nizipli) #5480268e19748a6
] - test: settest-writewrap
as flaky (Yagiz Nizipli) #54802e8cb03d530
] - test: settest-async-context-frame
as flaky (Yagiz Nizipli) #548023a56517220
] - test: settest-esm-loader-hooks-inspect-wait
as flaky (Yagiz Nizipli) #54802c98cd1227d
] - test: settest-http2-large-file
as flaky (Yagiz Nizipli) #5480216176a6323
] - test: settest-runner-watch-mode-complex
as flaky (Yagiz Nizipli) #54802eed0537533
] - test: settest-performance-function
as flaky (Yagiz Nizipli) #54802d0f208d2e9
] - test: settest-debugger-heap-profiler
as flaky (Yagiz Nizipli) #5480268891a6363
] - test: fixtest-process-load-env-file
when path contains'
(Antoine du Hamel) #545114f82673139
] - test: refactor fs-watch tests due to macOS issue (Santiago Gimeno) #544983606c53fdc
] - test: refactortest-esm-type-field-errors
(Giovanni Bucci) #5436899566aea97
] - test: improve output of child process utilities (Joyee Cheung) #54622ed2377c1a1
] - test: fix test-tls-client-auth test for OpenSSL32 (Michael Dawson) #54610d2a7e45946
] - test: update TLS test for OpenSSL 3.2 (Richard Lau) #54612a50bbca78a
] - test: increase key size for ca2-cert.pem (Michael Dawson) #54599d7ac3262de
] - test: update test-assert-typedarray-deepequal to use node:test (James M Snell) #54585916a73cd8f
] - test: update test-assert to use node:test (James M Snell) #5458510bea1cef5
] - test: merge ongc and gcutil into gc.js (tannal) #54355f145982436
] - test: move a couple of tests over to using node:test (James M Snell) #54582229e102d20
] - test: fix embedding test for Windows (Vladimir Morozov) #53659fcf82adef0
] - test: use relative paths in test-cli-permission tests (sendoru) #541884c219b0235
] - test: fix timeout not being cleared (Isaac-yz-Liu) #54242e446517a41
] - test: refactortest-runner-module-mocking
(Antoine du Hamel) #54233782a6a05ef
] - test: use assert.{s,deepS}trictEqual() (Luigi Pinca) #54208d478db7adc
] - test: set test-structuredclone-jstransferable non-flaky (Stefan Stojanovic) #54115c8587ec90d
] - test: update wpt test for streams (devstone) #54129dbc26c2971
] - test: fix typo in test (Sonny) #5413717b7ec4df3
] - test: add initial pull delay and prototype pollution prevention tests (Sonny) #54061931ff4367a
] - test: update wpt test (Mert Can Altin) #538141c1bd7ce52
] - test: updateurl
web-platform tests (Yagiz Nizipli) #53472b048eaea5c
] - test_runner: reimplementassert.ok
to allow stack parsing (Aviv Keller) #54776c981e61155
] - test_runner: improve code coverage cleanup (Colin Ihrig) #548564f421b37da
] - test_runner: use validateStringArray fortimers.enable()
(Deokjin Kim) #4953427da75ae22
] - test_runner: do not expose internal loader (Antoine du Hamel) #5410656cbc80d28
] - test_runner: make mock_loader not confuse CJS and ESM resolution (Sung Ye In) #538468fd951f7c7
] - test_runner: remove outdated comment (Colin Ihrig) #5414665b6fec3ba
] - test_runner: run after hooks even if test is aborted (Colin Ihrig) #54151c0b4c8284c
] - test_runner: added colors to dot reporter (Giovanni) #534503000e5df91
] - test_runner: support module detection in module mocks (Geoffrey Booth) #53642f789f4c92d
] - (SEMVER-MINOR) test_runner: support module mocking (Colin Ihrig) #5284882d1c36f51
] - test_runner: display failed test stack trace with dot reporter (Mihir Bhansali) #526555358601e31
] - timers: avoid generating holey internal arrays (Gürgün Dayıoğlu) #54771b6ed97c66d
] - timers: document ref option for scheduler.wait (Paolo Insogna) #54605f524b8a28b
] - timers: fix validation (Paolo Insogna) #54404bc020f7cb3
] - (SEMVER-MINOR) tls: addallowPartialTrustChain
flag (Anna Henningsen) #54790d0e6f9168e
] - tls: remove prototype primordials (Antoine du Hamel) #53699f5c65d0be6
] - tools: add readability/fn_size to filter (Rafael Gonzaga) #54744a47bb9b2c2
] - tools: add util scripts to land and rebase PRs (Antoine du Hamel) #54656fe3155cefa
] - tools: remove readability/fn_size rule (Rafael Gonzaga) #54663d6b9cc3acd
] - tools: remove unused python files (Aviv Keller) #53928b5fbe9609c
] - tools: remove header from c-ares license (Aviv Keller) #54335a7fdc608c6
] - tools: add find pyenv path on windows (Marco Ippolito) #54314f90688cd5b
] - tools: make undici updater build wasm from src (Michael Dawson) #54128a033dff2f2
] - tty: initialize winSize array with values (Michaël Zasso) #54281e635e0956c
] - typings: fix TypedArray to a global type (1ilsang) #54063b5bf08f31e
] - typings: correct param type ofSafePromisePrototypeFinally
(Wuli) #54727628ae4bde5
] - typings: add util.styleText type definition (Rafael Gonzaga) #54252cc37401ea5
] - typings: add missing binding functionwriteFileUtf8()
(Jungku Lee) #54110728c3fd6f1
] - url: modify pathToFileURL to handle extended UNC path (Early Riser) #54262b25563dfcb
] - url: improve resolveObject with ObjectAssign (Early Riser) #54092eededd1ca8
] - url: make URL.parse enumerable (Filip Skokan) #537204eb0749b6c
] - (SEMVER-MINOR) url: implement parse method for safer URL parsing (Ali Hassan) #522809e1c2293bf
] - vm: harden module type checks (Chengzhong Wu) #521622d90340cb3
] - (SEMVER-MINOR) vm: introduce vanilla contexts via vm.constants.DONT_CONTEXTIFY (Joyee Cheung) #543944644d05ab5
] - zlib: deprecate instantiating classes without new (Yagiz Nizipli) #54708ecdf6dd444
] - zlib: simplify validators (Yagiz Nizipli) #54442v20.17.0
: 2024-08-21, Version 20.17.0 'Iron' (LTS), @marco-ippolitoCompare Source
module: support require()ing synchronous ESM graphs
This release adds
require()
support for synchronous ESM graphs underthe flag
--experimental-require-module
.If
--experimental-require-module
is enabled, and the ECMAScriptmodule being loaded by
require()
meets the following requirements:require()
will load the requested module as an ES Module, and returnthe module name space object. In this case it is similar to dynamic
import()
but is run synchronously and returns the name space objectdirectly.
Contributed by Joyee Cheung in #51977
path: add
matchesGlob
methodGlob patterns can now be tested against individual paths via the
path.matchesGlob(path, pattern)
method.Contributed by Aviv Keller in #52881
stream: expose DuplexPair API
The function
duplexPair
returns an array with two items,each being a
Duplex
stream connected to the other side:Whatever is written to one stream is made readable on the other. It provides
behavior analogous to a network connection, where the data written by the client
becomes readable by the server, and vice-versa.
Contributed by Austin Wright in #34111
Other Notable Changes
8e64c02b19
] - (SEMVER-MINOR) http: add diagnostics channelhttp.client.request.error
(Kohei Ueno) #54054ae30674991
] - meta: add jake to collaborators (jakecastelli) #540044a3ecbfc9b
] - (SEMVER-MINOR) stream: implementmin
option forReadableStreamBYOBReader.read
(Mattias Buelens) #50888Commits
b3a2726cbc
] - assert: use isError instead of instanceof in innerOk (Pietro Marchini) #53980c7e4c3daf4
] - benchmark: add cpSync benchmark (Yagiz Nizipli) #53612a52de8c5ff
] - bootstrap: print--help
message usingconsole.log
(Jacob Hummer) #5146361b90e7c5e
] - build: update gcovr to 7.2 and codecov config (Benjamin E. Coe) #54019a9c04eaa27
] - build: ensure v8_pointer_compression_sandbox is enabled on 64bit (Shelley Vohr) #53884342a663d7a
] - build: trigger coverage ci when updating codecov (Yagiz Nizipli) #539295727b4d129
] - build: update codecov coverage build count (Yagiz Nizipli) #53929977af25870
] - build: disable test-asan workflow (Michaël Zasso) #5384404798fb104
] - build: fix build warning of c-ares under GN build (Cheng) #537505ec5e78574
] - build: fix mac build error of c-ares under GN (Cheng) #536873d8721f0a4
] - build: add version-specific library path for AIX (Richard Lau) #53585ffb0bd344d
] - build, tools: drop leading/
fromr2dir
(Richard Lau) #53951a2d74f4c31
] - build,tools: simplify upload of shasum signatures (Michaël Zasso) #53892993bb3b6e7
] - child_process: fix incomplete prototype pollution hardening (Liran Tal) #53781137a2e5766
] - cli: document--inspect
port0
behavior (Aviv Keller) #53782820e6e1737
] - cli: updatenode.1
to reflect Atom's sunset (Aviv Keller) #53734fa0e8d7b3b
] - crypto: avoid std::function (Tobias Nießen) #53683460240c368
] - crypto: make deriveBits length parameter optional and nullable (Filip Skokan) #53601ceb1d5e00a
] - crypto: avoid taking ownership of OpenSSL objects (Tobias Nießen) #5346044268c27eb
] - deps: update corepack to 0.29.3 (Node.js GitHub Bot) #54072496975ece0
] - deps: update c-ares to v1.32.3 (Node.js GitHub Bot) #540205eea419349
] - deps: update c-ares to v1.32.2 (Node.js GitHub Bot) #538658c8e3688c5
] - deps: update googletest to4b21f1a
(Node.js GitHub Bot) #5384278f6b34c77
] - deps: update minimatch to 10.0.1 (Node.js GitHub Bot) #53841398f7acca3
] - deps: update corepack to 0.29.2 (Node.js GitHub Bot) #53838fa8f99d90b
] - deps: update simdutf to 5.3.0 (Node.js GitHub Bot) #53837a19b28336b
] - deps: update ada to 2.9.0 (Node.js GitHub Bot) #537482f66c7e707
] - deps: upgrade npm to 10.8.2 (npm team) #537992a2620e7c0
] - deps: update googletest to34ad51b
(Node.js GitHub Bot) #53157c01ce60ce7
] - deps: update googletest to305e5a2
(Node.js GitHub Bot) #53157832328ea01
] - deps: update c-ares to v1.32.1 (Node.js GitHub Bot) #53753878e9a4ae7
] - deps: update minimatch to 9.0.5 (Node.js GitHub Bot) #536464647e6b5c5
] - deps: update c-ares to v1.32.0 (Node.js GitHub Bot) #5372230310bf887
] - doc: move numCPUs require to top of file in cluster CJS example (Alfredo González) #5393236170eddca
] - doc: update security-release process to automated one (Rafael Gonzaga) #5387755f5e76ba7
] - doc: fix typo in technical-priorities.md (YoonSoo_Shin) #540941c0ccc0ca8
] - doc: fix typo in diagnostic tooling support tiers document (Taejin Kim) #540586a5120ff0f
] - doc: move GeoffreyBooth to TSC regular member (Geoffrey Booth) #54047ead05aad2a
] - doc: fix typo in recognizing-contributors (Marco Ippolito) #5399025e59aebac
] - doc: update boxstarter README (Aviv Keller) #53785a3183fb927
] - doc: add info about prefix-only modules tomodule.builtinModules
(Grigory) #5395489599e025f
] - doc: removescroll-behavior: smooth;
(Cloyd Lau) #53942139c62e40c
] - doc: move --test-coverage-{ex,in}clude to proper location (Colin Ihrig) #53926233aba90ea
] - doc: updateapi_assets
README for new files (Aviv Keller) #5367644a1cbe98a
] - doc: add MattiasBuelens to collaborators (Mattias Buelens) #53895f5280ddbc5
] - doc: fix casing of GitHub handle for two collaborators (Antoine du Hamel) #538579224e3eef1
] - doc: update release-post nodejs.org script (Rafael Gonzaga) #53762f87eed8de4
] - doc: move MylesBorins to emeritus (Myles Borins) #5376032ac80ae8d
] - doc: add Rafael to the last security release (Rafael Gonzaga) #53769e71aa7e98b
] - doc: use mock.callCount() in examples (Sébastien Règne) #53754f64db24312
] - doc: clarify authenticity of plaintexts in update (Tobias Nießen) #5378451e736ac83
] - doc: add option to have support me link (Michael Dawson) #533129804731d0f
] - doc: updatescroll-padding-top
to 4rem (Cloyd Lau) #53662229f7f8b8a
] - doc: mention v8.setFlagsFromString to pm (Rafael Gonzaga) #5373198d59aa929
] - doc: remove the last <pre> tag (Claudio W) #5374160ee41df08
] - doc: exclude voting and regular TSC from spotlight (Michael Dawson) #53694c3536cfa99
] - doc: fix releases guide for recent Git versions (Michaël Zasso) #537093b632e1871
] - doc: requirenode:process
in assert doc examples (Alfredo González) #53702754090c110
] - doc: add additional explanation to the wildcard section in permissions (jakecastelli) #536644346de7267
] - doc: mark NODE_MODULE_VERSION for Node.js 22.0.0 (Michaël Zasso) #53650758178bd72
] - doc: include node.module_timer on available categories (Vinicius Lourenço) #53638e0d213df2b
] - doc: fix module customization hook examples (Elliot Goodrich) #5363743ac5a2441
] - doc: fix doc for correct usage with plan & TestContext (Emil Tayeb) #536155076f0d292
] - doc: remove some news issues that are no longer (Michael Dawson) #53608c997dbef34
] - doc: add issue for news from ambassadors (Michael Dawson) #5360716d55f1d25
] - doc: add esm example for os (Leonardo Peixoto) #53604156fc536f2
] - doc: clarify usage of coverage reporters (Eliphaz Bouye) #53523f8f247bc99
] - doc: document addition testing options (Aviv Keller) #5356973860aca56
] - doc: clarify that fs.exists() may return false for existing symlink (Tobias Nießen) #5356659c5c5c73e
] - doc: note http.closeAllConnections excludes upgraded sockets (Rob Hogan) #535601cd3c8eb27
] - doc: fix typo (EhsanKhaki) #533973c5e593e2a
] - doc, meta: add PTAL to glossary (Aviv Keller) #53770f336e61257
] - doc, test: tracing channel hasSubscribers getter (Thomas Hunter II) #529084187b81439
] - doc, typings: events.once accepts symbol event type (René) #535423cdf94d403
] - doc,tty: add documentation for ReadStream and WriteStream (jakecastelli) #535675d03f6fab7
] - esm: move hooks test with others (Geoffrey Booth) #53558490f15a99b
] - fs: ensure consistency for mkdtemp in both fs and fs/promises (YieldRay) #537768e64c02b19
] - (SEMVER-MINOR) http: add diagnostics channelhttp.client.request.error
(Kohei Ueno) #540540d70c79ebf
] - lib: optimize copyError with ObjectAssign in primordials (HEESEUNG) #53999a4ff2ac0f0
] - lib: improve cluster/primary code (Ehsan Khakifirooz) #53756c667fbd988
] - lib: improve error message when index not found on cjs (Vinicius Lourenço) #5385951ba566171
] - lib: decorate async stack trace in source maps (Chengzhong Wu) #53860d012dd3d29
] - lib: remove path.resolve from permissions.js (Rafael Gonzaga) #537291e9ff50446
] - lib: add toJSON to PerformanceMeasure (theanarkh) #536033a2d8bffa5
] - lib: convert WeakMaps in cjs loader with private symbol properties (Chengzhong Wu) #52095e326342bd7
] - meta: addsqlite
to js subsystems (Alex Yang) #53911bfabfb4d17
] - meta: move tsc member to emeritus (Michael Dawson) #54029ae30674991
] - meta: add jake to collaborators (jakecastelli) #540046ca0cfc602
] - meta: remove license for hljs (Aviv Keller) #53970e6ba121e83
] - meta: make more bug-report information required (Aviv Keller) #537181864cddd0c
] - meta: store actions secrets in environment (Aviv Keller) #53930c0b24e5071
] - meta: move anonrig to tsc voting members (Yagiz Nizipli) #53888e60b089f7f
] - meta: remove redudant logging from dep updaters (Aviv Keller) #53783bff6995ec3
] - meta: change email address of anonrig (Yagiz Nizipli) #53829c2bb46020a
] - meta: addnode_sqlite.c
to PR label config (Aviv Keller) #53797b8d2bbc6d6
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #537580ad4b7c1f7
] - meta: use HTML entities in commit-queue comment (Aviv Keller) #53744aa0c5c25d1
] - meta: move regular TSC member to emeritus (Michael Dawson) #53693a5f5b4550b
] - meta: bump codecov/codecov-action from 4.4.1 to 4.5.0 (dependabot[bot]) #53675f84e215c90
] - meta: bump mozilla-actions/sccache-action from 0.0.4 to 0.0.5 (dependabot[bot]) #53674d5a9c249d3
] - meta: bump github/codeql-action from 3.25.7 to 3.25.11 (dependabot[bot]) #5367339d6c780c8
] - meta: bump actions/checkout from 4.1.6 to 4.1.7 (dependabot[bot]) #53672bb6fe38a34
] - meta: bump peter-evans/create-pull-request from 6.0.5 to 6.1.0 (dependabot[bot]) #536715dcdfb5e6b
] - meta: bump step-security/harden-runner from 2.8.0 to 2.8.1 (dependabot[bot]) #5367044d901a1c9
] - meta: move member from TSC regular to emeriti (Michael Dawson) #535990c91186afa
] - meta: warnings bypass deprecation cycle (Benjamin Gruenbaum) #53513bcd08bef60
] - meta: prevent constant references to issues in versioning (Aviv Keller) #535647625dc4927
] - module: fix submodules loaded by require() and import() (Joyee Cheung) #524876c4f4772e3
] - module: tidy code and comments (Jacob Smith) #5243751b88faeac
] - module: disallow CJS <-> ESM edges in a cycle from require(esm) (Joyee Cheung) #522644dae68ced4
] - module: centralize SourceTextModule compilation for builtin loader (Joyee Cheung) #52291cad46afc07
] - (SEMVER-MINOR) module: support require()ing synchronous ESM graphs (Joyee Cheung) #51977ac58c829a1
] - node-api: add property keys benchmark (Chengzhong Wu) #54012e6a4104bd1
] - node-api: rename nogc to basic (Gabriel Schulhof) #5383057b8b8e18e
] - (SEMVER-MINOR) path: addmatchesGlob
method (Aviv Keller) #52881bf6aa53299
] - process: unify experimental warning messages (Aviv Keller) #537042a3ae16e62
] - src: expose LookupAndCompile with parameters (Shelley Vohr) #538860109f9c961
] - src: simplify AESCipherTraits::AdditionalConfig (Tobias Nießen) #538906bafe8a457
] - src: fix -Wshadow warning (Shelley Vohr) #538854c36d6c47a
] - src: fix slice of slice of file-backed Blob (Josh Lee) #53972848c2d59fb
] - src: cache invariant code motion (Rafael Gonzaga) #53879acaf5dd1cd
] - src: avoid strcmp in ImportJWKAsymmetricKey (Tobias Nießen) #53813b71250aaf9
] - src: replace ToLocalChecked uses with ToLocal in node-file (James M Snell) #53869aff9a5339a
] - src: fix env-file flag to ignore spaces before quotes (Mohit Malhotra) #53786e352a4ef27
] - src: update outdated references to spec sections (Tobias Nießen) #538321a4da22a60
] - src: use Maybe<void> in ManagedEVPPKey (Tobias Nießen) #538110c24b91bd2
] - src: fix error handling in ExportJWKAsymmetricKey (Tobias Nießen) #5376781cd84c716
] - src: use Maybe<void> in node::crypto::error (Tobias Nießen) #537668135f3616d
] - src: fix typo in node.h (Daeyeon Jeong) #53759e6d735a997
] - src: document the Node.js context embedder data (Joyee Cheung) #53611584beaa2ed
] - src: zero-initialize data that are copied into the snapshot (Joyee Cheung) #53563ef5dabd8c6
] - src: fix Worker termination when '--inspect-brk' is passed (Daeyeon Jeong) #5372462f4f6f48e
] - src: remove ArrayBufferAllocator::Reallocate override (Shu-yu Guo) #52910a6dd8643fa
] - src: reduce unnecessary serialization of CLI options in C++ (Joyee Cheung) #5245131fdb881cf
] - src,lib: expose getCategoryEnabledBuffer to use on node.http (Vinicius Lourenço) #536022eea8502e1
] - src,test: further cleanup references to osx (Daniel Bayley) #538207c21bb99a5
] - (SEMVER-MINOR) stream: expose DuplexPair API (Austin Wright) #3411156299f7309
] - stream: improve inspector ergonomics (Benjamin Gruenbaum) #538009b82b15230
] - stream: update ongoing promise in async iterator return() method (Mattias Buelens) #526574a3ecbfc9b
] - (SEMVER-MINOR) stream: implementmin
option forReadableStreamBYOBReader.read
(Mattias Buelens) #50888bd996bf694
] - test: do not swallow uncaughtException errors in exit code tests (Meghan Denny) #5403977761af077
] - test: move shared module totest/common
(Rich Trott) #54042bec88ce138
] - test: skip sea tests with more accurate available disk space estimation (Chengzhong Wu) #539969a98ad47cd
] - test: remove unnecessary console log (KAYYY) #53812364d09cf0a
] - test: add comments and rename test for timer robustness (Rich Trott) #540085c5093dc0a
] - test: add test for one arg timers to increase coverage (Carlos Espa) #5400743ede1ae0b
] - test: mark 'test/parallel/test-sqlite.js' as flaky (Colin Ihrig) #540310ad783cb42
] - test: mark test-pipe-file-to-http as flaky (jakecastelli) #53751f2b4fd3544
] - test: compare paths on Windows without considering case (Early Riser) #539932e69e5f4d2
] - test: skip sea tests in large debug builds (Chengzhong Wu) #5391856c26fe6e5
] - test: skip --title check on IBM i (Abdirahim Musse) #539526d0b8ded00
] - test: reduce flakiness oftest-assert-esm-cjs-message-verify
(Antoine du Hamel) #53967edb75aebd7
] - test: usePYTHON
executable from env inassertSnapshot
(Antoine du Hamel) #53938be94e470a6
] - test: deflake test-blob-file-backed (Luigi Pinca) #53920c2b0dcd165
] - test: un-set inspector-async-hook-setup-at-inspect-brk as flaky (Abdirahim Musse) #536926dc18981ac
] - test: use python3 instead of python in pummel test (Mathis Wiehl) #53057662bf524e1
] - test: do not assume cwd in snapshot tests (Antoine du Hamel) #53146a07526702a
] - test: fix OpenSSL version checks (Richard Lau) #535032b70018d11
] - test: refactor, add assertion to http-request-end (jakecastelli) #53411c0262c1561
] - test_runner: switched to internal readline interface (Emil Tayeb) #54000fb7342246c
] - test_runner: do not throw on mocked clearTimeout() (Aksinya Bykova) #54005367f9e77f3
] - test_runner: cleanup global event listeners after run (Eddie Abbondanzio) #53878206c668ee7
] - test_runner: remove plan option from run() (Colin Ihrig) #538348660d481e5
] - tls: add setKeyCert() to tls.Socket (Brian White) #536369c5beabd83
] - tools: fixSLACK_TITLE
in invalid commit workflow (Antoine du Hamel) #539124dedf2aead
] - tools: update lint-md-dependencies (Node.js GitHub Bot) #53840642d5c5d30
] - tools: use v8_features.json to populate config.gypi (Cheng) #53749031206544d
] - tools: update lint-md-dependencies to unified@11.0.5 (Node.js GitHub Bot) #535558404421ea6
] - tools: replace reference to NodeMainInstance with SnapshotBuilder (codediverdev) #535442d8490fed5
] - typings: addfs_dir
types (Yagiz Nizipli) #53631325eae0b3f
] - url: fix typo (KAYYY) #538277fc45f5e3f
] - url: reduce unnecessary string copies (Yagiz Nizipli) #536281d961facf1
] - url: add missing documentation forURL.parse()
(Yagiz Nizipli) #53733ce877c6d0f
] - util: fix crashing when emitting new Buffer() deprecation warning #53075 (Aras Abbasi) #53089d6d04279ca
] - worker: allow copied NODE_OPTIONS in the env setting (Joyee Cheung) #53596v20.16.0
: 2024-07-24, Version 20.16.0 'Iron' (LTS), @marco-ippolitoCompare Source
process: add process.getBuiltinModule(id)
process.getBuiltinModule(id)
provides a way to load built-in modulesin a globally available function. ES Modules that need to support
other environments can use it to conditionally load a Node.js built-in
when it is run in Node.js, without having to deal with the resolution
error that can be thrown by
import
in a non-Node.js environment orhaving to use dynamic
import()
which either turns the module intoan asynchronous module, or turns a synchronous API into an asynchronous one.
If
id
specifies a built-in module available in the current Node.js process,process.getBuiltinModule(id)
method returns the corresponding built-inmodule. If
id
does not correspond to any built-in module,undefined
is returned.
process.getBuiltinModule(id)
accepts built-in module IDs that are recognizedby
module.isBuiltin(id)
.The references returned by
process.getBuiltinModule(id)
always point tothe built-in module corresponding to
id
even if users modifyrequire.cache
so thatrequire(id)
returns something else.Contributed by Joyee Cheung in #52762
doc: doc-only deprecate OpenSSL engine-based APIs
OpenSSL 3 deprecated support for custom engines with a recommendation to switch to its new provider model.
The
clientCertEngine
option forhttps.request()
,tls.createSecureContext()
, andtls.createServer()
; theprivateKeyEngine
andprivateKeyIdentifier
fortls.createSecureContext();
andcrypto.setEngine()
all depend on this functionality from OpenSSL.Contributed by Richard Lau in #53329
inspector: fix disable async hooks on Debugger.setAsyncCallStackDepth
Debugger.setAsyncCallStackDepth
was previously calling the enable function by mistake. As a result, when profiling using Chrome DevTools, the async hooks won't be turned off properly after receivingDebugger.setAsyncCallStackDepth
with depth 0.Contributed by Joyee Cheung in #53473
Other Notable Changes
09e2191432
] - (SEMVER-MINOR) buffer: add .bytes() method to Blob (Matthew Aitken) #53221394e00f41c
] - (SEMVER-MINOR) doc: add context.assert docs (Colin Ihrig) #53169a8601efa5e
] - (SEMVER-MINOR) doc: improve explanation about built-in modules (Joyee Cheung) #527625e76c258f7
] - doc: add StefanStojanovic to collaborators (StefanStojanovic) #531185e694026f1
] - doc: add Marco Ippolito to TSC (Rafael Gonzaga) #53008f3ba1eb72f
] - (SEMVER-MINOR) net: add new net.server.listen tracing channel (Paolo Insogna) #531362bcce3255b
] - (SEMVER-MINOR) src,permission: --allow-wasi & prevent WASI exec (Rafael Gonzaga) #53124a03a4c7bdd
] - (SEMVER-MINOR) test_runner: add context.fullName (Colin Ihrig) #5316969b828f5a5
] - (SEMVER-MINOR) util: support--no-
for argument with boolean type for parseArgs (Zhenwei Jin) #53107Commits
76fd0ea92e
] - assert,util: correct comparison when both contain same reference (Daniel Lemire) #5343165308b6692
] - benchmark: fix api restriction for the permission category (Ryan Tsien) #515281e2bc2c2d0
] - benchmark: fix napi/ref addon (Michaël Zasso) #5323309e2191432
] - (SEMVER-MINOR) buffer: add .bytes() method to Blob (Matthew Aitken) #53221e1951a4804
] - build: fix spacing before NINJA_ARGS (jakecastelli) #5318176f3bb3460
] - build: generate binlog in out directories (Chengzhong Wu) #53325eded0c187b
] - build: support python 3.13 (Chengzhong Wu) #531901e57c67fdb
] - build: update ruff to v0.4.5 (Yagiz Nizipli) #5318028e71ede63
] - build: add--skip-tests
totest-ci-js
target (Antoine du Hamel) #53105bb06778a65
] - build: fix building embedtest in GN build (Cheng) #53145117ff5f139
] - build: use broader detection for 'help' (Aviv Keller) #530459aa896e7f5
] - build: fix -j propagation to ninja (Tobias Nießen) #53088acdbc78955
] - build: exit on unsupported host OS for Android (Mohammed Keyvanzadeh) #52882bf3d94478e
] - build: fix--enable-d8
builds (Richard Lau) #5310699da7d7237
] - build: set "clang" in config.gypi in GN build (Cheng) #530049446278f03
] - crypto: improve GetECGroupBits signature (Tobias Nießen) #53364dc2a4af68d
] - crypto: fix propagation of "memory limit exceeded" (Tobias Nießen) #53300c5174f5e60
] - deps: update c-ares to v1.31.0 (Node.js GitHub Bot) #5355428e932dc7a
] - deps: update undici to 6.19.2 (Node.js GitHub Bot) #53468e4f9c663c4
] - deps: update undici to 6.19.1 (Node.js GitHub Bot) #53468171dc50fdc
] - deps: update undici to 6.19.1 (Node.js GitHub Bot) #534686bb6a9100d
] - deps: update undici to 6.19.0 (Node.js GitHub Bot) #53468815d71b4cd
] - deps: update acorn-walk to 8.3.3 (Node.js GitHub Bot) #534668b5f1d765a
] - deps: update zlib to 1.3.0.1-motley-209717d (Node.js GitHub Bot) #53156fc73da6f50
] - deps: update c-ares to v1.30.0 (Node.js GitHub Bot) #53416a6b803abd6
] - deps: update undici to 6.18.2 (Node.js GitHub Bot) #532550f235535bb
] - deps: update ada to 2.8.0 (Node.js GitHub Bot) #5325463407269a8
] - deps: update corepack to 0.28.2 (Node.js GitHub Bot) #532537a126e8773
] - deps: update c-ares to 1.29.0 (Node.js GitHub Bot) #531550c8fcceefa
] - deps: upgrade npm to 10.8.1 (npm team) #5320723866979f2
] - deps: update undici to 6.18.1 (Node.js GitHub Bot) #530734987a00142
] - deps: update undici to 6.18.0 (Node.js GitHub Bot) #53073af226d0d9c
] - deps: update undici to 6.17.0 (Node.js GitHub Bot) #53034c9c6bf8bfb
] - deps: update undici to 6.16.1 (Node.js GitHub Bot) #52948b32b62d590
] - deps: update undici to 6.15.0 (Matthew Aitken) #527636e6641bea2
] - deps: update googletest to33af80a
(Node.js GitHub Bot) #53053aa96fbe03e
] - deps: update zlib to 1.3.0.1-motley-4f653ff (Node.js GitHub Bot) #53052ba3310ded5
] - deps: upgrade npm to 10.8.0 (npm team) #530148537a2aecf
] - doc: recommend not using libuv node-api function (Michael Dawson) #53521c13600f0db
] - doc: add additional guidance for PRs to deps (Michael Dawson) #534997c3edd952e
] - doc: only apply content-visibility on all.html (Filip Skokan) #53510ac5be14ed8
] - doc: update the description of the return type for options.filter (Zhenwei Jin) #52742cac300e351
] - doc: remove first timer badge (Aviv Keller) #53338feb61459fd
] - doc: add Buffer.from(string) to functions that use buffer pool (Christian Bates-White) #528019e0a6e938b
] - doc: add initial text for ambassadors program (Michael Dawson) #5285755ac53cb0b
] - doc: define more cases for stream event emissions (Aviv Keller) #533177128e0f9c9
] - doc: remove mentions of policy model from security info (Aviv Keller) #532493e290433df
] - doc: fix mistakes in the moduleload
hook api (István Donkó) #533493445c08144
] - doc: doc-only deprecate OpenSSL engine-based APIs (Richard Lau) #53329a3e8cda019
] - doc: mark --heap-prof and related flags stable (Joyee Cheung) #533430b9daaae4d
] - doc: mark --cpu-prof and related flags stable (Joyee Cheung) #53343daf91834f6
] - doc: remove IRC from man page (Tobias Nießen) #533444246c8fa31
] - doc: fix broken link instatic-analysis.md
(Richard Lau) #53345955b98a0e4
] - doc: remove cases for keys not containing "*" in PATTERN_KEY_COMPARE (Maarten Zuidhoorn) #532157832b1815f
] - doc: add err param to fs.cp callback (Feng Yu) #5323401533df87f
] - doc: adderr
param to fs.copyFile callback (Feng Yu) #53234b081bc7d5e
] - doc: reserve 128 for Electron 32 (Keeley Hammond) #532036b8460b560
] - doc: add note to ninjia build for macOS using -jn flag (jakecastelli) #53187394e00f41c
] - (SEMVER-MINOR) doc: add context.assert docs (Colin Ihrig) #53169c143d61d0e
] - doc: include ESM import for HTTP (Aviv Keller) #53165a8601efa5e
] - (SEMVER-MINOR) doc: improve explanation about built-in modules (Joyee Cheung) #52762560392de3d
] - doc: fix minor grammar and style issues in SECURITY.md (Rich Trott) #531689f8e34323d
] - doc: mention pm is not enforced when using fd (Rafael Gonzaga) #531253ac775b015
] - doc: fix format inesm.md
(Pop Moore) #5317041b08bdcf7
] - doc: fix wrong variable name in example oftimers.tick()
(Deokjin Kim) #53147698ea7aa5a
] - doc: fix wrong function name in example ofcontext.plan()
(Deokjin Kim) #53140a99359d79d
] - doc: add note for windows users and symlinks (Aviv Keller) #5311761ec2af292
] - doc: move all TLS-PSK documentation to its section (Alba Mendez) #357175e76c258f7
] - doc: add StefanStojanovic to collaborators (StefanStojanovic) #531181dc406ba62
] - doc: improve ninja build for --built-in-modules-path (jakecastelli) #530072854585662
] - doc: avoid hiding by navigation bar in anchor jumping (Cloyd Lau) #451313f432f829f
] - doc: remove unavailable youtube link in pull requests (Deokjin Kim) #529825e694026f1
] - doc: add Marco Ippolito to TSC (Rafael Gonzaga) #53008231e44043e
] - doc: add missing supported timer values intimers.enable()
(Deokjin Kim) #52969b8944f6938
] - doc, http: addrejectNonStandardBodyWrites
option, clear its behaviour (jakecastelli) #533960354584738
] - doc, meta: organize contributing to Node-API guide (Aviv Keller) #532439ae3719c4e
] - doc, meta: use markdown rather than HTML in CONTRIBUTING.md (Aviv Keller) #53235621e073c96
] - fs: do not crash if the watched file is removed while setting up watch (Matteo Collina) #53452f00ee1c377
] - fs: fix cp dir/non-dir mismatch error messages (Mathis Wiehl) #53150655b960418
] - http2: reject failed http2.connect when used with promisify (ehsankhfr) #53475eb0b68bb29
] - inspector: fix disable async hooks on Debugger.setAsyncCallStackDepth (Joyee Cheung) #534731c0b89be4c
] - lib: fix typo in comment (codediverdev) #5354355922d9cb0
] - lib: remove the unused code (theanarkh) #5346306374ef96b
] - lib: fix naming convention ofSymbol
(Deokjin Kim) #53387d1a780039a
] - lib: fix timer leak (theanarkh) #533378689ce4b41
] - lib: fix misleading argument of validateUint32 (Tobias Nießen) #5330757d7bbf624
] - lib: fix the name of the fetch global function (Gabriel Bota) #5322723f086c363
] - lib: do not call callback if socket is closed (theanarkh) #52829f325c54c80
] - meta: use correct source for workflow in PR (Aviv Keller) #534908172412dbe
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #5348001b61d65d3
] - meta: fix typo in dependency updates (Aviv Keller) #5347112f5737cd3
] - meta: bump step-security/harden-runner from 2.7.1 to 2.8.0 (dependabot[bot]) #53245102e4eee3c
] - meta: bump ossf/scorecard-action from 2.3.1 to 2.3.3 (dependabot[bot]) #532485ba185580d
] - meta: bump actions/checkout from 4.1.4 to 4.1.6 (dependabot[bot]) #532479d186cce2b
] - meta: bump github/codeql-action from 3.25.3 to 3.25.7 (dependabot[bot]) #5324629ab74009e
] - meta: bump codecov/codecov-action from 4.3.1 to 4.4.1 (dependabot[bot]) #53244bd4b593f30
] - meta: removeinitializeCommand
from devcontainer (Aviv Keller) #5313761b1f573cf
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #53065f3ba1eb72f
] - (SEMVER-MINOR) net: add new net.server.listen tracing channel (Paolo Insogna) #5313667333a5796
] - (SEMVER-MINOR) process: add process.getBuiltinModule(id) (Joyee Cheung) #52762092aa09eb3
] - repl: fix await object patterns without values (Luke Haas) #53331554d25f526
] - src: resetprocess.versions
during pre-execution (Richard Lau) #53444a0879ad628
] - src: fix dynamically linked OpenSSL version (Richard Lau) #5345691c05f34de
] - src: removeSetEncoding
from StringEncoder (Yagiz Nizipli) #534414f49384be5
] - src: fix typo in env.cc (EhsanKhaki) #534189730d1e186
] - src: avoid strcmp in favor of operator== (Tobias Nießen) #53439436ad8ceb9
] - src: print v8::OOMDetails::detail when it's available (Joyee Cheung) #53360f773b289eb
] - src: fix IsIPAddress for IPv6 (Hüseyin Açacak) #534007705efd860
] - src: fix permission inspector crash (theanarkh) #53389260d8d9ae1
] - src: use __FUNCSIG__ on Windows in backtrace (Joyee Cheung) #531353b79e9c24e
] - src: fix external module env and kDisableNodeOptionsEnv (Rafael Gonzaga) #5290532839c63cb
] - src: reduce unnecessaryGetCwd
calls (Yagiz Nizipli) #53064840dd092ce
] - src: improve node::Dotenv declarations (Tobias Nießen) #529732bcce3255b
] - (SEMVER-MINOR) src,permission: --allow-wasi & prevent WASI exec (Rafael Gonzaga) #53124e092c62a22
] - stream: update outdated highwatermark doc (Jay Kim) #5349471af3e8172
] - stream: support dispose in writable (Benjamin Gruenbaum) #4854733a15be32f
] - stream: callback should be called when pendingcb is 0 (jakecastelli) #534381b46ebbf69
] - stream: make sure _destroy is called (jakecastelli) #532139f95d41947
] - stream: prevent stream unexpected pause when highWaterMark set to 0 (jakecastelli) #53261d02651c9d6
] - stream: micro-optimize writable condition (Orgad Shaneh) #53189324070c410
] - stream: fix memory usage regression in writable (Orgad Shaneh) #5318848138afd35
] - stream: fixes for webstreams (Mattias Buelens) #5116824f078a22b
] - test: marktest-benchmark-crypto
as flaky (Antoine du Hamel) #529550d69ce3474
] - test: extend env fortest-node-output-errors
(Richard Lau) #535351aaaad8518
] - test: update encoding web-platform tests (Yagiz Nizipli) #5347754e0ba8771
] - test: check against run-time OpenSSL version (Richard Lau) #53456059e47c320
] - test: update tests for OpenSSL 3.0.14 (Richard Lau) #5337349e6f33021
] - test: fix test-http-server-keepalive-req-gc (Etienne Pierre-doray) #53292292d13a289
] - test: update TLS tests for OpenSSL 3.2 (Richard Lau) #5338482017c90bb
] - test: fix test when compiled without engine support (Richard Lau) #53232a54090b385
] - test: update TLS trace tests for OpenSSL >= 3.2 (Richard Lau) #532293a1693421d
] - test: fix Windows native test suites (Stefan Stojanovic) #531732b07d01272
] - test: skiptest-setproctitle
whenps
is not available (Antoine du Hamel) #531040051d1c83d
] - test: increase allocation so it fails for the test (Adam Majer) #53099048cbe3304
] - test: remove timers from test-tls-socket-close (Luigi Pinca) #530198653d9223e
] - test: replace.substr
with.slice
(Antoine du Hamel) #53070d74bda4241
] - test: add AbortController to knownGlobals (Luigi Pinca) #53020f29e1e9838
] - test: skip unstable shadow realm gc tests (Chengzhong Wu) #52855dfa498697e
] - test,doc: enable running embedtest for Windows (Vladimir Morozov) #526460381817f1d
] - test_runner: calculate executed lines using source map (Moshe Atlow) #533159d3699b5b0
] - test_runner: handle file rename and deletion under watch mode (jakecastelli) #531149a36258ca0
] - test_runner: refactor to use min/max ofvalidateInteger
(Deokjin Kim) #53148a03a4c7bdd
] - (SEMVER-MINOR) test_runner: add context.fullName (Colin Ihrig) #53169a72157077a
] - test_runner: fix t.assert methods (Colin Ihrig) #53049ba764db9ab
] - test_runner: avoid error when coverage line not found (Moshe Atlow) #530003a4a0ebd06
] - test_runner,doc: align documentation with actual stdout/stderr behavior (Moshe Atlow) #531316e6646bdd5
] - tls: check result of SSL_CTX_set_*_proto_version (Tobias Nießen) #534592aceed4297
] - tls: avoid taking ownership of OpenSSL objects (Tobias Nießen) #53436faa5cac18c
] - tls: use SSL_get_peer_tmp_key (Tobias Nießen) #5336668fcbb635e
] - tls: fix negative sessionTimeout handling (Tobias Nießen) #5300261a1c43ef1
] - tools: fix skip detection of test runner output (Richard Lau) #5354553a7b6e1c0
] - tools: fix c-ares update script (Marco Ippolito) #534143bd5f46a15
] - tools: update lint-md-dependencies (Node.js GitHub Bot) #53158daab9e170f
] - tools: do not run Corepack code before it's reviewed (Antoine du Hamel) #53405d18a67f937
] - tools: use Ubuntu 24.04 and Clang on GitHub actions (Michaël Zasso) #53212e9b7a52848
] - tools: add stream label on PR when related files being changed in lib (jakecastelli) #5326904d78dd56d
] - tools: remove no-goma arg from make-v8 script (Michaël Zasso) #5333637e725a500
] - tools: use sccache Github action (Moshe Atlow) #533162a1fde7e32
] - tools: update error message for Type Error (Aviv Keller) #530478f5fb4192d
] - Revert "tools: add --certify-safe to nci-ci" (Antoine du Hamel) #5309869b828f5a5
] - (SEMVER-MINOR) util: support--no-
for argument with boolean type for parseArgs (Zhenwei Jin) #531071a2f3ab4f5
] - watch: fix variable naming (jakecastelli) #53101v20.15.1
: 2024-07-08, Version 20.15.1 'Iron' (LTS), @RafaelGSSCompare Source
This is a security release.
Notable Changes
Commits
60e184a6e4
] - lib,esm: handle bypass network-import via data: (RafaelGSS) nodejs-private/node-private#522025cbd6936
] - lib,permission: support fs.lstat (RafaelGSS) nodejs-private/node-private#486d38ea17341
] - lib,permission: disable fchmod/fchown when pm enabled (RafaelGSS) nodejs-private/node-private#5841ba624cd3b
] - src: handle permissive extension on cmd check (RafaelGSS) nodejs-private/node-private#5962524d00c3d
] - src,permission: fix UNC path resolution (RafaelGSS) nodejs-private/node-private#581484cb0f13c
] - src,permission: resolve path on fs_permission (Rafael Gonzaga) #52761v20.15.0
: 2024-06-20, Version 20.15.0 'Iron' (LTS), @marco-ippolitoCompare Source
test_runner: support test plans
It is now possible to count the number of assertions and subtests that are expected to run within a test. If the number of assertions and subtests that run does not match the expected count, the test will fail.
Contributed by Colin Ihrig in #52860
inspector: introduce the
--inspect-wait
flagThis release introduces the
--inspect-wait
flag, which allows debugger to wait for attachement. This flag is useful when you want to debug the code from the beginning. Unlike--inspect-brk
, which breaks on the first line, this flag waits for debugger to be connected and then runs the code as soon as a session is established.Contributed by Kohei Ueno in #52734
zlib: expose zlib.crc32()
This release exposes the crc32() function from zlib to user-land.
It computes a 32-bit Cyclic Redundancy Check checksum of data. If
value is specified, it is used as the starting value of the checksum,
otherwise, 0 is used as the starting value.
The CRC algorithm is designed to compute checksums and to detect error
in data transmission. It's not suitable for cryptographic authentication.
Contributed by Joyee Cheung in #52692
cli: allow running wasm in limited vmem with --disable-wasm-trap-handler
By default, Node.js enables trap-handler-based WebAssembly bound
checks. As a result, V8 does not need to insert inline bound checks
int the code compiled from WebAssembly which may speedup WebAssembly
execution significantly, but this optimization requires allocating
a big virtual memory cage (currently 10GB). If the Node.js process
does not have access to a large enough virtual memory address space
due to system configurations or hardware limitations, users won't
be able to run any WebAssembly that involves allocation in this
virtual memory cage and will see an out-of-memory error.
--disable-wasm-trap-handler
disables this optimization so thatusers can at least run WebAssembly (with a less optimial performance)
when the virtual memory address space available to their Node.js
process is lower than what the V8 WebAssembly memory cage needs.
Contributed by Joyee Cheung in #52766
Other Notable Changes
12512c3d0e
] - doc: add pimterry to collaborators (Tim Perry) #528749d485b40bb
] - (SEMVER-MINOR) tools: fix get_asan_state() in tools/test.py (Joyee Cheung) #52766e98c305f52
] - (SEMVER-MINOR) tools: support max_virtual_memory test configuration (Joyee Cheung) #52766dce0300896
] - (SEMVER-MINOR) tools: support != in test status files (Joyee Cheung) #52766Commits
227093bfec
] - assert: add deep equal check for more Error type (Zhenwei Jin) #51805184cfe5a71
] - benchmark: filter non-present deps fromstart-cli-version
(Adam Majer) #517468b3e83bb53
] - buffer: even faster atob (Daniel Lemire) #524438d628c3255
] - buffer: use size_t instead of uint32_t to avoid segmentation fault (Xavier Stouder) #4803316ae2b2933
] - buffer: remove lines setting indexes to integer value (Zhenwei Jin) #5258848c15d0dcd
] - build: remove deprecated calls for argument groups (Mohammed Keyvanzadeh) #529131be8232d17
] - build: drop base64 dep in GN build (Cheng) #52856918962d6e7
] - build: make simdjson a public dep in GN build (Cheng) #527555215b6fd8e
] - build, tools: copy release assets to staging R2 bucket once built (flakey5) #51394473fa73857
] - (SEMVER-MINOR) cli: allow running wasm in limited vmem with --disable-wasm-trap-handler (Joyee Cheung) #52766954d2aded4
] - cluster: replaceforEach
withfor-of
loop (Jérôme Benoit) #50317794e450ea7
] - console: colorize console error and warn (Jithil P Ponnan) #516290fb7c18f10
] - crypto: fix duplicated switch-case return values (Mustafa Ateş UZUN) #49030cd1415c8b2
] - Revert "crypto: make timingSafeEqual faster for Uint8Array" (Tobias Nießen) #53390b774544bb1
] - deps: enable unbundling of simdjson, simdutf, ada (Daniel Lemire) #52924da4dbfc5fd
] - doc: remove reference to AUTHORS file (Marco Ippolito) #529602f3f2ff8af
] - doc: update hljs with the latest styles (Aviv Keller) #529113a1d17a9b1
] - doc: mention quicker way to build docs (Alex Crawford) #52937be309bd19d
] - doc: mention push.followTags config (Rafael Gonzaga) #52906e62c6e2684
] - doc: document pipeline withend
option (Alois Klink) #48970af27225cf6
] - doc: add example forexecFileSync
method and ref to stdio (Evan Shortiss) #39412086626f9b1
] - doc: add examples and notes to http server.close et al (mary marchini) #490913aa3337a00
] - doc: fixdns.lookup
family0
andall
descriptions (Adam Jones) #51653585f2a2e7f
] - doc: updatefs.realpath
documentation (sinkhaha) #481704bf3d44e1d
] - doc: update fs read documentation for clarity (Mert Can Altin) #52453ae5d47dde3
] - doc: watermark string behavior (Benjamin Gruenbaum) #528421e429d10d3
] - doc: exclude commits with baking-for-lts (Marco Ippolito) #528963df3e37cdb
] - doc: add names next to release key bash commands (Aviv Keller) #5287812512c3d0e
] - doc: add pimterry to collaborators (Tim Perry) #5287497e0fef019
] - doc: add more definitions to GLOSSARY.md (Aviv Keller) #5279891fadac162
] - doc: make docs more welcoming and descriptive for newcomers (Serkan Özel) #38056a3b20126fd
] - doc: add OpenSSL errors to API docs (John Lamp) #342139587ae9b5b
] - doc: simplify copy-pasting ofbranch-diff
commands (Antoine du Hamel) #527576ea72a53c3
] - doc: add test_runner to subsystem (Raz Luvaton) #52774972eafd983
] - events: update MaxListenersExceededWarning message log (sinkhaha) #5192174753ed1fe
] - events: add stop propagation flag toEvent.stopImmediatePropagation
(Mickael Meausoone) #3946375dd009649
] - events: replace NodeCustomEvent with CustomEvent (Feng Yu) #438767d38c2e012
] - fs: keep fs.promises.readFile read until EOF is reached (Zhenwei Jin) #521788cb13120d3
] - (SEMVER-MINOR) inspector: introduce the--inspect-wait
flag (Kohei Ueno) #52734d5ab1de1fd
] - meta: move@anonrig
to TSC regular member (Yagiz Nizipli) #52932f82d086e90
] - path: fix toNamespacedPath on Windows (Hüseyin Açacak) #52915121ea13b50
] - process: improve event-loop (Aras Abbasi) #52108eceac784aa
] - repl: fix disruptive autocomplete without inspector (Nitzan Uziely) #4066189a910be82
] - src: fix Worker termination ininspector.waitForDebugger
(Daeyeon Jeong) #52527033f985e8a
] - src: useS_ISDIR
to check if the file is a directory (theanarkh) #5216495128399f8
] - src: allow preventing debug signal handler start (Shelley Vohr) #46681b162aeae9e
] - src: fix typo Unabled -> Unable (Simon Siefke) #528202dcbf1894a
] - src: avoid unused variable 'error' warning (Michaël Zasso) #52886978ee0a635
] - src: only apply fix in main thread (Paolo Insogna) #527028fc52b38c6
] - src: fix test local edge case (Paolo Insogna) #52702d02907ecc4
] - src: remove misplaced windows code under posix guard in node.cc (Ali Hassan) #52545af29120fa7
] - stream: useByteLengthQueuingStrategy
when not inobjectMode
(Jason) #48847a5f3dd137c
] - string_decoder: throw an error when writing a too long buffer (zhenweijin) #5221565fa95d57d
] - test: addDebugger.setInstrumentationBreakpoint
known issue (Konstantin Ulitin) #311370513e07805
] - test: usefor-of
instead offorEach
(Gibby Free) #497901d01325928
] - test: verify request payload is uploaded consistently (Austin Wright) #340667dda156872
] - test: add fuzzer for native/js string conversion (Adam Korczynski) #511205fb829b340
] - test: add fuzzer forClientHelloParser
(AdamKorcz) #51088cc74bf789f
] - test: fix broken env fuzzer by initializing process (AdamKorcz) #51080800b6f65cf
] - test: replaceforEach()
intest-stream-pipe-unpipe-stream
(Dario) #50786d08c9a6a31
] - test: test pipelineend
on transform streams (Alois Klink) #489700be8123ede
] - test: improve coverage of lib/readline.js (Rongjian Zhang) #38646410224415c
] - test: updated for each to for of in test file (lyannel) #50308556e9a2127
] - test: movetest-http-server-request-timeouts-mixed
to sequential (Madhuri) #457220638274c07
] - test: fix DNS cancel tests (Szymon Marczak) #44432311bdc62bd
] - test: add http agent toexecutionAsyncResource
(psj-tar-gz) #349666001b164ab
] - test: reduce memory usage of test-worker-stdio (Adam Majer) #37769986bfa26e9
] - test: add common.expectRequiredModule() (Joyee Cheung) #528682246d4fd1e
] - test: crypto-rsa-dsa testing for dynamic openssl (Michael Dawson) #527811dce5dea0b
] - test: skip some console tests on dumb terminal (Adam Majer) #377700addeb240c
] - test: skip v8-updates/test-linux-perf-logger (Michaël Zasso) #5282156e19e38f3
] - test: drop test-crypto-timing-safe-equal-benchmarks (Rafael Gonzaga) #527510c5e58958c
] - test, crypto: use correct object on assert (响马) #51820d54aa47ec1
] - (SEMVER-MINOR) test_runner: support test plans (Colin Ihrig) #528600289a023a5
] - test_runner: fix watch mode race condition (Moshe Atlow) #52954cf817e192e
] - test_runner: preserve hook promise when executed twice (Moshe Atlow) #52791de541235fe
] - tools: fix v8-update workflow (Michaël Zasso) #52957f6290bc327
] - tools: add --certify-safe to nci-ci (Matteo Collina) #529400830b3115d
] - tools: fix doc update action (Marco Ippolito) #528909d485b40bb
] - (SEMVER-MINOR) tools: fix get_asan_state() in tools/test.py (Joyee Cheung) #52766e98c305f52
] - (SEMVER-MINOR) tools: support max_virtual_memory test configuration (Joyee Cheung) #52766dce0300896
] - (SEMVER-MINOR) tools: support != in test status files (Joyee Cheung) #5276657006001ec
] - tools: prepare custom rules for ESLint v9 (Michaël Zasso) #52889403a4a7557
] - tools: update lint-md-dependencies to rollup@4.17.2 (Node.js GitHub Bot) #5283601eff5860e
] - tools: updategr2m/create-or-update-pull-request-action
(Antoine du Hamel) #52843514f01ed59
] - tools: use sccache GitHub action (Michaël Zasso) #528398f8fb91927
] - tools: specify a commit-message for V8 update workflow (Antoine du Hamel) #52844b83fbf8709
] - tools: fix V8 update workflow (Antoine du Hamel) #52822be9d6f2176
] - url,tools,benchmark: replace deprecatedsubstr()
(Jungku Lee) #515467603a51d45
] - util: fix%s
format behavior withSymbol.toPrimitive
(Chenyu Yang) #50992d7eba50cf3
] - util: improveisInsideNodeModules
(uzlopak) #521474ae4f7e517
] - watch: allow listening for grouped changes (Matthieu Sieben) #527221ff8f318c0
] - watch: enable passthrough ipc in watch mode (Zack) #50890739adf90b1
] - watch: fix arguments parsing (Moshe Atlow) #527605161d95c30
] - (SEMVER-MINOR) zlib: expose zlib.crc32() (Joyee Cheung) #52692v20.14.0
: 2024-05-28, Version 20.14.0 'Iron' (LTS), @marco-ippolitoCompare Source
Notable Changes
28d2baa17c
] - src,permission: throw async errors on async APIs (Rafael Gonzaga) #5273077e2bf029a
] - (SEMVER-MINOR) test_runner: support forced exit (Colin Ihrig) #52038Commits
e3ad05d8b0
] - deps: V8: cherry-pick500de8b
(Richard Lau) #52676053282e661
] - deps: V8: backportc4be0a9
(Richard Lau) #52183200dadb879
] - deps: V8: cherry-pickf8d5e57
(Richard Lau) #52183f5cd125e02
] - deps: update googletest tofa6de7f
(Node.js GitHub Bot) #52949bbbfd7f4e1
] - deps: update corepack to 0.28.1 (Node.js GitHub Bot) #529467ba30a57a6
] - deps: update simdutf to 5.2.8 (Node.js GitHub Bot) #52727b21a480a28
] - deps: update simdutf to 5.2.6 (Node.js GitHub Bot) #527276cfad60d97
] - deps: update googletest to2d16ed0
(Node.js GitHub Bot) #5165734708d1429
] - deps: update googletest tod83fee1
(Node.js GitHub Bot) #51657c1d3e558e8
] - deps: update googletest to5a37b51
(Node.js GitHub Bot) #5165769959d0fca
] - deps: update googletest to5197b1a
(Node.js GitHub Bot) #51657c8305f6057
] - deps: update googletest toeff443c
(Node.js GitHub Bot) #51657760b788704
] - deps: update googletest toc231e6f
(Node.js GitHub Bot) #51657301541cc8f
] - deps: update googletest toe4fdb87
(Node.js GitHub Bot) #51657981d57e401
] - deps: update googletest to5df0241
(Node.js GitHub Bot) #51657a1817f534d
] - deps: update googletest tob75ecf1
(Node.js GitHub Bot) #5165742070ca189
] - deps: update googletest to4565741
(Node.js GitHub Bot) #51657edc3e5d056
] - deps: update uvwasi to 0.0.21 (Node.js GitHub Bot) #5286326b1231ffb
] - deps: upgrade npm to 10.7.0 (npm team) #52767e6d9fbece2
] - doc: update process.versions properties (ishabi) #527368c1f837c0a
] - doc: remove mold use on mac for speeding up build (Cong Zhang) #52252d9c5114694
] - doc: fix grammatical mistake (codershiba) #52808b350f435b7
] - meta: add mailmap entry for legendecas (Chengzhong Wu) #5279561f9f12eff
] - meta: bump actions/checkout from 4.1.1 to 4.1.4 (dependabot[bot]) #52787ac563667d6
] - meta: bump github/codeql-action from 3.24.9 to 3.25.3 (dependabot[bot]) #5278670611d7924
] - meta: bump actions/upload-artifact from 4.3.1 to 4.3.3 (dependabot[bot]) #5278530482ea273
] - meta: bump actions/download-artifact from 4.1.4 to 4.1.7 (dependabot[bot]) #52784d1607cdebb
] - meta: bump codecov/codecov-action from 4.1.1 to 4.3.1 (dependabot[bot]) #5278321f1b6bfc3
] - meta: bump step-security/harden-runner from 2.7.0 to 2.7.1 (dependabot[bot]) #527820c6019a222
] - meta: standardize regex (Aviv Keller) #5269328d2baa17c
] - src,permission: throw async errors on async APIs (Rafael Gonzaga) #52730cffd2cc0c9
] - Revert "stream: revert fix cloned webstreams not being unref'd" (Marco Ippolito) #531443dd96f1fab
] - stream: implement TransformStream cleanup using "transformer.cancel" (Debadree Chatterjee) #501268e7e778e01
] - test: skip v8-updates/test-linux-perf (Michaël Zasso) #49639f8e18869e9
] - test: replace always-opt flag with alway-turbofan (Michaël Zasso) #50115a501860d63
] - test_runner: don't await the same promise for each test (Colin Ihrig) #52185e2ae4367f4
] - test_runner: run top level tests in a microtask (Colin Ihrig) #5209277e2bf029a
] - (SEMVER-MINOR) test_runner: support forced exit (Colin Ihrig) #52038b7bc63565e
] - test_runner: ignore todo flag when running suites (Colin Ihrig) #52117be587e3ae3
] - test_runner: use paths for test locations (Colin Ihrig) #52010743281ab25
] - test_runner: support source mapped test locations (Colin Ihrig) #520104051316d95
] - tools: update lint-md-dependencies to rollup@4.17.0 (Node.js GitHub Bot) #52729v20.13.1
: 2024-05-09, Version 20.13.1 'Iron' (LTS), @marco-ippolitoCompare Source
2024-05-09, Version 20.13.1 'Iron' (LTS), @marco-ippolito
Revert "tools: install npm PowerShell scripts on Windows"
Due to a regression in the npm installation on Windows, this commit reverts the change that installed npm PowerShell scripts on Windows.
Commits
b7d80802cc
] - Revert "tools: install npm PowerShell scripts on Windows" (marco-ippolito) #52897v20.13.0
: 2024-05-07, Version 20.13.0 'Iron' (LTS), @marco-ippolitoCompare Source
2024-05-07, Version 20.13.0 'Iron' (LTS), @marco-ippolito
buffer: improve
base64
andbase64url
performanceThe performance of the
base64
andbase64url
encoding and decoding functions has been improved significantly.Contributed by Yagiz Nizipli in #52428
crypto: deprecate implicitly shortened GCM tags
This release, introduces a doc-only deprecation of using GCM authentication tags that are shorter than the cipher's block size, unless the user specified the
authTagLength
option.Contributed by Tobias Nießen in #52345
events,doc: mark CustomEvent as stable
From this release
CustomEvent
has been marked stable.Contributed by Daeyeon Jeong in #52618
fs: add stacktrace to fs/promises
Sync functions in fs throwed an error with a stacktrace which is helpful for debugging. But functions in fs/promises throwed an error without a stacktrace. This commit adds stacktraces by calling
Error.captureStacktrace
and re-throwing the error.Contributed by 翠 / green in #49849
report: add
--report-exclude-network
optionNew option
--report-exclude-network
, also available asreport.excludeNetwork
, enables the user to exclude networking interfaces in their diagnostic report. On some systems, this can cause the report to take minutes to generate so this option can be used to optimize that.Contributed by Ethan Arrowood in #51645
src: add uv_get_available_memory to report and process
From this release it is possible to get the available memory in the system by calling
process.getAvailableMemory()
.Contributed by theanarkh #52023
stream: support typed arrays
This commit adds support for typed arrays in streams.
Contributed by IlyasShabi #51866
util: support array of formats in util.styleText
It is now possible to pass an array of format strings to
util.styleText
to apply multiple formats to the same text.Contributed by Marco Ippolito in #52040
v8: implement v8.queryObjects() for memory leak regression testing
This is similar to the queryObjects() console API provided by the Chromium DevTools console. It can be used to search for objects that have the matching constructor on its prototype chain in the heap after a full garbage collection, which can be useful for memory leak regression tests.
To avoid surprising results, users should avoid using this API on constructors whose implementation they don't control, or on constructors that can be invoked by other parties in the application.
To avoid accidental leaks, this API does not return raw references to the objects found. By default, it returns the count of the objects found. If options.format is 'summary', it returns an array containing brief string representations for each object. The visibility provided in this API is similar to what the heap snapshot provides, while users can save the cost of serialization and parsing and directly filer the target objects during the search.
We have been using this API internally for the test suite, which has been more stable than any other leak regression testing strategies in the CI. With a public implementation we can now use the public API instead.
Contributed by Joyee Cheung in #51927
watch: mark as stable
From this release Watch Mode is considered stable.
When in watch mode, changes in the watched files cause the Node.js process to restart.
Contributed by Moshe Atlow in #52074
Other Notable Changes
f8ad30048d
] - benchmark: add AbortSignal.abort benchmarks (Raz Luvaton) #524083b41da9a56
] - (SEMVER-MINOR) deps: update simdutf to 5.0.0 (Daniel Lemire) #521380a08c4a7b3
] - (SEMVER-MINOR) deps: update undici to 6.3.0 (Node.js GitHub Bot) #51462f1b7bda4f5
] - (SEMVER-MINOR) deps: update undici to 6.2.1 (Node.js GitHub Bot) #512784acca8ed84
] - (SEMVER-MINOR) dns: add order option and support ipv6first (Paolo Insogna) #52492cc67720ff9
] - doc: update release gpg keyserver (marco-ippolito) #52257c2def7df96
] - doc: add release key for marco-ippolito (marco-ippolito) #52257807c89cb26
] - doc: add UlisesGascon as a collaborator (Ulises Gascón) #519915e78a20ef9
] - (SEMVER-MINOR) doc: deprecate fs.Stats public constructor (Marco Ippolito) #51879722fe64ff7
] - (SEMVER-MINOR) lib, url: add awindows
option to path parsing (Aviv Keller) #52509d116fa1568
] - (SEMVER-MINOR) net: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) #524746af7b78b0d
] - (SEMVER-MINOR) src: addstring_view
overload to snapshot FromBlob (Anna Henningsen) #52595b3a11b574b
] - (SEMVER-MINOR) src: preload function for Environment (Cheng Zhao) #5153941646d9c9e
] - (SEMVER-MINOR) test_runner: add suite() (Colin Ihrig) #52127fc9ba17f6c
] - (SEMVER-MINOR) test_runner: addtest:complete
event to reflect execution order (Moshe Atlow) #51909Commits
6fdd748b21
] - benchmark: reduce the buffer size for blob (Debadree Chatterjee) #525482274d0c868
] - benchmark: inherit stdio/stderr instead of pipe (Ali Hassan) #524560300598315
] - benchmark: add ipc support to spawn stdio config (Ali Hassan) #52456f8ad30048d
] - benchmark: add AbortSignal.abort benchmarks (Raz Luvaton) #524087508d48736
] - benchmark: conditionally use spawn with taskset for cpu pinning (Ali Hassan) #52253ea8e72e185
] - benchmark: add toNamespacedPath bench (Rafael Gonzaga) #52236c00715cc1e
] - benchmark: add style-text benchmark (Rafael Gonzaga) #520041c1a6935ee
] - buffer: add missing ARG_TYPE(ArrayBuffer) for isUtf8 (Jungku Lee) #524771b2aff7dce
] - buffer: improvebase64
andbase64url
performance (Yagiz Nizipli) #52428328bded5ab
] - buffer: improvebtoa
performance (Yagiz Nizipli) #52427e67bc34326
] - buffer: use simdutf foratob
implementation (Yagiz Nizipli) #523815abddb45d8
] - build: fix typo in node.gyp (Michaël Zasso) #527197d1f304f5e
] - build: fix headers install for shared mode on Win (Segev Finer) #524426826bbf267
] - build: fix arm64 cross-compilation bug on non-arm machines (Mahdi Sharifi) #525596e85bc431a
] - build: temporary disable ubsan (Rafael Gonzaga) #52560297368a1ed
] - build: fix arm64 cross-compilation (Michaël Zasso) #5125693bddb598f
] - build,tools: add test-ubsan ci (Rafael Gonzaga) #4629720bb16582f
] - build,tools,node-api: fix building node-api tests for Windows Debug (Vladimir Morozov) #526329af15cfff1
] - child_process: use internal addAbortListener (Chemi Atlow) #52081a4847c4619
] - crypto: simplify assertions in Safe*Print (David Benjamin) #497090ec4d9d734
] - crypto: enable NODE_EXTRA_CA_CERTS with BoringSSL (Shelley Vohr) #5221703e05b092c
] - crypto: deprecate implicitly shortened GCM tags (Tobias Nießen) #523450f784c96ba
] - crypto: make timingSafeEqual faster for Uint8Array (Tobias Nießen) #52341739958e472
] - crypto: rejectEd25519
/Ed448 in Sign/Verify prototypes (Filip Skokan) #52340197b61f210
] - crypto: validate RSA-PSS saltLength in subtle.sign and subtle.verify (Filip Skokan) #52262a6eede33f3
] - crypto: fixinput
validation incrypto.hash
(Antoine du Hamel) #52070bfa4986e5d
] - deps: update corepack to 0.28.0 (Node.js GitHub Bot) #5261670546698d7
] - deps: update ada to 2.7.8 (Node.js GitHub Bot) #52517a135027f84
] - deps: update icu to 75.1 (Node.js GitHub Bot) #52573c96f1043d4
] - deps: update undici to 6.13.0 (Node.js GitHub Bot) #524939c330b610b
] - deps: update zlib to 1.3.0.1-motley-7d77fb7 (Node.js GitHub Bot) #525167e5bbeebab
] - deps: update nghttp2 to 1.61.0 (Node.js GitHub Bot) #52395b42a4735d9
] - deps: update minimatch to 9.0.4 (Node.js GitHub Bot) #52524d34fd21bc2
] - deps: update simdutf to 5.2.4 (Node.js GitHub Bot) #52473ecc180f830
] - deps: upgrade npm to 10.5.2 (npm team) #52458606c183344
] - deps: update simdutf to 5.2.3 (Yagiz Nizipli) #523810a103e99fe
] - deps: upgrade npm to 10.5.1 (npm team) #52351cce861e670
] - deps: update c-ares to 1.28.1 (Node.js GitHub Bot) #522855258b547ea
] - deps: update undici to 6.11.1 (Node.js GitHub Bot) #52328923a77c80a
] - deps: update undici to 6.10.2 (Node.js GitHub Bot) #52227bd3c6a231c
] - deps: update zlib to 1.3.0.1-motley-24c07df (Node.js GitHub Bot) #521993b41da9a56
] - (SEMVER-MINOR) deps: update simdutf to 5.0.0 (Daniel Lemire) #52138d6f9ca385c
] - deps: update zlib to 1.3.0.1-motley-24342f6 (Node.js GitHub Bot) #52123f5512897b0
] - deps: update corepack to 0.26.0 (Node.js GitHub Bot) #52027d891275178
] - deps: update ada to 2.7.7 (Node.js GitHub Bot) #5202818838f2db3
] - deps: update simdutf to 4.0.9 (Node.js GitHub Bot) #51655503c034abc
] - deps: update undici to 6.6.2 (Node.js GitHub Bot) #51667256bcba52e
] - deps: update undici to 6.6.0 (Node.js GitHub Bot) #516307a1e321d95
] - deps: update undici to 6.4.0 (Node.js GitHub Bot) #51527dde9e08224
] - deps: update ngtcp2 to 1.1.0 (Node.js GitHub Bot) #513190a08c4a7b3
] - (SEMVER-MINOR) deps: update undici to 6.3.0 (Node.js GitHub Bot) #51462f1b7bda4f5
] - (SEMVER-MINOR) deps: update undici to 6.2.1 (Node.js GitHub Bot) #51278ecadd638cd
] - deps: V8: remove references to non-existent flags (Richard Lau) #5225627d364491f
] - dgram: use internal addAbortListener (Chemi Atlow) #52081b94d11935a
] - diagnostics_channel: early-exit tracing channel trace methods (Stephen Belanger) #519154acca8ed84
] - (SEMVER-MINOR) dns: add order option and support ipv6first (Paolo Insogna) #52492bcc06ac5a9
] - doc: remove relative limitation to pm (Rafael Gonzaga) #526484d5ef4f7af
] - doc: fix info string causing duplicated code blocks (Mathieu Leenhardt) #52660d5a316f5ea
] - doc: run license-builder (github-actions[bot]) #52631d7434fe411
] - doc: deprecate --experimental-policy (RafaelGSS) #5260202a83d89f7
] - doc: add info on contributor spotlight program (Michael Dawson) #52598a905eaace1
] - doc: correct unsafe URL example in http docs (Malte Legenhausen) #5255569c21a6522
] - doc: replace U+00A0 with U+0020 (Luigi Pinca) #525905df34c7d0a
] - doc: sort options alphabetically (Luigi Pinca) #52589b49464bc9d
] - doc: correct stream.finished changes (KaKa) #525514d051ba89b
] - doc: add RedYetiDev to triage team (Aviv Keller) #525564ed55bf16c
] - doc: fix issue detected in markdown lint update (Rich Trott) #52566a8bc40fd07
] - doc: update test runner coverage limitations (Moshe Atlow) #5251517d5ba9fed
] - doc: add lint-js-fix into BUILDING.md (jakecastelli) #5229088adbd0991
] - doc: remove Internet Explorer mention in BUILDING.md (Rich Trott) #52455e8cb29d66d
] - doc: accommodate upcoming stricter .md linting (Rich Trott) #52454e2ea984c7b
] - doc: add Rafael to steward list (Rafael Gonzaga) #5245293d684097a
] - doc: correct naming convention in C++ style guide (Mohammed Keyvanzadeh) #52424b9bdb947ac
] - doc: updateprocess.execArg
example to be more useful (Jacob Smith) #52412f3f67ff84a
] - doc: call out http(s).globalAgent default (mathis-west-1) #52392392a0d310e
] - doc: update the location ofbuild_with_cmake
(Emmanuel Ferdman) #523563ad62f1cc7
] - doc: reserve 125 for Electron 31 (Shelley Vohr) #52379bfd4c7844b
] - doc: use consistent plural form of "index" (Rich Trott) #523736f31cc8361
] - doc: add Rafael to sec release stewards (Rafael Gonzaga) #52354c55a3be789
] - doc: document missing options of events.on (Chemi Atlow) #520801a843f7c6d
] - doc: add missing space (Augustin Mauroy) #523608ee20d8693
] - doc: add tips about vcpkg cause build faild on windows (Cong Zhang) #52181a86705c113
] - doc: replace "below" with "following" (Rich Trott) #52315f3e8d1159a
] - doc: fix email pattern to be wrapped with<<
instead of single<
(Raz Luvaton) #52284cc67720ff9
] - doc: update release gpg keyserver (marco-ippolito) #52257c2def7df96
] - doc: add release key for marco-ippolito (marco-ippolito) #522572509f3be18
] - doc: fix arrow vertical alignment in HTML version (Akash Yeole) #521932abaea3cdc
] - doc: move TSC members from regular to emeritus (Michael Dawson) #5220965618a3d7b
] - doc: add section explaining todo tests (Colin Ihrig) #52204bf0ed95b04
] - doc: editChildProcess
'message'
event docs (theanarkh) #521543d67b6b5e8
] - doc: add mold to speeding up section (Cong Zhang) #521798ba308a838
] - doc: http event order correction (wh0) #514649771f41069
] - doc: move gabrielschulhof to TSC emeritus (Gabriel Schulhof) #5219272bd2b0d62
] - doc: fix--env-file
docs for valid quotes for defining values (Gabriel Bota) #521574f19203dfb
] - doc: clarify what is supported in NODE_OPTIONS (Michael Dawson) #520765bce596838
] - doc: fix typos in maintaining-dependencies.md (RoboSchmied) #52160f5241e20cc
] - doc: add spec for contains module syntax (Geoffrey Booth) #52059bda3cdea86
] - doc: optimize the doc about Unix abstract socket (theanarkh) #520438d7d6eff81
] - doc: update pnpm link (Superchupu) #52113af7c55f62d
] - doc: remove ableist language from crypto (Jamie King) #52063f8362b0a5a
] - doc: update collaborator email (Ruy Adorno) #5208848cbd5f71e
] - doc: state that removing npm is a non-goal (Geoffrey Booth) #519510ef2708131
] - doc: mention NodeSource in RafaelGSS steward list (Rafael Gonzaga) #52057a6473a89be
] - doc: remove ArrayBuffer from crypto.hash() data parameter type (fengmk2) #52069ae7a11c787
] - doc: add some commonly used lables up gront (Michael Dawson) #5200601aaddde3c
] - doc: document thatconst c2 = vm.createContext(c1); c1 === c2
is true (Daniel Kaplan) #51960912145fac4
] - doc: clarify what moderation issues are for (Antoine du Hamel) #51990807c89cb26
] - doc: add UlisesGascon as a collaborator (Ulises Gascón) #5199153ff3e5682
] - doc: deprecate hmac public constructor (Marco Ippolito) #518815e78a20ef9
] - (SEMVER-MINOR) doc: deprecate fs.Stats public constructor (Marco Ippolito) #518797bfb0b43e6
] - events: rename high & low watermark for consistency (Chemi Atlow) #520805e6967359b
] - events: extract addAbortListener for safe internal use (Chemi Atlow) #520816930205272
] - events: remove abort listener from signal inon
(Neal Beeken) #51091235ab4f99f
] - events,doc: mark CustomEvent as stable (Daeyeon Jeong) #52618ca5b827148
] - fs: fix read / readSync positional offset types (Ruy Adorno) #52603e7d0d804b2
] - fs: fixes recursive fs.watch crash on Linux when deleting files (Matteo Collina) #52349c5fd193d6b
] - fs: refactor maybeCallback function (Yagiz Nizipli) #521290a9910c2c1
] - fs: fix edge case in readFileSync utf8 fast path (Richard Lau) #5210151d7cd5de8
] - fs: validate fd from cpp onfchown
(Yagiz Nizipli) #5205133ad86c2be
] - fs: validate fd from cpp onclose
(Yagiz Nizipli) #5205134667c0a7e
] - fs: validate file mode from cpp (Yagiz Nizipli) #52050c530520be3
] - fs: add stacktrace to fs/promises (翠 / green) #49849edecd464b9
] - fs,permission: make handling of buffers consistent (Tobias Nießen) #523483bcd68337e
] - http2: fix excessive CPU usage when usingallowHTTP1=true
(Eugene) #52713e01015996a
] - http2: fix h2-over-h2 connection proxying (Tim Perry) #523689f88736860
] - http2: use internal addAbortListener (Chemi Atlow) #52081acd7758959
] - lib: use predefined variable instead of bit operation (Deokjin Kim) #5258018ae7a46f6
] - lib: refactor lazy loading of undici for fetch method (Victor Chen) #5227564c2c2a7ac
] - lib: replace string prototype usage with alternatives (Aviv Keller) #52440ee11b5315c
] - lib: .load .save add proper error message when no file passed (Thomas Mauran) #52225e5521b537f
] - lib: fix type error for _refreshLine (Jackson Tian) #52133d5d6e041c8
] - lib: emit listening event once when call listen twice (theanarkh) #52119d33fc36784
] - lib: make sure clear the old timer in http server (theanarkh) #52118ea4905c0f5
] - lib: fix listen with handle in cluster worker (theanarkh) #520568fd8130507
] - lib, doc: rename readme.md to README.md (Aviv Keller) #52471722fe64ff7
] - (SEMVER-MINOR) lib, url: add awindows
option to path parsing (Aviv Keller) #5250926691e6032
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #52633befb90dc83
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #5245722b7167e72
] - meta: bump actions/download-artifact from 4.1.3 to 4.1.4 (dependabot[bot]) #523144dafd3ede2
] - meta: bump rtCamp/action-slack-notify from 2.2.1 to 2.3.0 (dependabot[bot]) #523132760db7640
] - meta: bump github/codeql-action from 3.24.6 to 3.24.9 (dependabot[bot]) #52312542aaf9ca9
] - meta: bump actions/cache from 4.0.1 to 4.0.2 (dependabot[bot]) #52311df330998d9
] - meta: bump actions/setup-python from 5.0.0 to 5.1.0 (dependabot[bot]) #523105f40fe0cc2
] - meta: bump codecov/codecov-action from 4.1.0 to 4.1.1 (dependabot[bot]) #52308481420f25c
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #523003121949f85
] - meta: pass Codecov upload token to codecov action (Michaël Zasso) #51982882a64e639
] - module: fix detect-module not retrying as esm for cjs-only errors (Geoffrey Booth) #520245fcc1d32a8
] - module: refactor ESM loader initialization and entry point handling (Joyee Cheung) #51999d116fa1568
] - (SEMVER-MINOR) net: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) #5247437abad86ae
] - net: use internal addAbortListener (Chemi Atlow) #52081a920489a1f
] - node-api: address coverity report (Michael Dawson) #525840a225a4b40
] - node-api: copy external type tags when they are set (Niels Martignène) #52426f9d95674be
] - node-api: make tsfn accept napi_finalize once more (Gabriel Schulhof) #5180172aabe1139
] - perf_hooks: reduce overhead of createHistogram (Vinícius Lourenço) #50074fb601c3a94
] - readline: use internal addAbortListener (Chemi Atlow) #5208129f09f05f7
] - (SEMVER-MINOR) report: add--report-exclude-network
option (Ethan Arrowood) #516457e6d923f5b
] - src: cast to v8::Value before using v8::EmbedderGraph::V8Node (Joyee Cheung) #526386af7b78b0d
] - (SEMVER-MINOR) src: addstring_view
overload to snapshot FromBlob (Anna Henningsen) #5259527491e55c1
] - src: remove regex usage for env file parsing (IlyasShabi) #52406b05e639e27
] - src: fix loadEnvFile ENOENT error (mathis-west-1) #524381b4d2814d1
] - src: update branch name in node_revert.h (Tobias Nießen) #523907e35a169ea
] - src: stop usingv8::BackingStore::Reallocate
(Michaël Zasso) #522922449d2606a
] - src: fix move after use reported by coverity (Michael Dawson) #52141b33eff887d
] - (SEMVER-MINOR) src: add C++ ProcessEmitWarningSync() (Joyee Cheung) #51977f2c7408927
] - src: return a number from process.constrainedMemory() constantly (Chengzhong Wu) #520397f575c886b
] - (SEMVER-MINOR) src: add uv_get_available_memory to report and process (theanarkh) #52023e161e62313
] - src: use dedicated routine to compile function for builtin CJS loader (Joyee Cheung) #5201607322b490f
] - src: fix reading empty string views in Blob[De]serializer (Joyee Cheung) #52000e216192390
] - src: refactor out FormatErrorMessage for error formatting (Joyee Cheung) #51999b3a11b574b
] - (SEMVER-MINOR) src: preload function for Environment (Cheng Zhao) #5153909bd367ef6
] - stream: make Duplex inherit destroy from Writable (Luigi Pinca) #523180b853a7576
] - (SEMVER-MINOR) stream: support typed arrays (IlyasShabi) #51866f8209ffe45
] - stream: addnew
when constructingERR_MULTIPLE_CALLBACK
(haze) #521108442457117
] - stream: use internal addAbortListener (Chemi Atlow) #520818d20b641a2
] - Revert "stream: fix cloned webstreams not being unref'd" (Matteo Collina) #51491a923adffab
] - test: marktest-error-serdes
as flaky (Antoine du Hamel) #52739d4f1803f0b
] - test: mark test as flaky (Michael Dawson) #526711e88e042c2
] - test: skip test-fs-watch-recursive-delete.js on IBM i (Abdirahim Musse) #526456da558af8b
] - test: ensure that all worker servers are ready (Luigi Pinca) #52563c871fadb85
] - test: fix test-tls-ticket-cluster.js (Hüseyin Açacak) #52431b6cb74d775
] - test: split wasi poll test for windows (Hüseyin Açacak) #525384ad159bb75
] - test: write tests for assertIsArray http2 util (Sinan Sonmez (Chaush)) #525111f7a28cbe7
] - test: fix watch test with require not testing pid (Raz Luvaton) #523535b758b93d5
] - test: simplify ASan build checks (Michaël Zasso) #52430375c3db5ea
] - test: fix Windows compiler warnings in overlapped-checker (Michaël Zasso) #52405a1dd92cdee
] - test: add test for skip+todo combinations (Colin Ihrig) #522048a0b721930
] - test: fix incorrect test fixture (Colin Ihrig) #52185dd1f761f3b
] - test: add missing cctest/test_path.cc (Yagiz Nizipli) #521486da446d9e1
] - test: addspawnSyncAndAssert
util (Antoine du Hamel) #52132d7bfb4e8d8
] - test: reduce flakiness of test-runner-output.mjs (Colin Ihrig) #52146e4981b3d75
] - test: add test for using--print
with promises (Antoine du Hamel) #521375cc540078e
] - test: un-set test-emit-after-on-destroyed as flaky (Abdirahim Musse) #51995b9eb0035dd
] - test: skip test for dynamically linked OpenSSL (Richard Lau) #5254232014f5601
] - test: avoid v8 deadcode on performance function (Vinícius Lourenço) #5007429d2011f51
] - test_runner: better error handing for test hook (Alex Yang) #524019497097fb3
] - test_runner: fix clearing final timeout in own callback (Ben Richeson) #523320f690f0b9e
] - test_runner: fix recursive run (Moshe Atlow) #5232234ab1a36ee
] - test_runner: hide new line when no error in spec reporter (Moshe Atlow) #52297379535abe3
] - test_runner: disable highWatermark on TestsStream (Colin Ihrig) #5228735588cff39
] - test_runner: run afterEach hooks in correct order (Colin Ihrig) #522395cd3df8fe1
] - test_runner: simplify test end time tracking (Colin Ihrig) #5218207e4a42e4b
] - test_runner: simplify test start time tracking (Colin Ihrig) #52182caec996831
] - test_runner: emit diagnostics when watch mode drains (Moshe Atlow) #5213041646d9c9e
] - (SEMVER-MINOR) test_runner: add suite() (Colin Ihrig) #52127fd1489a623
] - test_runner: skip each hooks for skipped tests (Colin Ihrig) #5211573b38bfa9e
] - test_runner: remove redundant report call (Colin Ihrig) #5208968187c4d9e
] - test_runner: use internal addAbortListener (Chemi Atlow) #5208161e7ae05ef
] - test_runner: use source maps when reporting coverage (Moshe Atlow) #52060e64a25af61
] - test_runner: handle undefined test locations (Colin Ihrig) #52036590decf202
] - test_runner: avoid overwriting root start time (Colin Ihrig) #52020a4cbb61c65
] - test_runner: abort unfinished tests on async error (Colin Ihrig) #51996a223ca4868
] - test_runner: run before hook immediately if test started (Moshe Atlow) #52003956ee74c7e
] - test_runner: add support for null and date value output (Malthe Borch) #51920fc9ba17f6c
] - (SEMVER-MINOR) test_runner: addtest:complete
event to reflect execution order (Moshe Atlow) #51909d5ac979aeb
] - test_runner: format coverage report for tap reporter (Pulkit Gupta) #51119c925bc18dc
] - tools: take co-authors into account infind-inactive-collaborators
(Antoine du Hamel) #526691d37e772ec
] - tools: fix invalid escape sequence in mkssldef (Michaël Zasso) #526245b22fc3a81
] - tools: update lint-md-dependencies to rollup@4.15.0 (Node.js GitHub Bot) #526179cf47bb2f1
] - tools: update lint-md-dependencies (Rich Trott) #52581c0c60d13c0
] - tools: fix heading spaces for osx-entitlements.plist (Jackson Tian) #525617c349d7819
] - tools: update lint-md-dependencies to rollup@4.14.2 vfile-reporter@8.1.1 (Node.js GitHub Bot) #52518b4d703297b
] - tools: use stylistic ESLint plugin for formatting (Michaël Zasso) #50714c6813360c2
] - tools: update minimatch index path (Marco Ippolito) #525238464c0253c
] - tools: add a linter for README lists (Antoine du Hamel) #5247655a3fbc842
] - tools: change inactive limit to 12 months (Yagiz Nizipli) #5242574a171f130
] - tools: update stale bot messaging (Wes Todd) #52423b2a3dcec2a
] - tools: update lint-md-dependencies to rollup@4.14.0 (Node.js GitHub Bot) #52398f71a777e6e
] - tools: update Ruff to v0.3.4 (Michaël Zasso) #52302e3e0c68f8f
] - tools: run test-ubsan on ubuntu-latest (Michaël Zasso) #52375893b5aac31
] - tools: update lint-md-dependencies to rollup@4.13.2 (Node.js GitHub Bot) #52286049cca419e
] - Revert "tools: runbuild-windows
workflow only on source changes" (Michaël Zasso) #52320b3dfc62cee
] - tools: use Python 3.12 in GitHub Actions workflows (Michaël Zasso) #52301c7238d0c04
] - tools: allow local updates for llhttp (Paolo Insogna) #52085c39f15cafd
] - tools: install npm PowerShell scripts on Windows (Luke Karrys) #52009b36fea064a
] - tools: update lint-md-dependencies to rollup@4.13.0 (Node.js GitHub Bot) #52122a5204eb915
] - tools: fix error reported by coverity in js2c.cc (Michael Dawson) #52142cef4b7ef3d
] - tools: sync ubsan workflow with asan (Michaël Zasso) #52152d406976bbe
] - tools: update github_reporter to 1.7.0 (Node.js GitHub Bot) #52121fb100a2ac8
] - tools: remove gyp-next .github folder (Marco Ippolito) #520645f1e7a0de2
] - tools: update gyp-next to 0.16.2 (Node.js GitHub Bot) #520621f1253446b
] - tools: install manpage to share/man for FreeBSD (Po-Chuan Hsieh) #517914b8b92fccc
] - tools: automate gyp-next update (Marco Ippolito) #520141ec9e58692
] - typings: fix invalid JSDoc declarations (Yagiz Nizipli) #526592d6b19970b
] - (SEMVER-MINOR) util: support array of formats in util.styleText (Marco Ippolito) #52040d30cccdf8c
] - (SEMVER-MINOR) v8: implement v8.queryObjects() for memory leak regression testing (Joyee Cheung) #519277f3b7fdeff
] - watch: fix some node argument not passed to watched process (Raz Luvaton) #523588ba6f9bc9a
] - watch: use internal addAbortListener (Chemi Atlow) #520815a922232da
] - watch: mark as stable (Moshe Atlow) #52074508e968a5f
] - watch: batch file restarts (Moshe Atlow) #51992v20.12.2
: 2024-04-10, Version 20.12.2 'Iron' (LTS), @RafaelGSSCompare Source
This is a security release.
Notable Changes
child_process.spawn
without shell option enabled on WindowsCommits
69ffc6d50d
] - src: disallow direct .bat and .cmd file spawning (Ben Noordhuis) nodejs-private/node-private#563v20.12.1
: 2024-04-03, Version 20.12.1 'Iron' (LTS), @RafaelGSSCompare Source
This is a security release
Notable Changes
Commits
bd8f10a257
] - deps: update undici to v5.28.4 (Matteo Collina) nodejs-private/node-private#5765e34540a96
] - http: do not allow OBS fold in headers by default (Paolo Insogna) nodejs-private/node-private#557ba1ae6d188
] - src: ensure to close stream when destroying session (Anna Henningsen) nodejs-private/node-private#561v20.12.0
: 2024-03-26, Version 20.12.0 'Iron' (LTS), @richardlauCompare Source
Notable Changes
crypto: implement crypto.hash()
This patch introduces a helper crypto.hash() that computes
a digest from the input at one shot. This can be 1.2-2x faster
than the object-based createHash() for smaller inputs (<= 5MB)
that are readily available (not streamed) and incur less memory
overhead since no intermediate objects will be created.
Contributed by Joyee Cheung in #51044.
Loading and parsing environment variables
process.loadEnvFile(path)
:.env
file. If no path is specified, it automatically loads the .env file in the current directory. Example:process.loadEnvFile()
.process.loadEnvFile('./development.env')
.util.parseEnv(content)
:require('node:util').parseEnv('HELLO=world')
.Contributed by Yagiz Nizipli in #51476.
New connection attempt events
Three new events were added in the
net.createConnection
flow:connectionAttempt
: Emitted when a new connection attempt is established. In case of Happy Eyeballs, this might emitted multiple times.connectionAttemptFailed
: Emitted when a connection attempt failed. In case of Happy Eyeballs, this might emitted multiple times.connectionAttemptTimeout
: Emitted when a connection attempt timed out. In case of Happy Eyeballs, this will not be emitted for the last attempt. This is not emitted at all if Happy Eyeballs is not used.Additionally, a previous bug has been fixed where a new connection attempt could have been started after a previous one failed and after the connection was destroyed by the user.
This led to a failed assertion.
Contributed by Paolo Insogna in #51045.
Permission Model changes
Node.js 20.12.0 comes with several fixes for the experimental permission model and two new semver-minor commits.
We're adding a new flag
--allow-addons
to enable addon usage when using the Permission Model.Contributed by Rafael Gonzaga in #51183
And relative paths are now supported through the
--allow-fs-*
flags.Therefore, with this release one can use:
To give only read access to the entrypoint of the application.
Contributed by Rafael Gonzaga and Carlos Espa in #50758.
sea: support embedding assets
Users can now include assets by adding a key-path dictionary
to the configuration as the
assets
field. At build time, Node.jswould read the assets from the specified paths and bundle them into
the preparation blob. In the generated executable, users can retrieve
the assets using the
sea.getAsset()
andsea.getAssetAsBlob()
API.The single-executable application can access the assets as follows:
Contributed by Joyee Cheung in #50960.
Support configurable snapshot through
--build-snapshot-config
flagWe are adding a new flag
--build-snapshot-config
to configure snapshots through a custom JSON configuration file.When using this flag, additional script files provided on the command line will
not be executed and instead be interpreted as regular command line arguments.
These changes were contributed by Joyee Cheung and Anna Henningsen in #50453
Text Styling
util.styleText(format, text)
: This function returns a formatted text considering theformat
passed.A new API has been created to format text based on
util.inspect.colors
, enabling you to style text in different colors (such as red, blue, ...) and emphasis (italic, bold, ...).Contributed by Rafael Gonzaga in #51850.
vm: support using the default loader to handle dynamic import()
This patch adds support for using
vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER
as theimportModuleDynamically
option in all vm APIs that take this option exceptvm.SourceTextModule
. This allows users to have a shortcut to support dynamicimport()
in the compiled code without missing the compilation cache if they don't need customization of the loading process. We emit an experimental warning when theimport()
is actually handled by the default loader through this option instead of requiring--experimental-vm-modules
.Contributed by Joyee Cheung in #51244.
Root certificates updated to NSS 3.98
Certificates added:
Certificates removed:
Updated dependencies
Other notable changes
4f49e9d000
] - (SEMVER-MINOR) build: build opt to set local location of headers (Michael Dawson) #51525ccdb01187b
] - doc: add zcbenz to collaborators (Cheng Zhao) #51812481af53aea
] - doc: add lemire to collaborators (Daniel Lemire) #515725ba4d96525
] - (SEMVER-MINOR) http2: add h2 compat support for appendHeader (Tim Perry) #514120861498e8b
] - (SEMVER-MINOR) http2: add server handshake utility (snek) #511726b08d006ee
] - (SEMVER-MINOR) http2: receive customsettings (Marten Richter) #513237894989bf0
] - (SEMVER-MINOR) lib: move encodingsMap to internal/util (Joyee Cheung) #51044a58c98ea85
] - (SEMVER-MINOR) src: print string content better in BlobDeserializer (Joyee Cheung) #50960c3c0a3ee5c
] - (SEMVER-MINOR) src: support multi-line values for .env file (IlyasShabi) #512892a921966c6
] - (SEMVER-MINOR) src: do not coerce dotenv paths (Tobias Nießen) #514250dee86f295
] - (SEMVER-MINOR) src: support configurable snapshot (Joyee Cheung) #50453ade6614067
] - (SEMVER-MINOR) stream: add support fordeflate-raw
format to webstreams compression (Damian Krzeminski) #50097fe922f05e4
] - (SEMVER-MINOR) timers: export timers.promises (Marco Ippolito) #51246Commits
cbda4e9fc5
] - assert,crypto: make KeyObject and CryptoKey testable for equality (Filip Skokan) #5089792fca59647
] - async_hooks,inspector: implement inspector api without async_wrap (Gabriel Bota) #51501029ca982dc
] - benchmark: update iterations of benchmark/async_hooks/async-local- (Lei Shi) #51420350e9fee8d
] - benchmark: update iterations of benchmark/domain/domain-fn-args.js (Lei Shi) #5140840fda97deb
] - benchmark: update iterations of assert/deepequal-typedarrays.js (Lei Shi) #514191b2e3b7049
] - benchmark: update iterations of benchmark/assert/deepequal-map.js (Lei Shi) #514167639259203
] - benchmark: rename startup.js to startup-core.js (Joyee Cheung) #516694be33b5577
] - benchmark: remove dependency on unshipped tools (Adam Majer) #51146bd03a154a9
] - benchmark: update iterations in benchmark/perf_hooks (Lei Shi) #5086919b943b909
] - benchmark: update iterations in benchmark/crypto/aes-gcm-throughput.js (Lei Shi) #50929278c990dea
] - benchmark: update iteration and size in benchmark/crypto/randomBytes.js (Lei Shi) #50868443d4fcff3
] - benchmark: add undici websocket benchmark (Chenyu Yang) #505863ab6143380
] - benchmark: add create-hash benchmark (Joyee Cheung) #510266a8ff09332
] - benchmark: update interations and len in benchmark/util/text-decoder.js (Lei Shi) #5093822b53bc1fa
] - benchmark: update iterations of benchmark/util/type-check.js (Lei Shi) #50937f56bda5109
] - benchmark: update iterations in benchmark/util/normalize-encoding.js (Lei Shi) #509344fc83e1ce3
] - benchmark: update iterations in benchmark/util/inspect-array.js (Lei Shi) #509330edddcfc19
] - benchmark: update iterations in benchmark/util/format.js (Lei Shi) #50932f109961fd1
] - benchmark: update iterations in benchmark/crypto/hkdf.js (Lei Shi) #508661e923f11f2
] - benchmark: update iterations in benchmark/crypto/get-ciphers.js (Lei Shi) #50863f13643da06
] - benchmark: update number of iterations forutil.inspect
(kylo5aby) #5065103b19cbd2a
] - bootstrap: improve snapshot unsupported builtin warnings (Joyee Cheung) #5094451ea5b60a9
] - build: fix arm64 host cross-compilation in GN (Cheng Zhao) #519039f5547afa2
] - Revert "build: workaround for node-core-utils" (Richard Lau) #5197558255e73ae
] - build: respect theNODE
env variable inMakefile
(Antoine du Hamel) #517430a7419bf0b
] - Revert "build: fix warning in cares under GN build" (Luigi Pinca) #518654118174b85
] - build: removelibrt
libs link for Android compatibility (BuShe Pie) #51632012da16b85
] - build: do not rely on gn_helpers in GN build (Cheng Zhao) #5143993fcf52990
] - build: fix warning in cares under GN build (Cheng Zhao) #516872176495455
] - build: fix building js2c with GN (Cheng Zhao) #51818d6e702f885
] - build: encode non-ASCII Latin1 characters as one byte in JS2C (Joyee Cheung) #516054f49e9d000
] - (SEMVER-MINOR) build: build opt to set local location of headers (Michael Dawson) #515258e84aad0ef
] - build: use macOS m1 machines for testing (Yagiz Nizipli) #516205fce1a17e2
] - build: check before removing %config% link (liudonghua) #5143746d6dce1a8
] - build: increase parallel executions in github (Yagiz Nizipli) #515548b3ead1f3e
] - build: remove copyright header in node.gni (Cheng Zhao) #51535d8b86ad363
] - build: update GN build files for ngtcp2 (Cheng Zhao) #51313ba0ffddd2d
] - build: fix for VScode "Reopen in Container" (Serg Kryvonos) #512718b97e2e0a7
] - build: add-flax-vector-conversions
to V8 build (Michaël Zasso) #51257bd528c7dc0
] - build: fix warnings from uv for gn build (Cheng Zhao) #51069ffe467b062
] - build,tools: make addons tests work with GN (Cheng Zhao) #50737448d67109a
] - (SEMVER-MINOR) crypto: implement crypto.hash() (Joyee Cheung) #5104448959dd2b4
] - crypto: update root certificates to NSS 3.98 (Node.js GitHub Bot) #5179468e8b2c492
] - crypto: use EVP_MD_fetch and cache EVP_MD for hashes (Joyee Cheung) #51034adb5d69621
] - crypto: update CryptoKey symbol properties (Filip Skokan) #50897df0213fd3d
] - deps: update nghttp2 to 1.60.0 (Node.js GitHub Bot) #51948208dd887a5
] - deps: upgrade npm to 10.5.0 (npm team) #51913587e70e1ee
] - deps: update corepack to 0.25.2 (Node.js GitHub Bot) #5181038343c4857
] - deps: update c-ares to 1.27.0 (Node.js GitHub Bot) #51846c9974f621c
] - deps: update c-ares to 1.26.0 (Node.js GitHub Bot) #515820aa18e1a1c
] - deps: update googletest to6a59382
(Node.js GitHub Bot) #51580f871bc6ddc
] - deps: update nghttp2 to 1.59.0 (Node.js GitHub Bot) #5158194f8ee8717
] - deps: update corepack to 0.24.1 (Node.js GitHub Bot) #51459c23ce06e6b
] - deps: update ada to 2.7.6 (Node.js GitHub Bot) #51542372ce69de1
] - deps: update ada to 2.7.5 (Node.js GitHub Bot) #51542133719b2c9
] - deps: update googletest to7c07a86
(Node.js GitHub Bot) #5145835675aa07f
] - deps: update acorn-walk to 8.3.2 (Node.js GitHub Bot) #51457ca73f55a22
] - deps: update base64 to 0.5.2 (Node.js GitHub Bot) #51455c9dad18191
] - deps: compile c-ares with C11 support (Michaël Zasso) #51410a727fa73ee
] - deps: upgrade npm to 10.3.0 (npm team) #51431834bbfd039
] - deps: update c-ares to 1.25.0 (Node.js GitHub Bot) #513854c8fa3e7c2
] - deps: update uvwasi to 0.0.20 and fixup tests (Michael Dawson) #51355bd183ef2af
] - deps: add nghttp3/**/.deps to .gitignore (Luigi Pinca) #514001d8169995c
] - deps: update corepack to 0.24.0 (Node.js GitHub Bot) #513184dfbbb8789
] - deps: update acorn to 8.11.3 (Node.js GitHub Bot) #513177d60877fa3
] - deps: update brotli to 1.1.0 (Node.js GitHub Bot) #508041b99a3f0af
] - deps: update zlib to 1.3.0.1-motley-40e35a7 (Node.js GitHub Bot) #512742270285839
] - deps: update simdutf to 4.0.8 (Node.js GitHub Bot) #5100061d1535d84
] - deps: V8: cherry-pickde611e6
(Keyhan Vakil) #5120004323fd595
] - deps: update googletest to530d5c8
(Node.js GitHub Bot) #51191454b4f8d7e
] - deps: update acorn-walk to 8.3.1 (Node.js GitHub Bot) #50457cc693eb908
] - deps: update acorn-walk to 8.3.0 (Node.js GitHub Bot) #5045709519c6655
] - deps: update zlib to 1.3.0.1-motley-dd5fc13 (Node.js GitHub Bot) #51105a2f39e9168
] - deps: V8: cherry-pick0fd478b
(Joyee Cheung) #505721aaf156ea7
] - deps: update zlib to 1.3-22124f5 (Node.js GitHub Bot) #509103f4e254047
] - deps: update googletest to76bb2af
(Node.js GitHub Bot) #50555702684c008
] - deps: update googletest tob10fad3
(Node.js GitHub Bot) #505554ee7f29657
] - deps: update timezone to 2024a (Michaël Zasso) #51723452d74c8b6
] - deps: update icu to 74.2 (Michaël Zasso) #51723e6fc5a5ee1
] - deps: update timezone to 2023d (Node.js GitHub Bot) #514614ee0f8306b
] - deps: update icu to 74.1 (Node.js GitHub Bot) #50515cb49f31480
] - deps: cherry-pick libuv/libuv@d09441c
(Richard Lau) #51976ea50540c5e
] - Revert "deps: V8: cherry-pick13192d6
" (kxxt) #514956fd1617ab4
] - doc: add policy for distribution (Geoffrey Booth) #51918fc0b389006
] - doc: fix actual result of example is different in events (Deokjin Kim) #5192593d6d66339
] - doc: clarify Corepack threat model (Antoine du Hamel) #51917276d1d1d65
] - doc: add stability index to crypto.hash() (Joyee Cheung) #51978473af948b5
] - doc: remove redundant backquote which breaks sentence (JounQin) #51904b52b249b05
] - doc: update node-api/node-addon-api team link to sharing project news (Ulises Gascón) #51877a74c373ea4
] - doc: add website team to sharing project news (Ulises Gascón) #49002b7ce547d41
] - doc: update guide link for Event Loop (Shrujal Shah) #518743dfee7ee33
] - doc: changeExperimentalWarnings
toExperimentalWarning
(Ameet Kaustav) #51741740d0679e7
] - doc: add Paolo to TSC members (Michael Dawson) #518253240a2f349
] - doc: reserve 123 for Electron 30 (Keeley Hammond) #51803597e3db0f9
] - doc: add mention to GPG_TTY (Rafael Gonzaga) #51806ccdb01187b
] - doc: add zcbenz to collaborators (Cheng Zhao) #518123a3de00437
] - doc: add entry to stewards (Rafael Gonzaga) #5176006b882d2fa
] - doc: update technical priorities for 2023 (Jean Burellier) #475239a68b47fe1
] - doc: mark isWebAssemblyCompiledModule eol (Marco Ippolito) #514428016628710
] - doc: fixglobals.md
introduction (Antoine du Hamel) #517429ddbe4523f
] - doc: updates for better json generating (Dmitry Semigradsky) #51592140cf26d47
] - doc: document the GN build (Cheng Zhao) #51676ecfb3f18b3
] - doc: fix uncaught exception example (Gabriel Schulhof) #51638b3157a08bf
] - doc: clarify execution ofafter
hook on test suite completion (Ognjen Jevremović) #515231dae1873d9
] - doc: fixdns.lookup
anddnsPromises.lookup
description (Duncan Chiu) #5151750df052087
] - doc: note that path.normalize deviates from POSIX (Tobias Nießen) #51513481af53aea
] - doc: add lemire to collaborators (Daniel Lemire) #51572dec0d5d19a
] - doc: fix historical experimental fetch flag (Kenrick) #5150696c480b1a1
] - doc: fix type of connectionAttempt parameter (Rafael Gonzaga) #5149076968ab112
] - doc: remove reference to resolved child_process v8 issue (Ian Kerins) #51467bdd3a2a9fd
] - doc: update typos (Aranđel Šarenac) #514753532f5587c
] - doc: add notes on inspector breakpoints (Chengzhong Wu) #514170dffb9f049
] - doc: add links inoffboarding.md
(Antoine du Hamel) #5144058d2442f0f
] - doc: fix spelling mistake (u9g) #51454a09f440dbd
] - doc: add check for security reverts (Michael Dawson) #51376401837bfc4
] - doc: fix some policy scope typos (Tim Kuijsten) #51234f301f829ba
] - doc: improve subtests documentation (Marco Ippolito) #513791e40f552fd
] - doc: add missing word inchild_process.md
(Joseph Joy) #5037042b4f0f5ab
] - doc: fixup alignment of warning subsection (James M Snell) #51374b5bc597871
] - doc: the GN files should use Node's license (Cheng Zhao) #5069401a41041d6
] - doc: improve localWindowSize event descriptions (Davy Landman) #5107163aa27df10
] - doc: mark--jitless
as experimental (Antoine du Hamel) #51247c8233912e9
] - doc: run license-builder (github-actions[bot]) #511999e360df521
] - doc: fix limitations and known issues in pm (Rafael Gonzaga) #5118452d8222d32
] - doc: mention node:wasi in the Threat Model (Rafael Gonzaga) #51211cb3270e4c8
] - doc: remove ambiguous 'considered' (Rich Trott) #51207979e183e0c
] - doc: set exit code in custom test runner example (Matteo Collina) #51056eaadebb1f4
] - doc: remove version frommaintaining-dependencies.md
(Antoine du Hamel) #51195256db6e056
] - doc: mention native addons are restricted in pm (Rafael Gonzaga) #511852a61602ab2
] - doc: correct note on behavior of stats.isDirectory (Nick Reilingh) #50946184b8bea5b
] - doc: fixTestsStream
parent class (Jungku Lee) #51181c61597ffe4
] - (SEMVER-MINOR) doc: add documentation for --build-snapshot-config (Anna Henningsen) #50453b88170d602
] - doc: run license-builder (github-actions[bot]) #51111f2b4626ab8
] - doc: deprecate hash constructor (Marco Ippolito) #510776c241550cd
] - doc: add note regarding--experimental-detect-module
(Shubherthi Mitra) #510898ee30ea900
] - doc: correct tracingChannel.traceCallback() (Gerhard Stöbich) #510681cd27b6eff
] - doc: use length argument in pbkdf2Key (Tobias Nießen) #5106609ad974537
] - doc: add deprecation notice todirent.path
(Antoine du Hamel) #510591113e58f87
] - doc: deprecatedirent.path
(Antoine du Hamel) #5102037979d750e
] - doc: add additional details about--input-type
(Shubham Pandey) #507963ff00e1e79
] - doc: add procedure when CVEs don't get published (Rafael Gonzaga) #509450930be6bd5
] - doc: fix some errors in esm resolution algorithms (Christopher Jeffrey (JJ)) #50898ddc7964b03
] - doc: reserve 121 for Electron 29 (Shelley Vohr) #50957625fd69b76
] - doc: run license-builder (github-actions[bot]) #50926f18269607a
] - doc: document non-node_modules-only runtime deprecation (Joyee Cheung) #507485f8e7a0fdb
] - doc: add doc for Unix abstract socket (theanarkh) #50904e0598787e0
] - doc: remove flicker on page load on dark theme (Dima Demakov) #509422a7047d933
] - doc,crypto: further clarify RSA_PKCS1_PADDING support (Tobias Nießen) #5179931c4ba4dfd
] - doc,crypto: add changelog and note about disabled RSA_PKCS1_PADDING (Filip Skokan) #5178290da41548f
] - doc,module: clarify hook chain execution sequence (Jacob Smith) #51884bb7d7f3d1c
] - errors: fix stacktrace of SystemError (uzlopak) #49956db7459b57b
] - errors: improve hideStackFrames (Aras Abbasi) #49990a6b3569121
] - esm: improve error when callingimport.meta.resolve
fromdata:
URL (Antoine du Hamel) #4951638f4000905
] - esm: fix hint on invalid module specifier (Antoine du Hamel) #51223e39e37bbd5
] - esm: fix hook name in error message (Bruce MacNaughton) #50466d9b5cd533c
] - events: no stopPropagation call in cancelBubble (mert.altin) #50405287a02c4b2
] - fs: load rimraf lazily in fs/promises (Joyee Cheung) #51617bbd1351ef0
] - fs: remove race condition for recursive watch on Linux (Matteo Collina) #514061b7ccec5a7
] - fs: update jsdoc forfilehandle.createWriteStream
andappendFile
(Jungku Lee) #5149425056f5024
] - fs: fix fs.promises.realpath for long paths on Windows (翠 / green) #51032a8fd01a5a2
] - fs: make offset, position & length args in fh.read() optional (Pulkit Gupta) #51087721557c6d8
] - fs: add missing jsdoc parameters toreadSync
(Yagiz Nizipli) #512253ce9aacfcd
] - fs: removeinternalModuleReadJSON
binding (Yagiz Nizipli) #5122465df2c6787
] - fs: improve mkdtemp performance for buffer prefix (Yagiz Nizipli) #510786705b48012
] - fs: validate fd synchronously on c++ (Yagiz Nizipli) #51027afd5d67f89
] - fs: throw fchownSync error from c++ (Yagiz Nizipli) #51075bac982bce5
] - fs: update params in jsdoc for createReadStream and createWriteStream (Jungku Lee) #510636764f0c9a8
] - fs: improve error performance of readvSync (IlyasShabi) #501000225fce776
] - (SEMVER-MINOR) fs: introducedirent.parentPath
(Antoine du Hamel) #509764adea6c405
] - fs,test: add URL to string to fs.watch (Rafael Gonzaga) #513466bf148e12b
] - http: fixclose
return value mismatch between doc and implementation (kylo5aby) #5179766318602d0
] - http: split set-cookie when using setHeaders (Marco Ippolito) #51649f7b53d05bd
] - http: remove misleading warning (Luigi Pinca) #512049062d30600
] - http: do not override user-provided options object (KuthorX) #336334e38dee4ee
] - http: handle multi-value content-disposition header (Arsalan Ahmad) #50977b560bfbb84
] - http2: close idle connections when allowHTTP1 is true (xsbchen) #515695ba4d96525
] - (SEMVER-MINOR) http2: add h2 compat support for appendHeader (Tim Perry) #514120861498e8b
] - (SEMVER-MINOR) http2: add server handshake utility (snek) #511726b08d006ee
] - (SEMVER-MINOR) http2: receive customsettings (Marten Richter) #5132323414a6120
] - http2: addtl http/2 settings (Marten Richter) #490253fe59ba224
] - inspector: add NodeRuntime.waitingForDebugger event (mary marchini) #5156044f05e0d30
] - lib: make sure close net server (theanarkh) #519293be5ff9c45
] - lib: return directly if udp socket close before lookup (theanarkh) #51914dcbf88f4c7
] - lib: account for cwd access from snapshot serialization cb (Anna Henningsen) #51901da8fa484f8
] - lib: fix http client socket path (theanarkh) #5190055011d2c71
] - lib: only build the ESM facade for builtins when they are needed (Joyee Cheung) #516697894989bf0
] - (SEMVER-MINOR) lib: move encodingsMap to internal/util (Joyee Cheung) #510449082cc557d
] - lib: do not access process.noDeprecation at build time (Joyee Cheung) #514476679e6b616
] - lib: add assertion for user ESM execution (Joyee Cheung) #51748d6e8d03afc
] - lib: create global console properties at snapshot build time (Joyee Cheung) #51700bd2a3c10ae
] - lib: define FormData and fetch etc. in the built-in snapshot (Joyee Cheung) #51598da79876ef0
] - lib: allow checking the test result from afterEach (Tim Stableford) #51485bff7e3cf7a
] - lib: remove unnecessary refreshHrtimeBuffer() (Joyee Cheung) #51446562947e012
] - lib: fix use of--frozen-intrinsics
with--jitless
(Antoine du Hamel) #512487b83ef749e
] - lib: move function declaration outside of loop (Sanjaiyan Parthipan) #512420a85b0fd9d
] - lib: reduce overhead ofSafePromiseAllSettledReturnVoid
calls (Antoine du Hamel) #51243f4d7f0498e
] - lib: expose default prepareStackTrace (Chengzhong Wu) #508275c7a9c8d4a
] - lib: don't parse windows drive letters as schemes (华) #505809da6384f5a
] - lib: refactor to use validateFunction in diagnostics_channel (Deokjin Kim) #50955be3205ae24
] - lib: streamline process.binding() handling (Joyee Cheung) #50773f4987eb91e
] - lib,permission: handle buffer on fs.symlink (Rafael Gonzaga) #51212861e040b40
] - lib,src: extract sourceMappingURL from module (unbyte) #516908a082754e0
] - lib,src: replace toUSVString withtoWellFormed()
(Yagiz Nizipli) #473423badc1139c
] - (SEMVER-MINOR) lib,src,permission: port path.resolve to C++ (Rafael Gonzaga) #507584b3cc3ce18
] - loader: speed up line length calc used by moduleProvider (Mudit) #50969960d67c51f
] - meta: bump github/codeql-action from 3.23.2 to 3.24.6 (dependabot[bot]) #519421783b93af2
] - meta: bump actions/upload-artifact from 4.3.0 to 4.3.1 (dependabot[bot]) #519411db603db2f
] - meta: bump codecov/codecov-action from 4.0.1 to 4.1.0 (dependabot[bot]) #519402ddec64d5a
] - meta: bump actions/cache from 4.0.0 to 4.0.1 (dependabot[bot]) #5193992490421be
] - meta: bump actions/download-artifact from 4.1.1 to 4.1.3 (dependabot[bot]) #51938f3fa2b72b8
] - meta: bump actions/setup-node from 4.0.1 to 4.0.2 (dependabot[bot]) #51937a62b042e83
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #51726491f9f9902
] - meta: bump codecov/codecov-action from 3.1.4 to 4.0.1 (dependabot[bot]) #516482765077a47
] - meta: bump actions/download-artifact from 4.1.0 to 4.1.1 (dependabot[bot]) #51644152a07b854
] - meta: bump actions/upload-artifact from 4.0.0 to 4.3.0 (dependabot[bot]) #5164353826920fb
] - meta: bump step-security/harden-runner from 2.6.1 to 2.7.0 (dependabot[bot]) #516413d1dc9b030
] - meta: bump actions/cache from 3.3.2 to 4.0.0 (dependabot[bot]) #51640287bdf6bda
] - meta: bump github/codeql-action from 3.22.12 to 3.23.2 (dependabot[bot]) #5163990068fb0f1
] - meta: add .mailmap entry for lemire (Daniel Lemire) #51600f91786bd70
] - meta: mark security-wg codeowner for deps folder (Marco Ippolito) #51529e51221be8d
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #514684a8a012c6d
] - meta: move RaisinTen to emeritus and remove from strategic initiatives (Darshan Sen) #51411e9276bab3f
] - meta: add .temp and .lock tags to ignore (Rafael Gonzaga) #51343ae6fecbc8d
] - meta: bump actions/setup-python from 4.7.1 to 5.0.0 (dependabot[bot]) #51335f4be49a618
] - meta: bump actions/setup-node from 4.0.0 to 4.0.1 (dependabot[bot]) #51334e24aa7ced1
] - meta: bump github/codeql-action from 2.22.8 to 3.22.12 (dependabot[bot]) #51333287c2bcf56
] - meta: bump actions/stale from 8.0.0 to 9.0.0 (dependabot[bot]) #513321cad0dfaff
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #51329eef64b782e
] - meta: notify tsc on changes in SECURITY.md (Rafael Gonzaga) #5125995a880f728
] - meta: update artifact actions to v4 (Michaël Zasso) #5121959805f6879
] - meta: bump step-security/harden-runner from 2.6.0 to 2.6.1 (dependabot[bot]) #50999d74e0b97c3
] - meta: bump github/codeql-action from 2.22.5 to 2.22.8 (dependabot[bot]) #5099891cd9183d1
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #50931c621491aba
] - module: fix crash when built-in module export adefault
key (Antoine du Hamel) #5148143a8d3e984
] - module: fix--preserve-symlinks-main
(per4uk) #51312d8da197f86
] - module: move the CJS exports cache to internal/modules/cjs/loader (Joyee Cheung) #511575fc10ca4d6
] - module: load source maps incommonjs
translator (Hiroki Osame) #5103343e9f0bc65
] - module: documentparentURL
in register options (Hiroki Osame) #51039870ef5a73f
] - net: fix connect crash when call destroy in lookup handler (theanarkh) #51826caf71e05a6
] - net: fix example IPv4 in dns docs (Aras Abbasi) #5137758a636be0e
] - (SEMVER-MINOR) net: add connection attempt events (Paolo Insogna) #5104506a29f830a
] - node-api: make napi_get_buffer_info check if passed buffer is valid (Janrupf) #515710fb98438e4
] - node-api: move NAPI_EXPERIMENTAL definition to gyp file (Gabriel Schulhof) #51254242139fb98
] - node-api: optimize napi_set_property for perf (Mert Can Altın) #50282dc3d70c040
] - node-api: type tag external values without v8::Private (Chengzhong Wu) #511490ac070ccb7
] - node-api: segregate nogc APIs from rest via type system (Gabriel Schulhof) #50060de65cada70
] - node-api: introduce experimental feature flags (Gabriel Schulhof) #50991e192ba18cd
] - perf_hooks: performance milestone time origin timestamp improvement (IlyasShabi) #51713f94336f95a
] - repl: fixNO_COLORS
env var is ignored (Moshe Atlow) #51568e08649caa0
] - repl: fix prepareStackTrace frames array order (Chengzhong Wu) #5082707614072f1
] - sea: update stability index (Joyee Cheung) #51774eea0d74454
] - (SEMVER-MINOR) sea: support sea.getRawAsset() (Joyee Cheung) #50960db0efa3f40
] - (SEMVER-MINOR) sea: support embedding assets (Joyee Cheung) #509609b164c6eec
] - src: fix --disable-single-executable-application (Joyee Cheung) #51808306c1d35e5
] - src: simplify direct queries of env vars in C++ land (Joyee Cheung) #51829696063a47c
] - src: stop the profiler and the inspector before snapshot serialization (Joyee Cheung) #51815be40c8286c
] - src: simplify embedder entry point execution (Joyee Cheung) #5155790391ff256
] - src: compile code eagerly in snapshot builder (Joyee Cheung) #516723875fa1dc5
] - src: check empty before accessing string (Cheng Zhao) #51665a58c98ea85
] - (SEMVER-MINOR) src: print string content better in BlobDeserializer (Joyee Cheung) #5096062707a9d27
] - src: fix vm bug for configurable globalThis (F. Hinkelmann) #51602c3c0a3ee5c
] - (SEMVER-MINOR) src: support multi-line values for .env file (IlyasShabi) #51289dc8fe9ebf4
] - (SEMVER-MINOR) src: addprocess.loadEnvFile
andutil.parseEnv
(Yagiz Nizipli) #51476a5afad2a4d
] - src: terminate correctly double-quote in env variable (Marco Ippolito) #515102a921966c6
] - (SEMVER-MINOR) src: do not coerce dotenv paths (Tobias Nießen) #5142550ec55c268
] - src: refactorGetCreationContext
calls (Jungku Lee) #513672e65389922
] - src: do not read string out of bounds (Cheng Zhao) #51358a653531089
] - src: avoid shadowed string in fs_permission (Shelley Vohr) #51123c190a057ff
] - src: avoid draining platform tasks at FreeEnvironment (Chengzhong Wu) #5129000227674f5
] - src: add fast api for Histogram (James M Snell) #512964733c8e4df
] - src: refactorGetCreationContext
calls (Yagiz Nizipli) #51287d76e16bb47
] - src: enter isolate before destructing IsolateData (Ben Noordhuis) #511384ffdd37d2c
] - src: eliminate duplicate code in histogram.cc (James M Snell) #512632ce8b974a0
] - src: fix unix abstract socket path for trace event (theanarkh) #508589b25268cb8
] - src: use BignumPointer and use BN_clear_free (James M Snell) #50454a80f660343
] - src: implement FastByteLengthUtf8 with simdutf::utf8_length_from_latin1 (Daniel Lemire) #508400dee86f295
] - (SEMVER-MINOR) src: support configurable snapshot (Joyee Cheung) #5045390b5ed1d1d
] - src: implement countObjectsWithPrototype (Joyee Cheung) #505729365e129ed
] - src: register udp_wrap external references (Joyee Cheung) #50943b05d496b6c
] - src: register spawn_sync external references (Joyee Cheung) #50943642fb44982
] - src: register process_wrap external references (Joyee Cheung) #50943c7c9e81a1a
] - src: fix double free reported by coverity (Michael Dawson) #51046358793e28e
] - src: remove unused headers innode_file.cc
(Jungku Lee) #50927c705b73a74
] - src: implement --trace-promises (Joyee Cheung) #5089997aa67f006
] - src: fix dynamically linked zlib version (Richard Lau) #51007d6f46a44f2
] - src: make ModifyCodeGenerationFromStrings more robust (Joyee Cheung) #50763362135a1f9
] - src: disable uncaught exception abortion for ESM syntax detection (Yagiz Nizipli) #50987d82b0d4320
] - src: fix backtrace with tail noreturn abort (Chengzhong Wu) #508496df3e31bff
] - src: print MKSNAPSHOT debug logs to stderr (Joyee Cheung) #50759fd5efac176
] - (SEMVER-MINOR) src,permission: add --allow-addon flag (Rafael Gonzaga) #51183b616f6fa06
] - src,stream: improve WriteString (ywave620) #5115516d8cd5b22
] - stream: do not defer construction by one microtick (Matteo Collina) #520057931c3bbc8
] - stream: fix eventNames() to not return not defined events (IlyasShabi) #51331d0a6f3515d
] - stream: fix cloned webstreams not being unref correctly (tsctx) #515268750070a47
] - stream: fix fd is null when calling clearBuffer (kylo5aby) #50994ade6614067
] - (SEMVER-MINOR) stream: add support fordeflate-raw
format to webstreams compression (Damian Krzeminski) #50097905c48fc6e
] - test: add regression test for test_runner after hook (Colin Ihrig) #5199860f008b65e
] - test: reduce flakiness oftest-runner-output
(Antoine du Hamel) #519520ad88f6a5c
] - test: fix flaky http-chunk-extensions-limit test (Ethan Arrowood) #519433f85c7ac97
] - test: remove flaky designation (Luigi Pinca) #51736f37648ee5c
] - test: skip SEA tests when SEA generation fails (Joyee Cheung) #51887136b6a998b
] - test: fix unreliable assumption in js-native-api/test_cannot_run_js (Joyee Cheung) #51898d90594aefa
] - test: deflake test-http2-large-write-multiple-requests (Joyee Cheung) #51863a0b36e33d1
] - test: fix test-debugger-profile for coverage generation (Joyee Cheung) #51816dd0f164ca3
] - test: fix test-bootstrap-modules for coverage generation (Joyee Cheung) #51816e4c7d62496
] - test: ensure delay in recursive fs watch tests (Joyee Cheung) #51842963d7d7dea
] - test: fix test-child-process-fork-net (Joyee Cheung) #51841dd708d337e
] - test: split wasi tests (Joyee Cheung) #51836853b48d905
] - test: remove test-fs-stat-bigint flaky designation (Luigi Pinca) #51735fdc7d751de
] - test: skip test-http-correct-hostname on loong64 (Shi Pujin) #51663c33f860d2b
] - test: remove test-cli-node-options flaky designation (Luigi Pinca) #51716f528e965f6
] - test: remove test-domain-error-types flaky designation (Luigi Pinca) #517177e3ee828f1
] - test: fixinternet/test-inspector-help-page
(Richard Lau) #51693170278c25d
] - test: remove duplicate entry for flaky test (Luigi Pinca) #51654d0d5bd0e54
] - test: remove test-crypto-keygen flaky designation (Luigi Pinca) #51567bca6dcca0b
] - test: remove test-fs-rmdir-recursive flaky designation (Luigi Pinca) #51566af3f229d6b
] - test: remove common.expectsError calls for asserts (Paulo Chaves) #51504f6fcd200e6
] - test: mark test-http2-large-file as flaky (Michaël Zasso) #515491d8e65a230
] - test: use checkIfCollectableByCounting in SourceTextModule leak test (Joyee Cheung) #51512713afed6b0
] - test: remove test-file-write-stream4 flaky designation (Luigi Pinca) #51472292d0174df
] - test: add URL tests to fs-write (Rafael Gonzaga) #51352954e2f2f58
] - test: remove unneeded common.expectsError for asserts (Andrés Morelos) #51353f2dfe0fa80
] - test: add regression test for 51586 (Matteo Collina) #514916ee5f50789
] - test: fix flaky conditions for ppc64 SEA tests (Richard Lau) #5142206a6eef9a4
] - test: replace forEach() with for...of (Alexander Jones) #50608a98102a6de
] - test: replace forEach with for...of (Ospite Privilegiato) #50787e9080a94d3
] - test: replace foreach with for of (lucacapocci94-dev) #5079042b162b06d
] - test: replace forEach() with for...of (Jia) #50610cab7737f7e
] - test: fix inconsistency write size intest-fs-readfile-tostring-fail
(Jungku Lee) #5114115731b4b2f
] - test: replace forEach test-http-server-multiheaders2 (Marco Mac) #507949cedaa62fa
] - test: replace forEach with for-of in test-webcrypto-export-import-ec (Chiara Ricciardi) #512497f301e04be
] - test: move to for of loop in test-http-hostname-typechecking.js (Luca Del Puppo) #507826e62e649df
] - test: skip test-watch-mode-inspect on arm (Michael Dawson) #51210c3c2b2b041
] - test: replace forEach with for of in file test-trace-events-net.js (Ianna83) #5078955c423ba4f
] - test: replace forEach() with for...of in test/parallel/test-util-log.js (Edoardo Dusi) #507838ac05cf3c4
] - test: replace forEach with for of in test-trace-events-api.js (Andrea Pavone) #50784d10d39e8ba
] - test: replace forEach with for-of in test-v8-serders.js (Mattia Iannone) #50791576adc5e5b
] - test: add URL tests to fs-read in pm (Rafael Gonzaga) #51213996cef51b7
] - test: use tmpdir.refresh() in test-esm-loader-resolve-type.mjs (Luigi Pinca) #512068f2d982342
] - test: use tmpdir.refresh() in test-esm-json.mjs (Luigi Pinca) #51205efd6630143
] - test: fix flakiness in worker*.test-free-called (Jithil P Ponnan) #5101354a29ee506
] - test: deflake test-diagnostics-channel-memory-leak (Joyee Cheung) #505726319ea6183
] - test: test syncrhnous methods of child_process in snapshot (Joyee Cheung) #5094350df4aee2b
] - test: handle relative https redirect (Richard Lau) #511219f88f40cae
] - test: fix test runner colored output test (Moshe Atlow) #51064a1feae24cb
] - test: resolve path of embedtest binary correctly (Cheng Zhao) #50276a4f1805c92
] - test: escape cwd in regexp (Jérémy Lal) #509801c28db8116
] - test: replace forEach to for.. test-webcrypto-export-import-cfrg.js (Angelo Parziale) #50785a4f505213e
] - test: log more information in SEA tests (Joyee Cheung) #50759c91b817a5c
] - test: consolidate utf8 text fixtures in tests (Joyee Cheung) #5073226a06b093b
] - test: give more time to GC in test-shadow-realm-gc-* (Joyee Cheung) #50735e8f5735149
] - test: test surrogate pair filenames on windows (Mert Can Altın) #518001ab9ff46a5
] - test: mark test-wasi as flaky on Windows on ARM (Joyee Cheung) #518341c47da1453
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #5153391c8624608
] - test_runner: serialize 'expected' and 'actual' in isolation (Malthe Borch) #51851cea90dcfe3
] - test_runner: add ref methods to mocked timers (Marco Ippolito) #518099ff0df1793
] - test_runner: check if timeout was cleared by own callback (Ben Richeson) #5167334ecd1e36b
] - test_runner: fixed test object is incorrectly passed to setup() (Pulkit Gupta) #50982da17a2538e
] - test_runner: fixed to run after hook if before throws an error (Pulkit Gupta) #51062b8f0ea6f60
] - test_runner: fix infinite loop when files are undefined in test runner (Pulkit Gupta) #51047fe922f05e4
] - (SEMVER-MINOR) timers: export timers.promises (Marco Ippolito) #51246f4ac7baf85
] - tools: fix installing node with shared mode (Cheng Zhao) #51910f07605fa7b
] - tools: update eslint to 8.57.0 (Node.js GitHub Bot) #51867d16b235fca
] - tools: update lint-md-dependencies to rollup@4.12.0 (Node.js GitHub Bot) #51795d27e811a01
] - tools: fix missing fallthrough in js2c (Cheng Zhao) #518457eb69308da
] - tools: disable automated libuv updates (Rafael Gonzaga) #517751f15af425c
] - tools: update lint-md-dependencies to rollup@4.10.0 (Node.js GitHub Bot) #51720c7ae13e6bc
] - tools: update github_reporter to 1.6.0 (Node.js GitHub Bot) #516580fb079bd85
] - tools: runbuild-windows
workflow only on source changes (Antoine du Hamel) #51596c2538e31fa
] - tools: update lint-md-dependencies to rollup@4.9.6 (Node.js GitHub Bot) #51583e02dbf074b
] - tools: fix loong64 build (Shi Pujin) #51401ce49cb6656
] - tools: set normalizeTD text default to empty string (Marco Ippolito) #51543e8dc5ac552
] - tools: limit parallelism with ninja in V8 builds (Richard Lau) #5147397470b179b
] - tools: do not pass invalid flag to C compiler (Michaël Zasso) #5140959af1d7923
] - tools: update lint-md-dependencies to rollup@4.9.5 (Node.js GitHub Bot) #514606385c7ad57
] - tools: update inspector_protocol to83b1154
(Kohei Ueno) #513095235aaf299
] - tools: update github_reporter to 1.5.4 (Node.js GitHub Bot) #513954ce2ecb1ce
] - tools: fix version parsing in brotli update script (Richard Lau) #5137386102078f5
] - tools: update lint-md-dependencies to rollup@4.9.4 (Node.js GitHub Bot) #51396e658208159
] - tools: remove openssl v1 update script (Marco Ippolito) #513784372f6a5b8
] - tools: remove deprecated python api (Alex Yang) #497312b24059e53
] - tools: update lint-md-dependencies to rollup@4.9.2 (Node.js GitHub Bot) #513201da2e8d15e
] - tools: fix dep_updaters dir updates (Michaël Zasso) #51294b264dda7f2
] - tools: update inspector_protocol toc488ba2
(cola119) #51293fdb07d5418
] - tools: update inspector_protocol to9b4a4aa
(cola119) #512936863fb84a6
] - tools: update inspector_protocol to2f51e05
(cola119) #512936b85f5c6e0
] - tools: update inspector_protocol tod7b099b
(cola119) #51293cf029ca24f
] - tools: update inspector_protocol to912eb68
(cola119) #51293af119447f5
] - tools: update inspector_protocol to547c5b8
(cola119) #512935a72506823
] - tools: update inspector_protocol toca525fc
(cola119) #51293c7aa3976f9
] - tools: update lint-md-dependencies to rollup@4.9.1 (Node.js GitHub Bot) #512768e02d08a82
] - tools: check timezone current version (Marco Ippolito) #51178fa1e88775d
] - tools: update lint-md-dependencies to rollup@4.9.0 (Node.js GitHub Bot) #5119304c0bf9cc5
] - tools: update eslint to 8.56.0 (Node.js GitHub Bot) #51194e896cbd0d5
] - tools: update lint-md-dependencies to rollup@4.7.0 (Node.js GitHub Bot) #51106c7350c2083
] - tools: update doc to highlight.js@11.9.0 unified@11.0.4 (Node.js GitHub Bot) #5045900dfabf8fb
] - tools: update eslint to 8.55.0 (Node.js GitHub Bot) #51025f91d56157b
] - tools: update lint-md-dependencies to rollup@4.6.1 (Node.js GitHub Bot) #51022450163cf9b
] - tools: add triggers to update release links workflow (Moshe Atlow) #50974b1442024ea
] - tools: update lint-md-dependencies to rollup@4.5.2 (Node.js GitHub Bot) #509136fc6a62daf
] - tools: fix current version check (Marco Ippolito) #50951bc6bdda8b1
] - tools: fix update-icu.sh (Michaël Zasso) #51723a7a4cce75d
] - typings: lib/internal/vm.js (Geoffrey Booth) #501126375540507
] - typings: fix JSDoc ininternal/modules/esm/hooks
(Alex Yang) #508874bc8e98d7c
] - url: don't update URL immediately on update to URLSearchParams (Matt Cowley) #515202acbcbd8ad
] - url: throw error if argument length of revokeObjectURL is 0 (DylanTet) #50433c50134615e
] - (SEMVER-MINOR) util: add styleText API to text formatting (Rafael Gonzaga) #51850f79ac336ad
] - util: pass invalidSubtypeIndex instead of trimmedSubtype to error (Gaurish Sethia) #51264c3b89c310f
] - util: improve performance of function areSimilarFloatArrays (Liu Jia) #510405202995b48
] - vm: implement isContext() directly in JS land with private symbol (Joyee Cheung) #516850211a3d65f
] - (SEMVER-MINOR) vm: support using the default loader to handle dynamic import() (Joyee Cheung) #5124407fc077c5d
] - vm: use v8::DeserializeInternalFieldsCallback explicitly (Joyee Cheung) #509845183e3a4b1
] - watch: clarify that the fileName parameter can be null (Luigi Pinca) #5130563bf8a66df
] - watch: fix nullfileName
on windows systems (vnc5) #4989107da4e9b58
] - watch: fix infinite loop when passing --watch=true flag (Pulkit Gupta) #51160v20.11.1
: 2024-02-14, Version 20.11.1 'Iron' (LTS), @RafaelGSS prepared by @marco-ippolitoCompare Source
Notable changes
This is a security release.
Notable changes
Commits
7079c062bb
] - crypto: disable PKCS#1 padding for privateDecrypt (Michael Dawson) nodejs-private/node-private#525186a6e1ffb
] - deps: fix GHSA-f74f-cvh7-c6q6/CVE-2024-24806 (Santiago Gimeno) #51737686da19abb
] - deps: disable io_uring support in libuv by default (Tobias Nießen) nodejs-private/node-private#529f7b44bfbce
] - deps: update archs files for openssl-3.0.13+quic1 (Node.js GitHub Bot) #516147a30fecea2
] - deps: upgrade openssl sources to quictls/openssl-3.0.13+quic1 (Node.js GitHub Bot) #51614480fc169a8
] - fs: protect against modified Buffer internals in possiblyTransformPath (Tobias Nießen) nodejs-private/node-private#49777ac7c3153
] - http: add maximum chunk extension size (Paolo Insogna) nodejs-private/node-private#519ed7d149675
] - lib: use cache fs internals against path traversal (RafaelGSS) nodejs-private/node-private#51689bd5fc38f
] - lib: update undici to v5.28.3 (Matteo Collina) nodejs-private/node-private#539d01dd4291d
] - permission: fix wildcard when children > 1 (Rafael Gonzaga) #5120940ff37dfcc
] - src: fix HasOnly(capability) in node::credentials (Tobias Nießen) nodejs-private/node-private#5053f6addd590
] - src,deps: disable setuid() etc if io_uring enabled (Tobias Nießen) nodejs-private/node-private#529d6da413aa4
] - test,doc: clarify wildcard usage (RafaelGSS) nodejs-private/node-private#517c213910aea
] - zlib: pause stream if outgoing buffer is full (Matteo Collina) nodejs-private/node-private#541v20.11.0
: 2024-01-09, Version 20.11.0 'Iron' (LTS), @UlisesGasconCompare Source
Notable Changes
833190fe7c
] - crypto: update root certificates to NSS 3.95 (Node.js GitHub Bot) #50805a541b78bdb
] - doc: add MrJithil to collaborators (Jithil P Ponnan) #50666d4be8fad83
] - doc: add Ethan-Arrowood as a collaborator (Ethan Arrowood) #50393c1a196c897
] - (SEMVER-MINOR) esm: add import.meta.dirname and import.meta.filename (James Sumners) #48740aa3209b880
] - fs: add c++ fast path for writeFileSync utf8 (CanadaHonk) #498848e886a2fff
] - (SEMVER-MINOR) module: remove useCustomLoadersIfPresent flag (Chengzhong Wu) #4865521ab3c0f0b
] - (SEMVER-MINOR) module: bootstrap module loaders in shadow realm (Chengzhong Wu) #4865529d91b13e3
] - (SEMVER-MINOR) src: add--disable-warning
option (Ethan Arrowood) #5066111b3e470db
] - (SEMVER-MINOR) src: create per isolate proxy env template (Chengzhong Wu) #48655621c4d66c2
] - (SEMVER-MINOR) src: make process binding data weak (Chengzhong Wu) #48655139d6c8d3b
] - stream: use Array for Readable buffer (Robert Nagy) #503416206957e8d
] - stream: optimize creation (Robert Nagy) #50337e64378643d
] - (SEMVER-MINOR) test_runner: adds built in lcov reporter (Phil Nash) #500184a830c2d9d
] - (SEMVER-MINOR) test_runner: add Date to the supported mock APIs (Lucas Santos) #48638842dc01def
] - (SEMVER-MINOR) test_runner, cli: add --test-timeout flag (Shubham Pandey) #50443Commits
e40a559ab1
] - benchmark: update iterations in benchmark/util/splice-one.js (Liu Jia) #5069800f7a5d26f
] - benchmark: increase the iteration number to an appropriate value (Lei Shi) #50766be6ad3f375
] - benchmark: rewrite import.meta benchmark (Joyee Cheung) #506839857364129
] - benchmark: add misc/startup-cli-version benchmark (Joyee Cheung) #5068422d729e7f5
] - benchmark: remove punycode from require-builtins fixture (Joyee Cheung) #506894cf10a149a
] - benchmark: change iterations in benchmark/es/string-concatenations.js (Liu Jia) #5058515c2ed93a8
] - benchmark: add benchmarks for encodings (Aras Abbasi) #503488a896428ca
] - benchmark: add more cases to Readable.from (Raz Luvaton) #50351dbe6c5f354
] - benchmark: skip test-benchmark-os on IBMi (Michael Dawson) #50286179b4b6e62
] - benchmark: move permission-fs-read to permission-processhas-fs-read (Aki Hasegawa-Johnson) #4977032d65c001d
] - buffer: improve Buffer.equals performance (kylo5aby) #5062180ea83757e
] - build: add GN configurations for simdjson (Cheng Zhao) #50831904e645bcd
] - build: add configuration flag to enable Maglev (Keyhan Vakil) #50692019efa8a5a
] - build: fix GN configuration for deps/base64 (Cheng Zhao) #50696a645d5ac54
] - build: disable flag v8_scriptormodule_legacy_lifetime (Chengzhong Wu) #506168705058b09
] - build: add GN build files (Cheng Zhao) #476370a5e9c12cf
] - build: fix build with Python 3.12 (Luigi Pinca) #50582ff5713dd43
] - build: support Python 3.12 (Shi Pujin) #50209cfd50f229a
] - build: fix building when there is only python3 (Cheng Zhao) #48462833190fe7c
] - crypto: update root certificates to NSS 3.95 (Node.js GitHub Bot) #5080554c46dae9e
] - deps: update zlib to 1.2.13.1-motley-5daffc7 (Node.js GitHub Bot) #508030be84e5a28
] - deps: update undici to 5.27.2 (Node.js GitHub Bot) #50813ec67890824
] - deps: V8: cherry-pick0f9ebbc
(Chengzhong Wu) #50867bc2ebb972b
] - deps: V8: cherry-pick13192d6
(Levi Zim) #50552656135d70a
] - deps: update zlib to 1.2.13.1-motley-dfc48fc (Node.js GitHub Bot) #5045641ee4bcc5d
] - deps: update ada to 2.7.4 (Node.js GitHub Bot) #50815a40948b5c5
] - deps: update minimatch to 9.0.3 (Node.js GitHub Bot) #508067be1222c4a
] - deps: update simdutf to 4.0.4 (Node.js GitHub Bot) #5077268e7d49db6
] - deps: upgrade npm to 10.2.4 (npm team) #507513d82d38336
] - deps: escape Python strings correctly (Michaël Zasso) #50695d3870ac957
] - deps: update base64 to 0.5.1 (Node.js GitHub Bot) #506294b219b6ece
] - deps: update corepack to 0.23.0 (Node.js GitHub Bot) #505636c41b50922
] - deps: update nghttp2 to 1.58.0 (Node.js GitHub Bot) #504413beee0ae8f
] - deps: update acorn to 8.11.2 (Node.js GitHub Bot) #50460220916fa93
] - deps: update undici to 5.27.0 (Node.js GitHub Bot) #50463f9960b3545
] - deps: update googletest to116b7e5
(Node.js GitHub Bot) #50324d5c16f897a
] - dns: call handle.setServers() with a valid array (Luigi Pinca) #508111bd6537c97
] - doc: recommend supported Python versions (Luigi Pinca) #50407402e257520
] - doc: update notable changes in v21.1.0 (Joyee Cheung) #50388032535e270
] - doc: make theme consistent across api and other docs (Dima Demakov) #50877d53842683f
] - doc: add a section regardinginstanceof
inprimordials.md
(Antoine du Hamel) #50874fe315055a7
] - doc: update email to reflect affiliation (Yagiz Nizipli) #50856e14f661950
] - doc: shard not supported with watch mode (Pulkit Gupta) #50640b3d015de71
] - doc: get rid of unnecessaryeslint-skip
comments (Antoine du Hamel) #50829168cbf9cb9
] - doc: create deprecation code for isWebAssemblyCompiledModule (Marco Ippolito) #5048630baacba41
] - doc: add CanadaHonk to triagers (CanadaHonk) #50848e6e7cbceac
] - doc: fix typos in --allow-fs-* (Tobias Nießen) #50845e22ce9586f
] - doc: update Crypto API doc for x509.keyUsage (Daniel Meechan) #50603549d4422b7
] - doc: fix fs.writeFileSync return value documentation (Ryan Zimmerman) #507603c79e3cdba
] - doc: update print results(detail) inPerformanceEntry
(Jungku Lee) #50723aeaf96d06e
] - doc: fixBuffer.allocUnsafe
documentation (Mert Can Altın) #50686347e1dd06a
] - doc: run license-builder (github-actions[bot]) #50691a541b78bdb
] - doc: add MrJithil to collaborators (Jithil P Ponnan) #5066690f415dd61
] - doc: fix typo in fs.md (fwio) #50570e2388151ba
] - doc: add missing description of argument insubtle.encrypt
(Deokjin Kim) #5057839cc013465
] - doc: update pm documentation to include resource (Ranieri Innocenti Spada) #50601ba6d427c23
] - doc: correct attribution in v20.6.0 changelog (Jacob Smith) #505641b2dab8254
] - doc: update to alignconsole.table
row to the left (Jungku Lee) #505535d48ef7778
] - doc: underline links (Rich Trott) #504815e6057c9d2
] - doc: remove duplicate word (Gerhard Stöbich) #5047564bf2fd4ee
] - doc: fix typo inwebstreams.md
(André Santos) #50426cca55b8414
] - doc: add information about Node-API versions >=9 (Michael Dawson) #50168d4be8fad83
] - doc: add Ethan-Arrowood as a collaborator (Ethan Arrowood) #503930b311838f6
] - doc: fix TOC inreleases.md
(Bryce Seefieldt) #50372843d5f84ca
] - esm: fallback togetSource
whenload
returns nullishsource
(Antoine du Hamel) #508258d5469c84b
] - esm: do not callgetSource
when format iscommonjs
(Francesco Trotta) #50465b48cf314d3
] - esm: bypass CJS loader in default load under--default-type=module
(Antoine du Hamel) #50004c1a196c897
] - (SEMVER-MINOR) esm: add import.meta.dirname and import.meta.filename (James Sumners) #48740435f9c9276
] - fs: use default w flag for writeFileSync with utf8 encoding (Murilo Kakazu) #50990aa3209b880
] - fs: add c++ fast path for writeFileSync utf8 (CanadaHonk) #4988405e25e0230
] - fs: improve error perf of synclstat
+fstat
(CanadaHonk) #49868f94a24cb4b
] - fs: improve error performance forrmdirSync
(CanadaHonk) #49846cada22e2a4
] - fs: fix to not return for void function (Jungku Lee) #50769ba40b2e33e
] - fs: replace deprecatedpath._makeLong
in copyFile (CanadaHonk) #50844d1b6bd660a
] - fs: update param in jsdoc forreaddir
(Jungku Lee) #5044811412e863a
] - fs: do not throw error on cpSync internals (Yagiz Nizipli) #50185868a464c15
] - fs,url: moveFromNamespacedPath
tonode_url
(Yagiz Nizipli) #50090de7fe08c7b
] - fs,url: refactorFileURLToPath
method (Yagiz Nizipli) #50090186e6e0395
] - fs,url: moveFileURLToPath
to node_url (Yagiz Nizipli) #50090aea7fe54af
] - inspector: use private fields instead of symbols (Yagiz Nizipli) #5077648dbde71d8
] - lib: use primordials for navigator.userAgent (Aras Abbasi) #50467fa220cac87
] - lib: remove deprecated string methods (Jithil P Ponnan) #50592f1cf1c385f
] - lib: fix assert shows diff messages in ESM and CJS (Jithil P Ponnan) #506343844af288f
] - lib: make event static properties non writable and configurable (Muthukumar) #504250a0b416d6c
] - lib: avoid memory allocation on nodeprecation flag (Vinicius Lourenço) #50231e7551d5770
] - lib: align console.table row to the left (Jithil P Ponnan) #501350c85cebdf2
] - meta: clarify nomination process according to Node.js charter (Matteo Collina) #50834f4070dd8d4
] - meta: clarify recommendation for bug reproductions (Antoine du Hamel) #508822ddeead436
] - meta: move cjihrig to TSC regular member (Colin Ihrig) #5081634a789d9be
] - meta: add web-standards as WPTs owner (Filip Skokan) #5063640bbffa266
] - meta: bump github/codeql-action from 2.21.9 to 2.22.5 (dependabot[bot]) #50513c49553631d
] - meta: bump step-security/harden-runner from 2.5.1 to 2.6.0 (dependabot[bot]) #5051299df0138b0
] - meta: bump ossf/scorecard-action from 2.2.0 to 2.3.1 (dependabot[bot]) #505099db6227ac6
] - meta: fix spacing in collaborator list (Antoine du Hamel) #506412589a5a566
] - meta: bump actions/setup-python from 4.7.0 to 4.7.1 (dependabot[bot]) #505105a86661a95
] - meta: add crypto as crypto and webcrypto docs owner (Filip Skokan) #50579ac8d2b9cc2
] - meta: bump actions/setup-node from 3.8.1 to 4.0.0 (dependabot[bot]) #50514bee2c0cf11
] - meta: bump actions/checkout from 4.1.0 to 4.1.1 (dependabot[bot]) #5051191a0944e5f
] - meta: add ethan.arrowood@vercel.com to mailmap (Ethan Arrowood) #504918d3cf8c4ee
] - meta: add web-standards as web api visibility owner (Chengzhong Wu) #50418807c12de36
] - meta: mention other notable changes section (Rafael Gonzaga) #5030921ab3c0f0b
] - (SEMVER-MINOR) module: bootstrap module loaders in shadow realm (Chengzhong Wu) #486558e886a2fff
] - (SEMVER-MINOR) module: remove useCustomLoadersIfPresent flag (Chengzhong Wu) #4865577e8361213
] - module: execute--import
sequentially (Antoine du Hamel) #50474fffc4951ac
] - module: add application/json in accept header when fetching json module (Marco Ippolito) #50119f808e7a650
] - net: check pipe mode and path (theanarkh) #50770cf3a4c5b84
] - node-api: factor out common code into macros (Gabriel Schulhof) #50664a7d8f6b529
] - perf_hooks: implement performance.now() with fast API calls (Joyee Cheung) #50492076dc7540b
] - permission: do not create symlinks if target is relative (Tobias Nießen) #4915643160dcd2d
] - permission: mark const functions as such (Tobias Nießen) #507057a661d7ad9
] - permission: address coverity warning (Michael Dawson) #50215b2b4132c3e
] - src: iterate on import attributes array correctly (Michaël Zasso) #5070311b3e470db
] - (SEMVER-MINOR) src: create per isolate proxy env template (Chengzhong Wu) #48655d00412a083
] - (SEMVER-MINOR) src: create fs_dir per isolate properties (Chengzhong Wu) #4865514cc3b9b90
] - (SEMVER-MINOR) src: create worker per isolate properties (Chengzhong Wu) #48655621c4d66c2
] - (SEMVER-MINOR) src: make process binding data weak (Chengzhong Wu) #4865507a4e94e84
] - src: assert return value of BN_bn2binpad (Tobias Nießen) #50860158db2d61e
] - src: fix coverity warning (Michael Dawson) #5084694363bb3fd
] - src: fix compatility with upcoming V8 12.1 APIs (Cheng Zhao) #5070929d91b13e3
] - (SEMVER-MINOR) src: add--disable-warning
option (Ethan Arrowood) #50661f054c337f8
] - src: add IsolateScopes before using isolates (Keyhan Vakil) #50680d08eb382cd
] - src: avoid copying strings in FSPermission::Apply (Tobias Nießen) #506626620df1c05
] - src: remove erroneous default argument in RadixTree (Tobias Nießen) #50736436c3aef15
] - src: fix JSONParser leaking internal V8 scopes (Keyhan Vakil) #506886f46d31018
] - src: return error --env-file if file is not found (Ardi Nugraha) #505883d43fd359c
] - src: avoid silent coercion to signed/unsigned int (Tobias Nießen) #50663c253e39b56
] - src: handle errors from uv_pipe_connect2() (Deokjin Kim) #506573a9713bb5a
] - src: use v8::Isolate::TryGetCurrent() in DumpJavaScriptBacktrace() (Joyee Cheung) #5051894f8a925a8
] - src: print more information in C++ assertions (Joyee Cheung) #5024223f830616b
] - src: hide node::credentials::HasOnly outside unit (Tobias Nießen) #50450b7ecb0a390
] - src: readiterable entries may be empty (Matthew Aitken) #503984ef1d68715
] - src: implement structuredClone in native (Joyee Cheung) #503309346f15138
] - src: use find instead of char-by-char in FromFilePath() (Daniel Lemire) #502888414fb4d2a
] - src: add commit hash shorthand in zlib version (Jithil P Ponnan) #50158a878e3abb0
] - stream: fix enumerability of ReadableStream.from (Mattias Buelens) #5077995ed4ffc1e
] - stream: fix enumerability of ReadableStream.prototype.values (Mattias Buelens) #507794cf155ca0c
] - stream: add Symbol.toStringTag to Compression Streams (Filip Skokan) #507126012e3e781
] - stream: fix Writable.destroy performance regression (Robert Nagy) #50478dd5206820c
] - stream: pre-allocate _events (Robert Nagy) #50428829b82ed0f
] - stream: remove no longer relevant comment (Robert Nagy) #5044698ae1b4132
] - stream: use bit fields for construct/destroy (Robert Nagy) #5040808a0c6c56c
] - stream: improve from perf (Raz Luvaton) #5035959f7316b8f
] - stream: avoid calls to listenerCount (Robert Nagy) #503579d52430eb9
] - stream: readable use bitmap accessors (Robert Nagy) #50350139d6c8d3b
] - stream: use Array for Readable buffer (Robert Nagy) #503416206957e8d
] - stream: optimize creation (Robert Nagy) #50337f87921de3b
] - stream: refactor writable _write (Robert Nagy) #50198b338f3d3c2
] - stream: avoid getter for defaultEncoding (Robert Nagy) #502031862235a26
] - test: fix message v8 not normalising alphanumeric paths (Jithil P Ponnan) #507307c28a4ca8f
] - test: fix dns test case failures after c-ares update to 1.21.0+ (Brad House) #507434544593d31
] - test: replace forEach with for of (Conor Watson) #5059496143a3293
] - test: replace forEach to for at test-webcrypto-sign-verify-ecdsa.js (Alessandro Di Nisio) #50795107b5e63c5
] - test: replace foreach with for in test-https-simple.js (Shikha Mehta) #497939b2e5e9db4
] - test: add note about unresolved spec issue (Mattias Buelens) #50779edce637c1a
] - test: add note about readable streams with type owning (Mattias Buelens) #50779641044670b
] - test: replace forEach with for-of in test-url-relative (vitosorriso) #5078875ee78438c
] - test: replace forEach() with for ... of in test-tls-getprotocol.js (Steve Goode) #5060024f9d3fbeb
] - test: enable idlharness tests for encoding (Mattias Buelens) #50778a9d290956e
] - test: replace forEach in whatwg-encoding-custom-interop (Honza Machala) #506076584dd80f7
] - test: replace forEach() with for-loop (Jan) #50596be54a22869
] - test: improve test-bootstrap-modules.js (Joyee Cheung) #50708660e70e73b
] - test: skip parallel/test-macos-app-sandbox if disk space < 120MB (Joyee Cheung) #507645712c41122
] - test: replace foreach with for (Markus Muschol) #5059949e5f47b1c
] - test: test streambase has already has a consumer (Jithil P Ponnan) #48059bb7d764c8e
] - test: change forEach to for...of in path extname (Kyriakos Markakis) #506674d28ced079
] - test: replace forEach with for...of (Ryan Williams) #5061192a153ecde
] - test: migrate message v8 tests from Python to JS (Joshua LeMay) #50421a376284d8a
] - test: use destructuring for accessing setting values (Honza Jedlička) #506097b9b1fba27
] - test: replace forEach() with for .. of (Evgenia Blajer) #506059397b2da7e
] - test: replace forEach() with for ... of in test-readline-keys.js (William Liang) #506049043ba4cfb
] - test: replace forEach() with for ... of in test-http2-single-headers.js (spiritualized) #506069f911d31f6
] - test: replace forEach with for of (john-mcinall) #506028a5f36fe74
] - test: remove unused file (James Sumners) #505289950203340
] - test: replace forEach with for of (Kevin Kühnemund) #5059703ba28f102
] - test: replace forEach with for of (CorrWu) #49785ea61261b54
] - test: replace forEach with for [...] of (Gabriel Bota) #506154349790913
] - test: add WPT report test duration (Filip Skokan) #505747cacddfcc1
] - test: replace forEach() with for ... of loop in test-global.js (Kajol) #49772889f58d07f
] - test: skip test-diagnostics-channel-memory-leak.js (Joyee Cheung) #5032741644ee071
] - test: improveUV_THREADPOOL_SIZE
tests on.env
(Yagiz Nizipli) #492131db44b9a53
] - test: recognize wpt completion error (Chengzhong Wu) #50429ecfc951ddc
] - test: report error wpt test results (Chengzhong Wu) #50429deb0351d95
] - test: replace forEach() with for...of (Ram) #49794f885dfe5e3
] - test: replace forEach() with for...of in test-trace-events-http (Chand) #497959dc63c56db
] - test: replace forEach with for...of in test-fs-realpath-buffer-encoding (Niya Shiyas) #49804600d1260da
] - test: fix timeout of test-cpu-prof-dir-worker.js in LoongArch devices (Shi Pujin) #50363099f5cfa0a
] - test: fix vm assertion actual and expected order (Chengzhong Wu) #50371a31f9bfe01
] - test: v8: Add test-linux-perf-logger test suite (Luke Albao) #503526c59114947
] - test: ensure never settling promises are detected (Antoine du Hamel) #503189830ae4bf7
] - test_runner: add tests for various mock timer issues (Mika Fischer) #503842c72ed85fb
] - test_runner: pass abortSignal to test files (Moshe Atlow) #50630c33a84af11
] - test_runner: replace forEach with for of (Tom Haddad) #5059529c68a22bb
] - test_runner: output errors of suites (Moshe Atlow) #50361e64378643d
] - (SEMVER-MINOR) test_runner: adds built in lcov reporter (Phil Nash) #500184aaaff413b
] - test_runner: test return value of mocked promisified timers (Mika Fischer) #503314a830c2d9d
] - (SEMVER-MINOR) test_runner: add Date to the supported mock APIs (Lucas Santos) #48638842dc01def
] - (SEMVER-MINOR) test_runner, cli: add --test-timeout flag (Shubham Pandey) #50443613a9072b7
] - tls: fix order of setting cipher before setting cert and key (Kumar Rishav) #50186d905c61e16
] - tls: usevalidateFunction
foroptions.SNICallback
(Deokjin Kim) #50530c8d6dd58e7
] - tools: add macOS notarization verification step (Ulises Gascón) #50833c9bd0b0c0f
] - tools: use macOS keychain to notarize the releases (Ulises Gascón) #50715932a5d7b2c
] - tools: update eslint to 8.54.0 (Node.js GitHub Bot) #50809d7114d97be
] - tools: update lint-md-dependencies to rollup@4.5.0 (Node.js GitHub Bot) #5080793085cf844
] - tools: add workflow to update release links (Michaël Zasso) #5071066764c5d04
] - tools: recognize GN files in dep_updaters (Cheng Zhao) #506932a451e176a
] - tools: remove unused file (Ulises Gascon) #506228ce6403230
] - tools: change minimatch install strategy (Marco Ippolito) #5047697778e2e77
] - tools: update lint-md-dependencies to rollup@4.3.1 (Node.js GitHub Bot) #50675797f6a9ba8
] - tools: add macOS notarization stapler (Ulises Gascón) #506258fa1319352
] - tools: update eslint to 8.53.0 (Node.js GitHub Bot) #50559592f57970f
] - tools: update lint-md-dependencies to rollup@4.3.0 (Node.js GitHub Bot) #505562fd78fc39e
] - tools: compare ICU checksums before file changes (Michaël Zasso) #50522631d710fc4
] - tools: improve update acorn-walk script (Marco Ippolito) #5047333fd2af2ab
] - tools: update lint-md-dependencies to rollup@4.2.0 (Node.js GitHub Bot) #5049622b7a74838
] - tools: update gyp-next to v0.16.1 (Michaël Zasso) #50380f5ccab5005
] - tools: skip ruff on tools/gyp (Michaël Zasso) #50380408fd90508
] - tools: update lint-md-dependencies to rollup@4.1.5 unified@11.0.4 (Node.js GitHub Bot) #50461685f936ccd
] - tools: avoid npm install in deps installation (Marco Ippolito) #504137d43c5a094
] - Revert "tools: update doc dependencies" (Richard Lau) #504148fd67c2e3e
] - tools: update doc dependencies (Node.js GitHub Bot) #49988586becb507
] - tools: run coverage CI only on relevant files (Antoine du Hamel) #503492d06eea6c5
] - tools: update eslint to 8.52.0 (Node.js GitHub Bot) #503266a897baf16
] - tools: update lint-md-dependencies (Node.js GitHub Bot) #50190e6e7f39b9e
] - util: improve performance of normalizeEncoding (kylo5aby) #507213b6b1afa47
] - v8,tools: expose necessary V8 defines (Cheng Zhao) #508202664012617
] - vm: allow dynamic import with a referrer realm (Chengzhong Wu) #50360c6c0a74b54
] - wasi: document security sandboxing status (Guy Bedford) #50396989814093e
] - win,tools: upgrade Windows signing to smctl (Stefan Stojanovic) #50956Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.
386c2054f2
to49fede961a
chore(deps): update dependency node to v20.14.0to chore(deps): update dependency node to v20.15.049fede961a
to5078411442
chore(deps): update dependency node to v20.15.0to chore(deps): update dependency node to v20.15.15078411442
to9b468e8930
chore(deps): update dependency node to v20.15.1to chore(deps): update dependency node to v20.16.09b468e8930
tod50a58d270
chore(deps): update dependency node to v20.16.0to chore(deps): update dependency node to v20.17.0d50a58d270
toe8c36d2e77
chore(deps): update dependency node to v20.17.0to chore(deps): update dependency node to v20.18.0View command line instructions
Checkout
From your project repository, check out a new branch and test the changes.Merge
Merge the changes and update on Forgejo.