Update Node.js to v24 #397
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "renovate/node-24.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.19.1-bullseye
->24.0.1-bullseye
Release Notes
nodejs/node (node)
v24.0.1
: 2025-05-08, Version 24.0.1 (Current), @aduh95Compare Source
Notable Changes
2e1d9581e0
] - Revert "buffer: move SlowBuffer to EOL" (Filip Skokan) #58211Commits
d38e811c5b
] - benchmark: fix typo in method name for error-stack (Miguel Marcondes Filho) #581282e1d9581e0
] - Revert "buffer: move SlowBuffer to EOL" (Filip Skokan) #58211a883b0c979
] - build: use //third_party/simdutf by default in GN (Shelley Vohr) #581153d84b5c7a4
] - doc: add HBSPS as triager (Wiyeong Seo) #579801e57cb686e
] - doc: add history entries to--input-type
section (Antoine du Hamel) #581750b54f06b6f
] - doc: add ambassaor message (Brian Muenzenmeyer) #5760046bee52d57
] - doc: fix misaligned options in vm.compileFunction() (Jimmy Leung) #58145e732a8bfdd
] - doc: fix typo in benchmark script path (Miguel Marcondes Filho) #58129d49ff34adb
] - doc: add missing options.signal to readlinePromises.createInterface() (Jimmy Leung) #55456bc9f5a2e79
] - doc: fix typo of filezlib.md
(yusheng chen) #58093c8e8558958
] - doc: clarify future Corepack removal in v25+ (Trivikram Kamat) #57825b13d5d14bd
] - meta: bump actions/setup-node from 4.3.0 to 4.4.0 (dependabot[bot]) #581110ebb17a300
] - meta: bump actions/setup-python from 5.5.0 to 5.6.0 (dependabot[bot]) #581075946785bf4
] - tools: exclude deps/v8/tools from CodeQL scans (Rich Trott) #581320708497c7f
] - tools: bump the eslint group in /tools/eslint with 6 updates (dependabot[bot]) #58105v24.0.0
: 2025-05-06, Version 24.0.0 (Current), @RafaelGSS and @juanarbolCompare Source
We’re excited to announce the release of Node.js 24! This release brings
several significant updates, including the upgrade of the V8 JavaScript
engine to version 13.6 and npm to version 11. Starting with
Node.js 24, support for MSVC has been removed, and ClangCL is now required
to compile Node.js on Windows. The
AsyncLocalStorage
API now usesAsyncContextFrame
by default, andURLPattern
is available globally.These changes, along with many other improvements, continue to push the
platform forward.
As a reminder, Node.js 24 will enter long-term support (LTS) in October,
but until then, it will be the "Current" release for the next six months.
We encourage you to explore the new features and benefits offered by this
latest release and evaluate their potential impact on your applications.
Notable Changes
V8 13.6
The V8 engine is updated to version 13.6, which includes several new
JavaScript features:
Float16Array
RegExp.escape
Error.isError
The V8 update was a contribution by Michaël Zasso in #58070.
npm 11
Node.js 24 comes with npm 11, which includes several improvements and new
features. This update brings enhanced performance, improved security features,
and better compatibility with modern JavaScript packages.
The npm update was a contribution by the npm team in #56274.
AsyncLocalStorage
defaults toAsyncContextFrame
AsyncLocalStorage
now usesAsyncContextFrame
by default, which provides amore efficient implementation of asynchronous context tracking.
This change improves performance and makes the API more robust for advanced
use cases.
This change was a contribution by Stephen Belanger in #55552.
URLPattern
as a globalThe
URLPattern
API is now exposed on the global object, making it easier to use without
explicit imports. This API provides a powerful pattern matching system for URLs,
similar to how regular expressions work for strings.
This feature was a contribution by Jonas Badalič in #56950.
Permission Model Improvements
The experimental Permission Model introduced in Node.js 20 has been improved,
and the flag has been changed from
--experimental-permission
to simply--permission
, indicating its increasing stability and readiness for broaderadoption.
This change was a contribution by Rafael Gonzaga in #56240.
Test Runner Enhancements
The test runner module now automatically waits for subtests to finish,
eliminating the need to manually await test promises. This makes writing tests
more intuitive and reduces common errors related to unhandled promises.
The test runner improvements were contributions by Colin Ihrig in #56664.
Undici 7
Node.js 24 includes Undici 7, which brings numerous improvements to the
HTTP client capabilities, including better performance and support for newer
HTTP features.
Deprecations and Removals
Several APIs have been deprecated or removed in this release:
url.parse()
- use the WHATWG URL API instead (#55017)tls.createSecurePair
(#57361)SlowBuffer
(#55175)new
(#55718)args
tospawn
andexecFile
in child_process (#57199)Semver-Major Commits
c6b934380a
] - (SEMVER-MAJOR) src: enableFloat16Array
on global object (Michaël Zasso) #5815469efb81a73
] - (SEMVER-MAJOR) src: enable explicit resource management (Michaël Zasso) #58154b00ff4270e
] - (SEMVER-MAJOR) src,test: unregister the isolate after disposal and before freeing (Joyee Cheung) #58070b81697d860
] - (SEMVER-MAJOR) src: use non-deprecated WriteUtf8V2() method (Yagiz Nizipli) #580701f06169b87
] - (SEMVER-MAJOR) src: use non-deprecated Utf8LengthV2() method (Yagiz Nizipli) #58070eae9a296f0
] - (SEMVER-MAJOR) src: use V8-owned CppHeap (Joyee Cheung) #58070087c254a11
] - (SEMVER-MAJOR) test: fix test-fs-write for V8 13.6 (Michaël Zasso) #580709e49bedd8e
] - (SEMVER-MAJOR) build: update list of installed cppgc headers (Michaël Zasso) #5807093cca8a43e
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 13.6 (Michaël Zasso) #58070347daa07be
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 13.5 (Michaël Zasso) #580702a35d5a86c
] - (SEMVER-MAJOR) build: fix V8 TLS config for shared lib builds (Michaël Zasso) #58070b0fb5a09cf
] - (SEMVER-MAJOR) build: pass-fPIC
to linker as well for shared builds (Michaël Zasso) #58070dd4c5d6c73
] - (SEMVER-MAJOR) src,test: add V8 API to test the hash seed (Michaël Zasso) #580701d5d7b6eed
] - (SEMVER-MAJOR) src: usev8::ExternalMemoryAccounter
(Michaël Zasso) #580703779e43cce
] - (SEMVER-MAJOR) tools: update license-builder and LICENSE for V8 deps (Michaël Zasso) #5807082c2255206
] - (SEMVER-MAJOR) deps: remove deps/simdutf (Michaël Zasso) #580708a258eb7b1
] - (SEMVER-MAJOR) test: handle explicit resource management globals (Michaël Zasso) #580709e0d9b6024
] - (SEMVER-MAJOR) test: adapt assert tests to stack trace changes (Michaël Zasso) #58070f7406aa56d
] - (SEMVER-MAJOR) test: update test-linux-perf-logger (Michaël Zasso) #58070c7493fac5e
] - (SEMVER-MAJOR) Revert "test: disable fast API call count checks" (Michaël Zasso) #5807050a8527867
] - (SEMVER-MAJOR) src: replace uses of FastApiTypedArray (Michaël Zasso) #580709c1ebb713c
] - (SEMVER-MAJOR) build: add/bigobj
to compile V8 on Windows (Michaël Zasso) #58070fb3d5ea45d
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 13.4 (Michaël Zasso) #58070756abacf73
] - (SEMVER-MAJOR) build,src,tools: adapt build config for V8 13.3 (Michaël Zasso) #58070f8953e54b0
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 13.2 (Michaël Zasso) #58070c8a0e205e1
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 13.1 (Michaël Zasso) #580701689ee84ce
] - (SEMVER-MAJOR) build: enable shared RO heap with ptr compression (Michaël Zasso) #5807015f2fb9467
] - (SEMVER-MAJOR) build: remove support for s390 32-bit (Richard Lau) #580704ab254c9f2
] - (SEMVER-MAJOR) deps: V8: backport954187b
(Joyee Cheung) #58070732923b927
] - (SEMVER-MAJOR) deps: patch V8 to support compilation with MSVC (StefanStojanovic) #58070972834d7c0
] - (SEMVER-MAJOR) deps: always define V8_EXPORT_PRIVATE as no-op (Michaël Zasso) #580707098bff3a9
] - (SEMVER-MAJOR) deps: disable V8 concurrent sparkplug compilation (Michaël Zasso) #58070dc82c40d4a
] - (SEMVER-MAJOR) deps: use std::map in MSVC STL for EphemeronRememberedSet (Joyee Cheung) #5807042f5130ee2
] - (SEMVER-MAJOR) deps: patch V8 for illumos (Dan McDonald) #5807023b17dbd9e
] - (SEMVER-MAJOR) deps: remove problematic comment from v8-internal (Michaël Zasso) #58070c5d71fcdab
] - (SEMVER-MAJOR) deps: define V8_PRESERVE_MOST as no-op on Windows (Stefan Stojanovic) #58070fbc2005b15
] - (SEMVER-MAJOR) deps: fix FP16 bitcasts.h (Stefan Stojanovic) #5807057f9430503
] - (SEMVER-MAJOR) deps: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) #58070f26cab1b85
] - (SEMVER-MAJOR) src: update NODE_MODULE_VERSION to 137 (Michaël Zasso) #58070f8923a4f17
] - (SEMVER-MAJOR) build: reset embedder string to "-node.0" (Michaël Zasso) #58070c7964bc02b
] - (SEMVER-MAJOR) deps: update V8 to 13.6.233.8 (Michaël Zasso) #580706682861d6f
] - (SEMVER-MAJOR) build: downgrade armv7 support to experimental (Michaël Zasso) #580710579e0ec93
] - (SEMVER-MAJOR) buffer: move SlowBuffer to EOL (James M Snell) #58008a55f5d5e63
] - (SEMVER-MAJOR) readline: add stricter validation for functions called after closed (Dario Piotrowicz) #57680d16b0bae55
] - (SEMVER-MAJOR) http2: session tracking and graceful server close (Kushagra Pandey) #57586e2b94dc3f9
] - (SEMVER-MAJOR) readline: fix unicode line separators being ignored (Dario Piotrowicz) #575914a47ce5ff9
] - (SEMVER-MAJOR) Revert "assert,util: revert recursive breaking change" (Ruben Bridgewater) #576227d4db69049
] - (SEMVER-MAJOR) http: remove outgoingmessage _headers and _headersList (Yagiz Nizipli) #57551fabf9384e0
] - (SEMVER-MAJOR) fs: remove ability to call truncate with fd (Yagiz Nizipli) #57567a587bd2ee2
] - (SEMVER-MAJOR) net: make _setSimultaneousAccepts() end-of-life deprecated (Yagiz Nizipli) #57550c6bca3fd34
] - (SEMVER-MAJOR) child_process: deprecate passingargs
tospawn
andexecFile
(Daniel Venable) #57199e42c01b56d
] - (SEMVER-MAJOR) buffer: makebuflen
in integer range (zhenweijin) #51821cc08ad56b8
] - (SEMVER-MAJOR) tls: remove deprecated tls.createSecurePair (Jonas) #573616f2a6b262b
] - (SEMVER-MAJOR) tls: make server.prototype.setOptions end-of-life (Yagiz Nizipli) #573390c371d919e
] - (SEMVER-MAJOR) lib: remove obsolete Cipher export (James M Snell) #572662cbf3c38db
] - (SEMVER-MAJOR) timers: check for immediate instance in clearImmediate (Gürgün Dayıoğlu) #570694f512faf4a
] - (SEMVER-MAJOR) lib: unexpose six process bindings (Michaël Zasso) #571498b40221777
] - (SEMVER-MAJOR) build: bump supported macOS version to 13.5 (Michaël Zasso) #571155d7091f1bc
] - (SEMVER-MAJOR) timers: set several methods EOL (Yagiz Nizipli) #56966d1f8ccb10d
] - (SEMVER-MAJOR) url: expose urlpattern as global (Jonas) #56950ed52ab913b
] - (SEMVER-MAJOR) build: increase minimum Xcode version to 16.1 (Michaël Zasso) #568241a2eb15bc6
] - (SEMVER-MAJOR) test_runner: remove promises returned by t.test() (Colin Ihrig) #5666496718268fe
] - (SEMVER-MAJOR) test_runner: remove promises returned by test() (Colin Ihrig) #56664aa3523ec22
] - (SEMVER-MAJOR) test_runner: automatically wait for subtests to finish (Colin Ihrig) #566646857dbc018
] - (SEMVER-MAJOR) test: disable fast API call count checks (Michaël Zasso) #5501489f661dd66
] - (SEMVER-MAJOR) build: link V8 with atomic library (Michaël Zasso) #550147e8752006a
] - (SEMVER-MAJOR) src: update GetForegroundTaskRunner override (Etienne Pierre-doray) #5501444b0e423dc
] - (SEMVER-MAJOR) build: remove support for ppc 32-bit (Michaël Zasso) #550146f965260dd
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 13.0 (Michaël Zasso) #5501452d39441d0
] - (SEMVER-MAJOR) deps: V8: cherry-pickf915fa4
(Olivier Flückiger) #5501499ffe3555a
] - (SEMVER-MAJOR) deps: V8: cherry-pick0d5d6e7
(Yagiz Nizipli) #550145d8011d91c
] - (SEMVER-MAJOR) deps: V8: cherry-pick0c11fee
(Michaël Zasso) #55014d85d2f8350
] - (SEMVER-MAJOR) deps: define V8_PRESERVE_MOST as no-op on Windows (Stefan Stojanovic) #55014e8f55f7b7a
] - (SEMVER-MAJOR) deps: always define V8_NODISCARD as no-op (Michaël Zasso) #55014b3c1b63a5d
] - (SEMVER-MAJOR) deps: fix FP16 bitcasts.h (Stefan Stojanovic) #55014d0361f0bba
] - (SEMVER-MAJOR) deps: patch V8 to support compilation with MSVC (StefanStojanovic) #55014a4e0fce896
] - (SEMVER-MAJOR) deps: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) #550144f8fd566cc
] - (SEMVER-MAJOR) deps: disable V8 concurrent sparkplug compilation (Michaël Zasso) #550141142f78f1d
] - (SEMVER-MAJOR) deps: always define V8_EXPORT_PRIVATE as no-op (Michaël Zasso) #550147917b67313
] - (SEMVER-MAJOR) src: update NODE_MODULE_VERSION to 134 (Michaël Zasso) #550141f654e655c
] - (SEMVER-MAJOR) build: reset embedder string to "-node.0" (Michaël Zasso) #550145edec0e39a
] - (SEMVER-MAJOR) deps: update V8 to 13.0.245.25 (Michaël Zasso) #5501425b22e4754
] - (SEMVER-MAJOR) deps: upgrade npm to 11.0.0 (npm team) #56274529b56ef9d
] - (SEMVER-MAJOR) fs: deprecate passing invalid types infs.existsSync
(Carlos Espa) #55753bf3bc4ec2f
] - (SEMVER-MAJOR) src: drop --experimental-permission in favour of --permission (Rafael Gonzaga) #56240fd8de670da
] - (SEMVER-MAJOR) stream: catch and forward error from dest.write (jakecastelli) #5527047b80c293d
] - (SEMVER-MAJOR) deps: update undici to 7.0.0 (Node.js GitHub Bot) #5607058982d712b
] - (SEMVER-MAJOR) src: add async context frame to AsyncResource (Gerhard Stöbich) #560824ee87b8bc3
] - (SEMVER-MAJOR) zlib: deprecate classes usage withoutnew
(Yagiz Nizipli) #55718b02cd411c2
] - (SEMVER-MAJOR) fs: runtime deprecatefs.F_OK
,fs.R_OK
,fs.W_OK
,fs.X_OK
(Livia Medeiros) #49686d9540b51eb
] - (SEMVER-MAJOR) fs: removedirent.path
(Antoine du Hamel) #555480368f2f662
] - (SEMVER-MAJOR) repl: runtime deprecate instantiating without new (Aviv Keller) #5486903dcd7077a
] - (SEMVER-MAJOR) src: nuke deprecated and un-used enum members inOptionEnvvarSettings
(Juan José) #5307951ae57673d
] - (SEMVER-MAJOR) lib: make ALS default to AsyncContextFrame (Stephen Belanger) #5555211fbdd8c9d
] - (SEMVER-MAJOR) url: runtime deprecate url.parse (Yagiz Nizipli) #55017019efe1453
] - (SEMVER-MAJOR) lib: runtime deprecate SlowBuffer (Rafael Gonzaga) #55175Semver-Minor Commits
bf9f25719a
] - (SEMVER-MINOR) esm: graduate import.meta properties (James M Snell) #58011947c6a4405
] - (SEMVER-MINOR) src: add ExecutionAsyncId getter for any Context (Attila Szegedi) #57820ea04184328
] - (SEMVER-MINOR) worker: add worker.getHeapStatistics() (Matteo Collina) #57888ec79f7686d
] - (SEMVER-MINOR) util: addtypes.isFloat16Array()
(Livia Medeiros) #5787913dee58d0e
] - (SEMVER-MINOR) test_runner: add global setup and teardown functionality (Pietro Marchini) #57438932c2d9c70
] - (SEMVER-MINOR) stream: preserve AsyncLocalStorage context in finished() (Gürgün Dayıoğlu) #5786518d6249580
] - (SEMVER-MINOR) repl: add support for multiline history (Giovanni Bucci) #57400c3e44342d9
] - (SEMVER-MINOR) lib: add defaultValue and name options to AsyncLocalStorage (James M Snell) #57766f99f815641
] - (SEMVER-MINOR) doc: graduate multiple experimental apis (James M Snell) #5776521f3c96199
] - (SEMVER-MINOR) esm: support top-level Wasm without package type (Guy Bedford) #57610ada34bd0ea
] - (SEMVER-MINOR) http: support http proxy for fetch under NODE_USE_ENV_PROXY (Joyee Cheung) #5716505cf1410b1
] - (SEMVER-MINOR) assert: mark partialDeepStrictEqual() as stable (Ruben Bridgewater) #5737057e49ee777
] - (SEMVER-MINOR) esm: support source phase imports for WebAssembly (Guy Bedford) #5691955413004c8
] - (SEMVER-MINOR) stream: handle generator destruction from Duplex.from() (Matthieu Sieben) #55096Semver-Patch Commits
7df9558efc
] - assert: supportFloat16Array
in loose deep equality checks (Livia Medeiros) #57881d9e78c00c1
] - assert,util: fix constructor lookup in deep equal comparison (Ruben Bridgewater) #57876f4572f0826
] - assert,util: improve deep object comparison performance (Ruben Bridgewater) #576482e9fb6e1e0
] - assert,util: improve unequal number comparison performance (Ruben Bridgewater) #576195f9cc5ecbb
] - assert,util: improve array comparison (Ruben Bridgewater) #57619b5b192314c
] - async_hooks: enable AsyncLocalStorage once constructed (Chengzhong Wu) #58029442b4162fb
] - benchmark: add sqlite prepare select get (Vinícius Lourenço) #580402d894eacae
] - benchmark: add sqlite prepare select all (Vinícius Lourenço) #580404d47f3afef
] - benchmark: add sqlite is transaction (Vinícius Lourenço) #5804085f2bbc02b
] - benchmark: add sqlite prepare insert (Vinícius Lourenço) #58040e61b38e47d
] - benchmark: disambiguatefilename
anddirname
read perf (Antoine du Hamel) #58056ca86c93390
] - buffer: avoid creating unnecessary environment (Yagiz Nizipli) #58053dc22890dd8
] - buffer: improve byteLength performance (Yagiz Nizipli) #58048619bf86fe9
] - buffer: define global v8::CFunction objects as const (Mert Can Altin) #57676d24414ceec
] - build: use$(BUILDTYPE)
when cleaning coverage files (Aviv Keller) #57995004913992c
] - build: define python when generatingout/Makefile
(Aviv Keller) #5797077d11f9c7c
] - build: fix zstd libname (Antoine du Hamel) #5799974473af8ee
] - build: use clang-cl in coverage-windows workflow (Michaël Zasso) #5791946fc497e7b
] - build: fix missing files warning (Luigi Pinca) #57870403264c02e
] - build: remove redundant-mXX
flags for V8 (Michaël Zasso) #57907e55b02b368
] - build: drop support for python 3.8 (Aviv Keller) #55239234c71077b
] - crypto: fix cross-realmSharedArrayBuffer
validation (Antoine du Hamel) #5797414367588d8
] - crypto: fix cross-realm check ofArrayBuffer
(Felipe Forbeck) #578280f55a96e9c
] - crypto: forbid passingFloat16Array
togetRandomValues()
(Livia Medeiros) #57880dce6f43a4f
] - crypto: revert dangerous uses of std::string_view (Tobias Nießen) #57816fd3fb0c347
] - crypto: fix misleading positional argument (Tobias Nießen) #5784392aae40dce
] - crypto: make auth tag size assumption explicit (Tobias Nießen) #578034793bb2fdc
] - crypto: remove CipherBase::Init (Tobias Nießen) #57787e567952388
] - crypto: remove BoringSSL dh-primes addition (Shelley Vohr) #57023270ab65ee4
] - deps: update ada to 3.2.3 (Node.js GitHub Bot) #58045f725127c19
] - deps: update zstd to 1.5.7 (Node.js GitHub Bot) #57940fd6adb7de6
] - deps: update simdutf to 6.5.0 (Node.js GitHub Bot) #57939cdedec7e29
] - deps: update undici to 7.8.0 (Node.js GitHub Bot) #57770878dc9337e
] - deps: update zlib to 1.3.0.1-motley-780819f (Node.js GitHub Bot) #577683e885e1441
] - deps: update timezone to 2025b (Node.js GitHub Bot) #57857e92e100c9d
] - deps: update amaro to 0.5.2 (Node.js GitHub Bot) #57871afc49db038
] - deps: update simdutf to 6.4.2 (Node.js GitHub Bot) #5785570bd8bc174
] - deps: delete OpenSSL demos, doc and test folders (Michaël Zasso) #5783540dcd4a3d1
] - deps: upgrade npm to 11.3.0 (npm team) #57801678d82b9be
] - deps: update c-ares to v1.34.5 (Node.js GitHub Bot) #57792f079c4aa37
] - deps: update simdutf to 6.4.0 (Node.js GitHub Bot) #56764ec29f563a9
] - deps: update ada to 3.2.2 (Yagiz Nizipli) #5769395296d0d84
] - deps: update amaro to 0.5.1 (Marco Ippolito) #57704c377394657
] - deps: update undici to 7.6.0 (nodejs-github-bot) #57685a56175561a
] - deps: update amaro to 0.5.0 (nodejs-github-bot) #57687a86912a462
] - deps: update icu to 77.1 (Node.js GitHub Bot) #574550b2cf1b642
] - deps: update undici to 7.5.0 (Node.js GitHub Bot) #57427c3927aa558
] - deps: upgrade npm to 11.2.0 (npm team) #573349c7bc95f56
] - deps: update undici to 7.4.0 (Node.js GitHub Bot) #572369dee7b94bf
] - deps: update undici to 7.3.0 (Node.js GitHub Bot) #56624cadc4ed067
] - deps: upgrade npm to 11.1.0 (npm team) #568185770972dc6
] - deps: update undici to 7.2.1 (Node.js GitHub Bot) #5656967b647edc7
] - deps: update undici to 7.2.0 (Node.js GitHub Bot) #563356c03beba46
] - deps: update undici to 7.1.0 (Node.js GitHub Bot) #561798b4bacdf1a
] - dns: restore dns query cache ttl (Ethan Arrowood) #57640f6a085da3f
] - doc: mark Node.js 18 as End-of-Life (Richard Lau) #58084ca67c002d6
] - doc: add dario-piotrowicz to collaborators (Dario Piotrowicz) #58102cdb3d01194
] - doc: fix formatting ofimport.meta.filename
section (Antoine du Hamel) #580790557d60f41
] - doc: fix env variable name inutil.styleText
(Antoine du Hamel) #58072d5783af1fe
] - doc: add returns for https.get (Eng Zer Jun) #58025a2260a4a18
] - doc: fix typo inbuffer.md
(chocolateboy) #58052352df168da
] - doc: reserve module version 136 for Electron 37 (Calvin) #57979ebbbdd15a1
] - doc: correct deprecation type ofassert.CallTracker
(René) #5799736b0a296db
] - doc: fixAsyncLocalStorage
example response changes after node v18 (Naor Tedgi (Abu Emma)) #579698b4adfb439
] - doc: fix linter errors (Antoine du Hamel) #57987626b26d888
] - doc: mark devtools integration section as active development (Chengzhong Wu) #5788656a808d20b
] - doc: fix typo inmodule.md
(Alex Schwartz) #57889df90bd9656
] - doc: increase z-index of header element (Dario Piotrowicz) #5785174c415d46a
] - doc: add missing TS formats forload
hooks (Antoine du Hamel) #57837ce1b5aabd4
] - doc: clarify the multi REPL example (Dario Piotrowicz) #57759deb434e61f
] - doc: fix deprecation type forDEP0148
(Livia Medeiros) #57785a5ef2e8858
] - doc: list DOMException as a potential error raised by Node.js (Chengzhong Wu) #57783f66a2717ee
] - doc: add missing v0.x changelog entries (Antoine du Hamel) #5777905098668ba
] - doc: fix typo in writing-docs (Sebastian Beltran) #57776379718e26e
] - doc: clarify examples section in REPL doc (Dario Piotrowicz) #57762952a212377
] - doc: explicitly state that corepack will be removed in v25+ (Trivikram Kamat) #5774781066717d0
] - doc: update position type to integer | null in fs (Yukihiro Hasegawa) #57745a00fec62f9
] - doc: allow the $schema property in node.config.json (Remco Haszing) #57560cc848986ad
] - doc: update CI instructions (Antoine du Hamel) #57743576a6df5bb
] - doc: update example of usingawait
in REPL (Dario Piotrowicz) #576530a15b00d34
] - doc: add back mention of visa fees to onboarding doc (Darshan Sen) #57730766d9a8eac
] - doc: remove link toQUIC.md
(Antoine du Hamel) #57729a8da209796
] - doc: process.execve is only unavailable for Windows (Yaksh Bariya) #57726d066d1fcec
] - doc: mark type stripping as release candidate (Marco Ippolito) #5770535096b7353
] - doc: clarifyunhandledRejection
events behaviors in process doc (Dario Piotrowicz) #5765427b113dced
] - doc: improved fetch docs (Alessandro Miliucci) #57296310ccb5b7d
] - doc: document REPL custom eval arguments (Dario Piotrowicz) #5769044dfbeca23
] - doc: classify Chrome DevTools Protocol as tier 2 (Chengzhong Wu) #576341e920a06c7
] - doc: mark multiple vm module APIS stable (James M Snell) #57513db770a0b3b
] - doc: correct status of require(esm) warning in v20 changelog (Joyee Cheung) #5752924c460dc0c
] - doc: reserve NMV 135 for Electron 36 (David Sanders) #571515119049ca6
] - doc: fix faulty YAML metadata (Antoine du Hamel) #565087bedcfd4a2
] - doc: fix typo (Alex Yang) #56125069ec1b983
] - doc: consolidate history table of CustomEvent (Edigleysson Silva (Edy)) #55758304f164f52
] - doc,build,win: update docs with clang (Stefan Stojanovic) #57991c4ca0d7ab1
] - esm: avoidimport.meta
setup costs for unused properties (Antoine du Hamel) #57286073d40be42
] - fs: added test for missing call to uv_fs_req_cleanup (Justin Nietzel) #5781152e4967f45
] - fs: add missing call to uv_fs_req_cleanup (Justin Nietzel) #578113edea66431
] - fs: improve globSync performance (Rich Trott) #57725b8865dfda5
] - fs: only show deprecation warning when error code matches (Antoine du Hamel) #56549c91ce2120c
] - fs: fixgetDirent().parentPath
when type isUV_DIRENT_UNKNOWN
(Livia Medeiros) #555535e9cac2714
] - http2: add raw header array support to h2Session.request() (Tim Perry) #57917924ebcd7f7
] - http2: use args.This() instead of args.Holder() (Joyee Cheung) #58004a3655645d9
] - http2: fix graceful session close (Kushagra Pandey) #57808406b06b046
] - http2: fix check forframe->hd.type
(hanguanqiang) #576448f3aeea613
] - http2: skip writeHead if stream is closed (Shima Ryuhei) #57686398674a25a
] - lib: avoid StackOverflow onserializeError
(Chengzhong Wu) #580754ef6376cff
] - lib: resolve the issue of not adhering to the specified buffer size (0hm☘️🏳️⚧️) #558965edcb28583
] - lib: fix AbortSignal.any() with timeout signals (Gürgün Dayıoğlu) #5786768c5954d59
] - lib: use Map primordial for ActiveAsyncContextFrame (Gürgün Dayıoğlu) #5767062640750fd
] - meta: allow penetration testing on live system with prior authorization (Matteo Collina) #5796633803a5fbb
] - meta: fix subsystem in commit title (Luigi Pinca) #579457e195ec8f8
] - meta: bump Mozilla-Actions/sccache-action from 0.0.8 to 0.0.9 (dependabot[bot]) #577206ab9db9552
] - meta: bump actions/download-artifact from 4.1.9 to 4.2.1 (dependabot[bot]) #57719f0c84a6aab
] - meta: bump actions/setup-python from 5.4.0 to 5.5.0 (dependabot[bot]) #57718eb1a515c99
] - meta: bump peter-evans/create-pull-request from 7.0.7 to 7.0.8 (dependabot[bot]) #5771789c156d715
] - meta: bump github/codeql-action from 3.28.10 to 3.28.13 (dependabot[bot]) #577168e27c827fa
] - meta: bump actions/cache from 4.2.2 to 4.2.3 (dependabot[bot]) #57715dd5e580acd
] - meta: bump actions/setup-node from 4.2.0 to 4.3.0 (dependabot[bot]) #577144876e1658f
] - meta: bump actions/upload-artifact from 4.6.1 to 4.6.2 (dependabot[bot]) #57713004914722f
] - module: fix incorrect formatting in require(esm) cycle error message (haykam821) #57453a5406899db
] - module: improvegetPackageType
performance (Dario Piotrowicz) #575996adbbe2887
] - module: remove unnecessaryreadPackage
function (Dario Piotrowicz) #575961e490aa570
] - module: improve typescript error message format (Marco Ippolito) #57687ecd081df82
] - node-api: add nested object wrap and napi_ref test (Chengzhong Wu) #57981b4f6aa8a87
] - node-api: convert NewEnv to node_napi_env__::New (Vladimir Morozov) #578348cd98220af
] - os: fix netmask format check condition in getCIDR function (Wiyeong Seo) #573248b83ab39e3
] - process: disable building execve on IBM i (Abdirahim Musse) #578839230f22029
] - process: remove support for undocumented symbol (Antoine du Hamel) #565525835de65ee
] - quic: fix debug log (jakecastelli) #5768914b357940c
] - Revert "readline: add stricter validation for functions called after closed" (Dario Piotrowicz) #58024ab99ee6f4c
] - repl: fix multiline history editing string order (Giovanni Bucci) #57874160da87484
] - repl: deprecaterepl.builtinModules
(Dario Piotrowicz) #5750810eb2b079e
] - sqlite: add location method (Edy Silva) #57860da05addc5e
] - sqlite: add getter to detect transactions (Colin Ihrig) #579250df87e07a0
] - sqlite: add timeout options to DatabaseSync (Edy Silva) #577522b2a0bf96b
] - sqlite: add setReturnArrays method to StatementSync (Gürgün Dayıoğlu) #57542064e0ebc90
] - sqlite: enable common flags (Edy Silva) #5762126fa594454
] - sqlite: refactor prepared statement iterator (Colin Ihrig) #575690bf2c2827c
] - sqlite,doc,test: add aggregate function (Edy Silva) #56600da281d7651
] - sqlite,src: refactor sqlite value conversion (Edy Silva) #57571413e93ce7d
] - src: only block on user blocking worker tasks (Joyee Cheung) #58047a5d01667e1
] - src: use priority queue to run worker tasks (Joyee Cheung) #58047d2f5ceb757
] - src: add more debug logs and comments in NodePlatform (Joyee Cheung) #58047130eaa20a4
] - src: improve parsing of boolean options (Edy Silva) #58039f7ab6300de
] - src: remove unused detachArrayBuffer method (Yagiz Nizipli) #58055d712aa4cc0
] - src: fix internalModuleStat v8 fast path (Yagiz Nizipli) #58054902cbe66a2
] - src: fix EnvironmentOptions.async_context_frame default value (Chengzhong Wu) #58030cfb39b9adb
] - src: annotate BaseObjects in the heap snapshots correctly (Joyee Cheung) #574174e02f239e4
] - src: use macros to reduce code duplication is cares_wrap (James M Snell) #57937f36d30043a
] - src: improve error handling in cares_wrap (James M Snell) #5793788f047b828
] - src: use ranges library (C++20) to simplify code (Daniel Lemire) #5797509206e9731
] - src: fix -Wunreachable-code-return in node_sea (Shelley Vohr) #5766487fd838a73
] - src: add dcheck_eq for Object::New constructor calls (Jonas) #579432877207e19
] - src: move windows specific fns to_WIN32
(Yagiz Nizipli) #57951b4055150bd
] - src: avoid calling SetPrototypeV2() (Yagiz Nizipli) #5794946062f14e7
] - src: change DCHECK to CHECK (Wuli Zuo) #57948a1106cc878
] - src: improve thread safety of TaskQueue (Shelley Vohr) #5791099ed5034ea
] - src: fixup errorhandling more in various places (James M Snell) #57852227f2cb9a8
] - src: fix typo in comments (Edy Silva) #57868a7d614a930
] - src: update std::vector<v8::Local<T>> to use v8::LocalVector<T> (Aditi) #576464e7ae97dce
] - src: update std::vector<v8::Local<T>> to use v8::LocalVector<T> (Aditi) #57642aab4adb34e
] - src: update std::vector<v8::Local<T>> to use v8::LocalVector<T> (Aditi) #57578fded233676
] - src: migrate from deprecated SnapshotCreator constructor (Joyee Cheung) #553378c5f9b4708
] - src: improve error message for invalid child stdio type in spawn_sync (Dario Piotrowicz) #5758914d751a736
] - src: implement util.types fast API calls (Ruben Bridgewater) #578195e14fd13aa
] - src: enter and lock isolate properly in json parser (Joyee Cheung) #5782334350019f8
] - src: add BaseObjectPtr nullptr operations (Chengzhong Wu) #56585d50b8a8815
] - src: removevoid*
->char*
->void*
casts (Tobias Nießen) #577912b0f65ed5f
] - src: improve error handling innode_env_var.cc
(Antoine du Hamel) #57767fc5295521a
] - src: improve error handling in node_http2 (James M Snell) #57764c707633f45
] - src: improve error handing in node_messaging (James M Snell) #577604093de6ff5
] - src: improve error handling in crypto_x509 (James M Snell) #57757d309712820
] - src: improve error handling in callback.cc (James M Snell) #577586d39c47ee8
] - src: improve StringBytes error handling (James M Snell) #577063ff37a844f
] - src: initialize privateSymbols for per_context (Jason Zhang) #5747956380df40c
] - src: improve error handling in process.env handling (James M Snell) #57707db8b29d282
] - src: remove unused variable in crypto_x509.cc (Michaël Zasso) #57754ed72044cca
] - src: update std::vector<v8::Local<T>> to use v8::LocalVector<T> (Aditi) #5773350f57073d8
] - src: fix kill signal 0 on Windows (Stefan Stojanovic) #57695e144b69044
] - src: fixup fs SyncCall to propagate errors correctly (James M Snell) #57711f58c12078b
] - src: fix inefficient usage of v8_inspector::StringView (Simon Zünd) #52372a3ad331ce5
] - src: disable abseil deadlock detection (Chengzhong Wu) #57582e4ff2b6fad
] - src: remove deleted tls file (Shelley Vohr) #57481d5db63a1a8
] - Revert "src: do not expose simdjson.h in node_config_file.h" (James M Snell) #57197076a99f11d
] - src: do not expose simdjson.h in node_config_file.h (Cheng) #57173ad845588d0
] - Revert "src: modernize cleanup queue to use c++20" (Richard Lau) #56846581b44421a
] - src: modernize cleanup queue to use c++20 (Yagiz Nizipli) #56063a154352215
] - src,permission: make ERR_ACCESS_DENIED more descriptive (Rafael Gonzaga) #575856156f8a6d5
] - Revert "stream: handle generator destruction from Duplex.from()" (jakecastelli) #56278a0077c9b8b
] - test: remove deadlock workaround (Joyee Cheung) #580471f2b26172a
] - test: prevent extraneous HOSTNAME substitution in test-runner-output (René) #580769ba16469c3
] - test: update WPT for WebCryptoAPI tob48efd6
(Node.js GitHub Bot) #580443d708e0132
] - test: add missing newlines to repl .exit writes (Dario Piotrowicz) #580413457aee009
] - test: use validateByRetainingPath in heapdump tests (Joyee Cheung) #574173d34c5f5e3
] - test: add fast api tests for getLibuvNow() (Yagiz Nizipli) #58022b8b019245b
] - test: add ALS test using http agent keep alive (Gerhard Stöbich) #58017cbd2abeb8d
] - test: deflake test-http2-options-max-headers-block-length (Luigi Pinca) #5795921d052a578
] - test: rename to getCallSites (Wuli Zuo) #57948f2fd19e641
] - test: force GC in test-file-write-stream4 (Luigi Pinca) #579307039173398
] - test: enable skipped colorize test (Shima Ryuhei) #57887baa6968f95
] - test: update WPT for WebCryptoAPI to164426a
(Node.js GitHub Bot) #57854660d238798
] - test: deflake test-buffer-large-size (jakecastelli) #57789ce2274d52f
] - test: add test for frame count being 0.5 (Jake Yuesong Li) #577329d2a09db00
] - test: fix the decimal fractions explaination (Jake Yuesong Li) #5773212f4124af8
] - Revert "test: add tests for REPL custom evals" (Tobias Nießen) #577933cdf8ec7c7
] - test: add tests for REPL custom evals (Dario Piotrowicz) #576919af8b92fb4
] - test: update expected error message for macOS (Antoine du Hamel) #57742eaec2b5169
] - test: fix dangling promise in test_runner no isolation test setup (Jacob Smith) #5759551ded6eaeb
] - test: improve test description (jakecastelli) #5694375b9c1cdd8
] - test: remove test-macos-app-sandbox flaky designation (Luigi Pinca) #5647172537f5631
] - test: remove flaky test-pipe-file-to-http designation (Luigi Pinca) #56472984a472137
] - test: remove test-runner-watch-mode-complex flaky designation (Luigi Pinca) #5647023275cc7bc
] - test: add test case forutil.inspect
(Jordan Harband) #5577899e4685636
] - test_runner: support mocking json modules (Jacob Smith) #580078207828aad
] - test_runner: recalculate run duration on watch restart (Pietro Marchini) #577867416a7f35a
] - test_runner: match minimum file column to 'all files' (Shima Ryuhei) #5784887ac6cfed7
] - test_runner: improve --test-timeout to be per test (jakecastelli) #57672ae08210e37
] - tools: ignore V8 tests in CodeQL scans (Rich Trott) #5808125c17ab365
] - tools: enable CodeQL config file (Rich Trott) #58036c3d2a1c723
] - tools: ignore test directory in CodeQL scans (Rich Trott) #57978d31e630462
] - tools: add semver-major release support to release-lint (Antoine du Hamel) #578923a99975a88
] - tools: add codeql nightly (Rafael Gonzaga) #5778877dee41a5d
] - tools: edit create-release-proposal workflow to handle pr body length (Elves Vieira) #578416592803bd0
] - tools: add zstd updater to workflow (KASEYA\yahor.siarheyenka) #57831c08349393b
] - tools: remove unusedosx-pkg-postinstall.sh
(Antoine du Hamel) #5766782bb228796
] - tools: do not use temp files when merging PRs (Antoine du Hamel) #57790f2cdc98e75
] - tools: update gyp-next to 0.20.0 (Node.js GitHub Bot) #5768302d36cd61d
] - tools: update doc to new version (Node.js GitHub Bot) #5776974ac98c78e
] - tools: bump the eslint group in /tools/eslint with 4 updates (dependabot[bot]) #57721dcba975031
] - tools: enable linter intest/fixtures/source-map/output
(Antoine du Hamel) #57700b9043c9e9b
] - tools: enable linter intest/fixtures/errors
(Antoine du Hamel) #57701bbbf49812e
] - tools: enable linter intest/fixtures/test-runner/output
(Antoine du Hamel) #576989f1ad3c6da
] - tools: enable linter intest/fixtures/eval
(Antoine du Hamel) #5769998df74464f
] - tools: enable linter on some fixtures file (Antoine du Hamel) #57674cf02cdb799
] - tools: update ESLint to 9.23 (Antoine du Hamel) #576738790348303
] - tools: update doc to new version (Node.js GitHub Bot) #57085b1ee186a62
] - tools: update doc to new version (Node.js GitHub Bot) #51192be34b5e7fc
] - tools: disable doc building when ICU is not available (Antoine du Hamel) #511926a486347fb
] - url: improve canParse() performance for non-onebyte strings (Yagiz Nizipli) #580237e3503fff1
] - util: fix parseEnv handling of invalid lines (Augustin Mauroy) #57798594269fcca
] - util: fix formatting of objects with built-in Symbol.toPrimitive (Shima Ryuhei) #578328ca56a8db8
] - util: preservelength
of deprecated functions (Livia Medeiros) #578066add4c56aa
] - util: fix parseEnv incorrectly splitting multiple ‘=‘ in value (HEESEUNG) #57421e577618227
] - util: inspect: enumerable Symbols no longer have square brackets (Jordan Harband) #55778cb7eb15161
] - watch: clarify completion/failure watch mode messages (Dario Piotrowicz) #5792665562127bd
] - watch: check parent and child path properly (Jason Zhang) #57425b39fb9aa7f
] - win: fix SIGQUIT on ClangCL (Stefan Stojanovic) #5765976c5ea669d
] - worker: add ESM version examples to worker docs (fisker Cheung) #5764517965eb33d
] - zlib: fix pointer alignment (jhofstee) #57727v23.11.0
: 2025-04-01, Version 23.11.0 (Current), @aduh95Compare Source
Notable Changes
64b086740a
] - (SEMVER-MINOR) assert: implement partial error comparison (Ruben Bridgewater) #57370053cef70e0
] - (SEMVER-MINOR) crypto: add optional callback tocrypto.diffieHellman
(Filip Skokan) #57274f8aff90235
] - (SEMVER-MINOR) process: addexecve
(Paolo Insogna) #564964b04c92d7d
] - (SEMVER-MINOR) sqlite: addStatementSync.prototype.columns()
(Colin Ihrig) #574901b8d1d3a3a
] - (SEMVER-MINOR) util: expose diff function used by the assertion errors (Giovanni Bucci) #57462Commits
7b72396c8b
] - assert: improve partialDeepStrictEqual performance (Ruben Bridgewater) #5750964b086740a
] - (SEMVER-MINOR) assert: implement partial error comparison (Ruben Bridgewater) #57370f694d7de0e
] - (SEMVER-MINOR) assert: improve partialDeepStrictEqual (Ruben Bridgewater) #5737080d9d5653f
] - (SEMVER-MINOR) assert,util: improve performance (Ruben Bridgewater) #57370d52a71f832
] - (SEMVER-MINOR) benchmark: adjust assert runtimes (Ruben Bridgewater) #573707592cf4cd7
] - (SEMVER-MINOR) benchmark: skip running some assert benchmarks by default (Ruben Bridgewater) #57370e4cc54a746
] - (SEMVER-MINOR) benchmark: add assert partialDeepStrictEqual benchmark (Ruben Bridgewater) #57370de48407011
] - build: fix update-wpt workflow (Jonas) #5746852cd0954f9
] - cli: clarify --cpu-prof-name allowed values (Eugenio Ceschia) #574337611fc14de
] - crypto: fix output of privateDecrypt with zero-length data (Filip Skokan) #57575cc42ee8fc7
] - crypto: ensure expected JWK alg in SubtleCrypto.importKey RSA imports (Filip Skokan) #57450053cef70e0
] - (SEMVER-MINOR) crypto: add optional callback to crypto.diffieHellman (Filip Skokan) #572741f08864fd7
] - debugger: fix behavior of plain object exec in debugger repl (Dario Piotrowicz) #57498162b2828eb
] - deps: update undici to 6.21.2 (Matteo Collina) #5744243bea6bb80
] - deps: V8: cherry-pickc172ffc
(Choongwoo Han) #5743799f93afb9d
] - deps: update ada to v3.2.1 (Yagiz Nizipli) #5742930e5658f12
] - deps: update googletest to0bdccf4
(Node.js GitHub Bot) #57380573467c070
] - deps: update acorn to 8.14.1 (Node.js GitHub Bot) #57382affeaac0c7
] - doc: add gurgunday as triager (Gürgün Dayıoğlu) #575944ed1a098f5
] - doc: clarify behaviour of node-api adjust function (Michael Dawson) #57463921041b284
] - doc: remove Corepack documentation (Antoine du Hamel) #5763599dbd8b391
] - doc: remove mention of--require
not supporting ES modules (Huáng Jùnliàng) #576208c76b2949e
] - doc: mention reports should align with Node.js CoC (Rafael Gonzaga) #57607ee1c78a7a3
] - doc: add section stating that very stale PRs should be closed (Dario Piotrowicz) #57541595e9e5ad6
] - doc: add bjohansebas as triager (Sebastian Beltran) #575643742d2a198
] - doc: update support channels (Claudio W.) #57538717c44dead
] - doc: make stability labels more consistent (Antoine du Hamel) #57516b4576a6f57
] - doc: remove cryptoStream API reference (Jonas) #575792c4f894036
] - doc: module resolution pseudocode corrections (Marcel Laverdet) #57080c45894f90c
] - doc: add history entry for DEP0190 inchild_process.md
(Antoine du Hamel) #57544c21068b696
] - doc: remove deprecated pattern inchild_process.md
(Antoine du Hamel) #5756887e0dda352
] - doc: mark multiple experimental APIS as stable (James M Snell) #57510d637763e4e
] - doc: remove mertcanaltin from Triagers (Mert Can Altin) #57531ee6025495d
] - doc: recommend watching the collaborators repo in the onboarding doc (Darshan Sen) #57527706b64638b
] - doc: remove mention of visa fees from onboarding doc (Darshan Sen) #57526176d951bd0
] - doc: deprecate passingargs
tospawn
andexecFile
(Antoine du Hamel) #573895c05ba119b
] - doc: remove some inconsistencies indeprecations.md
(Antoine du Hamel) #575129d5be4bb8c
] - doc: run license-builder (github-actions[bot]) #57511273607edb4
] - doc: add new writing-docs contributing md (Dario Piotrowicz) #57502e28c723f24
] - doc: add node.js streams references to Web Streams doc (Dario Piotrowicz) #5739347296492ba
] - doc: replace NOTEs that do not render properly (Colin Ihrig) #57484db9c37f792
] - doc: prefer to sign commits under nodejs repository (Rafael Gonzaga) #57311e5e3987ae7
] - doc: fixed the incorrect splitting of multiple words (letianpailove) #5745491a824e43b
] - doc: add review guidelines for collaborator nominations (Antoine du Hamel) #574492a5fcb2172
] - doc: fix typo inurl.md
(Allon Murienik) #5746717ccf9282f
] - doc: add history info for --use-system-ca (Darshan Sen) #574329adaaeb965
] - doc: remove typo YAML snippet from tls.getCACertificates doc (Darshan Sen) #57459ee4e855f8e
] - doc: fix typo in sqlite.md (Tobias Nießen) #574738cb3441443
] - doc: explicit mention arbitrary code execution as a vuln (Rafael Gonzaga) #5742627f183ad03
] - doc: update maintaining-openssl.md for openssl (Richard Lau) #57413ca67145d60
] - doc: add missingdeprecated
badges infs.md
(Yukihiro Hasegawa) #573843687390510
] - doc: fix small typo inprocess.md
(Felix Rieseberg) #57333097d9926e3
] - doc: add note about sync nodejs-private branches (Rafael Gonzaga) #574045006627969
] - fs: apply exclude function to root path (Rich Trott) #574200583c3db92
] - http: coerce content-length to number (Marco Ippolito) #574582a580b9332
] - lib: add warning when binding inspector to public IP (Demian Parkhomenko) #55736fda56b9837
] - lib: limit split function calls to prevent excessive array length (Gürgün Dayıoğlu) #57501d5a26f6525
] - lib: make getCallSites sourceMap option truly optional (James M Snell) #5738800a5b18043
] - meta: add some clarification to the nomination process (James M Snell) #57503d0c96c463c
] - meta: remove collaborator self-nomination (Rich Trott) #57537a9a93f31ee
] - meta: edit collaborator nomination process (Antoine du Hamel) #574830ca362f5f2
] - meta: move ovflowd to emeritus (Claudio W.) #57443f8aff90235
] - (SEMVER-MINOR) process: add execve (Paolo Insogna) #56496e8d4a31d4b
] - sqlite: add support for unknown named parameters (Colin Ihrig) #575525652da642d
] - sqlite: add DatabaseSync.prototype.isOpen (Colin Ihrig) #575225c976f16cd
] - sqlite: add DatabaseSync.prototype[Symbol.dispose]() (Colin Ihrig) #575064b04c92d7d
] - (SEMVER-MINOR) sqlite: add StatementSync.prototype.columns() (Colin Ihrig) #574907f5e31645c
] - src: ensure primordials are initialized exactly once (Chengzhong Wu) #575199611980f58
] - src: improve error handling in multiple files (James M Snell) #575073ddc5cd875
] - src: cache urlpattern properties (JonasBa) #57465b9d9ee4da2
] - src: make minor cleanups in encoding_binding.cc (James M Snell) #57448f8acf2dd2a
] - src: make minor cleanups in compile_cache.cc (James M Snell) #574486ee15c6509
] - src: define urlpattern components using a macro (JonasBa) #574524ab3c1690a
] - src: cleanup crypto more (James M Snell) #573235be80b1748
] - src: refine ncrypto more (James M Snell) #573006a13319a6e
] - src: cleanup aliased_buffer.h (Mohammed Keyvanzadeh) #573953cff7f80bb
] - src: suggest --use-system-ca when a certificate error occurs (Aditi) #573623d372ad9f3
] - test: update WPT for urlpattern to6ceca69
(Node.js GitHub Bot) #57486481ea665af
] - test: add more number cases for buffer.indexOf (Meghan Denny) #5720027b01ed4e7
] - test: update parallel/test-tls-dhe for OpenSSL 3.5 (Richard Lau) #574778f7debcf41
] - timers: optimize timer functions with improved argument handling (Gürgün Dayıoğlu) #57072d4abd9d3fb
] - timers: remove unnecessary allocation of _onTimeout (Gürgün Dayıoğlu) #57497f8f81c8ba2
] - timers: remove unused parameter from insertGuarded (Gürgün Dayıoğlu) #57251c4fdb27b51
] - tls: remove unnecessary type check on normalize (Yagiz Nizipli) #57336ad5dcc5798
] - tools: fix WPT update cron string (Antoine du Hamel) #576657faa482588
] - tools: remove stalled label on unstalled issues and PRs (Rich Trott) #57630e3bb26da2b
] - tools: update sccache to support GH cache changes (Michaël Zasso) #57573f0c9f505d9
] - tools: bump @babel/helpers from 7.26.9 to 7.26.10 in /tools/eslint (dependabot[bot]) #57444a40ff1f646
] - url: fix constructor error message for URLPattern (jakecastelli) #57482f36bee4b89
] - util: avoid run debug when enabled is false (fengmk2) #574941b8d1d3a3a
] - (SEMVER-MINOR) util: expose diff function used by the assertion errors (Giovanni Bucci) #574621f7b08a317
] - win,test: disable test case failing with ClangCL (Stefan Stojanovic) #57397v23.10.0
: 2025-03-13, Version 23.10.0 (Current), @aduh95Compare Source
Notable Changes
Introducing
--experimental-config-file
With the introduction of test runner, SEA, and other feature that require a lot
of flags, a JSON config flag would improve by a lot the developer experience and
increase adoption.
You can have a
node.config.json
containing:You can run your tests without passing the flags defined in the config file.
or
Node.js will not sanitize or perform validation on the user-provided configuration,
so only ever use trusted configuration files.
Contributed by Marco Ippolito in #57016
and #57171.
Other Notable Changes
323e3ac93c
] - crypto: update root certificates to NSS 3.108 (Node.js GitHub Bot) #573816fd2ec6816
] - doc: add@geeksilva97
to collaborators (Edy Silva) #57241d8937f1742
] - (SEMVER-MINOR) src: createTHROW_ERR_OPTIONS_BEFORE_BOOTSTRAPPING
(Marco Ippolito) #570165054fc7941
] - (SEMVER-MINOR) test_runner: change ts default glob (Marco Ippolito) #5735975f11ae1cc
] - (SEMVER-MINOR) tls: implementtls.getCACertificates()
(Joyee Cheung) #57107a22c21ceb8
] - (SEMVER-MINOR) v8: addv8.getCppHeapStatistics()
method (Aditi) #57146Commits
2daee76b26
] - assert: improve myers diff performance (Giovanni Bucci) #572792fbd3bbea7
] - build: fix compatibility with V8'sdepot_tools
(Richard Lau) #573306a2e4c5fc1
] - build,win: disable node pch with ccache (Stefan Stojanovic) #57224323e3ac93c
] - crypto: update root certificates to NSS 3.108 (Node.js GitHub Bot) #57381906f23d0e7
] - crypto: add support for intermediate certs in --use-system-ca (Tim Jacomb) #5716403cd7920c8
] - deps: update simdjson to 3.12.2 (Node.js GitHub Bot) #570849e1fce9a5c
] - deps: update archs files for openssl-3.0.16 (Node.js GitHub Bot) #573354056c1f83e
] - deps: upgrade openssl sources to quictls/openssl-3.0.16 (Node.js GitHub Bot) #57335b402799070
] - deps: update corepack to 0.32.0 (Node.js GitHub Bot) #57265ce1cfff79a
] - deps: update amaro to 0.4.1 (marco-ippolito) #571210ac977d679
] - deps: update gyp file for ngtcp2 1.11.0 (Richard Lau) #57225f34d78df1f
] - deps: update ada to 3.1.3 (Node.js GitHub Bot) #572224fe9916701
] - dns: remove redundant code using common variable (Deokjin Kim) #573861c271b162b
] - doc: make first parameter optional inutil.getCallSites
(Deokjin Kim) #5738777668fffec
] - doc: fix usage of module.registerSync in comment (Timo Kössler) #573289b4f7aac69
] - doc: add Darshan back as voting TSC member (Michael Dawson) #57402d44ccb319c
] - doc: revise webcrypto.md types, interfaces, and added versions (Filip Skokan) #57376f4de7cef01
] - doc: add info on how project manages social media (Michael Dawson) #57318792ef16921
] - doc: revisetsconfig.json
note (Steven) #573534e438c3fa3
] - doc: use more clear name in getSystemErrorMessage's example (ikuma-t) #573105c9f1a40e4
] - doc: recommend settingnoEmit: true
intsconfig.json
(Steven) #57320e178acf9d8
] - doc: ping nodejs/tsc for each security pull request (Rafael Gonzaga) #57309fbe464e28c
] - doc: fix Windows ccache section position (Stefan Stojanovic) #573263fe8eac0ba
] - doc: update node-api version matrix (Chengzhong Wu) #57287d2f49e7fcf
] - doc: recommenderasableSyntaxOnly
in ts docs (Rob Palmer) #5727103844d99f8
] - doc: clarifypath.isAbsolute
is not path traversal mitigation (Eric Fortis) #570730f8cd32986
] - doc: fix rendering of DEP0174 description (David Sanders) #56835f95ecca71f
] - doc: add 1ilsang to triage team (1ilsang) #571836fd2ec6816
] - doc: add @geeksilva97 to collaborators (Edy Silva) #57241b74e0ff7d7
] - doc: add missing assert return types (Colin Ihrig) #5721983eed33562
] - doc: add streamResetBurst and streamResetRate (Sujal Raj) #571957f48811295
] - doc: add esm examples to node:util (Alfredo González) #567935c20dcc166
] - esm: fix module.exports export on CJS modules (Guy Bedford) #57366041a217a4d
] - fs: fix rmSync error code (Paul Schwabauer) #57103cea50b7f39
] - lib: optimize priority queue (Gürgün Dayıoğlu) #571005204d495ae
] - meta: bump codecov/codecov-action from 5.3.1 to 5.4.0 (dependabot[bot]) #5725789599be988
] - meta: bump github/codeql-action from 3.28.8 to 3.28.10 (dependabot[bot]) #5725466cd3850bc
] - meta: bump ossf/scorecard-action from 2.4.0 to 2.4.1 (dependabot[bot]) #572536c22e446bc
] - meta: set nodejs/config as codeowner (Marco Ippolito) #57237ee5ce5ccde
] - meta: move RaisinTen back to collaborators, triagers and SEA champion (Darshan Sen) #572920b0c9cc0f5
] - meta: bump actions/download-artifact from 4.1.8 to 4.1.9 (dependabot[bot]) #57260e6a98af8bd
] - meta: bump peter-evans/create-pull-request from 7.0.6 to 7.0.7 (dependabot[bot]) #5725991394aaf3d
] - meta: bump step-security/harden-runner from 2.10.4 to 2.11.0 (dependabot[bot]) #5725863dbbe7c91
] - meta: bump actions/cache from 4.2.0 to 4.2.2 (dependabot[bot]) #57256d5ccf174ad
] - meta: bump actions/upload-artifact from 4.6.0 to 4.6.1 (dependabot[bot]) #5725546b06be9a3
] - module: handle cached linked async jobs in require(esm) (Joyee Cheung) #57187718305db6f
] - module: add dynamic file-specific ESM warnings (Mert Can Altin) #566284762f4ada5
] - net: validate non-string host for socket.connect (Daeyeon Jeong) #57198d07bd79ac5
] - net: replace brand checks with identity checks (Yagiz Nizipli) #57341a757f00747
] - net: emit an error when custom lookup resolves to a non-string address (Edy Silva) #57192984f7ef5bd
] - readline: add support forSymbol.dispose
(Antoine du Hamel) #5727621b6423b9b
] - sqlite: reset statement immediately in run() (Colin Ihrig) #57350e80bbb7355
] - sqlite,test,doc: allow Buffer and URL as database location (Edy Silva) #569913dc3207298
] - src: do not pass nullptr to std::string ctor (Charles Kerr) #573545e51c62569
] - src: fix process exit listeners not receiving unsettled tla codes (Dario Piotrowicz) #56872bf788d9d86
] - src: refactor SubtleCrypto algorithm and length validations (Filip Skokan) #5731937664e8485
] - src: fix node_config_file.h compilation error in GN build (Cheng) #57210274c18a365
] - (SEMVER-MINOR) src: set default config as node.config.json (Marco Ippolito) #57171433657de8c
] - src: namespace config file flags (Marco Ippolito) #57170d8937f1742
] - (SEMVER-MINOR) src: create THROW_ERR_OPTIONS_BEFORE_BOOTSTRAPPING (Marco Ippolito) #570169fd217daa9
] - (SEMVER-MINOR) src: add config file support (Marco Ippolito) #57016b17163b130
] - src: allow embedder customization of OOMErrorHandler (Shelley Vohr) #573256f1c622466
] - src: use Maybe<void> in ProcessEmitWarningSync (Daeyeon Jeong) #572504d86a42aa4
] - src: remove redundant qualifiers in src/quic (Yagiz Nizipli) #5696741ea5a2864
] - src: make even more improvements to error handling (James M Snell) #572647a554d9bf3
] - src: use cachedemit
v8::String (Daeyeon Jeong) #57249b10ac9a958
] - src: refactor SubtleCrypto algorithm and length validations (Filip Skokan) #5727390cd780ca6
] - src: make more error handling improvements (James M Snell) #5726217c9e76722
] - src: fix typo in comment (Antoine du Hamel) #5729135c283a3f3
] - src: reduce string allocations on sqlite (Yagiz Nizipli) #57227185d1ffe93
] - src: improve error handling innode_messaging.cc
(James M Snell) #5721196b2bfb88c
] - src: improve error handling intty_wrap.cc
(James M Snell) #57211f845ad953e
] - src: improve error handling intcp_wrap.cc
(James M Snell) #57211350f62de6c
] - src: fix ThrowInvalidURL call in PathToFileURL (Daniel M Brasil) #57141936a9997b2
] - src: improve error handling in buffer and dotenv (James M Snell) #57189975e2a5c1d
] - src: improve error handling in module_wrap (James M Snell) #571883d103ecfbe
] - src: improve error handling in spawn_sync (James M Snell) #5718598d328a1d6
] - src: detect whether the string is one byte representation or not (theweipeng) #5614715d7908656
] - stream: fix sizeAlgorithm validation in WritableStream (Daeyeon Jeong) #57280b866755299
] - test: test runner run plan (Pietro Marchini) #57304e05e0e5772
] - test: update WPT for urlpattern to3b6b198
(Node.js GitHub Bot) #5737736542b5611
] - test: update WPT for WebCryptoAPI toedd42c0
(Node.js GitHub Bot) #5736528792ee59a
] - test: skiptest-config-json-schema
with quic (Richard Lau) #572255a21fa4573
] - test: add more coverage to node_config_file (Marco Ippolito) #5717099b2369142
] - test: simplify test-tls-connect-abort-controller.js (Yagiz Nizipli) #573384af2f7f9a8
] - test: useassert.match
intest-esm-import-meta
(Antoine du Hamel) #5729099abfb6172
] - test: update compression wpt (Yagiz Nizipli) #56960f8dde3a391
] - test: skip uv-thread-name on IBM i (Abdirahim Musse) #572993bf546c317
] - Revert "test: temporary remove resource check from fs read-write" (Rafael Gonzaga) #569068d0f1a7dbf
] - test: module syntax should throw (Marco Ippolito) #571210fd3d91e3a
] - test: more common.mustNotCall in net, tls (Meghan Denny) #57246f803d6ca29
] - test: swap assert.strictEqual() parameters (Luigi Pinca) #57217eb3576fde0
] - test: assert write return values in buffer-bigint64 (Meghan Denny) #57212a08981025a
] - test: allow embedder running async context frame test (Shelley Vohr) #5719320c032ed98
] - test: resolve race condition in test-net-write-fully-async-* (Matteo Collina) #570225054fc7941
] - (SEMVER-MINOR) test_runner: change ts default glob (Marco Ippolito) #573590ad450f295
] - timers: simplify the compareTimersLists function (Gürgün Dayıoğlu) #5711075f11ae1cc
] - (SEMVER-MINOR) tls: implement tls.getCACertificates() (Joyee Cheung) #571072b2267f203
] - tools: add config subspace (Marco Ippolito) #572398e64d38e91
] - tools: import rather than require ESLint plugins (Michaël Zasso) #573152569e56b95
] - tools: switch back to official OpenSSL (Richard Lau) #57301fd49144378
] - tools: extract target abseil to abseil.gyp (Chengzhong Wu) #5728977e1a85d24
] - tools: revert to use @stylistic/eslint-plugin-js v3 (Joyee Cheung) #573142fa6e65262
] - tools: add more details about rolling inspector_protocol (Chengzhong Wu) #571675788574cdf
] - tools: bump the eslint group in /tools/eslint with 5 updates (dependabot[bot]) #572615955acadba
] - tools: remove deps/zlib/GN-scraper.py (Chengzhong Wu) #57238a22c21ceb8
] - (SEMVER-MINOR) v8: add v8.getCppHeapStatistics() method (Aditi) #5714617d4074114
] - win,build: add option to enable Control Flow Guard (Hüseyin Açacak) #56605v23.9.0
: 2025-02-26, Version 23.9.0 (Current), @targosCompare Source
Notable Changes
927d985aa0
] - (SEMVER-MINOR) dns: add TLSA record query and parsing (Rithvik Vibhu) #529830236fbf75a
] - (SEMVER-MINOR) process: add threadCpuUsage (Paolo Insogna) #56467Commits
f4a82fddb1
] - benchmark: add a warmup on bench-openSync (Elves Vieira) #57051b384baa073
] - build: print 'Formatting Markdown...' for long task markdown formatting (1ilsang) #57108fec2d50308
] - build: add skip_apidoc_files and include QUIC (RafaelGSS) #569415af35d1850
] - build: fix GN build failure (Cheng) #5701335f89aa66f
] - build: fix GN build of uv (Cheng) #56955e26d4841d1
] - cli: allow --cpu-prof* in NODE_OPTIONS (Carlos Espa) #57018b50fc42a99
] - crypto: support --use-system-ca on non-Windows and non-macOS (Joyee Cheung) #57009dfdaa92a37
] - crypto: fix missing OPENSSL_NO_ENGINE guard (Shelley Vohr) #5701218ea88bcbe
] - crypto: cleanup root certificates and skip PEM deserialization (Joyee Cheung) #569998076284f9e
] - deps: update cjs-module-lexer to 2.1.0 (Node.js GitHub Bot) #571808644cf3e5a
] - deps: update ngtcp2 to 1.11.0 (Node.js GitHub Bot) #571792aceca15d6
] - deps: update sqlite to 3.49.1 (Node.js GitHub Bot) #571788421021427
] - deps: update ada to 3.1.0 (Node.js GitHub Bot) #5708321d795a5f0
] - (SEMVER-MINOR) dns: add TLSA record query and parsing (Rithvik Vibhu) #52983455bf5a0a8
] - doc: update options to filehandle.appendFile() (Hasegawa-Yukihiro) #56972f35bd869ee
] - doc: add additional caveat for fs.watch (Michael Dawson) #571504413ce7ed3
] - doc: fix typo in Windows building instructions (Tim Jacomb) #5715866614cfcf3
] - doc: fix web.libera.chat link in pull-requests.md (Samuel Bronson) #57076587112cb08
] - doc: remove buffered flag from performance hooks examples (Pavel Romanov) #52607fdc8aeb8a0
] - doc: fix 'introduced_in' version in typescript module (1ilsang) #57109b6960499c8
] - doc: fix link and history ofSourceMap
sections (Antoine du Hamel) #570980de128ca97
] - doc: addmodule namespace object
links (Dario Piotrowicz) #570935a74568320
] - doc: disambiguate pseudo-code statement (Dario Piotrowicz) #5709246df14ddcb
] - doc: update clang-cl on Windows building guide (Joyee Cheung) #570874b02fdc72f
] - doc: update Xcode version used for arm64 and pkg (Michaël Zasso) #5710478d4e52a52
] - doc: fix wrong articles used to address modules (Dario Piotrowicz) #57090ed5671f1bc
] - doc: updatemodule.builtinModules
sentence (Dario Piotrowicz) #570899de45cbac9
] - doc:modules.md
: fixdistance
definition (Alexander “weej” Jones) #57046a7e5ef9e01
] - doc: fix wrong verb form (Dario Piotrowicz) #57091c02494f5fe
] - doc: fix transpiler loader hooks documentation (Joyee Cheung) #570375b2dfadd40
] - doc: add a note aboutrequire('../common')
in testing documentation (Aditi) #5695350ba04e214
] - doc: recommend writing tests in new files and including comments (Joyee Cheung) #570286951133e1a
] - doc: improve documentation on argument validation (Aditi) #5695444dd8a5cc2
] - doc: buffer: fix typo onBuffer.copyBytesFrom(
offset
option (tpoisseau) #57015c011271a70
] - doc: update cleanup to trust on vuln db automation (Rafael Gonzaga) #57004a6b7bce3a0
] - doc: move stability index after history section for consistency (Antoine du Hamel) #569973bc6d626b4
] - doc: addsignal
tofilehandle.writeFile()
options (Yukihiro Hasegawa) #568042990cc8616
] - doc: run license-builder (github-actions[bot]) #5698540f3a516bf
] - fs: handle UV_ENOTDIR infs.statSync
withthrowIfNoEntry
provided (Juan José Arboleda) #56996e10ef275e8
] - inspector: convert event params to protocol without json (Chengzhong Wu) #57027d6234b4652
] - inspector: skip promise hook in the inspector async hook (Joyee Cheung) #57148aa817853cd
] - lib: fixup more incorrect ERR_INVALID_ARG_VALUE uses (James M Snell) #57177e08d7d4e53
] - lib: fixup incorrect argument order in assertEncoding (James M Snell) #57177f77069b4e0
] - meta: bumpactions/setup-python
from 5.3.0 to 5.4.0 (dependabot[bot]) #5686735cdd9b9fe
] - meta: bumppeter-evans/create-pull-request
from 7.0.5 to 7.0.6 (dependabot[bot]) #568663d61604f2a
] - meta: bumpmozilla-actions/sccache-action
from 0.0.6 to 0.0.7 (dependabot[bot]) #568650dd0108fc5
] - meta: bumpcodecov/codecov-action
from 5.0.7 to 5.3.1 (dependabot[bot]) #5686458d70369e3
] - meta: bumpstep-security/harden-runner
from 2.10.2 to 2.10.4 (dependabot[bot]) #56863dfd42db739
] - meta: bumpactions/cache
from 4.1.2 to 4.2.0 (dependabot[bot]) #568627f5f02ba2b
] - meta: bumpactions/stale
from 9.0.0 to 9.1.0 (dependabot[bot]) #5686085ac02f8d3
] - meta: bumpgithub/codeql-action
from 3.27.5 to 3.28.8 (dependabot[bot]) #56859d62299b021
] - meta: add CODEOWNERS for SQLite (Colin Ihrig) #571472ec4ff17a6
] - meta: update last name for jkrems (Jan Martin) #57006ad3c572027
] - module: improve error message from asynchronicity in require(esm) (Joyee Cheung) #57126cc1cafd562
] - module: allow omitting context in synchronous next hooks (Joyee Cheung) #57056c6ddfa52fb
] - (SEMVER-MINOR) process: add threadCpuUsage (Paolo Insogna) #56467ac35106625
] - sea: suppress builtin warning with disableExperimentalSEAWarning option (koooge) #57086ef314dc773
] - src: fix crash when lazy getter is invoked in a vm context (Chengzhong Wu) #5716890a4de02b6
] - src: do not format single string argument for THROW_ERR_* (Joyee Cheung) #57126e0a91f631b
] - src: gate all quic behind disabled-by-default compile flag (James M Snell) #571427dd326e3a7
] - src: move instead of copy shared pointer in node_blob (Michaël Zasso) #57120e3127b89a2
] - src: replace NewFromUtf8 with OneByteString where appropriate (James M Snell) #5709656f9fe7514
] - src: portdefineLazyProperties
to native code (Antoine du Hamel) #5708190875ba0ca
] - src: improve error handling in node_blob (James M Snell) #570785414eb48b5
] - src: improve error handling in multiple files (James M Snell) #56962286bb84188
] - src: fix accessing empty string (Cheng) #57014fa26f83e5b
] - src: lock the isolate properly in IsolateData destructor (Joyee Cheung) #570317e2dac9fcc
] - src: add self-assigment memcpy checks (Burkov Egor) #56986d8e70dcaa6
] - src: improve node::Dotenv trimming (Dario Piotrowicz) #5698341f444fa78
] - src: improve error handling in string_bytes/decoder (James M Snell) #56978d0ee8c0a20
] - src: improve error handling in process_wrap (James M Snell) #569771a244177a3
] - test: add doAppendAndCancel test (Hasegawa-Yukihiro) #5697251dff8b1ae
] - test: fix test-without-async-context-frame.mjs in debug mode (Joyee Cheung) #570347c7e9f4d84
] - test: make eval snapshot comparison more flexible (Shelley Vohr) #57020315244e59e
] - test: simplify test-http2-client-promisify-connect-error (Luigi Pinca) #57144ccf496cff9
] - test: improve error output of test-http2-client-promisify-connect-error (Antoine du Hamel) #57135a588066518
] - test: add case for unrecognised fields within pjson "exports" (Jacob Smith) #57026b369ad6e45
] - test: remove unnecessary assert requiring from tests (Dario Piotrowicz) #570089b98ac6a81
] - test: update WPT for urlpattern toef6d83d
(Node.js GitHub Bot) #569840a82d27d28
] - test: reduce flakiness on test-net-write-fully-async-buffer (Yagiz Nizipli) #56971ab150d7781
] - test: remove flakiness on macOS test (Yagiz Nizipli) #56971ccb8c12712
] - test,crypto: make tests work for BoringSSL (Shelley Vohr) #57021116c1fe84c
] - test_runner: refactor testPlan counter increse (Pietro Marchini) #567652929fc6449
] - test_runner: allow special characters in snapshot keys (Carlos Espa) #57017a025d7ba07
] - tools: run Linux tests on GitHub arm64 runners as well (Dennis Ameling) #5716273a8514305
] - tools: consolidate 'introduced_in' check for docs (1ilsang) #571096cdee545f6
] - tools: do not run major-release workflow on forks (Rich Trott) #570641efd74b1b0
] - tools: fix release URL computation in update-root-certs.mjs (Joyee Cheung) #56843a9112df8d3
] - tools: add support forimport source
syntax in linter (Antoine du Hamel) #56992c6d6be2c3b
] - typings: fixImportModuleDynamicallyCallback
return type (Chengzhong Wu) #57160d922153cbf
] - url: improve urlpattern regexp performance (Yagiz Nizipli) #57136v23.8.0
: 2025-02-13, Version 23.8.0 (Current), @targosCompare Source
Notable Changes
Support for using system CA certificates store on macOS and Windows
This version adds the
--use-system-ca
command-line flag, which instructs Node.jsto use the trusted CA certificates present in the system store along with
the
--use-bundled-ca
,--use-openssl-ca
options.This option is available on macOS and Windows for now.
Contributed by Tim Jacomb in #56599
and Joyee Cheung in #56833.
Introduction of the URL Pattern API
An implementation of the URL Pattern API
is now available.
The
URLPattern
constructor is exported from thenode:url
module and will beavailable as a global in Node.js 24.
Contributed by Yagiz Nizipli and Daniel Lemire in #56452.
Support for the zstd compression algorithm
Node.js now includes support for the Zstandard (zstd) compression algorithm.
Various APIs have been added to the
node:zlib
module for both compression and decompressionof zstd streams.
Contributed by Jan Krems in #52100.
Node.js thread names
Threads created by the Node.js process are now named to improve the debugging experience.
Worker threads will use the
name
option that can be passed to theWorker
constructor.Contributed by Rafael Gonzaga in #56416.
Timezone data has been updated to 2025a
Included changes:
Other Notable Changes
39997867cf
] - (SEMVER-MINOR) sqlite: allow returningArrayBufferView
s from user-defined functions (René) #56790Commits
0ee9c34d63
] - benchmark: add simple parse and test benchmarks for URLPattern (James M Snell) #56882b3f2045d14
] - build: gyp exclude libm linking on macOS (deepak1556) #56901e0dd9aefd6
] - build: remove explicit linker call to libm on macOS (deepak1556) #5690152399da780
] - build: link with Security.framework in GN build (Cheng) #56895582b9221c9
] - build: do not put commands in sources variables (Cheng) #56885ea61b956e9
] - build: add double quotes around <(python) (Luigi Pinca) #5682614236ef778
] - build: add build option suppress_all_error_on_warn (Michael Dawson) #56647dfd3f430f3
] - build,win: enable ccache (Stefan Stojanovic) #568473e207bd9ec
] - (SEMVER-MINOR) crypto: support --use-system-ca on Windows (Joyee Cheung) #56833fe2694a992
] - crypto: fix X509* leak in --use-system-ca (Joyee Cheung) #5683260039a2c36
] - crypto: add api to get openssl security level (Michael Dawson) #5660139a474f7c0
] - (SEMVER-MINOR) crypto: added support for reading certificates from macOS system store (Tim Jacomb) #56599144bee8067
] - deps: update zlib to 1.3.0.1-motley-788cb3c (Node.js GitHub Bot) #566557fd39e3a79
] - deps: update sqlite to 3.49.0 (Node.js GitHub Bot) #56654d698cb5434
] - deps: update amaro to 0.3.2 (marco-ippolito) #56916dbd09067c0
] - deps: V8: cherry-pick9ab4059
(Levi Zim) #56781ee33ef3aa6
] - deps: update cjs-module-lexer to 2.0.0 (Michael Dawson) #56855c0542557d0
] - deps: update timezone to 2025a (Node.js GitHub Bot) #56876d67cb1f9bb
] - deps: update simdjson to 3.12.0 (Node.js GitHub Bot) #5687470b04b4314
] - deps: update googletest toe235eb3
(Node.js GitHub Bot) #56873e11cda003f
] - (SEMVER-MINOR) deps: update ada to v3.0.1 (Yagiz Nizipli) #564528743ef525d
] - deps: update simdjson to 3.11.6 (Node.js GitHub Bot) #562500f553e5575
] - deps: update amaro to 0.3.1 (Node.js GitHub Bot) #56785380a8d8d2f
] - (SEMVER-MINOR) deps,tools: add zstd 1.5.6 (Jan Krems) #5210066898a7c3b
] - doc: update history of stream.Readable.toWeb() (Jimmy Leung) #569289e29416e12
] - doc: make MDN links to global classes more consistent (Antoine du Hamel) #569246bc270728a
] - doc: make MDN links to global classes more consistent inassert.md
(Antoine du Hamel) #5692000da003171
] - doc: make MDN links to global classes more consistent (Antoine du Hamel) #56923d90198793a
] - doc: make MDN links to global classes more consistent inutil.md
(Antoine du Hamel) #569225f4377a759
] - doc: make MDN links to global classes more consistent inbuffer.md
(Antoine du Hamel) #569217353266b50
] - doc: improve type stripping documentation (Marco Ippolito) #56916888d2acc3a
] - doc: specificy support for erasable ts syntax (Marco Ippolito) #569163c082d43bc
] - doc: update post sec release process (Rafael Gonzaga) #56907f0bf35d3c5
] - doc: update websocket link to avoid linking to self (Chengzhong Wu) #56897373dbb0e6c
] - doc: mark--env-file-if-exists
flag as experimental (Juan José) #56893d436888cc8
] - doc: fix typo in cjs example ofutil.styleText
(Deokjin Kim) #5676991638eeb4a
] - doc: clarify sqlite user-defined function behaviour (René) #56786bab9c4d331
] - events: getMaxListeners detects 0 listeners (Matthew Aitken) #56807ccaf7fe737
] - fs: makeFileHandle.readableWebStream
always create byte streams (Ian Kerins) #55461974cec7a0a
] - http: be more generational GC friendly (ywave620) #56767be00058712
] - inspector: add Network.Initiator in inspector protocol (Chengzhong Wu) #5680531293a4b09
] - inspector: fix GN build (Cheng) #5679891a302356b
] - inspector: fix StringUtil::CharacterCount for unicodes (Chengzhong Wu) #567883b305f25f2
] - lib: filter node:quic from builtinModules when flag not used (James M Snell) #56870f06ee4c54a
] - meta: bumpactions/upload-artifact
from 4.4.3 to 4.6.0 (dependabot[bot]) #56861d230bc3b3c
] - meta: bumpactions/setup-node
from 4.1.0 to 4.2.0 (dependabot[bot]) #56868d4ecfa745e
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #56889698c56bb94
] - meta: add @nodejs/url as codeowner (Chengzhong Wu) #56783a274b28857
] - module: fix require.resolve() crash on non-string paths (Aditi) #569424e3052aeee
] - quic: fixup errant LocalVector usage (James M Snell) #56564dfc61f7bb7
] - readline: fix unresolved promise on abortion (Daniel Venable) #540309e60501f5e
] - sqlite: fix coverity warnings related to backup() (Colin Ihrig) #569611913a4aabc
] - sqlite: restore changes from #55373 (Colin Ihrig) #569088410c955b7
] - sqlite: fix use-after-free in StatementSync due to premature GC (Divy Srivastava) #5684001d732d629
] - sqlite: handle conflicting SQLite and JS errors (Colin Ihrig) #5678739997867cf
] - (SEMVER-MINOR) sqlite: allow returningArrayBufferView
s from user-defined functions (René) #567908dc637681a
] - sqlite, test: expose sqlite online backup api (Edy Silva) #56253cfea53eccc
] - src: useargs.This()
in zlib (Michaël Zasso) #569886b398d6d0b
] - src: replaceSplitString
with built-in (Yagiz Nizipli) #54990fbb32e0a08
] - src: add nullptr handling forNativeKeyObject
(Burkov Egor) #5690083ff7be9fd
] - src: disallow copy/move fns/constructors (Yagiz Nizipli) #5681163611d0331
] - src: add a hard dependency v8_inspector_headers (Chengzhong Wu) #568053d957d135c
] - src: improve error handling in encoding_binding.cc (James M Snell) #569159e9ac3ccd8
] - src: avoid copy by using std::views::keys (Yagiz Nizipli) #56080086cdc297a
] - src: remove obsolete NoArrayBufferZeroFillScope (James M Snell) #56913915d7aeb37
] - src: set signal inspector io thread name (RafaelGSS) #56416f4b086d29d
] - src: set thread name for main thread and v8 worker (RafaelGSS) #564163579143630
] - src: set worker thread name using worker.name (RafaelGSS) #56416736ff5de6d
] - src: use a default thread name for inspector (RafaelGSS) #56416be8e2b4d8f
] - src: improve error handling in permission.cc (James M Snell) #56904d6cf0911ee
] - src: improve error handling in node_sqlite (James M Snell) #56891521fed1bac
] - src: improve error handling in node_os by removing ToLocalChecked (James M Snell) #56888c9a99df8e7
] - src: improve error handling in node_url (James M Snell) #568865c82ef3ace
] - src: add memory retainer traits for external types (Chengzhong Wu) #56881edb194b2d5
] - src: prevent URLPattern property accessors from crashing on invalid this (James M Snell) #568779624049414
] - src: pull in more electron boringssl adjustments (James M Snell) #56858f8910e384d
] - src: make multiple improvements to node_url_pattern (James M Snell) #5687194a0237b18
] - src: clean up some obsolete crypto methods (James M Snell) #56792b240ca67b9
] - src: add check for Bignum in GroupOrderSize (Burkov Egor) #5670245692e9c7c
] - src, deps: port electron's boringssl workarounds (James M Snell) #56812a9d80d43cb
] - (SEMVER-MINOR) src, quic: refine more of the quic implementation (James M Snell) #5632893d0beb6c8
] - src,test: expand test coverage for urlpattern and fix error (James M Snell) #568785a9732e1d0
] - test: improve timeout duration for debugger events (Yagiz Nizipli) #5697060c8fc07ff
] - test: remove unnecessary syscall to cpuinfo (Yagiz Nizipli) #5696840cdf756e6
] - test: update webstorage wpt (Yagiz Nizipli) #56963de77371a9e
] - test: execute shell directly for refresh() (Yagiz Nizipli) #55051f4254b8e70
] - test: automatically sync wpt urlpattern tests (Jonas) #56949a473d3f57a
] - test: update snapshots for amaro v0.3.2 (Marco Ippolito) #56916abca97f7e2
] - test: change jenkins reporter (Carlos Espa) #568087c9fa11127
] - test: fix race condition in test-child-process-bad-stdio (Colin Ihrig) #56845b8b6e68836
] - (SEMVER-MINOR) test: add WPT for URLPattern (Yagiz Nizipli) #56452b6d3d52e20
] - test: adjust check to use OpenSSL sec level (Michael Dawson) #568193beac87f92
] - test: test-crypto-scrypt.js doesn't need internals (Meghan Denny) #566733af23a10f3
] - test: settest-fs-cp
as flaky (Stefan Stojanovic) #567991146f48f67
] - test: search cctest files (Chengzhong Wu) #5679186c199b25a
] - test: convert test_encoding_binding.cc to a JS test (Chengzhong Wu) #56791bd5484717c
] - test: test-crypto-prime.js doesn't need internals (Meghan Denny) #56675f5f54414e4
] - test: temporary remove resource check from fs read-write (Rafael Gonzaga) #56789c8bd2ba0ad
] - test: mark test-without-async-context-frame flaky on windows (James M Snell) #567532c2e4a4ae0
] - test: remove unnecessary code (Luigi Pinca) #567844606a5f79b
] - test: marktest-esm-loader-hooks-inspect-wait
flaky (Richard Lau) #5680338c77e3462
] - test: update WPT for url toa23788b
(Node.js GitHub Bot) #5677950ebd5fd31
] - test: remove duplicate error reporter from ci (Carlos Espa) #567390c3ae25aec
] - test_runner: print formatted errors on summary (Pietro Marchini) #56911b5a8a812fb
] - tools: bump eslint version (dependabot[bot]) #56869e1f86c1b9d
] - tools: remove test-asan/ubsan workflows (Michaël Zasso) #56823405a6678b7
] - tools: run macOS test workflow with Xcode 16.1 (Michaël Zasso) #5683116529c130f
] - tools: update sccache and sccache-action (Michaël Zasso) #56815fe004111ea
] - tools: fix license-builder for inspector_protocol (Michaël Zasso) #56814bc97a90176
] - (SEMVER-MINOR) url: add URLPattern implementation (Yagiz Nizipli) #5645277294d8918
] - util: enforce shouldColorize in styleText array arg (Marco Ippolito) #567228e6c191601
] - zlib: use modern class syntax for zstd classes (Yagiz Nizipli) #56965a3ca7f37a2
] - zlib: make all zstd functions experimental (Yagiz Nizipli) #569644cc7907738
] - (SEMVER-MINOR) zlib: add zstd support (Jan Krems) #52100v23.7.0
: 2025-01-30, Version 23.7.0 (Current), @aduh95Compare Source
Notable Changes
36dd9ecc41
] - crypto: update root certificates to NSS 3.107 (Node.js GitHub Bot) #565669414d3cbf1
] - (SEMVER-MINOR) fs: allowexclude
option in globs to accept glob patterns (Daeyeon Jeong) #564899c5c3b3115
] - (SEMVER-MINOR) module: add ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX (Marco Ippolito) #566101e201fd5fd
] - (SEMVER-MINOR) sqlite: support TypedArray and DataView inStatementSync
(Alex Yang) #5638548c813fb67
] - (SEMVER-MINOR) src: add --disable-sigusr1 to prevent signal i/o thread (Rafael Gonzaga) #56441cf16123785
] - (SEMVER-MINOR) src,worker: add isInternalWorker (Carlos Espa) #5646913bdd9c961
] - (SEMVER-MINOR) test_runner: add TestContext.prototype.waitFor() (Colin Ihrig) #5659500a1943858
] - (SEMVER-MINOR) test_runner: add t.assert.fileSnapshot() (Colin Ihrig) #564593143566045
] - (SEMVER-MINOR) test_runner: add assert.register() API (Colin Ihrig) #56434Commits
334a3ac7c6
] - assert: make myers_diff function more performant (Giovanni Bucci) #56303eb2bf460b7
] - assert: make partialDeepStrictEqual work with urls and File prototypes (Giovanni Bucci) #56231d184453b90
] - assert: show diff when doing partial comparisons (Giovanni Bucci) #562114aa1afd607
] - benchmark: add validateStream to styleText bench (Rafael Gonzaga) #565568bbdb1203e
] - child_process: fix parsing messages with splitted length field (Maksim Gorkov) #56106d83d89a08e
] - crypto: add missing return value check (Michael Dawson) #5661536dd9ecc41
] - crypto: update root certificates to NSS 3.107 (Node.js GitHub Bot) #565663915152c36
] - crypto: fix checkPrime crash with large buffers (Santiago Gimeno) #56559c8d1dcb063
] - crypto: fix warning of ignoring return value (Cheng) #565271994eaaf52
] - crypto: make generatePrime/checkPrime interruptible (James M Snell) #564605f1ee05390
] - deps: update corepack to 0.31.0 (Node.js GitHub Bot) #567959cfac712b8
] - deps: move inspector_protocol to deps (Chengzhong Wu) #56649b2ec816a31
] - deps: macro ENODATA is deprecated in libc++ (Cheng) #56698edd9361499
] - deps: fixup some minor coverity warnings (James M Snell) #566129ffe3ad4b1
] - deps: update libuv to 1.50.0 (Node.js GitHub Bot) #5661673ad3ca238
] - deps: update amaro to 0.3.0 (Node.js GitHub Bot) #565680657f6270a
] - deps: update amaro to 0.2.2 (Node.js GitHub Bot) #5656847fad8cbc0
] - deps: update simdutf to 6.0.3 (Node.js GitHub Bot) #56567c9a211ae29
] - diagnostics_channel: capture console messages (Stephen Belanger) #56292cf5d2d6598
] - doc: move anatoli to emeritus (Michael Dawson) #565925dd08d10be
] - doc: fix styles of the expandable TOC (Antoine du Hamel) #5675509fb3adf80
] - doc: add "Skip to content" button (Antoine du Hamel) #56750ad012ca1f3
] - doc: improve accessibility of expandable lists (Antoine du Hamel) #5674938acdb57eb
] - doc: add note regarding commit message trailers (Dario Piotrowicz) #56736f4a9b134c0
] - doc: fix typo in example code for util.styleText (Robin Mehner) #567208a61aaa734
] - doc: fix inconsistencies inWeakSet
andWeakMap
comparison details (Shreyans Pathak) #566834ade128184
] - doc: add RafaelGSS as latest sec release stewards (Rafael Gonzaga) #56682e1e1200b79
] - doc: clarify cjs/esm diff inqueueMicrotask()
vsprocess.nextTick()
(Dario Piotrowicz) #5665957a7b931fb
] - doc:WeakSet
andWeakMap
comparison details (Shreyans Pathak) #5664856b21489f4
] - doc: mention prepare --security (Rafael Gonzaga) #5661767f39b597a
] - doc: tweak info on reposts in ambassador program (Michael Dawson) #565896381e0761d
] - doc: add type stripping to ambassadors program (Marco Ippolito) #565989bd438acd3
] - doc: improve internal documentation on built-in snapshot (Joyee Cheung) #56505f54118c84a
] - doc: correct customization hook types & clarify descriptions (Jacob Smith) #564546af5053153
] - doc: document CLI way to open the nodejs/bluesky PR (Antoine du Hamel) #565064a77a9e1eb
] - doc: add history info for Permission Model (Antoine du Hamel) #56707097b8b4889
] - doc: add note for features usingInternalWorker
with permission model (Antoine du Hamel) #56706f600466c73
] - doc: add section about using npx with permission model (Rafael Gonzaga) #56539c2d5a0c629
] - doc: update gcc-version for ubuntu-lts (Kunal Kumar) #56553202af46793
] - doc: fix parentheses in options (Tobias Nießen) #565634e4b0c63d0
] - doc: fix location of NO_COLOR in CLI docs (Colin Ihrig) #5652592eeeb98a5
] - doc: include CVE to EOL lines as sec release process (Rafael Gonzaga) #56520233a6a93a1
] - doc: add esm examples to node:trace_events (Alfredo González) #56514d9cff6c73f
] - doc: reserve NMV 133 for Electron 35 (Keeley Hammond) #565136047fd7c5c
] - doc: add message for Ambassadors to promote (Michael Dawson) #56235a4045c9488
] - doc: allow request for TSC reviews via the GitHub UI (Antoine du Hamel) #56493dd3f94873e
] - esm: fix jsdoc type refs toModuleJobBase
in esm/loader (Jacob Smith) #564999414d3cbf1
] - (SEMVER-MINOR) fs: allowexclude
option in globs to accept glob patterns (Daeyeon Jeong) #564894202045673
] - http2: omit server name when HTTP2 host is IP address (islandryu) #56530f48a562776
] - inspector: roll inspector_protocol (Chengzhong Wu) #566499a954fbf4a
] - inspector: add undici http tracking support (Chengzhong Wu) #56488f185e8a34a
] - inspector: report loadingFinished until the response data is consumed (Chengzhong Wu) #563722fb007fdce
] - lib: allow skipping source maps in node_modules (Chengzhong Wu) #566392f69dc2659
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #565800d869963e0
] - meta: add codeowners of security release document (Rafael Gonzaga) #5652159510ab819
] - module: fix badrequire.resolve
with option paths for.
and..
(Dario Piotrowicz) #5673558d2dad67d
] - module: integrate TypeScript into compile cache (Joyee Cheung) #566299f99a6acb5
] - module: use more defensive code when handling SWC errors (Antoine du Hamel) #566467347d34053
] - module: fixing url change in load sync hook chain (Vitalii Akimov) #564029c5c3b3115
] - (SEMVER-MINOR) module: add ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX (Marco Ippolito) #56610afd1f91a1e
] - module: fix jsdoc forformat
parameter in cjs/loader (pacexy) #5650186d783fa51
] - module: rethrow amaro error message (Marco Ippolito) #565687b6df4a97a
] - process: fix symbol key and mark experimental newnode:process
methods (Antoine du Hamel) #5651721362cc4f4
] - punycode: limit deprecation warning (Colin Ihrig) #5663293f60a1c15
] - sqlite: disable memstatus APIs at build time (Colin Ihrig) #565411e201fd5fd
] - (SEMVER-MINOR) sqlite: support TypedArray and DataView inStatementSync
(Alex Yang) #563853aca628a11
] - sqlite: enable SQL math functions (Colin Ihrig) #56447575251ae6a
] - src: add nullptr handling from X509_STORE_new() (Burkov Egor) #567008fb03d8f43
] - src: move more crypto to ncrypto (James M Snell) #5665355a0135261
] - src: add default value for RSACipherConfig mode field (Burkov Egor) #5670183c56da328
] - src: fix build with GCC 15 (tjuhaszrh) #56740872d68d87c
] - src: fix to generate path from wchar_t via wstring (yamachu) #566962b6a82dcea
] - src: replace NoArrayBufferZeroFillScope with v8 option (James M Snell) #56658a5f9023297
] - src: initialize FSReqWrapSync in path that uses it (Michaël Zasso) #5661390f70ed8dd
] - src: use cppgc to manage ContextifyContext (Joyee Cheung) #565220b1ac9653e
] - src: handle duplicate paths granted (Rafael Gonzaga) #5659133f5345002
] - src: update ECKeyPointer in ncrypto (James M Snell) #56526c7b95fcf95
] - src: update ECPointPointer in ncrypto (James M Snell) #56526c008b15108
] - src: update ECGroupPointer in ncrypto (James M Snell) #565265673dc7de7
] - src: update ECDASSigPointer implementation in ncrypto (James M Snell) #5652687ba48b2c6
] - src: cleaning up more crypto internals for ncrypto (James M Snell) #5652648c813fb67
] - (SEMVER-MINOR) src: add --disable-sigusr1 to prevent signal i/o thread (Rafael Gonzaga) #5644150c65eed78
] - src: fix undefined script name in error source (Chengzhong Wu) #56502b3c66d2493
] - src: refactor --trace-env to reuse option selection and handling (Joyee Cheung) #5629317d59efe3c
] - src: minor cleanups on OneByteString usage (James M Snell) #564823e6e0106f6
] - src: move more crypto impl detail to ncrypto dep (James M Snell) #564215e1ddd5d4c
] - src: fixup more ToLocalChecked uses in node_file (James M Snell) #56484aa3fd2f58f
] - src: make some minor ToLocalChecked cleanups (James M Snell) #564837dd8165b0b
] - src: lock the thread properly in snapshot builder (Joyee Cheung) #56327edafab7248
] - src: drain platform tasks before creating startup snapshot (Chengzhong Wu) #56403e1887d2c58
] - src: use LocalVector in more places (James M Snell) #56457cf16123785
] - (SEMVER-MINOR) src,worker: add isInternalWorker (Carlos Espa) #56469df78515664
] - stream: fix typo in ReadableStreamBYOBReader.readIntoRequests (Mattias Buelens) #565604ff79fb22a
] - test: reduce number of written chunks (Luigi Pinca) #567572e7b7b7674
] - test: fix invalid common.mustSucceed() usage (Luigi Pinca) #567560af368ce5e
] - test: use strict mode in global setters test (Rich Trott) #56742e49f3e944c
] - test: cleanup and simplify test-crypto-aes-wrap (James M Snell) #5674885f7bbf4e4
] - test: do not use common.isMainThread (Luigi Pinca) #5676836b02bf1b1
] - test: make some requires lazy in common/index (James M Snell) #56715bcb35c3fb7
] - test: add test that uses multibyte for path and resolves modules (yamachu) #56696917f98b29c
] - test: replace more uses ofglobal
withglobalThis
(James M Snell) #56712bf34a49206
] - test: make common/index slightly less node.js specific (James M Snell) #56712ef2ed71389
] - test: rely less on duplicative common test harness utilities (James M Snell) #56712e654c8b84a
] - test: simplify common/index.js (James M Snell) #56712a62345e73b
] - test: move hasMultiLocalhost to common/net (James M Snell) #567166edf04ee5e
] - test: move crypto related common utilities in common/crypto (James M Snell) #56714c7a132229f
] - test: add missing test for env file (Jonas) #566422a219eddf6
] - test: enforce strict mode in test-zlib-const (Rich Trott) #56689f885496d9c
] - test: fix localization data for ICU 74.2 (Antoine du Hamel) #56661eb3148fb5c
] - test: use --permission instead of --experimental-permission (Rafael Gonzaga) #5668586d7ba09c4
] - test: test-stream-compose.js doesn't need internals (Meghan Denny) #56619676276889e
] - test: add maxCount and gcOptions to gcUntil() (Joyee Cheung) #565225b7a012144
] - test: add line break at end of file (Rafael Gonzaga) #5658827cfec619f
] - test: mark test-worker-prof as flaky on smartos (Joyee Cheung) #565837e58da68c1
] - test: update ts eval snapshots (Marco Ippolito) #56568b1c54439ae
] - test: update test-child-process-bad-stdio to use node:test (Colin Ihrig) #565620d772a963e
] - test: disable openssl 3.4.0 incompatible tests (Jelle van der Waa) #561606fa6d699ff
] - test: make test-crypto-hash compatible with OpenSSL > 3.4.0 (Jelle van der Waa) #5616090e12f2945
] - test: clarify fork inherit permission flags (Rafael Gonzaga) #56523323f96f7b3
] - test: add error only reporter for node:test (Carlos Espa) #56438cbbcaf9108
] - test: mark test-http-server-request-timeouts-mixed as flaky (Joyee Cheung) #56503295db19ba2
] - test: update error code in tls-psk-circuit for for OpenSSL 3.4 (sebastianas) #56420f7563780a6
] - test: update compiled sqlite tests to match other tests (Colin Ihrig) #564468feb2737e7
] - test: add initial test426 coverage (Chengzhong Wu) #56436b9cd7895c0
] - test: update test-set-http-max-http-headers to use node:test (Colin Ihrig) #56439332ce548cb
] - test: update test-child-process-windows-hide to use node:test (Colin Ihrig) #56437e2668c0e00
] - test_runner: print failing assertion only once with spec reporter (Pietro Marchini) #56662f97cd5b02b
] - test_runner: remove unused errors (Pietro Marchini) #5660713bdd9c961
] - (SEMVER-MINOR) test_runner: add TestContext.prototype.waitFor() (Colin Ihrig) #5659500a1943858
] - (SEMVER-MINOR) test_runner: add t.assert.fileSnapshot() (Colin Ihrig) #56459c4979ebfb2
] - test_runner: run single test file benchmark (Pietro Marchini) #56479839a06e908
] - test_runner: differentiate test types in enqueue dequeue events (Eddie Abbondanzio) #540493143566045
] - (SEMVER-MINOR) test_runner: add assert.register() API (Colin Ihrig) #564343aa864904f
] - test_runner: finish marking snapshot testing as stable (Colin Ihrig) #56425b7b0768cda
] - tls: fix error stack conversion in cryptoErrorListToException() (Joyee Cheung) #565548f59f5ba47
] - tools: update doc to new version (Node.js GitHub Bot) #56259ebf4527730
] - tools: update inspector_protocol roller (Chengzhong Wu) #56649649cf0c0f6
] - tools: do not throw on missingcreate-release-proposal.sh
(Antoine du Hamel) #5670469cb44e315
] - tools: fix tools-deps-update (Daniel Lemire) #5668402f36ca11b
] - tools: do not throw on missingcreate-release-proposal.sh
(Antoine du Hamel) #56695bcc1c65066
] - tools: fix permissions inlint-release-proposal
workflow (Antoine du Hamel) #56614ab4cfef600
] - tools: remove github reporter (Carlos Espa) #56468477e674a2a
] - tools: editcreate-release-proposal
workflow (Antoine du Hamel) #565405f6785b1cb
] - tools: validate commit list as part oflint-release-commit
(Antoine du Hamel) #562912a0fbd8731
] - tools: fix loong64 build failed (Xiao-Tao) #56466aea088f79e
] - tools: disable unneeded rule ignoring in Python linting (Rich Trott) #564297a0dd2d04f
] - tools: use a configurable value for number of open dependabot PRs (Antoine du Hamel) #56427c249c9715a
] - tools: bump the eslint group in /tools/eslint with 4 updates (dependabot[bot]) #56426a9d332a16f
] - util: inspect: do not crash on an Error stack that contains a Symbol (Jordan Harband) #565736a16012fd7
] - util: inspect: do not crash on an Error with a regexname
(Jordan Harband) #56574c7f16192f4
] - util: rename CallSite.column to columnNumber (Chengzhong Wu) #56584e652781934
] - util: do not crash on inspecting function withSymbol
name (Jordan Harband) #56572d066acfcf9
] - util: expose CallSite.scriptId (Chengzhong Wu) #56551e1b0f44d19
] - watch: reload env file for --env-file-if-exists (Jonas) #56643538e19489f
] - worker: refactor stdio to improve performance (Matteo Collina) #56630aab53e6965
] - worker: flush stdout and stderr on exit (Matteo Collina) #56428v23.6.1
: 2025-01-21, Version 23.6.1 (Current), @RafaelGSSCompare Source
This is a security release.
Notable Changes
Dependency update:
Commits
f2ad4d3af8
] - (CVE-2025-22150) deps: update undici to v6.21.1 (Matteo Collina) nodejs-private/node-private#6540afc6f9600
] - (CVE-2025-23084) path: fix path traversal in normalize() on Windows (RafaelGSS) nodejs-private/node-private#5553c7686163e
] - (CVE-2025-23085) src: fix HTTP2 mem leak on premature close and ERR_PROTO (RafaelGSS) nodejs-private/node-private#65051938f023a
] - (CVE-2025-23083) src,loader,permission: throw on InternalWorker use (RafaelGSS) nodejs-private/node-private#629v23.6.0
: 2025-01-07, Version 23.6.0 (Current), @marco-ippolitoCompare Source
Notable Changes
Unflagging --experimental-strip-types
This release enables the flag
--experimental-strip-types
by default.Node.js will be able to execute TypeScript files without additional configuration:
There are some limitations in the supported syntax documented at https://nodejs.org/api/typescript.html#type-stripping
This feature is experimental and is subject to change.
Contributed by Marco Ippolito in #56350
Other Notable Changes
c1023284c3
] - (SEMVER-MINOR) lib: add typescript support to STDIN eval (Marco Ippolito) #563598dc39e5e2e
] - (SEMVER-MINOR) process: add process.ref() and process.unref() methods (James M Snell) #564008b20cc212b
] - (SEMVER-MINOR) worker: add eval ts input (Marco Ippolito) #56394Commits
7b4d288116
] - assert: make partialDeepStrictEqual throw when comparing [0] with [-0] (Giovanni) #562370ec2ed0a0b
] - build: fix GN build for ngtcp2 (Cheng) #56300ab3e64630b
] - build: test macos-13 on GitHub actions (Michaël Zasso) #5630746fb69daca
] - build: build v8 with -fvisibility=hidden on macOS (Joyee Cheung) #562759d4930b993
] - deps: update simdutf to 5.7.2 (Node.js GitHub Bot) #563886afe36397e
] - deps: update amaro to 0.2.1 (Node.js GitHub Bot) #56390195990a0ee
] - deps: update googletest to7d76a23
(Node.js GitHub Bot) #56387b9c0852fc6
] - deps: update googletest toe54519b
(Node.js GitHub Bot) #56370eaefd90128
] - deps: update ngtcp2 to 1.10.0 (Node.js GitHub Bot) #5633406de0c65cf
] - deps: update simdutf to 5.7.0 (Node.js GitHub Bot) #5633203df76cdec
] - doc: add example for piping ReadableStream (Gabriel Schulhof) #5641538ce249b07
] - doc: expand description ofparseArg
'sdefault
(Kevin Gibbons) #54431ecc718cef2
] - doc: use<ul>
instead of<ol>
inSECURITY.md
(Antoine du Hamel) #563463db4809130
] - doc: clarify that WASM is trusted (Matteo Collina) #56345384ccbacd5
] - doc: update macOS and Xcode versions for releases (Michaël Zasso) #563373943986e88
] - doc: fix thecrc32
documentation (Kevin Toshihiro Uehara) #55898710b8fc6ed
] - doc: add entry to changelog about SQLite Session Extension (Bart Louwers) #563184c978b4d77
] - doc: fix links inmodule.md
(Antoine du Hamel) #56283cdb631efe7
] - esm: add experimental support for addon modules (Chengzhong Wu) #55844db83d2f0ee
] - Revert "events: add hasEventListener util for validate" (origranot) #56282c2baae84ce
] - lib: refactor execution.js (Marco Ippolito) #56358c1023284c3
] - (SEMVER-MINOR) lib: add typescript support to STDIN eval (Marco Ippolito) #56359e4b795ec4a
] - lib: optimizeprepareStackTrace
on builtin frames (Chengzhong Wu) #56299d1b009b623
] - lib: suppress source map lookup exceptions (Chengzhong Wu) #56299c2837f0805
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #5634272336233f2
] - meta: move MoLow to TSC regular member (Moshe Atlow) #562764f77920a9d
] - module: fix async resolution error within the syncfindPackageJSON
(Jacob Smith) #56382e5ba216501
] - (SEMVER-MINOR) module: unflag --experimental-strip-types (Marco Ippolito) #56350959f133a22
] - module: support eval with ts syntax detection (Marco Ippolito) #56285717cfa4fac
] - module: use buffer.toString base64 (Chengzhong Wu) #56315c2f4d8d688
] - node-api: define version 10 (Gabriel Schulhof) #55676417a8ebdec
] - node-api: remove deprecated attribute from napi_module_register (Vladimir Morozov) #561628dc39e5e2e
] - (SEMVER-MINOR) process: add process.ref() and process.unref() methods (James M Snell) #56400d194f1ab5f
] - sqlite: pass conflict type to conflict resolution handler (Bart Louwers) #5635229f5d70452
] - src: use v8::LocalVector consistently with other minor cleanups (James M Snell) #564172a5543b78e
] - src: use starts_with in fs_permission.cc (ishabi) #558113a3f5c9a64
] - stream: validate undefined sizeAlgorithm in WritableStream (Jason Zhang) #560676e6f6b071a
] - test: add ts eval snapshots (Marco Ippolito) #563588a87e39052
] - test: remove empty lines from snapshots (Marco Ippolito) #56358510649f617
] - test: use unusual chars in the path to ensure our tests are robust (Antoine du Hamel) #4840954f6d681a0
] - test: remove flaky designation (Luigi Pinca) #5636920ace0bb01
] - test: remove test-worker-arraybuffer-zerofill flaky designation (Luigi Pinca) #56364b757e40525
] - test: remove test-net-write-fully-async-hex-string flaky designation (Luigi Pinca) #5636564556baddc
] - test: improve abort signal dropping test (Edy Silva) #56339accbdad329
] - test: enable ts test on win arm64 (Marco Ippolito) #563494188ee00d1
] - test: deflake test-watch-file-shared-dependency (Luigi Pinca) #56344079cee0609
] - test: skiptest-sqlite-extensions
when SQLite is not built by us (Antoine du Hamel) #5634196a38044ee
] - test: increase spin for eventloop test on s390 (Michael Dawson) #56228c062ffc242
] - test: add coverage for pipeline (jakecastelli) #56278d4404f0d0e
] - test: migrate message eval tests from Python to JS (Yiyun Lei) #504829369942745
] - test: check typescript loader (Marco Ippolito) #546574930244484
] - test: remove async-hooks/test-writewrap flaky designation (Luigi Pinca) #560487819bfec69
] - test: deflake test-esm-loader-hooks-inspect-brk (Luigi Pinca) #56050e9762bf005
] - test: add test case for listeners (origranot) #56282c1627e9d19
] - test: maketest-permission-sqlite-load-extension
more robust (Antoine du Hamel) #5629597d854e1d5
] - test_runner,cli: mark test isolation as stable (Colin Ihrig) #56298a4f336fdd4
] - tools: fixrequire-common-first
lint rule from subfolder (Antoine du Hamel) #56325dc3dafcb50
] - tools: add release line label when opening release proposal (Antoine du Hamel) #563172a5ac932ac
] - url: use resolved path to convert UNC paths to URL (Antoine du Hamel) #563028b20cc212b
] - (SEMVER-MINOR) worker: add eval ts input (Marco Ippolito) #56394v23.5.0
: 2024-12-19, Version 23.5.0 (Current), @aduh95Compare Source
Notable Changes
WebCryptoAPI
Ed25519
and X25519 algorithms are now stableFollowing the merge of Curve25519 into the
Web Cryptography API Editor's Draft the
Ed25519
andX25519
algorithm identifiers are now stable and will no longeremit an ExperimentalWarning upon use.
Contributed by Filip Skokan in #56142.
On-thread hooks are back
This release introduces
module.registerHooks()
for registering module loadercustomization hooks that are run for all modules loaded by
require()
,import
and functions returned by
createRequire()
in the same thread, which makes themeasier for CJS monkey-patchers to migrate to.
This complements the
module.register()
hooks - the new hooks fit betterinternally and cover all corners in the module graph; whereas
module.register()
previously could not coverrequire()
while it wason-thread, and still cannot cover
createRequire()
after being movedoff-thread.
They are also run in the same thread as the modules being loaded and where the
hooks are registered, which means they are easier to debug (no more
console.log()
getting lost) and do not have the many deadlock issues hauntingthe
module.register()
hooks. The new API also takes functions directly so thatit's easier for intermediate loader packages to take user options from files
that the hooks can't be aware of, like many existing CJS monkey-patchers do.
Contributed by Joyee Cheung in #55698.
Other notable changes
59cae91465
] - (SEMVER-MINOR) dgram: support blocklist in udp (theanarkh) #5608772f79b44ed
] - doc: stabilize util.styleText (Rafael Gonzaga) #56265b5a2c0777d
] - (SEMVER-MINOR) module: add prefix-only modules tomodule.builtinModules
(Jordan Harband) #561859863d27566
] - (SEMVER-MINOR) module: only emit require(esm) warning under --trace-require-module (Joyee Cheung) #561948e780bc5ae
] - (SEMVER-MINOR) module: use synchronous hooks for preparsing in import(cjs) (Joyee Cheung) #5569865bc8e847f
] - (SEMVER-MINOR) report: fix typos in report keys and bump the version (Yuan-Ming Hsu) #560680ab36e1937
] - (SEMVER-MINOR) sqlite: aggregate constants in a single property (Edigleysson Silva (Edy)) #56213efcc5d90c5
] - (SEMVER-MINOR) src,lib: stabilize permission model (Rafael Gonzaga) #56201Commits
2314e4916e
] - assert: make Maps be partially compared in partialDeepStrictEqual (Giovanni Bucci) #56195cfbdff7b45
] - assert: make partialDeepStrictEqual work with ArrayBuffers (Giovanni Bucci) #56098f264dd6d20
] - buffer: document concat zero-fill (Duncan) #555624831b87d83
] - build: set DESTCPU correctly for 'make binary' on loongarch64 (吴小白) #562711497bb405e
] - build: fix missing fp16 dependency in d8 builds (Joyee Cheung) #56266445c8c7489
] - build: add major release action (Rafael Gonzaga) #56199f4faedfa69
] - build: fix C string encoding forPRODUCT_DIR_ABS
(Anna Henningsen) #561116f49c8006c
] - build: use variable for simdutf path (Shelley Vohr) #56196fcaa2c82a6
] - build: fix GN build on macOS (Joyee Cheung) #5614108e5309f4f
] - Revert "build: avoid compiling with VS v17.12" (Gerhard Stöbich) #56151c2fb38cfdf
] - crypto: graduate WebCryptoAPIEd25519
and X25519 algorithms as stable (Filip Skokan) #561428658833884
] - deps: update nghttp3 to 1.6.0 (Node.js GitHub Bot) #562587c941d4610
] - deps: update simdutf to 5.6.4 (Node.js GitHub Bot) #562554e9113eada
] - deps: update libuv to 1.49.2 (Luigi Pinca) #56224db6aba12e4
] - deps: update c-ares to v1.34.4 (Node.js GitHub Bot) #5625625bb462bc2
] - deps: define V8_PRESERVE_MOST as no-op on Windows (Stefan Stojanovic) #5623854308c51bb
] - deps: update sqlite to 3.47.2 (Node.js GitHub Bot) #5617859cae91465
] - (SEMVER-MINOR) dgram: support blocklist in udp (theanarkh) #5608752c18e605e
] - doc: fix color contrast issue in light mode (Rich Trott) #5627272f79b44ed
] - doc: stabilize util.styleText (Rafael Gonzaga) #562650d08756d0c
] - doc: clarify util.aborted resource usage (Kunal Kumar) #55780f94f21080b
] - doc: add esm examples to node:repl (Alfredo González) #554327a10ef88d9
] - doc: add esm examples to node:readline (Alfredo González) #55335cc7a7c391b
] - doc: fix 'which' to 'that' and add commas (Selveter Senitro) #56216c5b086250e
] - doc: fix winget config path (Alex Yang) #5623371c38a24d4
] - doc: add esm examples to node:tls (Alfredo González) #56229394fffbbde
] - doc: add esm examples to node:perf_hooks (Alfredo González) #552577b2a6ee61e
] - doc:sea.getRawAsset(key)
always returns an ArrayBuffer (沈鸿飞) #562068092dcf27e
] - doc: update announce documentation for releases (Rafael Gonzaga) #562002974667815
] - doc: update blog link to /vulnerability (Rafael Gonzaga) #56198f3b3ff85e0
] - doc: call out import.meta is only supported in ES modules (Anton Kastritskii) #56186a9e67280e7
] - doc: add ambassador message - benefits of Node.js (Michael Dawson) #56085e4922ab15f
] - doc: fix incorrect link to style guide (Yuan-Ming Hsu) #56181114a3e5a05
] - doc: fix c++ addon hello world sample (Edigleysson Silva (Edy)) #56172f1c2d2f65e
] - doc: update blog release-post link (Ruy Adorno) #56123d48b5224c0
] - doc: fix module.md headings (Chengzhong Wu) #561314cc0493a0b
] - fs: make mutatingoptions
in Callbackreaddir()
not affect results (LiviaMedeiros) #560578d485f1c09
] - fs: make mutatingoptions
in Promisesreaddir()
not affect results (LiviaMedeiros) #56057595851b5ed
] - fs,win: fix readdir for named pipe (Hüseyin Açacak) #56110075b36b7b4
] - http: add setDefaultHeaders option to http.request (Tim Perry) #56112febd969c46
] - http2: remove duplicate codeblock (Vitaly Aminev) #55915b0ebd23e52
] - http2: support ALPNCallback option (ZYSzys) #56187f10239fde7
] - lib: remove redundant global regexps (Gürgün Dayıoğlu) #56182fd55d3cbdd
] - lib: clean up persisted signals when they are settled (Edigleysson Silva (Edy)) #56001889094fdbc
] - lib: handle Float16Array in node:v8 serdes (Bartek Iwańczuk) #559965aec513207
] - lib: disable default memory leak warning for AbortSignal (Lenz Weber-Tronic) #55816b5a2c0777d
] - (SEMVER-MINOR) module: add prefix-only modules tomodule.builtinModules
(Jordan Harband) #561859863d27566
] - (SEMVER-MINOR) module: only emit require(esm) warning under --trace-require-module (Joyee Cheung) #561945665e86da6
] - module: prevent main thread exiting before esm worker ends (Shima Ryuhei) #561838e780bc5ae
] - (SEMVER-MINOR) module: use synchronous hooks for preparsing in import(cjs) (Joyee Cheung) #55698e5bb6c2303
] - (SEMVER-MINOR) module: implement module.registerHooks() (Joyee Cheung) #55698f883bedceb
] - node-api: allow napi_delete_reference in finalizers (Chengzhong Wu) #5562065bc8e847f
] - (SEMVER-MINOR) report: fix typos in report keys and bump the version (Yuan-Ming Hsu) #56068a6f0cfa468
] - sea: only assert snapshot main function for main threads (Joyee Cheung) #561200ab36e1937
] - (SEMVER-MINOR) sqlite: aggregate constants in a single property (Edigleysson Silva (Edy)) #562134745798225
] - sqlite: add support for custom functions (Colin Ihrig) #5598553cc0cc744
] - sqlite: supportdb.loadExtension
(Alex Yang) #539003968599702
] - src: fix outdated js2c.cc references (Chengzhong Wu) #56133efcc5d90c5
] - (SEMVER-MINOR) src,lib: stabilize permission model (Rafael Gonzaga) #56201a4a83613cb
] - stream: commit pull-into descriptors after filling from queue (Mattias Buelens) #560723298ef4891
] - test: remove test-sqlite-statement-sync flaky designation (Luigi Pinca) #560511d8cc6179d
] - test: use --permission over --experimental-permission (Rafael Gonzaga) #562395d252b7a67
] - test: remove exludes for sea tests on PPC (Michael Dawson) #562178288f57724
] - test: fix test-abortsignal-drop-settled-signals flakiness (Edigleysson Silva (Edy)) #56197683cc15796
] - test: move localizationd data fromtest-icu-env
to external file (Livia Medeiros) #55618a0c4a5f122
] - test: update WPT for url to6fa3fe8
(Node.js GitHub Bot) #56136a0e3926285
] - test: removehasOpenSSL3x
utils (Antoine du Hamel) #56164041a49094e
] - test: update streams wpt (Mattias Buelens) #56072ea9a675f56
] - test_runner: exclude test files from coverage by default (Pietro Marchini) #56060118cd9998f
] - tools: fixnode:
enforcement for docs (Antoine du Hamel) #56284c4c56daae8
] - tools: update github_reporter to 1.7.2 (Node.js GitHub Bot) #5620578743b1533
] - tools: add REPLACEME check to workflow (Mert Can Altin) #56251002ee71d9b
] - tools: usegithub.actor
instead of bot username for release proposals (Antoine du Hamel) #56232d25d16efeb
] - Revert "tools: disable automated libuv updates" (Luigi Pinca) #56223b395e0c8c9
] - tools: update gyp-next to 0.19.1 (Anna Henningsen) #56111a5aaf31c50
] - tools: fix release proposal linter to support more than 1 folk preparing (Antoine du Hamel) #56203fa667d609e
] - tools: remove has_absl_stringify from gyp file (Michaël Zasso) #5615765b541e70e
] - tools: enable linter fortools/icu/**
(Livia Medeiros) #5617628a4b6ff58
] - tools: use commit title as PR title when creating release proposal (Antoine du Hamel) #56165e20eef659f
] - tools: update gyp-next to 0.19.0 (Node.js GitHub Bot) #56158efcc829085
] - tools: bump the eslint group in /tools/eslint with 4 updates (dependabot[bot]) #560995620b2be8a
] - tools: improve release proposal PR opening (Antoine du Hamel) #561613e17a8e78e
] - util: harden more built-in classes against prototype pollution (Antoine du Hamel) #5622513815417c7
] - util: fix Latin1 decoding to return string output (Mert Can Altin) #5622277397c5013
] - util: do not rely on mutableObject
andFunction
'constructor
prop (Antoine du Hamel) #5618884f98e0a74
] - v8,tools: expose experimental wasm revectorize feature (Yolanda-Chen) #548968325fa5c04
] - worker: fix crash when a worker joins after exit (Stephen Belanger) #56191v23.4.0
: 2024-12-10, Version 23.4.0 (Current), @aduh95 prepared by @targosCompare Source
Notable Changes
Introducing experimental
assert.partialDeepStrictEqual
Sometimes, when writing test, we want to validate that some specific properties
are present, and the mere presence of additional keys are not exactly relevant
for that specific test. For this use case, we can now use
assert.partialDeepStrictEqual
, which should be familiar to those already usingassert.deepStrictEqual
, with the main difference that it does not require allproperties in the
actual
parameter to be present in theexpected
parameter.Here are a few examples of usage:
Contributed by Giovanni Bucci in #54630.
Implement
--trace-env
and--trace-env-[js|native]-stack
This release introduces
--trace-env
,--trace-env-js-stack
and--trace-env-native-stack
CLI options that print information about any access to environment variables done in the current
Node.js instance to stderr. Currently in the logs, only the names of the environment variables
being accessed are printed, while the values are not printed to avoid leaking sensitive
information. To print the stack trace of the access, use
--trace-env-js-stack
and/or--trace-env-native-stack
.Contributed by Joyee Cheung in #55604.
Other notable changes
59d6891872
] - doc: add LJHarb to collaborators (Jordan Harband) #56132565b04a7be
] - (SEMVER-MINOR) net: addBlockList.isBlockList(value)
(James M Snell) #56078c9698ed6a4
] - (SEMVER-MINOR) net: supportblockList
innet.connect
(theanarkh) #5607530d604180d
] - (SEMVER-MINOR) net: supportblockList
innet.Server
(theanarkh) #560799fba5e1df1
] - (SEMVER-MINOR) net: addSocketAddress.parse
(James M Snell) #560764cdb03201e
] - (SEMVER-MINOR) process: deprecatefeatures.{ipv6,uv}
andfeatures.tls_*
(René) #55545efb9f05f59
] - (SEMVER-MINOR) sqlite: unflagnode:sqlite
module (Colin Ihrig) #55890d777d4a52d
] - (SEMVER-MINOR) sqlite: addStatementSync.prototype.iterate
method (tpoisseau) #54213Commits
5b0ce376a2
] - assert: optimize partial comparison of twoSet
s (Antoine du Hamel) #55970a4f57f0293
] - (SEMVER-MINOR) assert: add partialDeepStrictEqual (Giovanni Bucci) #546301b81a7d003
] - build: allow overriding clang usage (Shelley Vohr) #5601639c901307f
] - build: remove defaults for create-release-proposal (Rafael Gonzaga) #560427133c0459f
] - build: avoid compiling with VS v17.12 (Stefan Stojanovic) #55930ce53f1689f
] - build: set node_arch to target_cpu in GN (Shelley Vohr) #559672023b09d27
] - build: add create release proposal action (Rafael Gonzaga) #5569026ec99634c
] - build: use variable for crypto dep path (Shelley Vohr) #55928f48e289580
] - build: fix GN build for sqlite (Cheng) #55912fffabca6b8
] - build: compile bundled simdutf conditionally (Jakub Jirutka) #55886d8eb83c5c5
] - build: compile bundled simdjson conditionally (Jakub Jirutka) #5588683e02dc482
] - build: compile bundled ada conditionally (Jakub Jirutka) #55886816d37a187
] - (SEMVER-MINOR) cli: implement --trace-env and --trace-env-[js|native]-stack (Joyee Cheung) #5560453c0f2f186
] - crypto: ensure CryptoKey usages and algorithm are cached objects (Filip Skokan) #5610893d36bf1c8
] - crypto: allow non-multiple of 8 in SubtleCrypto.deriveBits (Filip Skokan) #552968680b8030c
] - deps: update ngtcp2 to 1.9.1 (Node.js GitHub Bot) #5609578a2a6ca1e
] - deps: upgrade npm to 10.9.2 (npm team) #5613552dfe5af4b
] - deps: update sqlite to 3.47.1 (Node.js GitHub Bot) #560943852b5c8d1
] - deps: update zlib to 1.3.0.1-motley-82a5fec (Node.js GitHub Bot) #55980f99f95f62f
] - deps: update corepack to 0.30.0 (Node.js GitHub Bot) #5597796e846de89
] - deps: update ngtcp2 to 1.9.0 (Node.js GitHub Bot) #55975d180a8aedb
] - deps: update simdutf to 5.6.3 (Node.js GitHub Bot) #55973288416a764
] - deps: upgrade npm to 10.9.1 (npm team) #55951cf3f7ac512
] - deps: update zlib to 1.3.0.1-motley-7e2e4d7 (Node.js GitHub Bot) #544327768b3d054
] - deps: update simdjson to 3.10.1 (Node.js GitHub Bot) #546789c6103833b
] - deps: update simdutf to 5.6.2 (Node.js GitHub Bot) #558897b133d6220
] - dgram: check udp buffer size to avoid fd leak (theanarkh) #56084e4529b8179
] - doc: add report version and history section (Chengzhong Wu) #56130718625a03a
] - doc: mention-a
flag for the release script (Ruy Adorno) #5612459d6891872
] - doc: add LJHarb to collaborators (Jordan Harband) #56132d7ed32404a
] - doc: add create-release-action to process (Rafael Gonzaga) #559933b4ef93371
] - doc: rename file to advocacy-ambassador-program.md (Tobias Nießen) #5604659e4087d5e
] - doc: add added tag and fix typo sqlite.md (Bart Louwers) #56012a1b26608ae
] - doc: remove unused import from sample code (Blended Bram) #55570498f44ad73
] - doc: add FAQ to releases section (Rafael Gonzaga) #55992d48348afaa
] - doc: move history entry to class description (Luigi Pinca) #5599196926ce13c
] - doc: add history entry for textEncoder.encodeInto() (Luigi Pinca) #55990e92d51d511
] - doc: improve GN build documentation a bit (Shelley Vohr) #559686be3824d6f
] - doc: fix deprecation codes (Filip Skokan) #56018fa2b35d28d
] - doc: remove confusing and outdated sentence (Luigi Pinca) #55988baed2763df
] - doc: deprecate passing invalid types infs.existsSync
(Carlos Espa) #55892a3f7db6b6d
] - doc: add doc for PerformanceObserver.takeRecords() (skyclouds2001) #55786770572423b
] - doc: add vetted courses to the ambassador benefits (Matteo Collina) #5593498f8f4a8a9
] - doc: ordernode:crypto
APIs alphabetically (Julian Gassner) #558311e0decb44c
] - doc: doc how to add message for promotion (Michael Dawson) #55843ff48c29724
] - doc: add esm example for zlib (Leonardo Peixoto) #55946ccc5a6d552
] - doc: document approach for building wasm in deps (Michael Dawson) #55940c8bb8a6ac5
] - doc: fix Node.js 23 column in CHANGELOG.md (Richard Lau) #559359d078802ad
] - doc: remove RedYetiDev from triagers team (Aviv Keller) #559475a2a757119
] - doc: add esm examples to node:timers (Alfredo González) #55857f711a48e15
] - doc: fix relative path mention in --allow-fs (Rafael Gonzaga) #55791219f5f2627
] - doc: include git node release --promote to steps (Rafael Gonzaga) #55835f9d25ed3e4
] - doc: add history entry for import assertion removal (Antoine du Hamel) #55883efb9f05f59
] - (SEMVER-MINOR) doc,lib,src,test: unflag sqlite module (Colin Ihrig) #55890a37e5fe5f8
] - fs: lazily load ReadFileContext (Gürgün Dayıoğlu) #559989289374248
] - http2: fix memory leak caused by premature listener removing (ywave620) #5596649af1c33ac
] - lib: add validation for options in compileFunction (Taejin Kim) #560238faf91846b
] - lib: fixfs.readdir
recursive async (Rafael Gonzaga) #56041a2382303d7
] - lib: refactor code to improve readability (Pietro Marchini) #5599530f26ba254
] - lib: avoid excluding symlinks in recursive fs.readdir with filetypes (Juan José) #557149b272ae339
] - meta: bump github/codeql-action from 3.27.0 to 3.27.5 (dependabot[bot]) #56103fb0e6ca68b
] - meta: bump actions/checkout from 4.1.7 to 4.2.2 (dependabot[bot]) #561020ab611513c
] - meta: bump step-security/harden-runner from 2.10.1 to 2.10.2 (dependabot[bot]) #56101ff4839b8ab
] - meta: bump actions/setup-node from 4.0.3 to 4.1.0 (dependabot[bot]) #56100f262207356
] - meta: add releasers as CODEOWNERS to proposal action (Rafael Gonzaga) #56043b6005b3fac
] - module: mark evaluation rejection in require(esm) as handled (Joyee Cheung) #56122b8ab5332a9
] - module: remove --experimental-default-type (Geoffrey Booth) #560924be5047030
] - module: do not warn when require(esm) comes from node_modules (Joyee Cheung) #55960c9698ed6a4
] - (SEMVER-MINOR) net: support blocklist in net.connect (theanarkh) #560759fba5e1df1
] - (SEMVER-MINOR) net: add SocketAddress.parse (James M Snell) #56076565b04a7be
] - (SEMVER-MINOR) net: add net.BlockList.isBlockList(value) (James M Snell) #5607830d604180d
] - (SEMVER-MINOR) net: support blocklist for net.Server (theanarkh) #560794cdb03201e
] - (SEMVER-MINOR) process: deprecatefeatures.{ipv6,uv}
andfeatures.tls_*
(René) #55545d09e57b26d
] - quic: update more QUIC implementation (James M Snell) #559861fb30d6e86
] - quic: multiple updates to quic impl (James M Snell) #559719e4f7aa808
] - sqlite: deps includesqlite3ext.h
(Alex Yang) #56010d777d4a52d
] - (SEMVER-MINOR) sqlite: addStatementSync.prototype.iterate
method (tpoisseau) #5421366451bb9ba
] - src: use spaceship operator in SocketAddress (James M Snell) #56059ad9ebe417a
] - src: add missing qualifiers to env.cc (Yagiz Nizipli) #5606256c4da240d
] - src: use std::string_view for process emit fns (Yagiz Nizipli) #5608626ab8e9823
] - src: remove dead code in async_wrap (Gerhard Stöbich) #560654dea44e468
] - src: avoid copy on getV8FastApiCallCount (Yagiz Nizipli) #56081b778a4fe46
] - src: fix check fd (theanarkh) #56000971f5f54df
] - src: safely remove the last line from dotenv (Shima Ryuhei) #55982497a9aea1c
] - src: fix kill signal on Windows (Hüseyin Açacak) #555148a935489f9
] - src,build: add no user defined deduction guides of CTAD check (Chengzhong Wu) #560715edb8d5919
] - test: remove test-fs-utimes flaky designation (Luigi Pinca) #56052046e642a80
] - test: ensurecli.md
is in alphabetical order (Antoine du Hamel) #56025da354f46cd
] - test: update WPT for WebCryptoAPI to3e3374e
(Node.js GitHub Bot) #560939486c7ce4c
] - test: update WPT for WebCryptoAPI to76dfa54
(Node.js GitHub Bot) #56093a8809fc0f5
] - test: move test-worker-arraybuffer-zerofill to parallel (Luigi Pinca) #560536194435b9e
] - test: update WPT for url to67880a4
(Node.js GitHub Bot) #55999f7567d46d8
] - test: make HTTP/1.0 connection test more robust (Arne Keller) #55959c157e026fc
] - test: convert readdir test to use test runner (Thomas Chetwin) #5575029362ce673
] - test: make x509 crypto tests work with BoringSSL (Shelley Vohr) #55927493e16c852
] - test: fix determining lower priority (Livia Medeiros) #5590899858ceb9f
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #559977c3a4d4bcd
] - test_runner: refactor Promise chain in run() (Colin Ihrig) #5595895e8c4ef6c
] - test_runner: refactor build Promise in Suite() (Colin Ihrig) #55958c048865199
] - test_runner: simplify hook running logic (Colin Ihrig) #559638197815fe8
] - test_runner: mark snapshot testing as stable (Colin Ihrig) #558978a5d8c7669
] - test_runner: mark context.plan() as stable (Colin Ihrig) #55895790a2ca3b7
] - tools: updatecreate-release-proposal
workflow (Antoine du Hamel) #5605498ce4652e2
] - tools: fix update-undici script (Michaël Zasso) #56069d6a6c8ace1
] - tools: allow dispatch oftools.yml
from forks (Antoine du Hamel) #56008cc96fce5eb
] - tools: fix nghttp3 updater script (Antoine du Hamel) #560072cd939cb95
] - tools: filter release keys to reduce interactivity (Antoine du Hamel) #559504b3919f1be
] - tools: update WPT updater (Antoine du Hamel) #5600354c46b8464
] - tools: add WPT updater for specific subsystems (Mert Can Altin) #5446032b1681b7f
] - tools: use tokenless Codecov uploads (Michaël Zasso) #55943475141e370
] - tools: add linter for release commit proposals (Antoine du Hamel) #55923d093820f64
] - tools: lint js indoc/**/*.md
(Livia Medeiros) #5590472eb710f0f
] - tools: fix riscv64 build failed (Lu Yahan) #52888882b70c83f
] - tools: bump cross-spawn from 7.0.3 to 7.0.5 in /tools/eslint (dependabot[bot]) #558949eccd7dba9
] - util: add fast path for Latin1 decoding (Mert Can Altin) #55275v23.3.0
: 2024-11-20, Version 23.3.0 (Current), @RafaelGSSCompare Source
Notable Changes
5767b76c30
] - doc: enforce strict policy to semver-major releases (Rafael Gonzaga) #55732ccb69bb8d5
] - (SEMVER-MINOR) src: add cli option to preserve env vars on dr (Rafael Gonzaga) #55697d4e792643d
] - (SEMVER-MINOR) util: add sourcemap support to getCallSites (Marco Ippolito) #5558900e092bb4b
] - (SEMVER-MINOR) util: fix util.getCallSites plurality (Chengzhong Wu) #55626Commits
9862912d41
] - assert: differentiate cases wherecause
isundefined
or missing (Antoine du Hamel) #5573832e5bbca95
] - benchmark: addtest-reporters
(Aviv Keller) #55757c2103354e6
] - benchmark: addtest_runner/mock-fn
(Aviv Keller) #55771472d55e3e4
] - build: implement node_use_amaro flag in GN build (Cheng) #5579877735674eb
] - build: use glob for dependencies of out/Makefile (Richard Lau) #55789bba7323d51
] - build: apply cpp linting and formatting to ncrypto (Aviv Keller) #55362e0c222525e
] - crypto: allow length=0 for HKDF and PBKDF2 in SubtleCrypto.deriveBits (Filip Skokan) #55866cad557ec53
] - deps: update simdutf to 5.6.1 (Node.js GitHub Bot) #55850dc8aca3692
] - deps: update undici to 6.21.0 (Node.js GitHub Bot) #55851e0db9ede4f
] - deps: update c-ares to v1.34.3 (Node.js GitHub Bot) #55803e147935144
] - deps: update icu to 76.1 (Node.js GitHub Bot) #55551e0ef65b8d5
] - doc: remove non-working example (Antoine du Hamel) #55856ec953bca09
] - doc: addnode:sqlite
to mandatorynode:
prefix list (翠 / green) #558461b863b96d5
] - doc: add-S
flag release preparation example (Antoine du Hamel) #55836a8311847d1
] - doc: clarify UV_THREADPOOL_SIZE env var usage (Preveen P) #55832787e51e603
] - doc: add notable-change mention to sec release (Rafael Gonzaga) #55830e56265cc18
] - doc: fix history info forURL.prototype.toJSON
(Antoine du Hamel) #55818c5afdaf5cb
] - doc: correct max-semi-space-size statement (Joe Bowbeer) #5581265ffb2cae3
] - doc: update unflag info ofimport.meta.resolve
(skyclouds2001) #558109aeb671677
] - doc: run license-builder (github-actions[bot]) #55813df5ea1a5b3
] - doc: clarify triager role (Gireesh Punathil) #55775aa12de0f03
] - doc: sort --report-exclude alphabetically (Rafael Gonzaga) #557888576ca9897
] - doc: clarify removal of experimental API does not require a deprecation (Antoine du Hamel) #557465767b76c30
] - doc: enforce strict policy to semver-major releases (Rafael Gonzaga) #557321f2fcf1dc8
] - doc: add history entries for JSON modules stabilization (Antoine du Hamel) #5585583ba688d8f
] - esm: fix import.meta.resolve crash (Marco Ippolito) #55777bdb6d12e7a
] - events: add hasEventListener util for validate (Sunghoon) #55230d41cb49516
] - fs: prevent unwanteddependencyOwners
removal (Carlos Espa) #55565db0d648d8f
] - fs: fix bufferSize option for opendir recursive (Ethan Arrowood) #55744693fda0802
] - lib: remove unused filefetch_module
(Michaël Zasso) #55880156873303a
] - lib: prefer symbol to number in webidltype
function (Antoine du Hamel) #55737cfe28b161a
] - lib: remove unnecessary optional chaining (Gürgün Dayıoğlu) #55728bbb8f5914d
] - lib: usePromise.withResolvers()
in timers (Yagiz Nizipli) #5572011e1bdd409
] - module: tidy code string concat → string templates (Jacob Smith) #558209c99255468
] - permission: ignore internalModuleStat on module loading (Rafael Gonzaga) #557975a437c446f
] - report: fix network queries in getReport libuv with exclude-network (Adrien Foulon) #55602bcbba723de
] - sqlite: add support for SQLite Session Extension (Bart Louwers) #5418149d55228de
] - src: use env strings to create sqlite results (Michaël Zasso) #5578558d7a6ec10
] - Revert "src: migrateString::Value
toString::ValueView
" (Michaël Zasso) #5582816786a6df8
] - src: improvenode:os
userInfo performance (Yagiz Nizipli) #55719ccb69bb8d5
] - (SEMVER-MINOR) src: add cli option to preserve env vars on dr (Rafael Gonzaga) #55697770670c52c
] - test: fix permission fixtures lint (Rafael Gonzaga) #5581984c47478d0
] - test: improve test coverage for child process message sending (Juan José) #55710e1f54e2527
] - test: ensure that test priority is not higher than current priority (Livia Medeiros) #55739e1b42e7637
] - test: add buffer to fs_permission tests (Rafael Gonzaga) #55734d1ad43e9ae
] - test: improve test coverage forServerResponse
(Juan José) #55711034505e037
] - test_runner: error on mocking an already mocked date (Aviv Keller) #5585844324aa7e9
] - tools: bump @eslint/plugin-kit from 0.2.0 to 0.2.3 in /tools/eslint (dependabot[bot]) #558753cfacd3fbb
] - tools: fix exclude labels for commit-queue (Richard Lau) #558098111a7655d
] - tools: make commit-queue check blocked label (Marco Ippolito) #55781419ea068fb
] - tools: remove non-existent file from eslint config (Aviv Keller) #557727814669377
] - tools: fix c-ares updater script for Node.js 18 (Richard Lau) #557173a9733cc4f
] - util: do not mark experimental feature as deprecated (Antoine du Hamel) #55740d4e792643d
] - (SEMVER-MINOR) util: add sourcemap support to getCallSites (Marco Ippolito) #5558900e092bb4b
] - (SEMVER-MINOR) util: fix util.getCallSites plurality (Chengzhong Wu) #55626v23.2.0
: 2024-11-11, Version 23.2.0 (Current), @aduh95Compare Source
Notable Changes
Update root certificates to NSS 3.104
This is the version of NSS that shipped in Firefox 131.0 on 2024-10-01.
Certificates added:
Other notable changes
fa61dced44
] - doc: move typescript support to active development (Marco Ippolito) #555369dcca5441b
] - doc: add jazelly to collaborators (Jason Zhang) #55531f628fc43cb
] - (SEMVER-MINOR) fs: makedirent.path
writable (Antoine du Hamel) #5554725b1422337
] - (SEMVER-MINOR) http: add diagnostic channelhttp.client.request.created
(Marco Ippolito) #55586adda37f00c
] - (SEMVER-MINOR) module: addfindPackageJSON
util (Jacob Smith) #5541269dd1e13c3
] - (SEMVER-MINOR) module: addmodule.stripTypeScriptTypes
(Marco Ippolito) #55282Commits
9dbb255efb
] - assert: fixdeepStrictEqual
on errors whencause
is not undefined (Edigleysson Silva (Edy)) #554067af76ef0b3
] - assert: fix the string length check for printing the simple diff (Giovanni Bucci) #5547434483a299b
] - benchmark: add nodeTiming.uvmetricsinfo bench (RafaelGSS) #55614b79e4835ab
] - build: use rclone instead of aws CLI (Michaël Zasso) #556177ab1f46b8a
] - build: stop pre-compilinglint-md
(Aviv Keller) #552664887214e23
] - build: fix building with system icu 76 (Michael Cho) #55563f8df27aa5a
] - build: fix GN arg used in generate_config_gypi.py (Shelley Vohr) #55530bb78904548
] - build: fix GN build for sqlite and nghttp2 (Shelley Vohr) #55529535f1b0d4c
] - crypto: update root certificates to NSS 3.104 (Richard Lau) #556819b351b0749
] - crypto: fixRSA_PKCS1_PADDING
error message (Richard Lau) #556294b192daac0
] - deps: update acorn to 8.14.0 (Node.js GitHub Bot) #55699dfb764cbc6
] - deps: update sqlite to 3.47.0 (Node.js GitHub Bot) #555573477492588
] - deps: update amaro to 0.2.0 (Node.js GitHub Bot) #556013a1d490535
] - deps: update nghttp2 to 1.64.0 (Node.js GitHub Bot) #5555950552fdc92
] - deps: update acorn to 8.13.0 (Node.js GitHub Bot) #555581b82013f06
] - deps: update undici to 6.20.1 (Node.js GitHub Bot) #5550309060045b1
] - dns: stop using deprecatedares_query
(Aviv Keller) #554302d0914f337
] - doc: consolidate history table ofCustomEvent
(Edigleysson Silva) #55758cbe09b579f
] - doc: add path aliases typescript doc (Carlos Espa) #5576689aa83842a
] - doc: add esm example inpath.md
(Aviv Keller) #55745ee12431298
] - doc: consistent use of word child process (Gireesh Punathil) #5565420cb52d1d8
] - doc: clarity to available addon options (Preveen P) #55715bffbaa13a2
] - doc: update--max-semi-space-size
description (Joe Bowbeer) #55495505ff199b6
] - doc: brokenPerformanceObserver
code sample (Dom Harrington) #54227b8ca9d89f4
] - doc: add write flag when open file as the demo code's intention (robberfree) #546266662752b62
] - doc: add a note on console stream behavior (Gireesh Punathil) #556169743fa44ed
] - doc: remove mention of ECDH-ES in crypto.diffieHellman (Filip Skokan) #556115de2567644
] - doc: improve c++ embedder API doc (Gireesh Punathil) #55597f355054ec7
] - doc: capitalize "MIT License" (Aviv Keller) #55575fa61dced44
] - doc: move typescript support to active development (Marco Ippolito) #55536f77bf65059
] - doc: add suggested tsconfig for type stripping (Marco Ippolito) #55534f00ad27132
] - doc: add esm examples to node:string_decoder (Alfredo González) #555079dcca5441b
] - doc: add jazelly to collaborators (Jason Zhang) #55531f628fc43cb
] - (SEMVER-MINOR) fs: makedirent.path
writable (Antoine du Hamel) #55547dd9b6833c7
] - Revert "fs,win: fix bug in paths with trailing slashes" (Rod Vagg) #555278d0526f1f4
] - http: add diagnostic channelhttp.server.response.created
(Marco Ippolito) #5562225b1422337
] - (SEMVER-MINOR) http: add diagnostic channelhttp.client.request.created
(Marco Ippolito) #55586f92f20b930
] - http: don't emit error after destroy (Robert Nagy) #55457137aa5c9f6
] - http2: fix client async storage persistence (Orgad Shaneh) #55460d1965f9f5b
] - lib: implement webidl dictionary converter and use it in structuredClone (Jason Zhang) #55489bf552fa3cc
] - lib: prefer number to string in webidltype
function (Jason Zhang) #554897bfd295416
] - meta: bump actions/setup-python from 5.2.0 to 5.3.0 (dependabot[bot]) #5568821e3b7b2f4
] - meta: bump actions/setup-node from 4.0.4 to 4.1.0 (dependabot[bot]) #556872ae8d3b2ff
] - meta: bump rtCamp/action-slack-notify from 2.3.0 to 2.3.2 (dependabot[bot]) #5568642e6c47086
] - meta: bump actions/upload-artifact from 4.4.0 to 4.4.3 (dependabot[bot]) #556859042e9acc9
] - meta: bump actions/cache from 4.0.2 to 4.1.2 (dependabot[bot]) #556845c2e4729cc
] - meta: bump actions/checkout from 4.2.0 to 4.2.2 (dependabot[bot]) #55683d79c8bf7a1
] - meta: bump github/codeql-action from 3.26.10 to 3.27.0 (dependabot[bot]) #55682d0ea9815f6
] - meta: make review-wanted message minimal (Aviv Keller) #55607b1ca7ab0a1
] - meta: show PR/issue title on review-wanted (Aviv Keller) #5560619b1edfc5c
] - module: simplify --inspect-brk handling (Joyee Cheung) #55679869e88c6a8
] - module: simplifyfindPackageJSON
implementation (Antoine du Hamel) #5554356c46ab686
] - module: unify TypeScript and .mjs handling in CommonJS (Joyee Cheung) #55590d3be3da6f8
] - module: fix error thrown from require(esm) hitting TLA repeatedly (Joyee Cheung) #55520b3971bbf13
] - module: trim off internal stack frames for require(esm) warnings (Joyee Cheung) #55496a9e08cfe6d
] - module: allow ESM that failed to be required to be re-imported (Joyee Cheung) #55502adda37f00c
] - (SEMVER-MINOR) module: addfindPackageJSON
util (Jacob Smith) #5541269dd1e13c3
] - (SEMVER-MINOR) module: add module.stripTypeScriptTypes (Marco Ippolito) #552826ab59c81b6
] - os: improve path check with direct index access (Mert Can Altin) #55434038ac01d26
] - path,win: fix bug in resolve and normalize (Hüseyin Açacak) #556237aa250afda
] - sqlite: improve error handling using MaybeLocal (Tobias Nießen) #555712ec4ae7c16
] - sqlite: add readOnly option (Tobias Nießen) #5556788c7f5b489
] - sqlite: refactor open options (Tobias Nießen) #554427853462a61
] - src: provide workaround for container-overflow (Daniel Lemire) #555910302efe4b2
] - src: move more key related stuff to ncrypto (James M Snell) #55368d26dedf41d
] - src: refactor ECDHBitsJob signature (Filip Skokan) #556104c34891454
] - src: fix dns crash when failed to create NodeAresTask (theanarkh) #55521467618418a
] - src: use NewFromUtf8Literal in NODE_DEFINE_CONSTANT (Charles Kerr) #55581016baaebbe
] - src: do not run IsWindowsBatchFile on non-windows (Yagiz Nizipli) #55560efa142c108
] - src: migrateString::Value
toString::ValueView
(Aviv Keller) #55458cfa4d960c8
] - src,lib: optimize nodeTiming.uvMetricsInfo (RafaelGSS) #5561419da4de475
] - test: updateperformance-timeline
wpt (RedYetiDev) #5519710b68ed975
] - test: ignore unrelated events in FW watch tests (Carlos Espa) #556057d93c0c3ae
] - test: refactor some esm tests (Antoine du Hamel) #55472815e2524a6
] - test: split up test-runner-mock-timers test (Julian Gassner) #555066aa797de4e
] - test: remove unneeded listeners (Luigi Pinca) #55486649d767a40
] - test: increase coverage ofpathToFileURL
(Antoine du Hamel) #5549371cc20a3a5
] - test: avoidapply()
calls with large amount of elements (Livia Medeiros) #555012d19614020
] - test: increase test coverage forhttp.OutgoingMessage.appendHeader()
(Juan José) #55467aebf676569
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #5570353a7d8e75b
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #555120ea74f3d02
] - test,crypto: make crypto tests work with BoringSSL (Shelley Vohr) #554913234dc6100
] - test_runner: passoptions
directly toTestCoverage
(Aviv Keller) #5557815028dd073
] - tools: update ESLint to 9.14.0 (dependabot[bot]) #55689961cbc9c0f
] - tools: useutil.parseArgs
inlint-md
(Aviv Keller) #556948fc962f1af
] - tools: fix root certificate updater (Richard Lau) #55681d0b2d6be84
] - tools: compact jq output in daily-wpt-fyi.yml action (Filip Skokan) #55695cba05cda38
] - tools: run daily WPT.fyi report on all supported releases (Filip Skokan) #556197ce7eab324
] - tools: lint README lists more strictly (Antoine du Hamel) #55625c2fcda45ca
] - typings: fixModulesBinding
types (Antoine du Hamel) #555492b9928561d
] - url: refactorpathToFileURL
to native (Antoine du Hamel) #554764129bc72e2
] - util: do not catch on circular@@​toStringTag
errors (Aviv Keller) #55544v23.1.0
: 2024-10-24, Version 23.1.0 (Current), @aduh95Compare Source
Notable Changes
Buffer
now work with resizableArrayBuffer
When a
Buffer
is created using a resizableArrayBuffer
, theBuffer
lengthwill now correctly change as the underlying
ArrayBuffer
size is changed.Contributed by James M Snell in #55377.
MockTimers
test runner API is now stableMockTimers
, introduced in April 2023, has just reached stable status. ThisAPI provides comprehensive support for mocking
Date
and all major timers inNode.js, including
setTimeout
,setInterval
, andsetImmediate
, both fromthe
node:timers
,node:timers/promises
modules and global objects. Aftermonths of refinement, developers can now fully rely on
MockTimers
for testingtime-based operations with confidence, ensuring better control over asynchronous
behavior in their Node.js applications.
Example usage with initial
Date
object as time set:Contributed by Erick Wendel in #55398.
JSON modules and import attributes are now stable
The two proposals reached stage 4 of the TC39 process, at the October 2024
meeting. The Node.js implementation already matches exactly the semantics
required by the proposals.
Contributed by Nicolò Ribaudo by #55333.
Other Notable Changes
4ba31b7f20
] - (SEMVER-MINOR) assert: makeassertion_error
use Myers diff algorithm (Giovanni Bucci) #54862dcbc5fbe65
] - (SEMVER-MINOR) lib: addUV_UDP_REUSEPORT
for udp (theanarkh) #55403ec867ac7ce
] - (SEMVER-MINOR) net: addUV_TCP_REUSEPORT
for tcp (theanarkh) #55408Commits
4ba31b7f20
] - (SEMVER-MINOR) assert: make assertion_error use Myers diff algorithm (Giovanni Bucci) #54862fe667bea28
] - assert: fix deepEqual always return true on URL (Xuguang Mei) #50853aca03d9083
] - benchmark: add --runs support to run.js (Rafael Gonzaga) #55158c5abf50692
] - benchmark: adjust byte size for buffer-copy (Rafael Gonzaga) #55295d3618b2334
] - benchmark: adjust config for deepEqual object (Rafael Gonzaga) #55254c05582da3d
] - (SEMVER-MINOR) buffer: make Buffer work with resizable ArrayBuffer (James M Snell) #55377194bb0fca5
] - build: fix GN build for cares/uv deps (Cheng) #554778eb5359592
] - build: fix uninstall script for AIX 7.1 (Cloorc) #5543832f7d5ad1c
] - build: conditionally compile bundled sqlite (Richard Lau) #554092147e496e7
] - build: tidy up cares.gyp (Richard Lau) #554452beae50c77
] - build: synchronize list of c-ares source files (Richard Lau) #55445f48d30eb9f
] - build: fix path concatenation (Mohammed Keyvanzadeh) #55387d42522eec5
] - build: fix make errors that occur in Makefile (minkyu_kim) #5528752da293471
] - cli: add--heap-prof
flag available toNODE_OPTIONS
(Juan José) #54259adead26815
] - crypto: include openssl/rand.h explicitly (Shelley Vohr) #55425df2f1adf9e
] - deps: V8: cherry-pickf915fa4
(Chengzhong Wu) #55484bfc10a975f
] - deps: update googletest todf1544b
(Node.js GitHub Bot) #5546545ef1809bd
] - deps: update c-ares to v1.34.2 (Node.js GitHub Bot) #55463c2b5ebfeca
] - deps: update ada to 2.9.1 (Node.js GitHub Bot) #54679903863cafa
] - deps: update simdutf to 5.6.0 (Node.js GitHub Bot) #55379008fb5f7f4
] - deps: patch V8 to 12.9.202.28 (Node.js GitHub Bot) #553718b282228ae
] - deps: update c-ares to v1.34.1 (Node.js GitHub Bot) #5536954d55f2337
] - Revert "deps: disable io_uring support in libuv by default" (Santiago Gimeno) #55114bfb3c621c4
] - deps: update libuv to 1.49.1 (Santiago Gimeno) #55114055d2b8919
] - deps: update amaro to 0.1.9 (Node.js GitHub Bot) #55348c028d21b44
] - diagnostics_channel: fix unsubscribe during publish (simon-id) #55116b4b6ddb777
] - dns: honor the order option (Luigi Pinca) #5539237352cef7f
] - doc: changed the command used to verify SHASUMS256 (adriancuadrado) #5542066bcf4c065
] - doc: move dual package shipping docs to separate repo (Joyee Cheung) #5544404b41bda03
] - doc: add note about stdio streams in child_process (Ederin (Ed) Igharoro) #55322689d3a3e41
] - doc: addisBigIntObject
to documentation (leviscar) #55450784c825a27
] - doc: remove outdated remarks abouthighWaterMark
in fs (Ian Kerins) #554621ec25e8573
] - doc: move Danielle Adams key to old gpg keys (RafaelGSS) #553997d5bb097eb
] - doc: move Bryan English key to old gpg keys (RafaelGSS) #553992967471f67
] - doc: move Beth Griggs keys to old gpg keys (RafaelGSS) #553990be3a7505f
] - doc: add changelog for mocktimers (Erick Wendel) #55398e15f779794
] - doc: spell out condition restrictions (Jan Martin) #55187c3f2216a7d
] - doc: add instructions for WinGet build (Hüseyin Açacak) #55356bdc2c3bb94
] - doc: add missing return values in buffer docs (Karl Horky) #5527341f68f59af
] - doc: fix ambasador markdown list (Rafael Gonzaga) #55361bbd5318729
] - esm: add a fallback when importer in not a file (Antoine du Hamel) #5547122d77773fd
] - esm: fix inconsistency withimportAssertion
inresolve
hook (Wei Zhu) #5536548bb87b059
] - esm: mark import attributes and JSON module as stable (Nicolò Ribaudo) #553338ceefebaf2
] - events: optimize EventTarget.addEventListener (Robert Nagy) #5531245f960cab6
] - fs: pass correct path toDirentFromStats
duringglob
(Aviv Keller) #55071d9494a7641
] - fs: usewstring
on Windows paths (jazelly) #551710f1d13e359
] - lib: ensure FORCE_COLOR forces color output in non-TTY environments (Pietro Marchini) #55404dcbc5fbe65
] - (SEMVER-MINOR) lib: add UV_UDP_REUSEPORT for udp (theanarkh) #55403714f272423
] - lib: remove startsWith/endsWith primordials for char checks (Gürgün Dayıoğlu) #554074e5c90bb41
] - lib: replacecreateDeferredPromise
util withPromise.withResolvers
(Yagiz Nizipli) #54836db18aca47a
] - lib: add flag to drop connection when running in cluster mode (theanarkh) #54927dd848f2d1e
] - lib: test_runner#mock:timers respeced timeout_max behaviour (BadKey) #55375a9473bb8e3
] - lib: remove settled dependant signals when they are GCed (Edigleysson Silva (Edy)) #5535407ad987aa1
] - lib: convert transfer sequence to array in js (Jason Zhang) #55317d54d3b24c3
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #5538112d709bd27
] - meta: assign CODEOWNERS for /deps/ncrypto/* (Filip Skokan) #554260130780eec
] - meta: change color to blue notify review-wanted (Rafael Gonzaga) #55423335a507027
] - meta: bump codecov/codecov-action from 4.5.0 to 4.6.0 (dependabot[bot]) #552225ffc721d09
] - meta: bump github/codeql-action from 3.26.6 to 3.26.10 (dependabot[bot]) #55221d9fde2c45b
] - meta: bump step-security/harden-runner from 2.9.1 to 2.10.1 (dependabot[bot]) #552202c960a212e
] - module: include module information in require(esm) warning (Joyee Cheung) #55397a12dbf03d9
] - module: simplify ts under node_modules check (Marco Ippolito) #55440ec867ac7ce
] - (SEMVER-MINOR) net: add UV_TCP_REUSEPORT for tcp (theanarkh) #554089e320279a2
] - Revert "path: fix bugs and inconsistencies" (Aviv Keller) #554141ce8928db3
] - sqlite: cache column names in stmt.all() (Fedor Indutny) #55373cc775d314a
] - src: switch fromGet/SetPrototype
toGet/SetPrototypeV2
(Aviv Keller) #5545389c96ade53
] - src: remove icu basedToASCII
andToUnicode
(Yagiz Nizipli) #5515657dbbf8402
] - src: fix winapi_strerror error string (Hüseyin Açacak) #55207a490bb8745
] - src: remove uv__node_patch_is_using_io_uring (Santiago Gimeno) #551140da1632937
] - src,lib: introduceutil.getSystemErrorMessage(err)
(Juan José) #540756764273127
] - stream: propagate AbortSignal reason (Marvin ROGER) #554734dc2791cdd
] - test: add repl preview timeout test (Chengzhong Wu) #554848634e054d4
] - test: make test-node-output-v8-warning more flexible (Shelley Vohr) #554016c8564b55d
] - test: fix addons and node-api test assumptions (Antoine du Hamel) #5544194e863cdb7
] - test: update wpt test for webmessaging/broadcastchannel (devstone) #55205c10c6715cd
] - test: deflaketest-cluster-shared-handle-bind-privileged-port
(Aviv Keller) #553786f7379a048
] - test: fix invalidfile:
URL intest-fs-path-dir
(Antoine du Hamel) #55454dd5a08d022
] - test: updateconsole
wpt (Aviv Keller) #551929b7b4a6b25
] - test: remove duplicate tests (Luigi Pinca) #55393eb2fab3da1
] - test: update test_util.cc for coverage (minkyu_kim) #5529159923d137e
] - test: updatecompression
wpt (Aviv Keller) #551911b63a822ac
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #5542797c6448f63
] - test_runner: mark mockTimers as stable (Erick Wendel) #5539869ee56aacd
] - test_runner: add support for scheduler.wait on mock timers (Erick Wendel) #55244d9f0407cf6
] - test_runner: require--enable-source-maps
for sourcemap coverage (Aviv Keller) #553592ac2c5a7e7
] - tools: update lint-md-dependencies (Node.js GitHub Bot) #5547010f6b90f7d
] - tools: update gyp-next to 0.18.3 (Node.js GitHub Bot) #5546465936a8bb6
] - tools: add script to synch c-ares source lists (Richard Lau) #554451da4168486
] - tools: addpolyfilled
option toprefer-primordials
rule (Antoine du Hamel) #553183b2b3a8df2
] - tools: fix typos (Nathan Baulch) #55061736c085a5d
] - typings: add missing type ofArrayBufferPrototypeGetByteLength
(Wuli Zuo) #554397b3e38b855
] - url: handle "unsafe" characters properly inpathToFileURL
(Antoine du Hamel) #54545v23.0.0
: 2024-10-16, Version 23.0.0 (Current), @RafaelGSSCompare Source
We’re excited to announce the release of Node.js 23! Key highlights include:
require(esm)
by default for Node.js applicationsnode --run
commandNode.js 23 will replace Node.js 22 as the ‘Current’ release line when Node.js 22 enters long-term support (LTS) later this month.
According to the release schedule, Node.js 23 will remain the ‘Current’ release for the next six months, until April 2025.
Other Notable Changes
7ad0cc3e57
] - (SEMVER-MAJOR) build: remove support for 32-bit Windows (Michaël Zasso) #5318483eb4f2855
] - (SEMVER-MINOR) deps: V8: cherry-pickcd10ad7
(Joyee Cheung) #52535b8493a5789
] - doc: add abmusse to collaborators (Abdirahim Musse) #550867fab6e8885
] - (SEMVER-MAJOR) doc: use gcc 12 on AIX for Node.js >=23 (Richard Lau) #54338d473606040
] - (SEMVER-MINOR) lib: propagate aborted state to dependent signals before firing events (jazelly) #5482606206af181
] - (SEMVER-MINOR) module: unflag --experimental-require-module (Joyee Cheung) #550850b9249e335
] - (SEMVER-MINOR) module: implement the "module-sync" exports condition (Joyee Cheung) #5464892a25abca9
] - (SEMVER-MINOR) path: addmatchGlob
method (Aviv Keller) #5288112dd4c7575
] - src: mark node --run as stable (Yagiz Nizipli) #537634174b73153
] - test: support glob matching coverage files (Aviv Keller) #53553Semver-Major Commits
764b13d75c
] - (SEMVER-MAJOR) assert,util: change WeakMap and WeakSet comparison handling (Cristian Barlutiu) #534953800d60c66
] - (SEMVER-MAJOR) buffer: throw when writing beyond buffer" (Robert Nagy) #5458817fd32790a
] - (SEMVER-MAJOR) buffer: make File cloneable (Matthew Aitken) #47613f68d7d2acc
] - (SEMVER-MAJOR) build: reset embedder string to "-node.0" (Michaël Zasso) #545369d0748c5df
] - (SEMVER-MAJOR) build: disable ICF for mksnapshot (Leszek Swirski) #54077b7bcf3e121
] - (SEMVER-MAJOR) build: include v8-sandbox.h header in distribution (Michaël Zasso) #540771dfa3b8255
] - (SEMVER-MAJOR) build: reset embedder string to "-node.0" (Michaël Zasso) #54077046343ea9d
] - (SEMVER-MAJOR) build: warn for GCC versions earlier than 12.2 (Michaël Zasso) #54081a5decd4c8d
] - (SEMVER-MAJOR) build: drop experimental support for Windows <10 (Michaël Zasso) #540797ad0cc3e57
] - (SEMVER-MAJOR) build: remove support for 32-bit Windows (Michaël Zasso) #53184c7e42092f3
] - (SEMVER-MAJOR) build: compile with C++20 support (Michaël Zasso) #45427e2b7e41e23
] - (SEMVER-MAJOR) child_process: remove unused internal event (Rich Trott) #537934f1fe8a015
] - (SEMVER-MAJOR) cli: remove deprecated V8 flag (Omer Katz) #547618f37492b65
] - (SEMVER-MAJOR) cli: move --trace-atomics-wait to eol (Marco Ippolito) #52747f7e73cd1f2
] - (SEMVER-MAJOR) cli: remove --no-experimental-global-customevent flag (Daeyeon Jeong) #52723311504125f
] - (SEMVER-MAJOR) cli: remove --no-experimental-fetch flag (Filip Skokan) #52611a30ae50860
] - (SEMVER-MAJOR) cli: remove --no-experimental-global-webcrypto flag (Filip Skokan) #52564afe56aa58b
] - (SEMVER-MAJOR) crypto: runtime deprecate crypto.fips (Yagiz Nizipli) #5501933a6d1fe3a
] - (SEMVER-MAJOR) crypto: remove ERR_CRYPTO_SCRYPT_INVALID_PARAMETER (Tobias Nießen) #53305ff826069a8
] - (SEMVER-MAJOR) crypto: move DEP0182 to runtime deprecation (Tobias Nießen) #525526e150f9527
] - (SEMVER-MAJOR) deps: V8: cherry-pick97199f6
(Michaël Zasso) #545361e16779fa1
] - (SEMVER-MAJOR) deps: V8: cherry-pick01a47f3
(Michaël Zasso) #54536762a440e68
] - (SEMVER-MAJOR) deps: patch V8 to support older Clang versions (Michaël Zasso) #5453695f2213eed
] - (SEMVER-MAJOR) deps: always define V8_NODISCARD as no-op (Michaël Zasso) #5453609d997f181
] - (SEMVER-MAJOR) deps: fix FP16 bitcasts.h (Stefan Stojanovic) #545361866363854
] - (SEMVER-MAJOR) deps: patch V8 to support compilation with MSVC (StefanStojanovic) #545366f4f22f84c
] - (SEMVER-MAJOR) deps: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) #54536dfff61475e
] - (SEMVER-MAJOR) deps: disable V8 concurrent sparkplug compilation (Michaël Zasso) #5453669ad89f8eb
] - (SEMVER-MAJOR) deps: always define V8_EXPORT_PRIVATE as no-op (Michaël Zasso) #545365ab3140dfb
] - (SEMVER-MAJOR) deps: update V8 to 12.9.202.18 (Michaël Zasso) #54536fba06eb34a
] - (SEMVER-MAJOR) deps: remove bogus V8 DCHECK (Michaël Zasso) #540775355603fb5
] - (SEMVER-MAJOR) deps: V8: cherry-pick00e9eeb
(Michaël Zasso) #54077bcc1e2716c
] - (SEMVER-MAJOR) deps: V8: cherry-pickb139777
(Michaël Zasso) #54077415bc750a5
] - (SEMVER-MAJOR) deps: V8: cherry-pick35888fe
(Joyee Cheung) #5407728f3e5c9d1
] - (SEMVER-MAJOR) deps: always define V8_NODISCARD as no-op (Michaël Zasso) #54077a41c381cde
] - (SEMVER-MAJOR) deps: fix FP16 bitcasts.h (Stefan Stojanovic) #5407716c9348e60
] - (SEMVER-MAJOR) deps: V8: revert CL5331688
(Michaël Zasso) #54077dc4e702a45
] - (SEMVER-MAJOR) deps: patch V8 to support compilation with MSVC (StefanStojanovic) #54077f626acc328
] - (SEMVER-MAJOR) deps: silence internal V8 deprecation warning (Michaël Zasso) #54077ed187faa64
] - (SEMVER-MAJOR) deps: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) #54077ed029bded7
] - (SEMVER-MAJOR) deps: avoid compilation error with ASan (Michaël Zasso) #54077e600de93cf
] - (SEMVER-MAJOR) deps: disable V8 concurrent sparkplug compilation (Michaël Zasso) #54077cc36db7c06
] - (SEMVER-MAJOR) deps: always define V8_EXPORT_PRIVATE as no-op (Michaël Zasso) #540779d7cd9b864
] - (SEMVER-MAJOR) deps: update V8 to 12.8.374.13 (Michaël Zasso) #540774f70132972
] - (SEMVER-MAJOR) doc: reflect toolchains used for official binaries (Richard Lau) #549677fab6e8885
] - (SEMVER-MAJOR) doc: use gcc 12 on AIX for Node.js >=23 (Richard Lau) #543381d5ed725e9
] - (SEMVER-MAJOR) esm: export 'module.exports' on ESM CJS wrapper (Guy Bedford) #53848d5c29ba12d
] - (SEMVER-MAJOR) events: set EventEmitterAsyncResource fields private (Yagiz Nizipli) #54889f202322ea4
] - (SEMVER-MAJOR) fs: adjust typecheck fortype
infs.symlink()
(Livia Medeiros) #4974115e7563062
] - (SEMVER-MAJOR) fs: runtime deprecatedirent.path
(Antoine du Hamel) #5105000b2f07f9d
] - (SEMVER-MAJOR) fs,win: fix bug in paths with trailing slashes (Hüseyin Açacak) #54160e973c3e94b
] - (SEMVER-MAJOR) lib: validate signals with interface converter (Jason Zhang) #54965a5a946d8a5
] - (SEMVER-MAJOR) lib: implement interface converter in webidl (Jason Zhang) #549656ed93b4d69
] - (SEMVER-MAJOR) lib: expose global CloseEvent (Matthew Aitken) #5335552322aa42a
] - (SEMVER-MAJOR) net: validate host name for server listen (Jason Zhang) #54470efbba60e5b
] - (SEMVER-MAJOR) path: fix bugs and inconsistencies (Hüseyin Açacak) #54224c237eabf4c
] - (SEMVER-MAJOR) process: removeprocess.assert
(Aviv Keller) #5503517a17164d6
] - (SEMVER-MAJOR) src: update NODE_MODULE_VERSION to 131 (Michaël Zasso) #54536f0134fa6c3
] - (SEMVER-MAJOR) src: stop using deprecated fields ofv8::FastApiCallbackOptions
(Andreas Haas) #540770be79f4deb
] - (SEMVER-MAJOR) src: remove dependency on wrapper-descriptor-based CppHeap (Joyee Cheung) #54077525b3f22d1
] - (SEMVER-MAJOR) src: add source location to v8::TaskRunner (François Doray) #54077e945bd9525
] - (SEMVER-MAJOR) src: update NODE_MODULE_VERSION to 129 (Michaël Zasso) #54077bb8d2936ab
] - (SEMVER-MAJOR) src: do not use soon-to-be-deprecated V8 API (Igor Sheludko) #5317475884678d7
] - (SEMVER-MAJOR) src: add UV_PIPE_NO_TRUNCATE for bind in pipe_wrap.cc (theanarkh) #52347922feb1ff5
] - (SEMVER-MAJOR) stream: pipe to a closed or destroyed stream is not allowed in pipeline (jakecastelli) #53241ffe0dc5b87
] - (SEMVER-MAJOR) string_decoder: refactor encoding validation (Yagiz Nizipli) #54957df9efba2ce
] - (SEMVER-MAJOR) test: update v8-stats test for V8 12.6 (Michaël Zasso) #54077dbaef339aa
] - (SEMVER-MAJOR) test_runner: detect only tests when --test is not used (Colin Ihrig) #54881eb7e18fe94
] - (SEMVER-MAJOR) test_runner: always make spec the default reporter (Colin Ihrig) #545480db38f0f99
] - (SEMVER-MAJOR) test_runner: expose lcov reporter as newable function (Chemi Atlow) #52403f5ed3386fd
] - (SEMVER-MAJOR) timers: emit warning if delay is negative or NaN (jakecastelli) #46678f666a1b754
] - (SEMVER-MAJOR) tls: fix 'ERR_TLS_PSK_SET_IDENTIY_HINT_FAILED' typo (Aviv Keller) #52627c8c108f9b0
] - (SEMVER-MAJOR) tools: add additonal include dirs for V8 on AIX (Abdirahim Musse) #5453664e8646618
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 12.8 (Michaël Zasso) #54077dc352a5ff2
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 12.7 (Richard Lau) #540778044051ce3
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 12.6 (Michaël Zasso) #54077982f6ad516
] - (SEMVER-MAJOR) util: move util.log to eol (marco-ippolito) #527441d817dcb52
] - (SEMVER-MAJOR) util: move util.isPrimitive to eol (marco-ippolito) #5274472240942ed
] - (SEMVER-MAJOR) util: move util.isFunction to eol (marco-ippolito) #52744dc379626ab
] - (SEMVER-MAJOR) util: move util.isError to eol (marco-ippolito) #52744b5cae4fea6
] - (SEMVER-MAJOR) util: move util.isDate to eol (marco-ippolito) #52744bd559e3e5a
] - (SEMVER-MAJOR) util: move util.isObject to eol (marco-ippolito) #52744d3068b9cfa
] - (SEMVER-MAJOR) util: move util.isRegExp to eol (marco-ippolito) #52744a59c7aeb27
] - (SEMVER-MAJOR) util: move util.isUndefined to eol (marco-ippolito) #5274405e72c939a
] - (SEMVER-MAJOR) util: move util.isSymbol to eol (marco-ippolito) #52744832a77c003
] - (SEMVER-MAJOR) util: move util.isString to eol (marco-ippolito) #52744708f57ea49
] - (SEMVER-MAJOR) util: move util.isNumber to eol (marco-ippolito) #527446ec403fe91
] - (SEMVER-MAJOR) util: move util.isNullOrUndefined to eol (marco-ippolito) #527447cd8bb26d1
] - (SEMVER-MAJOR) util: move util.isNull to eol (marco-ippolito) #52744e32b0c1eab
] - (SEMVER-MAJOR) util: move util.isBuffer to eol (marco-ippolito) #52744be528ab11e
] - (SEMVER-MAJOR) util: move util.isBoolean to eol (marco-ippolito) #52744ac97a532f5
] - (SEMVER-MAJOR) util: move util._extend to eol (marco-ippolito) #52744e225f00034
] - (SEMVER-MAJOR) zlib: removezlib.bytesRead
(Yagiz Nizipli) #55020Semver-Minor Commits
90e3e5e173
] - (SEMVER-MINOR) crypto: add KeyObject.prototype.toCryptoKey (Filip Skokan) #5526229f31c6a76
] - (SEMVER-MINOR) crypto: add Date fields forvalidTo
andvalidFrom
(Andrew Moon) #5415983eb4f2855
] - (SEMVER-MINOR) deps: V8: cherry-pickcd10ad7
(Joyee Cheung) #525356c6562ce8b
] - (SEMVER-MINOR) http2: expose nghttp2_option_set_stream_reset_rate_limit as an option (Maël Nison) #54875d473606040
] - (SEMVER-MINOR) lib: propagate aborted state to dependent signals before firing events (jazelly) #54826772b35bdc4
] - (SEMVER-MINOR) module: support loading entrypoint as url (RedYetiDev) #5493306206af181
] - (SEMVER-MINOR) module: unflag --experimental-require-module (Joyee Cheung) #550850b9249e335
] - (SEMVER-MINOR) module: implement the "module-sync" exports condition (Joyee Cheung) #5464862383cd113
] - (SEMVER-MINOR) module: implement flushCompileCache() (Joyee Cheung) #549714dfed556ba
] - (SEMVER-MINOR) module: throw when invalid argument is passed to enableCompileCache() (Joyee Cheung) #549719a73aa0d15
] - (SEMVER-MINOR) module: write compile cache to temporary file and then rename it (Joyee Cheung) #5497192a25abca9
] - (SEMVER-MINOR) path: addmatchGlob
method (Aviv Keller) #52881b0f025208f
] - (SEMVER-MINOR) process: add process.features.require_module (Joyee Cheung) #55241bf11e5793b
] - (SEMVER-MINOR) test_runner: support custom arguments inrun()
(Aviv Keller) #55126059e08bb21
] - (SEMVER-MINOR) test_runner: add 'test:summary' event (Colin Ihrig) #54851f79fd03f41
] - (SEMVER-MINOR) test_runner: add support for coverage via run() (Chemi Atlow) #53937d2ad9b4fb6
] - (SEMVER-MINOR) worker: addmarkAsUncloneable
api (Jason Zhang) #55234Semver-Patch Commits
e1d8b4f038
] - assert: show the diff when deep comparing data with a custom message (Giovanni) #547594eeeab09f0
] - benchmark: rewrite detect-esm-syntax benchmark (Joyee Cheung) #55238834316d541
] - benchmark: add no-warnings to process.has bench (Rafael Gonzaga) #5515900d4f8073c
] - benchmark: create benchmark for typescript (Marco Ippolito) #5490496ec7eede9
] - benchmark: add webstorage benchmark (jakecastelli) #5504029357cb0ef
] - benchmark: include ascii to fs/readfile (Rafael Gonzaga) #5498853cba82e55
] - benchmark: add dotenv benchmark (Aviv Keller) #542784062b3fb43
] - buffer: coerce extrema to int inblob.slice
(Antoine du Hamel) #55141f805d0be95
] - buffer: correctly apply prototype to clonedFile
/Blob
(Aviv Keller) #55138da5887d8e9
] - buffer: extract Blob's .arrayBuffer() & webidl changes (Matthew Aitken) #533720d4387ebe2
] - buffer: use simdutf convert_latin1_to_utf8_safe (Robert Nagy) #54798ae1e2b53b7
] - build: fix notify-on-review-wanted action (Rafael Gonzaga) #5530422bc15764b
] - build: include.nycrc
in coverage workflows (Wuli Zuo) #5521028ffa4b751
] - build: fix not valid json in coverage (jakecastelli) #551791398c04c47
] - build: notify via slack when review-wanted (Rafael Gonzaga) #55102b2c42dbcbb
] - build: add more information to Makefile help (Aviv Keller) #53381a1cd3c8777
] - build: update ruff and addlint-py-fix
(Aviv Keller) #544106a6c957be7
] - build: remove -v flag to reduce noise (iwuliz) #550255f6bb7d007
] - build: display free disk space after build in the test-macOS workflow (iwuliz) #55025415b82d8b8
] - build: support up to python 3.13 in android-configure (Aviv Keller) #54529beb1892036
] - build: add the option to generate compile_commands.json in vcbuild.bat (Segev Finer) #5227981cc72996a
] - build: fix eslint makefile target (Aviv Keller) #549997e00be7650
] - Revert "build: upgrade clang-format to v18" (Chengzhong Wu) #5499496e057093f
] - build: printRunning XYZ linter...
for py and yml (Aviv Keller) #54386ab5e58bf29
] - Revert "build: only generate specified build type files" (Chengzhong Wu) #535806cb940a546
] - build: only generate specified build type files (Chengzhong Wu) #5351127f8d9e9d2
] - build,win: enable pch for clang-cl (Stefan Stojanovic) #55249bbf08c6a1b
] - build,win: add winget config to set up env (Hüseyin Açacak) #54729653b96527a
] - build,win: float VS 17.11 compilation patch (Stefan Stojanovic) #549700c5fa57bc7
] - cli: ensure --run has proper pwd (Yagiz Nizipli) #5494965768bca59
] - cli: fix spacing for port range error (Aviv Keller) #544952d77ba5d30
] - Revert "console: colorize console error and warn" (Aviv Keller) #54677b64006c0ed
] - crypto: ensure invalid SubtleCrypto JWK data import results in DataError (Filip Skokan) #550417a3027d563
] - deps: update undici to 6.20.0 (Node.js GitHub Bot) #5532954b5ec94e0
] - deps: patch V8 to 12.9.202.26 (Node.js GitHub Bot) #5516120d8b85d34
] - deps: upgrade npm to 10.9.0 (npm team) #55255fe45be207b
] - deps: V8: backport0d5d6e7
(Yagiz Nizipli) #551155ff9b072b2
] - deps: update archs files for openssl-3.0.15+quic1 (Node.js GitHub Bot) #55184302e6afe8c
] - deps: upgrade openssl sources to quictls/openssl-3.0.15+quic1 (Node.js GitHub Bot) #551845f78e2c880
] - deps: update timezone to 2024b (Node.js GitHub Bot) #550565ed3296051
] - deps: patch V8 to 12.9.202.19 (Node.js GitHub Bot) #55057a6ece28604
] - deps: update acorn-walk to 8.3.4 (Node.js GitHub Bot) #54950a428b21066
] - deps: update corepack to 0.29.4 (Node.js GitHub Bot) #54845260f1f4608
] - deps: patch V8 to 12.8.374.33 (Node.js GitHub Bot) #54952b887942e6b
] - deps: patch V8 to 12.8.374.32 (Node.js GitHub Bot) #548849087056060
] - deps: patch V8 to 12.8.374.31 (Michaël Zasso) #546826bce6f69c6
] - Revert "deps: remove bogus V8 DCHECK" (Michaël Zasso) #546820c771c35fa
] - deps: patch V8 to 12.8.374.22 (Node.js GitHub Bot) #54435543d1a9cb9
] - deps: update archs files for openssl-3.0.14+quic1 (Node.js GitHub Bot) #5433694d062bc78
] - deps: upgrade openssl sources to quictls/openssl-3.0.14+quic1 (Node.js GitHub Bot) #543368e33f20a64
] - Revert "deps: V8: cherry-pick9ebca66
" (Joyee Cheung) #535824c730aed7f
] - deps: V8: cherry-pick9ebca66
(Chengzhong Wu) #53522e9904fe49a
] - doc: edit onboarding guide to clarify when mailmap addition is needed (Antoine du Hamel) #55334acd698a5c8
] - doc: fix the return type of outgoingMessage.setHeaders() (Jimmy Leung) #55290d620755661
] - doc: add release key for aduh95 (Antoine du Hamel) #553494a3fffaf58
] - doc: moveERR_INVALID_PERFORMANCE_MARK
to legacy errors (Antoine du Hamel) #55247e79ae1bf0c
] - doc: reserve 132 for Electron 34 (Michaela Laurencin) #5530633fe88a0b3
] - doc: add pmarchini to collaborators (Pietro Marchini) #55331755b89772d
] - doc: fixevents.once()
example usingAbortSignal
(Ivo Janssen) #55144accb239272
] - doc: add onboarding details for ambassador program (Marco Ippolito) #55284a301596c41
] - doc: moveERR_NAPI_TSFN_START/STOP_IDLE_LOOP
to legacy errors (Antoine du Hamel) #5524832efeea0c0
] - doc: fix initial default value of autoSelectFamily (Ihor Rohovets) #55245cc9b9a7f70
] - doc: tweak onboarding instructions (Michael Dawson) #55212c9cffb73b3
] - doc: update test context.assert (Pietro Marchini) #55186348d865652
] - doc: updaterequire(ESM)
history and stability status (Antoine du Hamel) #5519914b53df33c
] - doc: fix unordered error anchors (Antoine du Hamel) #55242dec10991e7
] - doc: mention addons to experimental permission (Rafael Gonzaga) #55166cebf21dfa5
] - doc: use correct dash in stability status (Antoine du Hamel) #552000f02810fc9
] - doc: fix link intest/README.md
(Livia Medeiros) #5516522b4b7c626
] - doc: fix typos (Nathan Baulch) #55066e6427e1d87
] - doc: add esm examples to node:net (Alfredo González) #551346d1cd506b5
] - doc: remove outdated https import reference (Edigleysson Silva (Edy)) #551115368cdcf8a
] - doc: move the YAML changes element (sendoru) #5511223743f63fb
] - doc: remove random horizontal separators inprocess.md
(Antoine du Hamel) #5514918acff0d01
] - doc: put --env-file-if-exists=config right under --env-file=config (Edigleysson Silva (Edy)) #55131fd787c96e1
] - doc: fix the require resolve algorithm inmodules.md
(chirsz) #55117668e523392
] - doc: update style guide (Aviv Keller) #53223ae82b455d1
] - doc: add missing:
torun()
'sglobPatterns
(Aviv Keller) #551357f480818b7
] - doc: correctcleanup
option in stream.(promises.)finished (René) #55043b8493a5789
] - doc: add abmusse to collaborators (Abdirahim Musse) #55086f20c42e964
] - doc: add note about--expose-internals
(Aviv Keller) #528611c61a83444
] - doc: removeparseREPLKeyword
from REPL documentation (Aviv Keller) #5474965362f0181
] - doc: add missing EventSource docs to globals (Matthew Aitken) #550225e25c2a79a
] - doc: cover --experimental-test-module-mocks flag (Jonathan Sharpe) #5502199433a2d7a
] - doc: add more details for localStorage and sessionStorage (Batuhan Tomo) #53881b446a587ba
] - doc: mark v21 as End-of-Life (Aviv Keller) #549845e87577b4f
] - doc: change backporting guide with updated info (Aviv Keller) #53746de47b3122a
] - doc: add missing definitions tointernal-api.md
(Aviv Keller) #53303421977cd48
] - doc: fix history ofprocess.features
(Antoine du Hamel) #54982305137faae
] - doc: fix typo callsite.lineNumber (Rafael Gonzaga) #549697feff2434d
] - doc: update documentation for externalizing deps (Michael Dawson) #54792cb20c5b9f4
] - doc: add documentation for process.features (Marco Ippolito) #5489724302c9fe9
] - doc: fix typo in CppgcMixin docs (Joyee Cheung) #547627327e44a05
] - doc: sort versions to fix the linter error (Rafael Gonzaga) #54229fb852798dc
] - esm: do not interpret"main"
as a URL (Antoine du Hamel) #550038fd90938f9
] - esm: remove --no-import-harmony-assertions (Shu-yu Guo) #54890a9081b5391
] - events: allow null/undefined eventInitDict (Matthew Aitken) #546430de1cf004c
] - events: returncurrentTarget
when dispatching (Matthew Aitken) #546429f9069d313
] - fs: fix linter issue (Antoine du Hamel) #5535336ca010bef
] - fs: acknowledgesignal
option infilehandle.createReadStream()
(Livia Medeiros) #551487fe5bcd29e
] - fs: check subdir correctly in cpSync (Jason Zhang) #55033090add7864
] - fs: refactoring declaratively withArray.fromAsync
(Sonny) #5464477ca5ca075
] - fs: convert to u8 string for filesystem path (Jason Zhang) #54653cf2bce6386
] - fs: fix regression on rmsync (Yagiz Nizipli) #539827168295e7a
] - fs: movermSync
implementation to c++ (Yagiz Nizipli) #5361771785889c8
] - lib: prefer logical assignment (Aviv Keller) #5504478f421de88
] - lib: fix module print timing when specifier includes"
(Antoine du Hamel) #55150d5eb9a378e
] - lib: removeSymbol[Async]Dispose
polyfills (Michaël Zasso) #552764c045351c1
] - lib: fix typos (Nathan Baulch) #55065574f2dd517
] - lib: prefer optional chaining (Aviv Keller) #5504576edde5cd0
] - lib: remove lib/internal/idna.js (Yagiz Nizipli) #550507014e50ca3
] - lib: the REPL should survive deletion of Array.prototype methods (Jordan Harband) #314575c22d19f44
] - lib, tools: remove duplicate requires (Aviv Keller) #5498724648b5769
] - lib,esm: handle bypass network-import via data: (Rafael Gonzaga) #537641d38bd1122
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #5530098788dace6
] - meta: bump mozilla-actions/sccache-action from 0.0.5 to 0.0.6 (dependabot[bot]) #552258de2695fe5
] - meta: bump actions/checkout from 4.1.7 to 4.2.0 (dependabot[bot]) #55224ccae9c0fef
] - meta: bump actions/setup-node from 4.0.3 to 4.0.4 (dependabot[bot]) #55223fd4959c67a
] - meta: bump peter-evans/create-pull-request from 7.0.1 to 7.0.5 (dependabot[bot]) #55219c08bb75618
] - meta: add mailmap entry for abmusse (Abdirahim Musse) #5518218800da280
] - meta: add more information about nightly releases (Aviv Keller) #55084eda98728da
] - meta: addlinux
to OS labels in collaborator guide (Aviv Keller) #549868aa57918c2
] - meta: remove never-used workflow trigger (Aviv Keller) #54983c6ae161237
] - meta: remove unneeded ignore rules from ruff (Aviv Keller) #54360ccc7ce09f2
] - meta: removebuild-windows.yml
(Aviv Keller) #54662f88fe776ef
] - meta: add links to alternative issue trackers (Aviv Keller) #5440190f56dbad9
] - module: throw ERR_NO_TYPESCRIPT when compiled without amaro (Marco Ippolito) #5533231a37e777d
] - module: wrap swc error in ERR_INVALID_TYPESCRIPT_SYNTAX (Marco Ippolito) #553163fb7426f83
] - module: check --experimental-require-module separately from detection (Joyee Cheung) #55250bdd590be73
] - module: use kNodeModulesRE to detect node_modules (Joyee Cheung) #552435e4da33d97
] - module: add internal type def forflushCompileCache
(Jacob Smith) #55226d24c7313f7
] - module: support 'module.exports' interop export in require(esm) (Guy Bedford) #5456312f92b04f4
] - module: remove duplicated import (Aviv Keller) #54942be4babb3c2
] - module: report unfinished TLA in ambiguous modules (Antoine du Hamel) #549803ac5b49d85
] - module: refator ESM loader for adding future synchronous hooks (Joyee Cheung) #547693c4ef343ee
] - module: remove bogus assertion in CJS entrypoint handling with --import (Joyee Cheung) #54592e35902cddb
] - module: fix discrepancy between .ts and .js (Marco Ippolito) #54461fdf838aee6
] - node-api: add napi_create_buffer_from_arraybuffer method (Mert Can Altin) #5450587e7aeb672
] - os: use const with early return for path (Trivikram Kamat) #54959e42ca5c1a9
] - path: remove repetitive conditional operator inposix.resolve
(Wiyeong Seo) #5483504750afb1e
] - perf_hooks: add missing type argument to getEntriesByName (Luke Taher) #54767f98d9c125c
] - process: fixprocess.features.typescript
when Amaro is unavailable (Antoine du Hamel) #55323bbdfeebd9e
] - process: addprocess.features.typescript
(Aviv Keller) #54295cdae315706
] - quic: start adding in the internal quic js api (James M Snell) #53256c6d20a034d
] - repl: catch\v
and\r
in new-line detection (Aviv Keller) #5451209d10b50dc
] - sqlite: disable DQS misfeature by default (Tobias Nießen) #552977af434fc19
] - sqlite: make sourceSQL and expandedSQL string-valued properties (Tobias Nießen) #54721a49abec6c3
] - sqlite: enable foreign key constraints by default (Tobias Nießen) #5477714353387eb
] - src: implement IsInsideNodeModules() in C++ (Joyee Cheung) #5528618536d95e2
] - src: apply getCallSite optimization (RafaelGSS) #55174317d2450f9
] - src: modernize likely/unlikely hints (Yagiz Nizipli) #5515533bbf3751b
] - src: fixup Error.stackTraceLimit during snapshot building (Joyee Cheung) #5512165fbc95949
] - src: parse --stack-trace-limit and use it in --trace-* flags (Joyee Cheung) #55121858bce5698
] - src: make minor tweaks to quic c++ for c++20 (James M Snell) #53256ac53a5b29d
] - src: move more key handling to ncrypto (James M Snell) #55108f5d454ac7e
] - src: add receiver to fast api callback methods (Carlos Espa) #54408b5fb2ff81e
] - src: fix typos (Nathan Baulch) #55064812806a757
] - src: move more stuff over to use Maybe<void> (James M Snell) #5483184966703e0
] - src: track BaseObjects with an efficient list (Chengzhong Wu) #5510402cdf7b809
] - src: decode native error messages as UTF-8 (Joyee Cheung) #550246fb9f56994
] - src: update clang-tidy and focus on modernization (Yagiz Nizipli) #53757773e7c67cf
] - src: do not call path.back() when it is empty (Cheng) #55072c4681d55ae
] - src: move evp stuff to ncrypto (James M Snell) #549115a966714c1
] - src: revert filesystem::path changes (Yagiz Nizipli) #5501512dd4c7575
] - src: mark node --run as stable (Yagiz Nizipli) #537638b8fc53c9a
] - src: cleanup per env handles directly without a list (Chengzhong Wu) #54993fd8c762fab
] - src: add unistd.h import if node posix credentials is defined (Jonas) #54528d496d44145
] - src: remove duplicate code setting AF_INET (He Yang) #54939d2a4f92920
] - src: useMaybe<void>
where bool isn't needed (Michaël Zasso) #545758191e1f575
] - src: improve utf8 string generation performance (Yagiz Nizipli) #548739f5977fdac
] - src: simplify string_bytes with views (Daniel Lemire) #54876849db10fb3
] - src: add helpers for creating cppgc-managed wrappers (Joyee Cheung) #522954568df4c6d
] - src: support v8::Data in heap utils (Joyee Cheung) #522954f1c27af8c
] - src: handle errors correctly in webstorage (Michaël Zasso) #54544c062b5242a
] - src: use correct way to signal interceptor error (Michaël Zasso) #54418097a52848e
] - src: do not save c_str of a temp string (Cheng) #539413111ed7011
] - stream: handle undefined chunks correctly in decode stream (devstone) #5515387a79cd8a1
] - stream: treat null asyncIterator as undefined (Jason Zhang) #551190e52836c35
] - stream: set stream prototype to closest transferable superclass (Jason Zhang) #5506782dab76d63
] - test: fix tests when Amaro is unavailable (Richard Lau) #55320fdc23b2f6b
] - test: use more informative errors intest-runner-cli
(Antoine du Hamel) #55321a05cb0d1b0
] - test: maketest-loaders-workers-spawned
less flaky (Antoine du Hamel) #551726c92c1391a
] - test: add resource to internal module stat test (RafaelGSS) #551571d95b79b66
] - test: move coverage source map tests to new file (Aviv Keller) #551232755551c3c
] - test: adding more tests for strip-types (Kevin Toshihiro Uehara) #54929371ed85e4e
] - test: update wpt test for encoding (devstone) #5515199e0d0d218
] - test: addescapePOSIXShell
util (Antoine du Hamel) #5512556c1786475
] - test: remove unnecessaryawait
in test-watch-mode (Wuli) #5514228c7394319
] - test: fix typos (Nathan Baulch) #55063fbc6fcb018
] - test: remove duplicated test descriptions (Christos Koutsiaris) #5414066a2cb210a
] - test: deflake test/pummel/test-timers.js (jakecastelli) #550989bb6a1a790
] - test: deflake test-http-remove-header-stays-removed (Luigi Pinca) #550040f7bdcc17f
] - test: fix test-tls-junk-closes-server (Michael Dawson) #550892118e32d9b
] - test: fix more tests that fail when path contains a space (Antoine du Hamel) #55088bdddc04dff
] - test: fixassertSnapshot
when path contains a quote (Antoine du Hamel) #550877d0ce254e8
] - test: fix some tests when path contains%
(Antoine du Hamel) #5508261ad74fb0f
] - Revert "test: mark test-fs-watch-non-recursive flaky on Windows" (Luigi Pinca) #5507902e8972169
] - test: remove interval and give more time to unsync (Pietro Marchini) #550063c5ceff85f
] - test: deflake test-inspector-strip-types (Luigi Pinca) #550588b70e6bdee
] - test: maketest-runner-assert
more robust (Aviv Keller) #550362cec716c48
] - test: update tls test to support OpenSSL32 (Michael Dawson) #550301fcb128771
] - test: do not assumeprocess.execPath
contains no spaces (Antoine du Hamel) #550287ecc48d061
] - test: fixtest-vm-context-dont-contextify
when path contains a space (Antoine du Hamel) #55026cfe58cfdc4
] - test: adjust tls-set-ciphers for OpenSSL32 (Michael Dawson) #55016941635473d
] - test: addutil.stripVTControlCharacters
test (RedYetiDev) #54865b23d1c37b9
] - test: improve coverage for timer promises schedular (Aviv Keller) #53370a65e4418e5
] - test: removegetCallSite
from common (RedYetiDev) #549475116578b8a
] - test: remove unused common utilities (RedYetiDev) #54825a9677db91b
] - test: deflake test-http-header-overflow (Luigi Pinca) #549789be0057859
] - test: fixsoucre
tosource
(Aviv Keller) #5503829b9c72b05
] - test: add asserts to validate test assumptions (Michael Dawson) #54997e35299ae62
] - test: add runner watch mode isolation tests (Pietro Marchini) #548882a1607cc2e
] - test: fix invalid wasm test (Aviv Keller) #54935a6ed2148a0
] - test: move test-http-max-sockets to parallel (Luigi Pinca) #54977636b3432d3
] - test: remove test-http-max-sockets flaky designation (Luigi Pinca) #54976291d90acbc
] - test: refactor test-whatwg-webstreams-encoding to be shorter (David Dong) #545696dfa3e46d3
] - test: adjust key sizes to support OpenSSL32 (Michael Dawson) #54972f8b7a17146
] - test: update test to support OpenSSL32 (Michael Dawson) #54968b470e2fcb2
] - test: update DOM events web platform tests (Matthew Aitken) #546429cbef482df
] - test: update multiple assert tests to use node:test (James M Snell) #54585259163802c
] - test: validate promise-versionsetTimeout
behavior withNaN
(Benjamin Gruenbaum) #536224174b73153
] - test: support glob matching coverage files (Aviv Keller) #535530e187e4a21
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #55029ccd4faf4bf
] - Revert "test_runner: ignore unmapped lines for coverage" (Aviv Keller) #553393a42085ee4
] - test_runner: ignore unmapped lines for coverage (Edigleysson Silva (Edy)) #552289a9409ff1f
] - test_runner: throw on invalid source map (Aviv Keller) #55055980b91a1ef
] - test_runner: assert entry is a valid object (Edigleysson Silva (Edy)) #552311c7795e52e
] - test_runner: add cwd option to run (Pietro Marchini) #54705103b8439ca
] - test_runner: avoid spread operator on arrays (Antoine du Hamel) #5514327dab9d916
] - test_runner: support typescript files in default glob (Aviv Keller) #55081e32521a7b9
] - test_runner: close and flush destinations on forced exit (Colin Ihrig) #55099aac8ba7bd7
] - test_runner: fix mocking modules with quote in their URL (Antoine du Hamel) #550834f881790e9
] - test_runner: report error on missing sourcemap source (Aviv Keller) #55037b264cbe5e8
] - test_runner: usetest:
symbol on second print of parent test (RedYetiDev) #549560c8c107aaa
] - test_runner: replace ansi clear with ansi reset (Pietro Marchini) #55013bb405210c5
] - test_runner: support typescript module mocking (Marco Ippolito) #5487850136a167d
] - test_runner: avoid coverage report partial file names (Pietro Marchini) #543794988bb549e
] - tools: enforce ordering of error codes inerrors.md
(Antoine du Hamel) #553245a3da7b4e4
] - tools: enforce errors to not be documented in legacy section (Aviv Keller) #552188dbca2d35b
] - tools: update gyp-next to 0.18.2 (Node.js GitHub Bot) #55160b2161d3a13
] - tools: bump the eslint group in /tools/eslint with 4 updates (dependabot[bot]) #55227e7d27320c3
] - tools: only check teams on the default branch (Antoine du Hamel) #55124e8127db032
] - tools: makechoco install
script more readable (Aviv Keller) #54002779e6bdd5e
] - tools: bump Rollup from 4.18.1 to 4.22.4 forlint-md
(dependabot[bot]) #550930257102299
] - tools: unlock versions of irrelevant DB deps (Michaël Zasso) #55042f43424ac2d
] - tools: remove redudant code from eslint require rule (Aviv Keller) #548926a52e81260
] - tools: update error message for ICU in license-builder (Aviv Keller) #54742cde6dccb65
] - tools: refactor js2c.cc to use c++20 (Yagiz Nizipli) #5484959c7c55aad
] - tools: bump the eslint group in /tools/eslint with 7 updates (dependabot[bot]) #54821c6269cb069
] - tools: fix path of abseil file in v8.gyp (Michaël Zasso) #54659d17fefcd71
] - tools: update github_reporter to 1.7.1 (Node.js GitHub Bot) #5495129a4fcf918
] - tty: fix links for terminal colors (Aviv Keller) #54596e42ad5e80c
] - util: update ansi regex (Aviv Keller) #54865b5aae52c71
] - Revert "util: move util._extend to eol" (Marco Ippolito) #53429deb5effe01
] - v8: out of bounds copy (Robert Nagy) #552613b0617dd19
] - vm: migrate ContextifyScript to cppgc (Joyee Cheung) #5229535b8e5cb0c
] - Revert "vm,src: add property query interceptors" (Michaël Zasso) #53348d1f18b0bf1
] - vm,src: add property query interceptors (Michaël Zasso) #5317289a2f565b7
] - watch: preserve output when gracefully restarted (Théo LUDWIG) #543236b9413e41a
] - worker: throw InvalidStateError in postMessage after close (devstone) #552066031a4bc7c
] - worker: handle--input-type
more consistently (Antoine du Hamel) #549795b3f3c5a3b
] - zlib: throw brotli initialization error from c++ (Yagiz Nizipli) #54698c42d8461b0
] - zlib: remove prototype primordials usage (Yagiz Nizipli) #54695v22.15.0
: 2025-04-23, Version 22.15.0 'Jod' (LTS), @UlisesGascon prepared by @RafaelGSSCompare Source
Notable Changes
3c88f3938b
] - (SEMVER-MINOR) assert: implement partial error comparison (Ruben Bridgewater) #57370db19a3f9fc
] - (SEMVER-MINOR) assert: improve partialDeepStrictEqual (Ruben Bridgewater) #573701ee5f840b4
] - (SEMVER-MINOR) cli: allow --cpu-prof* in NODE_OPTIONS (Carlos Espa) #57018872ee0f2ac
] - crypto: update root certificates to NSS 3.108 (Node.js GitHub Bot) #5738103a0f3a56b
] - (SEMVER-MINOR) crypto: support --use-system-ca on Windows (Joyee Cheung) #5683394647bbdb2
] - (SEMVER-MINOR) crypto: added support for reading certificates from macOS system store (Tim Jacomb) #565998f7b86a6e7
] - deps: update timezone to 2025a (Node.js GitHub Bot) #56876f9f611fb58
] - (SEMVER-MINOR) deps,tools: add zstd 1.5.6 (Jan Martin) #5210007a6d5f8cf
] - (SEMVER-MINOR) dns: add TLSA record query and parsing (Rithvik Vibhu) #52983d8a83ef2f3
] - doc: add @geeksilva97 to collaborators (Edy Silva) #572416b93ba723b
] - (SEMVER-MINOR) module: use synchronous hooks for preparsing in import(cjs) (Joyee Cheung) #55698b2e44a8079
] - (SEMVER-MINOR) module: implement module.registerHooks() (Joyee Cheung) #55698dc91ae7471
] - (SEMVER-MINOR) process: add execve (Paolo Insogna) #56496bc672fcfdd
] - (SEMVER-MINOR) sqlite: allow returningArrayBufferView
s from user-defined functions (René) #567905edee197ab
] - (SEMVER-MINOR) tls: implement tls.getCACertificates() (Joyee Cheung) #57107f9fe0e09ee
] - (SEMVER-MINOR) util: expose diff function used by the assertion errors (Giovanni Bucci) #57462673a424180
] - (SEMVER-MINOR) v8: add v8.getCppHeapStatistics() method (Aditi) #571464991e5d826
] - (SEMVER-MINOR) zlib: add zstd support (Jan Martin) #52100Commits
ea70a379c3
] - assert: improve partialDeepStrictEqual performance (Ruben Bridgewater) #575092b419d7e79
] - (SEMVER-MINOR) assert: implement partial error comparison (Ruben Bridgewater) #57370d817c17fd7
] - (SEMVER-MINOR) assert: improve partialDeepStrictEqual (Ruben Bridgewater) #573707af0440073
] - assert: improve myers diff performance (Giovanni Bucci) #5727901cf5fb871
] - (SEMVER-MINOR) assert,util: improve performance (Ruben Bridgewater) #57370a58842cee4
] - (SEMVER-MINOR) benchmark: adjust assert runtimes (Ruben Bridgewater) #57370b20b3697aa
] - (SEMVER-MINOR) benchmark: skip running some assert benchmarks by default (Ruben Bridgewater) #57370ec5570fd1e
] - (SEMVER-MINOR) benchmark: add assert partialDeepStrictEqual benchmark (Ruben Bridgewater) #57370b991bf4ca6
] - benchmark: add a warmup on bench-openSync (Elves Vieira) #570514a455bc806
] - build: fix update-wpt workflow (Jonas) #574686ec397e61c
] - build: fix compatibility with V8'sdepot_tools
(Richard Lau) #57330475aaca336
] - build: print 'Formatting Markdown...' for long task markdown formatting (1ilsang) #5710873fced7a97
] - build: fix GN build failure (Cheng) #57013af05f91425
] - build: fix GN build of uv (Cheng) #56955fd3053e947
] - build: gyp exclude libm linking on macOS (deepak1556) #569015ec6b9a50f
] - build: remove explicit linker call to libm on macOS (deepak1556) #56901a893da9be7
] - build: link with Security.framework in GN build (Cheng) #5689502cd8e0a50
] - build: do not put commands in sources variables (Cheng) #5688573dc8c2140
] - build: add double quotes around <(python) (Luigi Pinca) #5682665a3b5f73c
] - build: add build option suppress_all_error_on_warn (Michael Dawson) #56647424aacc942
] - build,win: disable node pch with ccache (Stefan Stojanovic) #57224901685c723
] - build,win: enable ccache (Stefan Stojanovic) #5684779987676c1
] - cli: clarify --cpu-prof-name allowed values (Eugenio Ceschia) #57433503d4237aa
] - (SEMVER-MINOR) cli: allow --cpu-prof* in NODE_OPTIONS (Carlos Espa) #57018ada572b733
] - crypto: ensure expected JWK alg in SubtleCrypto.importKey RSA imports (Filip Skokan) #574507e5aabde55
] - crypto: update root certificates to NSS 3.108 (Node.js GitHub Bot) #573817ea6ac1e09
] - crypto: add support for intermediate certs in --use-system-ca (Tim Jacomb) #5716444b19ec534
] - crypto: support --use-system-ca on non-Windows and non-macOS (Joyee Cheung) #57009e21d126438
] - crypto: fix missing OPENSSL_NO_ENGINE guard (Shelley Vohr) #570122fdf82b357
] - crypto: cleanup root certificates and skip PEM deserialization (Joyee Cheung) #5699903a0f3a56b
] - (SEMVER-MINOR) crypto: support --use-system-ca on Windows (Joyee Cheung) #56833bbdb10bc2c
] - crypto: fix X509* leak in --use-system-ca (Joyee Cheung) #568325470cab6d3
] - crypto: add api to get openssl security level (Michael Dawson) #5660194647bbdb2
] - (SEMVER-MINOR) crypto: added support for reading certificates from macOS system store (Tim Jacomb) #56599caf81ca549
] - debugger: fix behavior of plain object exec in debugger repl (Dario Piotrowicz) #574981d703fe220
] - deps: update c-ares to v1.34.5 (Node.js GitHub Bot) #5779298457dfea3
] - deps: update undici to 6.21.2 (Matteo Collina) #574424a852ba11b
] - deps: V8: cherry-pickc172ffc
(Choongwoo Han) #5743754a12e0bcc
] - deps: update googletest to0bdccf4
(Node.js GitHub Bot) #573802e350963e5
] - deps: update acorn to 8.14.1 (Node.js GitHub Bot) #5738295e5d01c25
] - deps: update amaro to 0.4.1 (marco-ippolito) #57121ef216deb05
] - deps: update amaro to 0.3.2 (marco-ippolito) #569164ef4d6ecf6
] - deps: update amaro to 0.3.1 (Node.js GitHub Bot) #56785a8bf5ef4a7
] - deps: update simdjson to 3.12.2 (Node.js GitHub Bot) #570840bd612bb32
] - deps: update archs files for openssl-3.0.16 (Node.js GitHub Bot) #573357d65f79306
] - deps: upgrade openssl sources to quictls/openssl-3.0.16 (Node.js GitHub Bot) #573355c88c52491
] - deps: update corepack to 0.32.0 (Node.js GitHub Bot) #57265fa04bf4999
] - deps: update gyp file for ngtcp2 1.11.0 (Richard Lau) #57225ca6b07258d
] - deps: update cjs-module-lexer to 2.1.0 (Node.js GitHub Bot) #571800a72b16fe1
] - deps: update ngtcp2 to 1.11.0 (Node.js GitHub Bot) #57179600fb41f54
] - deps: update sqlite to 3.49.1 (Node.js GitHub Bot) #571787eb3b44010
] - deps: update zlib to 1.3.0.1-motley-788cb3c (Node.js GitHub Bot) #56655257d22e181
] - deps: update sqlite to 3.49.0 (Node.js GitHub Bot) #5665453a7bfce01
] - deps: V8: cherry-pick9ab4059
(Levi Zim) #56781636f65cb1a
] - deps: update cjs-module-lexer to 2.0.0 (Michael Dawson) #568558f7b86a6e7
] - deps: update timezone to 2025a (Node.js GitHub Bot) #56876db31276bfa
] - deps: update simdjson to 3.12.0 (Node.js GitHub Bot) #56874d1d58d6198
] - deps: update googletest toe235eb3
(Node.js GitHub Bot) #5687305b3dff275
] - deps: update simdjson to 3.11.6 (Node.js GitHub Bot) #56250f9f611fb58
] - (SEMVER-MINOR) deps,tools: add zstd 1.5.6 (Jan Martin) #52100ef212a41a7
] - dns: restore dns query cache ttl (Ethan Arrowood) #576407a10b01e97
] - dns: remove redundant code using common variable (Deokjin Kim) #57386bc2603f086
] - (SEMVER-MINOR) dns: add TLSA record query and parsing (Rithvik Vibhu) #5298338a2e5d60b
] - doc: add gurgunday as triager (Gürgün Dayıoğlu) #57594b7ac0bd129
] - doc: clarify behaviour of node-api adjust function (Michael Dawson) #57463fa834896c8
] - doc: remove Corepack documentation (Antoine du Hamel) #576358988173286
] - doc: remove mention of--require
not supporting ES modules (Huáng Jùnliàng) #576203a7d179dbd
] - doc: mention reports should align with Node.js CoC (Rafael Gonzaga) #57607983c5087f6
] - doc: add section stating that very stale PRs should be closed (Dario Piotrowicz) #57541f4e1f702d4
] - doc: add bjohansebas as triager (Sebastian Beltran) #575649b7fd6b076
] - doc: update support channels (Claudio W.) #57538ef624aff55
] - doc: remove cryptoStream API reference (Jonas) #575794a2afc255a
] - doc: module resolution pseudocode corrections (Marcel Laverdet) #57080ee5059426d
] - doc: add history entry for DEP0190 inchild_process.md
(Antoine du Hamel) #575444deebb4fca
] - doc: remove deprecated pattern inchild_process.md
(Antoine du Hamel) #575686cd7b37d9c
] - doc: mark multiple experimental APIS as stable (James M Snell) #57510c2f1fa0928
] - doc: remove mertcanaltin from Triagers (Mert Can Altin) #575319b6047e520
] - doc: recommend watching the collaborators repo in the onboarding doc (Darshan Sen) #57527bf1e297079
] - doc: remove mention of visa fees from onboarding doc (Darshan Sen) #575261041331094
] - doc: deprecate passingargs
tospawn
andexecFile
(Antoine du Hamel) #5738906994d5a75
] - doc: remove some inconsistencies indeprecations.md
(Antoine du Hamel) #57512707f851ba3
] - doc: run license-builder (github-actions[bot]) #57511a7793195d6
] - doc: add new writing-docs contributing md (Dario Piotrowicz) #5750230d4a43b3d
] - doc: add node.js streams references to Web Streams doc (Dario Piotrowicz) #57393e08365980b
] - doc: prefer to sign commits under nodejs repository (Rafael Gonzaga) #57311c35e1f9048
] - doc: fixed the incorrect splitting of multiple words (letianpailove) #574543e1f3bc2bb
] - doc: add review guidelines for collaborator nominations (Antoine du Hamel) #57449fef3f82a41
] - doc: add history info for --use-system-ca (Darshan Sen) #5743296afdf949d
] - doc: remove typo YAML snippet from tls.getCACertificates doc (Darshan Sen) #57459800d61d47e
] - doc: fix typo in sqlite.md (Tobias Nießen) #574734876aee775
] - doc: explicit mention arbitrary code execution as a vuln (Rafael Gonzaga) #574262dd72c658f
] - doc: update maintaining-openssl.md for openssl (Richard Lau) #57413a49fd31f04
] - doc: add missingdeprecated
badges infs.md
(Yukihiro Hasegawa) #573843a4ed77674
] - doc: add note about sync nodejs-private branches (Rafael Gonzaga) #574041025e6dc7c
] - doc: update Xcode version used for arm64 and pkg (Michaël Zasso) #5710477b9e04a70
] - doc: improve type stripping documentation (Marco Ippolito) #569163a75e8410d
] - doc: specificy support for erasable ts syntax (Marco Ippolito) #5691669f12f9686
] - doc: make first parameter optional inutil.getCallSites
(Deokjin Kim) #573872b4e737ffb
] - doc: fix usage of module.registerSync in comment (Timo Kössler) #57328f320593958
] - doc: add Darshan back as voting TSC member (Michael Dawson) #574022b7765469a
] - doc: revise webcrypto.md types, interfaces, and added versions (Filip Skokan) #57376649828c74a
] - doc: add info on how project manages social media (Michael Dawson) #573182a2e1cfd71
] - doc: revisetsconfig.json
note (Steven) #5735317883b1d46
] - doc: use more clear name in getSystemErrorMessage's example (ikuma-t) #573107feed9989b
] - doc: recommend settingnoEmit: true
intsconfig.json
(Steven) #57320fe707ab162
] - doc: ping nodejs/tsc for each security pull request (Rafael Gonzaga) #57309f3c58ab693
] - doc: fix Windows ccache section position (Stefan Stojanovic) #57326e69170bacd
] - doc: update node-api version matrix (Chengzhong Wu) #572870bc1fd2245
] - doc: recommenderasableSyntaxOnly
in ts docs (Rob Palmer) #57271068013744e
] - doc: clarifypath.isAbsolute
is not path traversal mitigation (Eric Fortis) #57073238b0e856e
] - doc: fix rendering of DEP0174 description (David Sanders) #56835db0bcefd14
] - doc: add 1ilsang to triage team (1ilsang) #5718352a593feab
] - doc: add @geeksilva97 to collaborators (Edy Silva) #5724189f4475e32
] - doc: add missing assert return types (Colin Ihrig) #5721962b6d94c03
] - doc: add streamResetBurst and streamResetRate (Sujal Raj) #57195f150017e70
] - doc: add esm examples to node:util (Alfredo González) #5679399465ffa9c
] - doc: update options to filehandle.appendFile() (Hasegawa-Yukihiro) #569726242520a90
] - doc: add additional caveat for fs.watch (Michael Dawson) #5715019cda4791a
] - doc: fix typo in Windows building instructions (Tim Jacomb) #57158ef206add59
] - doc: fix web.libera.chat link in pull-requests.md (Samuel Bronson) #570767243c1713d
] - doc: remove buffered flag from performance hooks examples (Pavel Romanov) #52607617fe71f67
] - doc: fix 'introduced_in' version in typescript module (1ilsang) #571096cc15b8dc9
] - doc: fix link and history ofSourceMap
sections (Antoine du Hamel) #570986be8189041
] - doc: addmodule namespace object
links (Dario Piotrowicz) #570938611c4a3ea
] - doc: disambiguate pseudo-code statement (Dario Piotrowicz) #5709279da145a55
] - doc: update clang-cl on Windows building guide (Joyee Cheung) #57087845eaf91be
] - doc: fix wrong articles used to address modules (Dario Piotrowicz) #5709042c5e23eb1
] - doc:modules.md
: fixdistance
definition (Alexander “weej” Jones) #57046bda851aaa3
] - doc: fix wrong verb form (Dario Piotrowicz) #5709164e13fd36e
] - doc: fix transpiler loader hooks documentation (Joyee Cheung) #5703751494d8b78
] - doc: add a note aboutrequire('../common')
in testing documentation (Aditi) #56953053b128e9c
] - doc: recommend writing tests in new files and including comments (Joyee Cheung) #57028a20c62a00c
] - doc: improve documentation on argument validation (Aditi) #569542921658813
] - doc: buffer: fix typo onBuffer.copyBytesFrom(
offset
option (tpoisseau) #570156f4ab1c9b2
] - doc: update cleanup to trust on vuln db automation (Rafael Gonzaga) #570045285facb3e
] - doc: move stability index after history section for consistency (Antoine du Hamel) #56997a7646e17ff
] - doc: addsignal
tofilehandle.writeFile()
options (Yukihiro Hasegawa) #56804ba031089e6
] - doc: run license-builder (github-actions[bot]) #56985afa6f93a32
] - doc: update history of stream.Readable.toWeb() (Jimmy Leung) #56928cc644de126
] - doc: make MDN links to global classes more consistent (Antoine du Hamel) #5692493bba4eee1
] - doc: make MDN links to global classes more consistent inassert.md
(Antoine du Hamel) #56920ad03c85f98
] - doc: make MDN links to global classes more consistent (Antoine du Hamel) #5692396c2a90dee
] - doc: make MDN links to global classes more consistent inutil.md
(Antoine du Hamel) #569226bb73c0745
] - doc: make MDN links to global classes more consistent inbuffer.md
(Antoine du Hamel) #56921824cf35475
] - doc: update post sec release process (Rafael Gonzaga) #56907027749eb17
] - doc: update websocket link to avoid linking to self (Chengzhong Wu) #568975dcb9d632b
] - doc: mark--env-file-if-exists
flag as experimental (Juan José) #568934f6d751bf5
] - doc: fix typo in cjs example ofutil.styleText
(Deokjin Kim) #56769313d9db7a5
] - doc: clarify sqlite user-defined function behaviour (René) #56786eff42956c4
] - doc: correct customization hook types & clarify descriptions (Jacob Smith) #5645464180421c2
] - events: getMaxListeners detects 0 listeners (Matthew Aitken) #568072de27787b4
] - fs: apply exclude function to root path (Rich Trott) #57420b6df9e350a
] - fs: handle UV_ENOTDIR infs.statSync
withthrowIfNoEntry
provided (Juan José Arboleda) #5699614b2d496a0
] - fs: makeFileHandle.readableWebStream
always create byte streams (Ian Kerins) #5546110d2f1d898
] - http: coerce content-length to number (Marco Ippolito) #574589192b7fa25
] - http: be more generational GC friendly (ywave620) #567671cf98a8788
] - inspector: convert event params to protocol without json (Chengzhong Wu) #570276dcad868bb
] - inspector: skip promise hook in the inspector async hook (Joyee Cheung) #57148787e93f75a
] - inspector: add Network.Initiator in inspector protocol (Chengzhong Wu) #56805c7c04d0dc8
] - inspector: fix GN build (Cheng) #56798177da9c3c3
] - inspector: fix StringUtil::CharacterCount for unicodes (Chengzhong Wu) #567881b5418eeea
] - lib: add warning when binding inspector to public IP (Demian Parkhomenko) #55736cc4d33842b
] - lib: limit split function calls to prevent excessive array length (Gürgün Dayıoğlu) #575010546612d1d
] - lib: make getCallSites sourceMap option truly optional (James M Snell) #57388d7d54e6bf3
] - lib: optimize priority queue (Gürgün Dayıoğlu) #5710062761c73a1
] - lib: fixup incorrect argument order in assertEncoding (James M Snell) #571775dce55c376
] - meta: add some clarification to the nomination process (James M Snell) #57503a2a4cf1d95
] - meta: remove collaborator self-nomination (Rich Trott) #57537244f74b844
] - meta: edit collaborator nomination process (Antoine du Hamel) #57483dec204bb3f
] - meta: move ovflowd to emeritus (Claudio W.) #57443c0b8b84384
] - meta: bump codecov/codecov-action from 5.3.1 to 5.4.0 (dependabot[bot]) #5725714cbe292da
] - meta: bump github/codeql-action from 3.28.8 to 3.28.10 (dependabot[bot]) #5725469d2dd69e2
] - meta: bump ossf/scorecard-action from 2.4.0 to 2.4.1 (dependabot[bot]) #572535f3428ded6
] - meta: move RaisinTen back to collaborators, triagers and SEA champion (Darshan Sen) #572923eea8c72fc
] - meta: bump actions/download-artifact from 4.1.8 to 4.1.9 (dependabot[bot]) #572602508893edb
] - meta: bump peter-evans/create-pull-request from 7.0.6 to 7.0.7 (dependabot[bot]) #57259fc09523f44
] - meta: bump step-security/harden-runner from 2.10.4 to 2.11.0 (dependabot[bot]) #57258b162402440
] - meta: bump actions/cache from 4.2.0 to 4.2.2 (dependabot[bot]) #57256f781be1332
] - meta: bump actions/upload-artifact from 4.6.0 to 4.6.1 (dependabot[bot]) #572557934ad9fc0
] - meta: bumpactions/setup-python
from 5.3.0 to 5.4.0 (dependabot[bot]) #56867eb4fb9ce90
] - meta: bumppeter-evans/create-pull-request
from 7.0.5 to 7.0.6 (dependabot[bot]) #56866a14e7f1cc4
] - meta: bumpmozilla-actions/sccache-action
from 0.0.6 to 0.0.7 (dependabot[bot]) #568656c8a9e3d0d
] - meta: bumpcodecov/codecov-action
from 5.0.7 to 5.3.1 (dependabot[bot]) #56864f438c27cbf
] - meta: bumpstep-security/harden-runner
from 2.10.2 to 2.10.4 (dependabot[bot]) #5686324b7fcb153
] - meta: bumpactions/cache
from 4.1.2 to 4.2.0 (dependabot[bot]) #56862a0afc47988
] - meta: bumpactions/stale
from 9.0.0 to 9.1.0 (dependabot[bot]) #568608abf4e5d7d
] - meta: bumpgithub/codeql-action
from 3.27.5 to 3.28.8 (dependabot[bot]) #56859c5bff736e9
] - meta: add CODEOWNERS for SQLite (Colin Ihrig) #57147fd2abaa088
] - meta: update last name for jkrems (Jan Martin) #570062383f00aae
] - meta: bumpactions/upload-artifact
from 4.4.3 to 4.6.0 (dependabot[bot]) #5686135b3140d03
] - meta: bumpactions/setup-node
from 4.1.0 to 4.2.0 (dependabot[bot]) #56868815fcef73d
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #5688908001127a2
] - meta: add @nodejs/url as codeowner (Chengzhong Wu) #567833ceda2a035
] - module: handle cached linked async jobs in require(esm) (Joyee Cheung) #571874c29cc7e6b
] - module: add dynamic file-specific ESM warnings (Mert Can Altin) #56628d1845edd21
] - module: improve error message from asynchronicity in require(esm) (Joyee Cheung) #5712641fa7d3c21
] - module: allow omitting context in synchronous next hooks (Joyee Cheung) #57056deddecce3a
] - module: fix require.resolve() crash on non-string paths (Aditi) #56942926b887534
] - module: fixing url change in load sync hook chain (Vitalii Akimov) #564026b93ba723b
] - (SEMVER-MINOR) module: use synchronous hooks for preparsing in import(cjs) (Joyee Cheung) #55698b2e44a8079
] - (SEMVER-MINOR) module: implement module.registerHooks() (Joyee Cheung) #55698e79e67f6dc
] - net: validate non-string host for socket.connect (Daeyeon Jeong) #57198e23056212e
] - net: replace brand checks with identity checks (Yagiz Nizipli) #573419c0d5e140b
] - net: emit an error when custom lookup resolves to a non-string address (Edy Silva) #571922ce79787de
] - (SEMVER-MINOR) process: add execve (Paolo Insogna) #56496712db2232c
] - readline: add support forSymbol.dispose
(Antoine du Hamel) #5727655fb81c0f1
] - readline: fix unresolved promise on abortion (Daniel Venable) #54030dfcd9b1ac2
] - sea: suppress builtin warning with disableExperimentalSEAWarning option (koooge) #57086bd5c90654a
] - sqlite: add support for unknown named parameters (Colin Ihrig) #57552ec571382a4
] - sqlite: add DatabaseSync.prototype.isOpen (Colin Ihrig) #57522bb3bbed126
] - sqlite: add DatabaseSync.prototype[Symbol.dispose]() (Colin Ihrig) #575066067bea027
] - sqlite: restore changes from #55373 (Colin Ihrig) #56908bc672fcfdd
] - (SEMVER-MINOR) sqlite: allow returningArrayBufferView
s from user-defined functions (René) #56790227603dc30
] - sqlite,test,doc: allow Buffer and URL as database location (Edy Silva) #569919dd324467a
] - src: cleanup aliased_buffer.h (Mohammed Keyvanzadeh) #5739545a2b8532b
] - src: do not pass nullptr to std::string ctor (Charles Kerr) #57354854370a06c
] - src: fix process exit listeners not receiving unsettled tla codes (Dario Piotrowicz) #56872f7fb259193
] - src: refactor SubtleCrypto algorithm and length validations (Filip Skokan) #57319c7bcc2d6c8
] - src: allow embedder customization of OOMErrorHandler (Shelley Vohr) #57325fbd8862156
] - src: use Maybe<void> in ProcessEmitWarningSync (Daeyeon Jeong) #5725004de550289
] - src: make even more improvements to error handling (James M Snell) #57264f1c5e46f89
] - src: use cachedemit
v8::String (Daeyeon Jeong) #5724965b8e12689
] - src: refactor SubtleCrypto algorithm and length validations (Filip Skokan) #57273b6091a8b21
] - src: make more error handling improvements (James M Snell) #572623bd8a6c76e
] - src: fix typo in comment (Antoine du Hamel) #57291f7e39385ae
] - src: improve error handling innode_messaging.cc
(James M Snell) #572111bb561bede
] - src: improve error handling intty_wrap.cc
(James M Snell) #57211567d321a40
] - src: improve error handling intcp_wrap.cc
(James M Snell) #57211f8bee871f7
] - src: fix ThrowInvalidURL call in PathToFileURL (Daniel M Brasil) #57141817f7d0e2e
] - src: improve error handling in buffer and dotenv (James M Snell) #5718911ef7f9d9c
] - src: improve error handling in module_wrap (James M Snell) #571883b08d718b1
] - src: improve error handling in spawn_sync (James M Snell) #571859221c2ad87
] - src: detect whether the string is one byte representation or not (theweipeng) #56147e323694772
] - src: fix crash when lazy getter is invoked in a vm context (Chengzhong Wu) #571689363b05a91
] - src: do not format single string argument for THROW_ERR_* (Joyee Cheung) #571265d6a1bc35b
] - src: move instead of copy shared pointer in node_blob (Michaël Zasso) #571205dab48fd9f
] - src: replace NewFromUtf8 with OneByteString where appropriate (James M Snell) #570960fe60b478d
] - src: portdefineLazyProperties
to native code (Antoine du Hamel) #57081792959db1d
] - src: improve error handling in node_blob (James M Snell) #57078e05e2cfb1e
] - src: fix accessing empty string (Cheng) #57014619e52ce8d
] - src: lock the isolate properly in IsolateData destructor (Joyee Cheung) #57031844a4a884d
] - src: add self-assigment memcpy checks (Burkov Egor) #569860d1e79740f
] - src: improve node::Dotenv trimming (Dario Piotrowicz) #5698350f164e23b
] - src: improve error handling in string_bytes/decoder (James M Snell) #5697893aa4393a4
] - src: improve error handling in process_wrap (James M Snell) #56977c1c824e38d
] - src: useargs.This()
in zlib (Michaël Zasso) #569880a8e474bdc
] - src: add nullptr handling forNativeKeyObject
(Burkov Egor) #569001ea6198a5a
] - src: disallow copy/move fns/constructors (Yagiz Nizipli) #56811e4100853cb
] - src: add a hard dependency v8_inspector_headers (Chengzhong Wu) #56805a1f92898c0
] - src: improve error handling in encoding_binding.cc (James M Snell) #56915dee8793d94
] - src: improve error handling in permission.cc (James M Snell) #56904f41bc4cfd7
] - src: improve error handling in node_sqlite (James M Snell) #56891e4df6181bf
] - src: improve error handling in node_os by removing ToLocalChecked (James M Snell) #568882c96e7a32c
] - src: improve error handling in node_url (James M Snell) #5688636926ae8d8
] - src: add check for Bignum in GroupOrderSize (Burkov Egor) #56702a68f127a30
] - src: reduce string allocations on sqlite (Yagiz Nizipli) #57227e41b1735f1
] - stream: fix sizeAlgorithm validation in WritableStream (Daeyeon Jeong) #572803bc877dc5c
] - test: add more number cases for buffer.indexOf (Meghan Denny) #57200cac9a4e832
] - test: update parallel/test-tls-dhe for OpenSSL 3.5 (Richard Lau) #574773082ab3a64
] - test: module syntax should throw (Marco Ippolito) #571219b0dfc9a44
] - test: update snapshots for amaro v0.3.2 (Marco Ippolito) #569162defc35ea8
] - test: test runner run plan (Pietro Marchini) #57304ccb3df70be
] - test: update WPT for WebCryptoAPI toedd42c0
(Node.js GitHub Bot) #57365528103c5d0
] - test: simplify test-tls-connect-abort-controller.js (Yagiz Nizipli) #5733817e21e6eb5
] - test: useassert.match
intest-esm-import-meta
(Antoine du Hamel) #5729077bbee5184
] - test: update compression wpt (Yagiz Nizipli) #569604fe88f8f53
] - Revert "test: temporary remove resource check from fs read-write" (Rafael Gonzaga) #56906766efc7758
] - test: more common.mustNotCall in net, tls (Meghan Denny) #57246562e635e11
] - test: swap assert.strictEqual() parameters (Luigi Pinca) #5721764fdfd5622
] - test: assert write return values in buffer-bigint64 (Meghan Denny) #57212dd538e7cf1
] - test: allow embedder running async context frame test (Shelley Vohr) #57193937bbeb2b6
] - test: resolve race condition in test-net-write-fully-async-* (Matteo Collina) #5702232df9f27d8
] - test: add doAppendAndCancel test (Hasegawa-Yukihiro) #5697290c98df258
] - test: fix test-without-async-context-frame.mjs in debug mode (Joyee Cheung) #57034974817c9fc
] - test: make eval snapshot comparison more flexible (Shelley Vohr) #5702009741cd129
] - test: simplify test-http2-client-promisify-connect-error (Luigi Pinca) #5714489f3feb364
] - test: improve error output of test-http2-client-promisify-connect-error (Antoine du Hamel) #5713525751eba4d
] - test: add case for unrecognised fields within pjson "exports" (Jacob Smith) #57026bf0b9fa7c0
] - test: remove unnecessary assert requiring from tests (Dario Piotrowicz) #570088cfb2df466
] - test: reduce flakiness on test-net-write-fully-async-buffer (Yagiz Nizipli) #5697143c8c101da
] - test: remove flakiness on macOS test (Yagiz Nizipli) #56971bd47178f7f
] - test: improve timeout duration for debugger events (Yagiz Nizipli) #5697065694aa2fd
] - test: remove unnecessary syscall to cpuinfo (Yagiz Nizipli) #569685633c4b2df
] - test: update webstorage wpt (Yagiz Nizipli) #569632244a2776a
] - test: execute shell directly for refresh() (Yagiz Nizipli) #55051afae4b1216
] - test: change jenkins reporter (Carlos Espa) #56808b26592a7c4
] - test: fix race condition in test-child-process-bad-stdio (Colin Ihrig) #5684572c2279649
] - test: adjust check to use OpenSSL sec level (Michael Dawson) #568199551b27651
] - test: test-crypto-scrypt.js doesn't need internals (Meghan Denny) #566733095db84be
] - test: settest-fs-cp
as flaky (Stefan Stojanovic) #5679931f98d7ccd
] - test: search cctest files (Chengzhong Wu) #56791267f17d5f6
] - test: convert test_encoding_binding.cc to a JS test (Chengzhong Wu) #56791a875d7bdd1
] - test: test-crypto-prime.js doesn't need internals (Meghan Denny) #5667585482d69c6
] - test: temporary remove resource check from fs read-write (Rafael Gonzaga) #56789ec63d72f16
] - test: mark test-without-async-context-frame flaky on windows (James M Snell) #56753f16acc8521
] - test: remove unnecessary code (Luigi Pinca) #567840573c19a97
] - test: marktest-esm-loader-hooks-inspect-wait
flaky (Richard Lau) #5680348e0fd3f13
] - test: update WPT for url toa23788b
(Node.js GitHub Bot) #56779642959b87f
] - test: remove duplicate error reporter from ci (Carlos Espa) #567392023237b4e
] - test,crypto: make tests work for BoringSSL (Shelley Vohr) #570211b33b976ec
] - test_runner: refactor testPlan counter increse (Pietro Marchini) #56765d860f2bf42
] - test_runner: differentiate test types in enqueue dequeue events (Eddie Abbondanzio) #54049993bab646c
] - test_runner: print formatted errors on summary (Pietro Marchini) #569113ed3ba438f
] - test_runner: allow special characters in snapshot keys (Carlos Espa) #57017d1da9a3a2f
] - timers: optimize timer functions with improved argument handling (Gürgün Dayıoğlu) #5707244aa13990a
] - timers: remove unnecessary allocation of _onTimeout (Gürgün Dayıoğlu) #57497401b965977
] - timers: remove unused parameter from insertGuarded (Gürgün Dayıoğlu) #572519eac9c02c9
] - timers: simplify the compareTimersLists function (Gürgün Dayıoğlu) #5711001215af350
] - tls: remove unnecessary type check on normalize (Yagiz Nizipli) #57336f5e2b12a60
] - (SEMVER-MINOR) tls: implement tls.getCACertificates() (Joyee Cheung) #571077a777cdb58
] - tools: fix WPT update cron string (Antoine du Hamel) #57665c6d90dbf9b
] - tools: remove stalled label on unstalled issues and PRs (Rich Trott) #5763096f7f64602
] - tools: update sccache to support GH cache changes (Michaël Zasso) #575730b87027520
] - tools: bump @babel/helpers from 7.26.9 to 7.26.10 in /tools/eslint (dependabot[bot]) #574447d561eb90c
] - tools: add config subspace (Marco Ippolito) #5723946efdbf59f
] - tools: import rather than require ESLint plugins (Michaël Zasso) #57315502bfaf876
] - tools: switch back to official OpenSSL (Richard Lau) #57301ea821f419d
] - tools: revert to use @stylistic/eslint-plugin-js v3 (Joyee Cheung) #57314bb857615d3
] - tools: add more details about rolling inspector_protocol (Chengzhong Wu) #571673f29d39c1b
] - tools: bump the eslint group in /tools/eslint with 5 updates (dependabot[bot]) #57261b3caac83d4
] - tools: remove deps/zlib/GN-scraper.py (Chengzhong Wu) #57238ace99ffe79
] - tools: run Linux tests on GitHub arm64 runners as well (Dennis Ameling) #57162e65e6269b7
] - tools: consolidate 'introduced_in' check for docs (1ilsang) #57109890841e64b
] - tools: do not run major-release workflow on forks (Rich Trott) #57064e3f86c5a0c
] - tools: fix release URL computation in update-root-certs.mjs (Joyee Cheung) #56843280316f773
] - tools: add support forimport source
syntax in linter (Antoine du Hamel) #56992998b2ae3cd
] - tools: bump eslint version (dependabot[bot]) #56869ca4121b95a
] - tools: remove test-asan/ubsan workflows (Michaël Zasso) #56823866ac37255
] - tools: run macOS test workflow with Xcode 16.1 (Michaël Zasso) #5683155ca46ad8e
] - tools: update sccache and sccache-action (Michaël Zasso) #56815be9c1c93a8
] - tools: fix license-builder for inspector_protocol (Michaël Zasso) #568146dab980fab
] - typings: fixImportModuleDynamicallyCallback
return type (Chengzhong Wu) #57160e301098854
] - util: avoid run debug when enabled is false (fengmk2) #5749417016d7722
] - (SEMVER-MINOR) util: expose diff function used by the assertion errors (Giovanni Bucci) #5746242b9e19f6b
] - util: enforce shouldColorize in styleText array arg (Marco Ippolito) #567225ed6d8be40
] - (SEMVER-MINOR) v8: add v8.getCppHeapStatistics() method (Aditi) #57146c06d218b23
] - win,build: add option to enable Control Flow Guard (Hüseyin Açacak) #566058202211140
] - win,test: disable test case failing with ClangCL (Stefan Stojanovic) #573971a12b4c119
] - zlib: use modern class syntax for zstd classes (Yagiz Nizipli) #56965f9b3680268
] - zlib: make all zstd functions experimental (Yagiz Nizipli) #569644991e5d826
] - (SEMVER-MINOR) zlib: add zstd support (Jan Martin) #52100v22.14.0
: 2025-02-11, Version 22.14.0 'Jod' (LTS), @aduh95Compare Source
Notable Changes
82a9000e9e
] - crypto: update root certificates to NSS 3.107 (Node.js GitHub Bot) #56566b7fe54fc88
] - (SEMVER-MINOR) fs: allowexclude
option in globs to accept glob patterns (Daeyeon Jeong) #564893ac92ef607
] - (SEMVER-MINOR) lib: add typescript support to STDIN eval (Marco Ippolito) #563591614e8e7bc
] - (SEMVER-MINOR) module: add ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX (Marco Ippolito) #566106d6cffa9cc
] - (SEMVER-MINOR) module: addfindPackageJSON
util (Jacob Smith) #55412d35333ae18
] - (SEMVER-MINOR) process: add process.ref() and process.unref() methods (James M Snell) #5640007ff3ddcb5
] - (SEMVER-MINOR) sqlite: support TypedArray and DataView inStatementSync
(Alex Yang) #5638594d3fe1b62
] - (SEMVER-MINOR) src: add --disable-sigusr1 to prevent signal i/o thread (Rafael Gonzaga) #564415afffb4415
] - (SEMVER-MINOR) src,worker: add isInternalWorker (Carlos Espa) #56469697a851fb3
] - (SEMVER-MINOR) test_runner: add TestContext.prototype.waitFor() (Colin Ihrig) #56595047537b48c
] - (SEMVER-MINOR) test_runner: add t.assert.fileSnapshot() (Colin Ihrig) #56459926cf84e95
] - (SEMVER-MINOR) test_runner: add assert.register() API (Colin Ihrig) #56434c658a8afdf
] - (SEMVER-MINOR) worker: add eval ts input (Marco Ippolito) #56394Commits
bad1ad8650
] - assert: make myers_diff function more performant (Giovanni Bucci) #56303e222e36f3b
] - assert: make partialDeepStrictEqual work with urls and File prototypes (Giovanni Bucci) #56231e232789fe2
] - assert: show diff when doing partial comparisons (Giovanni Bucci) #56211c99de1fdcf
] - assert: make partialDeepStrictEqual throw when comparing [0] with [-0] (Giovanni) #562372386fd5840
] - benchmark: add validateStream to styleText bench (Rafael Gonzaga) #56556b197dfa7ec
] - build: fix GN build for ngtcp2 (Cheng) #563002a3cdd34ff
] - build: test macos-13 on GitHub actions (Michaël Zasso) #5630712f716be0a
] - build: build v8 with -fvisibility=hidden on macOS (Joyee Cheung) #56275c5ca15bd34
] - child_process: fix parsing messages with splitted length field (Maksim Gorkov) #561068346b8fc2c
] - crypto: add missing return value check (Michael Dawson) #5661582a9000e9e
] - crypto: update root certificates to NSS 3.107 (Node.js GitHub Bot) #56566890eef20a1
] - crypto: fix checkPrime crash with large buffers (Santiago Gimeno) #565595edb7b5e87
] - crypto: fix warning of ignoring return value (Cheng) #56527b89f123a0b
] - crypto: make generatePrime/checkPrime interruptible (James M Snell) #5646063c1859e01
] - deps: update corepack to 0.31.0 (Node.js GitHub Bot) #56795a48430d4d3
] - deps: move inspector_protocol to deps (Chengzhong Wu) #5664974cccc824f
] - deps: macro ENODATA is deprecated in libc++ (Cheng) #56698fa869ea0f2
] - deps: fixup some minor coverity warnings (James M Snell) #566121a4fa2b015
] - deps: update amaro to 0.3.0 (Node.js GitHub Bot) #56568b47076fd82
] - deps: update amaro to 0.2.2 (Node.js GitHub Bot) #5656846bd4b8731
] - deps: update simdutf to 6.0.3 (Node.js GitHub Bot) #565678ead9c693b
] - deps: update simdutf to 5.7.2 (Node.js GitHub Bot) #5638818d4b502af
] - deps: update amaro to 0.2.1 (Node.js GitHub Bot) #56390d938d7cc86
] - deps: update googletest to7d76a23
(Node.js GitHub Bot) #563879761e7dccb
] - deps: update googletest toe54519b
(Node.js GitHub Bot) #563708319dc6bc5
] - deps: update ngtcp2 to 1.10.0 (Node.js GitHub Bot) #563346eacd19d6a
] - deps: update simdutf to 5.7.0 (Node.js GitHub Bot) #5633228bec2dda3
] - diagnostics_channel: capture console messages (Stephen Belanger) #56292d519d33502
] - doc: update macOS and Xcode versions for releases (Michaël Zasso) #56337fcfe650507
] - doc: add note for features usingInternalWorker
with permission model (Antoine du Hamel) #56706efbba182b5
] - doc: add entry to changelog about SQLite Session Extension (Bart Louwers) #5631831bf9c7dd9
] - doc: move anatoli to emeritus (Michael Dawson) #565926096e38c7c
] - doc: fix styles of the expandable TOC (Antoine du Hamel) #56755d423638281
] - doc: add "Skip to content" button (Antoine du Hamel) #56750edeb157d75
] - doc: improve accessibility of expandable lists (Antoine du Hamel) #567491a79e87687
] - doc: add note regarding commit message trailers (Dario Piotrowicz) #56736927c7e47e4
] - doc: fix typo in example code for util.styleText (Robin Mehner) #56720fade522538
] - doc: fix inconsistencies inWeakSet
andWeakMap
comparison details (Shreyans Pathak) #5668355533bf147
] - doc: add RafaelGSS as latest sec release stewards (Rafael Gonzaga) #566828e978bdee1
] - doc: clarify cjs/esm diff inqueueMicrotask()
vsprocess.nextTick()
(Dario Piotrowicz) #56659ae360c30dc
] - doc:WeakSet
andWeakMap
comparison details (Shreyans Pathak) #56648acd2a2fda5
] - doc: mention prepare --security (Rafael Gonzaga) #56617d3c0a2831d
] - doc: tweak info on reposts in ambassador program (Michael Dawson) #565893299505b49
] - doc: add type stripping to ambassadors program (Marco Ippolito) #56598b1a6ffa4e4
] - doc: improve internal documentation on built-in snapshot (Joyee Cheung) #565051641a28930
] - doc: document CLI way to open the nodejs/bluesky PR (Antoine du Hamel) #565062042628fda
] - doc: add section about using npx with permission model (Rafael Gonzaga) #56539ace19a0263
] - doc: update gcc-version for ubuntu-lts (Kunal Kumar) #565534aa57b50f8
] - doc: fix parentheses in options (Tobias Nießen) #56563b40b01b4d3
] - doc: include CVE to EOL lines as sec release process (Rafael Gonzaga) #565206701360113
] - doc: add esm examples to node:trace_events (Alfredo González) #56514d3207cca3e
] - doc: add message for Ambassadors to promote (Michael Dawson) #5623597ece4ae06
] - doc: allow request for TSC reviews via the GitHub UI (Antoine du Hamel) #5649303f25055ab
] - doc: add example for piping ReadableStream (Gabriel Schulhof) #56415516d07482c
] - doc: expand description ofparseArg
'sdefault
(Kevin Gibbons) #54431a6491effcb
] - doc: use<ul>
instead of<ol>
inSECURITY.md
(Antoine du Hamel) #56346e4ec134b21
] - doc: clarify that WASM is trusted (Matteo Collina) #563450f7aed8a59
] - doc: fix thecrc32
documentation (Kevin Toshihiro Uehara) #55898721104a296
] - doc: fix links inmodule.md
(Antoine du Hamel) #56283928540d792
] - doc: fix typos (Nathan Baulch) #55066e69d35f03b
] - doc: add history info for Permission Model (Antoine du Hamel) #56707c6fd867ab5
] - esm: fix jsdoc type refs toModuleJobBase
in esm/loader (Jacob Smith) #564999cf9046bd7
] - Revert "events: add hasEventListener util for validate" (origranot) #56282b7fe54fc88
] - (SEMVER-MINOR) fs: allowexclude
option in globs to accept glob patterns (Daeyeon Jeong) #564896ca27c2a59
] - http2: omit server name when HTTP2 host is IP address (islandryu) #565309f1fa199bf
] - inspector: roll inspector_protocol (Chengzhong Wu) #566490dae4bb3ab
] - inspector: add undici http tracking support (Chengzhong Wu) #564882c6124cec4
] - inspector: report loadingFinished until the response data is consumed (Chengzhong Wu) #5637296ec862ce2
] - lib: refactor execution.js (Marco Ippolito) #563583ac92ef607
] - (SEMVER-MINOR) lib: add typescript support to STDIN eval (Marco Ippolito) #56359d5bf3db0cf
] - lib: allow skipping source maps in node_modules (Chengzhong Wu) #56639d33eaf2bcb
] - lib: ensure FORCE_COLOR forces color output in non-TTY environments (Pietro Marchini) #55404dc003218a8
] - lib: optimizeprepareStackTrace
on builtin frames (Chengzhong Wu) #56299df06524863
] - lib: suppress source map lookup exceptions (Chengzhong Wu) #5629935335a5a66
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #565801faabdb150
] - meta: add codeowners of security release document (Rafael Gonzaga) #56521b4ece22ef5
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #563429ec67e7ce0
] - meta: move MoLow to TSC regular member (Moshe Atlow) #56276bae4b2e20a
] - module: use more defensive code when handling SWC errors (Antoine du Hamel) #566461614e8e7bc
] - (SEMVER-MINOR) module: add ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX (Marco Ippolito) #56610174d88eab1
] - module: support eval with ts syntax detection (Marco Ippolito) #56285299d6fa829
] - module: fix jsdoc forformat
parameter in cjs/loader (pacexy) #565010307e4dd59
] - module: unify TypeScript and .mjs handling in CommonJS (Joyee Cheung) #555901f4f9be93d
] - module: fix async resolution error within the syncfindPackageJSON
(Jacob Smith) #56382bbedffa0f0
] - module: simplifyfindPackageJSON
implementation (Antoine du Hamel) #555436d6cffa9cc
] - (SEMVER-MINOR) module: addfindPackageJSON
util (Jacob Smith) #55412cd7ce18233
] - module: fix badrequire.resolve
with option paths for.
and..
(Dario Piotrowicz) #56735152df4da21
] - module: rethrow amaro error message (Marco Ippolito) #56568acba5dc87e
] - module: use buffer.toString base64 (Chengzhong Wu) #5631501e69be8ff
] - node-api: define version 10 (Gabriel Schulhof) #55676724524528e
] - node-api: remove deprecated attribute from napi_module_register (Vladimir Morozov) #56162c78e11064f
] - process: remove support for undocumented symbol (Antoine du Hamel) #565523f69b18a23
] - process: fix symbol key and mark experimental newnode:process
methods (Antoine du Hamel) #56517d35333ae18
] - (SEMVER-MINOR) process: add process.ref() and process.unref() methods (James M Snell) #56400fa49f0f7d5
] - punycode: limit deprecation warning (Colin Ihrig) #56632d77c7073b7
] - sqlite: disable memstatus APIs at build time (Colin Ihrig) #5654107ff3ddcb5
] - (SEMVER-MINOR) sqlite: support TypedArray and DataView inStatementSync
(Alex Yang) #56385b6c2e91365
] - sqlite: enable SQL math functions (Colin Ihrig) #564473462263e8b
] - sqlite: pass conflict type to conflict resolution handler (Bart Louwers) #5635289ba3af743
] - src: add nullptr handling from X509_STORE_new() (Burkov Egor) #5670089a7c82e0c
] - src: add default value for RSACipherConfig mode field (Burkov Egor) #567017bae51e62e
] - src: fix build with GCC 15 (tjuhaszrh) #56740432a4b8bd6
] - src: fix to generate path from wchar_t via wstring (yamachu) #566968c9eaf82f0
] - src: initialize FSReqWrapSync in path that uses it (Michaël Zasso) #56613bcdb42d40b
] - src: handle duplicate paths granted (Rafael Gonzaga) #56591d6a7acc207
] - src: update ECKeyPointer in ncrypto (James M Snell) #5652601922f8b1f
] - src: update ECPointPointer in ncrypto (James M Snell) #565262a3a36eceb
] - src: update ECGroupPointer in ncrypto (James M Snell) #5652667c10cdacb
] - src: update ECDASSigPointer implementation in ncrypto (James M Snell) #5652617f931c68b
] - src: cleaning up more crypto internals for ncrypto (James M Snell) #5652694d3fe1b62
] - (SEMVER-MINOR) src: add --disable-sigusr1 to prevent signal i/o thread (Rafael Gonzaga) #564416594ee8dff
] - src: fix undefined script name in error source (Chengzhong Wu) #56502b46bad3e91
] - src: refactor --trace-env to reuse option selection and handling (Joyee Cheung) #5629376921b822b
] - src: minor cleanups on OneByteString usage (James M Snell) #564823f0d1dd4fe
] - src: move more crypto impl detail to ncrypto dep (James M Snell) #5642104f623b283
] - src: fixup more ToLocalChecked uses in node_file (James M Snell) #564845aa436f5a1
] - src: make some minor ToLocalChecked cleanups (James M Snell) #564836eec5e7ec2
] - src: lock the thread properly in snapshot builder (Joyee Cheung) #563275614993968
] - src: drain platform tasks before creating startup snapshot (Chengzhong Wu) #5640348493e9fd5
] - src: use LocalVector in more places (James M Snell) #564577e5ea0681e
] - src: use v8::LocalVector consistently with other minor cleanups (James M Snell) #56417ad3d857f2b
] - src: use starts_with in fs_permission.cc (ishabi) #558115afffb4415
] - (SEMVER-MINOR) src,worker: add isInternalWorker (Carlos Espa) #564697d1676e72e
] - stream: fix typo in ReadableStreamBYOBReader.readIntoRequests (Mattias Buelens) #56560e658ea6b26
] - stream: validate undefined sizeAlgorithm in WritableStream (Jason Zhang) #56067e4f133c20c
] - test: add ts eval snapshots (Marco Ippolito) #56358f041742400
] - test: remove empty lines from snapshots (Marco Ippolito) #56358801cde91f6
] - test: reduce number of written chunks (Luigi Pinca) #567576fdf1879ab
] - test: fix invalid common.mustSucceed() usage (Luigi Pinca) #56756d2bfbfa364
] - test: use strict mode in global setters test (Rich Trott) #567425c030da42f
] - test: cleanup and simplify test-crypto-aes-wrap (James M Snell) #56748f1442d6eaf
] - test: do not use common.isMainThread (Luigi Pinca) #5676849405bd9e7
] - test: make some requires lazy in common/index (James M Snell) #5671552ef376788
] - test: add test that uses multibyte for path and resolves modules (yamachu) #56696b811dea85a
] - test: replace more uses ofglobal
withglobalThis
(James M Snell) #56712eb97076199
] - test: make common/index slightly less node.js specific (James M Snell) #567121795202d19
] - test: rely less on duplicative common test harness utilities (James M Snell) #567125be29a274e
] - test: simplify common/index.js (James M Snell) #5671292e99780f0
] - test: move hasMultiLocalhost to common/net (James M Snell) #567161c3204a4cc
] - test: move crypto related common utilities in common/crypto (James M Snell) #56714fe79d63be0
] - test: add missing test for env file (Jonas) #56642e08af61537
] - test: enforce strict mode in test-zlib-const (Rich Trott) #56689c96792d7f8
] - test: fix localization data for ICU 74.2 (Antoine du Hamel) #5666148b72f1195
] - test: use --permission instead of --experimental-permission (Rafael Gonzaga) #56685de81d90fce
] - test: test-stream-compose.js doesn't need internals (Meghan Denny) #56619f5b8499ad0
] - test: add maxCount and gcOptions to gcUntil() (Joyee Cheung) #56522d9e5a81041
] - test: add line break at end of file (Rafael Gonzaga) #5658859be346fbf
] - test: mark test-worker-prof as flaky on smartos (Joyee Cheung) #5658312a2cae9e5
] - test: update test-child-process-bad-stdio to use node:test (Colin Ihrig) #565622dc4a30e19
] - test: disable openssl 3.4.0 incompatible tests (Jelle van der Waa) #561601950fbf51d
] - test: make test-crypto-hash compatible with OpenSSL > 3.4.0 (Jelle van der Waa) #56160a533420a91
] - test: clarify fork inherit permission flags (Rafael Gonzaga) #56523697e799dc1
] - test: add error only reporter for node:test (Carlos Espa) #564384844fa212d
] - test: mark test-http-server-request-timeouts-mixed as flaky (Joyee Cheung) #56503843c2389b9
] - test: update error code in tls-psk-circuit for for OpenSSL 3.4 (sebastianas) #56420ccb2ddbd83
] - test: update compiled sqlite tests to match other tests (Colin Ihrig) #56446b40f50324d
] - test: add initial test426 coverage (Chengzhong Wu) #56436059f81e4fd
] - test: update test-set-http-max-http-headers to use node:test (Colin Ihrig) #56439ec2940b418
] - test: update test-child-process-windows-hide to use node:test (Colin Ihrig) #564370362924880
] - test: use unusual chars in the path to ensure our tests are robust (Antoine du Hamel) #48409b6c3869910
] - test: improve abort signal dropping test (Edy Silva) #56339cc648ef923
] - test: enable ts test on win arm64 (Marco Ippolito) #5634968819b4997
] - test: deflake test-watch-file-shared-dependency (Luigi Pinca) #56344ca6ed2190c
] - test: skiptest-sqlite-extensions
when SQLite is not built by us (Antoine du Hamel) #563418ffeb8b58c
] - test: increase spin for eventloop test on s390 (Michael Dawson) #562286ae9950f08
] - test: migrate message eval tests from Python to JS (Yiyun Lei) #504824352bf69e9
] - test: check typescript loader (Marco Ippolito) #54657406e7db9c3
] - test: remove async-hooks/test-writewrap flaky designation (Luigi Pinca) #56048fa56ab2bba
] - test: deflake test-esm-loader-hooks-inspect-brk (Luigi Pinca) #560508e149aac99
] - test: add test case for listeners (origranot) #56282a3f5ef22cd
] - test: maketest-permission-sqlite-load-extension
more robust (Antoine du Hamel) #562958cbb7cc838
] - test_runner: print failing assertion only once with spec reporter (Pietro Marchini) #566621f426bad9a
] - test_runner: remove unused errors (Pietro Marchini) #56607697a851fb3
] - (SEMVER-MINOR) test_runner: add TestContext.prototype.waitFor() (Colin Ihrig) #56595047537b48c
] - (SEMVER-MINOR) test_runner: add t.assert.fileSnapshot() (Colin Ihrig) #5645919b4aa4b14
] - test_runner: run single test file benchmark (Pietro Marchini) #56479926cf84e95
] - (SEMVER-MINOR) test_runner: add assert.register() API (Colin Ihrig) #56434fb4661a4cf
] - test_runner: finish marking snapshot testing as stable (Colin Ihrig) #56425900c6c3940
] - tls: fix error stack conversion in cryptoErrorListToException() (Joyee Cheung) #56554e9f185b658
] - tools: update doc to new version (Node.js GitHub Bot) #562597644c7e619
] - tools: update inspector_protocol roller (Chengzhong Wu) #56649362272b0a4
] - tools: do not throw on missingcreate-release-proposal.sh
(Antoine du Hamel) #56704df8b835953
] - tools: fix tools-deps-update (Daniel Lemire) #56684feba5d3274
] - tools: do not throw on missingcreate-release-proposal.sh
(Antoine du Hamel) #566959827f7d395
] - tools: fix permissions inlint-release-proposal
workflow (Antoine du Hamel) #5661414c562c0dc
] - tools: remove github reporter (Carlos Espa) #56468ed1785d0ae
] - tools: editcreate-release-proposal
workflow (Antoine du Hamel) #56540294e4c42f5
] - tools: validate commit list as part oflint-release-commit
(Antoine du Hamel) #5629198d3474267
] - tools: fix loong64 build failed (Xiao-Tao) #564663e729ceec8
] - tools: disable unneeded rule ignoring in Python linting (Rich Trott) #56429d5c05328e2
] - tools: use a configurable value for number of open dependabot PRs (Antoine du Hamel) #564271705cbe002
] - tools: bump the eslint group in /tools/eslint with 4 updates (dependabot[bot]) #5642653b29b0469
] - tools: fixrequire-common-first
lint rule from subfolder (Antoine du Hamel) #56325105c4ed4fb
] - tools: add release line label when opening release proposal (Antoine du Hamel) #5631730f61f4aa5
] - url: use resolved path to convert UNC paths to URL (Antoine du Hamel) #56302a0aef4dfb6
] - util: inspect: do not crash on an Error stack that contains a Symbol (Jordan Harband) #56573a8a060341f
] - util: inspect: do not crash on an Error with a regexname
(Jordan Harband) #56574ea66bf3553
] - util: rename CallSite.column to columnNumber (Chengzhong Wu) #565849cdc3b373c
] - util: do not crash on inspecting function withSymbol
name (Jordan Harband) #565720bfbb68569
] - util: expose CallSite.scriptId (Chengzhong Wu) #565515dd7116e09
] - watch: reload env file for --env-file-if-exists (Jonas) #56643c658a8afdf
] - (SEMVER-MINOR) worker: add eval ts input (Marco Ippolito) #563942e5d038f48
] - worker: refactor stdio to improve performance (Matteo Collina) #56630f959805d01
] - worker: flush stdout and stderr on exit (Matteo Collina) #56428v22.13.1
: 2025-01-21, Version 22.13.1 'Jod' (LTS), @RafaelGSSCompare Source
This is a security release.
Notable Changes
Dependency update:
Commits
520da342e0
] - (CVE-2025-22150) deps: update undici to v6.21.1 (Matteo Collina) nodejs-private/node-private#66299f217369f
] - (CVE-2025-23084) path: fix path traversal in normalize() on Windows (Tobias Nießen) nodejs-private/node-private#555984f735e35
] - (CVE-2025-23085) src: fix HTTP2 mem leak on premature close and ERR_PROTO (RafaelGSS) nodejs-private/node-private#6502446870618
] - (CVE-2025-23083) src,loader,permission: throw on InternalWorker use (RafaelGSS) nodejs-private/node-private#651v22.13.0
: 2025-01-07, Version 22.13.0 'Jod' (LTS), @ruyadornoCompare Source
Notable Changes
Stabilize Permission Model
Upgrades the Permission Model status from Active Development to Stable.
Contributed by Rafael Gonzaga #56201
Graduate WebCryptoAPI
Ed25519
and X25519 algorithms as stableFollowing the merge of Curve25519 into the Web Cryptography API Editor's Draft the
Ed25519
andX25519
algorithm identifiers are now stable and will no longer emit an ExperimentalWarning upon use.Contributed by (Filip Skokan) #56142
Other Notable Changes
05d6227a88
] - (SEMVER-MINOR) assert: add partialDeepStrictEqual (Giovanni Bucci) #54630a933103499
] - (SEMVER-MINOR) cli: implement --trace-env and --trace-env-[js|native]-stack (Joyee Cheung) #55604ba9d5397de
] - (SEMVER-MINOR) dgram: support blocklist in udp (theanarkh) #56087f6d0c01303
] - doc: stabilize util.styleText (Rafael Gonzaga) #5626534c68827af
] - doc: move typescript support to active development (Marco Ippolito) #55536dd14b80350
] - doc: add LJHarb to collaborators (Jordan Harband) #561325263086169
] - (SEMVER-MINOR) doc: add report version and history section (Chengzhong Wu) #561308cb3c2018d
] - (SEMVER-MINOR) doc: sort --report-exclude alphabetically (Rafael Gonzaga) #5578855239a48b6
] - (SEMVER-MINOR) doc,lib,src,test: unflag sqlite module (Colin Ihrig) #558907cbe3de1d8
] - (SEMVER-MINOR) module: only emit require(esm) warning under --trace-require-module (Joyee Cheung) #561946575b76042
] - (SEMVER-MINOR) module: add module.stripTypeScriptTypes (Marco Ippolito) #55282bacfe6d5c9
] - (SEMVER-MINOR) net: support blocklist in net.connect (theanarkh) #56075b47888d390
] - (SEMVER-MINOR) net: support blocklist for net.Server (theanarkh) #56079566f0a1d25
] - (SEMVER-MINOR) net: add SocketAddress.parse (James M Snell) #56076ed7eab1421
] - (SEMVER-MINOR) net: add net.BlockList.isBlockList(value) (James M Snell) #56078ea4891856d
] - (SEMVER-MINOR) process: deprecatefeatures.{ipv6,uv}
andfeatures.tls_*
(René) #5554501eb308f26
] - (SEMVER-MINOR) report: fix typos in report keys and bump the version (Yuan-Ming Hsu) #5606897c38352d0
] - (SEMVER-MINOR) sqlite: aggregate constants in a single property (Edigleysson Silva (Edy)) #56213b4041e554a
] - (SEMVER-MINOR) sqlite: addStatementSync.prototype.iterate
method (tpoisseau) #542132e3ca1bbdd
] - (SEMVER-MINOR) src: add cli option to preserve env vars on diagnostic reports (Rafael Gonzaga) #55697bcfe9c80fc
] - (SEMVER-MINOR) util: add sourcemap support to getCallSites (Marco Ippolito) #55589Commits
e9024779c0
] - assert: make Maps be partially compared in partialDeepStrictEqual (Giovanni Bucci) #561954c13d8e587
] - assert: make partialDeepStrictEqual work with ArrayBuffers (Giovanni Bucci) #56098a4fa31a86e
] - assert: optimize partial comparison of twoSet
s (Antoine du Hamel) #5597005d6227a88
] - (SEMVER-MINOR) assert: add partialDeepStrictEqual (Giovanni Bucci) #546305e1321abd7
] - buffer: document concat zero-fill (Duncan) #55562be5ba7c648
] - build: set DESTCPU correctly for 'make binary' on loongarch64 (吴小白) #5627138cf37ee2d
] - build: fix missing fp16 dependency in d8 builds (Joyee Cheung) #56266dbb7557455
] - build: add major release action (Rafael Gonzaga) #5619927cc90f3be
] - build: fix C string encoding forPRODUCT_DIR_ABS
(Anna Henningsen) #56111376561c2b4
] - build: use variable for simdutf path (Shelley Vohr) #56196126ae15000
] - build: allow overriding clang usage (Shelley Vohr) #5601697bb8f7c76
] - build: remove defaults for create-release-proposal (Rafael Gonzaga) #56042a8fb1a06f3
] - build: set node_arch to target_cpu in GN (Shelley Vohr) #559679f48ca27f1
] - build: use variable for crypto dep path (Shelley Vohr) #55928e47ccd2287
] - build: fix GN build for sqlite (Cheng) #559128d70b99a5a
] - build: compile bundled simdutf conditionally (Jakub Jirutka) #55886826fd35242
] - build: compile bundled simdjson conditionally (Jakub Jirutka) #558861015b22085
] - build: compile bundled ada conditionally (Jakub Jirutka) #5588677e2869ca6
] - build: use glob for dependencies of out/Makefile (Richard Lau) #55789a933103499
] - (SEMVER-MINOR) cli: implement --trace-env and --trace-env-[js|native]-stack (Joyee Cheung) #5560472e8e0684e
] - crypto: graduate WebCryptoAPIEd25519
and X25519 algorithms as stable (Filip Skokan) #56142fe2b344ddb
] - crypto: ensure CryptoKey usages and algorithm are cached objects (Filip Skokan) #561089ee9f524a7
] - crypto: allow non-multiple of 8 in SubtleCrypto.deriveBits (Filip Skokan) #5529676f242d993
] - deps: update nghttp3 to 1.6.0 (Node.js GitHub Bot) #56258c7ff2ea6b5
] - deps: update simdutf to 5.6.4 (Node.js GitHub Bot) #5625504230be1ef
] - deps: update libuv to 1.49.2 (Luigi Pinca) #5622488589b85b7
] - deps: update c-ares to v1.34.4 (Node.js GitHub Bot) #562565c2e0618f3
] - deps: define V8_PRESERVE_MOST as no-op on Windows (Stefan Stojanovic) #562389f8f3c9658
] - deps: update sqlite to 3.47.2 (Node.js GitHub Bot) #5617817b6931d3b
] - deps: update ngtcp2 to 1.9.1 (Node.js GitHub Bot) #5609522b453b619
] - deps: upgrade npm to 10.9.2 (npm team) #56135d7eb41b382
] - deps: update sqlite to 3.47.1 (Node.js GitHub Bot) #56094669c722aa9
] - deps: update zlib to 1.3.0.1-motley-82a5fec (Node.js GitHub Bot) #55980f61a0454d2
] - deps: update corepack to 0.30.0 (Node.js GitHub Bot) #55977d98bf0b891
] - deps: update ngtcp2 to 1.9.0 (Node.js GitHub Bot) #55975fc362624bf
] - deps: update simdutf to 5.6.3 (Node.js GitHub Bot) #55973f61dcc4df4
] - deps: upgrade npm to 10.9.1 (npm team) #55951bfe7982491
] - deps: update zlib to 1.3.0.1-motley-7e2e4d7 (Node.js GitHub Bot) #54432d714367ef8
] - deps: update simdjson to 3.10.1 (Node.js GitHub Bot) #54678ccc9b105ec
] - deps: update simdutf to 5.6.2 (Node.js GitHub Bot) #55889ba9d5397de
] - (SEMVER-MINOR) dgram: support blocklist in udp (theanarkh) #560877ddbf94849
] - dgram: check udp buffer size to avoid fd leak (theanarkh) #56084360d68de0f
] - doc: fix color contrast issue in light mode (Rich Trott) #56272f6d0c01303
] - doc: stabilize util.styleText (Rafael Gonzaga) #562659436c3c949
] - doc: clarify util.aborted resource usage (Kunal Kumar) #55780b1cec2cef9
] - doc: add esm examples to node:repl (Alfredo González) #55432d6a84cf781
] - doc: add esm examples to node:readline (Alfredo González) #55335a11ac1c0f2
] - doc: fix 'which' to 'that' and add commas (Selveter Senitro) #562165331df7911
] - doc: fix winget config path (Alex Yang) #562337a8071b43c
] - doc: add esm examples to node:tls (Alfredo González) #562297d8c1e72d5
] - doc: add esm examples to node:perf_hooks (Alfredo González) #55257ea53c4b1ae
] - doc:sea.getRawAsset(key)
always returns an ArrayBuffer (沈鸿飞) #562067a94100a3e
] - doc: update announce documentation for releases (Rafael Gonzaga) #5620044c4e57e32
] - doc: update blog link to /vulnerability (Rafael Gonzaga) #561985e5b4b0cbd
] - doc: call out import.meta is only supported in ES modules (Anton Kastritskii) #56186a83de32d35
] - doc: add ambassador message - benefits of Node.js (Michael Dawson) #56085bb880dd21a
] - doc: fix incorrect link to style guide (Yuan-Ming Hsu) #5618139ce902e58
] - doc: fix c++ addon hello world sample (Edigleysson Silva (Edy)) #5617219c72c4acc
] - doc: update blog release-post link (Ruy Adorno) #56123b667cc4669
] - doc: fix module.md headings (Chengzhong Wu) #5613134c68827af
] - doc: move typescript support to active development (Marco Ippolito) #55536c4a97d810b
] - doc: mention-a
flag for the release script (Ruy Adorno) #56124dd14b80350
] - doc: add LJHarb to collaborators (Jordan Harband) #561322feb0781ed
] - doc: add create-release-action to process (Rafael Gonzaga) #5599371f6263942
] - doc: rename file to advocacy-ambassador-program.md (Tobias Nießen) #560468efa240500
] - doc: remove unused import from sample code (Blended Bram) #55570e64cef8bf4
] - doc: add FAQ to releases section (Rafael Gonzaga) #559924bb0f30f92
] - doc: move history entry to class description (Luigi Pinca) #559916d02bd6873
] - doc: add history entry for textEncoder.encodeInto() (Luigi Pinca) #55990e239382ed8
] - doc: improve GN build documentation a bit (Shelley Vohr) #5596878b6aef6bc
] - doc: fix deprecation codes (Filip Skokan) #56018474bf80a44
] - doc: remove confusing and outdated sentence (Luigi Pinca) #5598857381076c5
] - doc: deprecate passing invalid types infs.existsSync
(Carlos Espa) #55892e529cf6b26
] - doc: add doc for PerformanceObserver.takeRecords() (skyclouds2001) #55786a6ef0f6f6e
] - doc: add vetted courses to the ambassador benefits (Matteo Collina) #5593463526049f2
] - doc: ordernode:crypto
APIs alphabetically (Julian Gassner) #5583136080b7b61
] - doc: doc how to add message for promotion (Michael Dawson) #5584312b2ad4287
] - doc: add esm example for zlib (Leonardo Peixoto) #55946352daac296
] - doc: fix typo (Alex Yang) #561256e7e9a126d
] - doc: document approach for building wasm in deps (Michael Dawson) #559400b3ac05422
] - doc: remove RedYetiDev from triagers team (Aviv Keller) #5594720be5e2f80
] - doc: add esm examples to node:timers (Alfredo González) #558573ba9b57436
] - doc: fix relative path mention in --allow-fs (Rafael Gonzaga) #557913e6b3a9a8b
] - doc: include git node release --promote to steps (Rafael Gonzaga) #558355bdfde8dc6
] - doc: add history entry for import assertion removal (Antoine du Hamel) #55883c842146c05
] - doc: add a note on console stream behavior (Gireesh Punathil) #556165263086169
] - (SEMVER-MINOR) doc: add report version and history section (Chengzhong Wu) #561308cb3c2018d
] - (SEMVER-MINOR) doc: sort --report-exclude alphabetically (Rafael Gonzaga) #5578855239a48b6
] - (SEMVER-MINOR) doc,lib,src,test: unflag sqlite module (Colin Ihrig) #5589004d7c7a349
] - fs: make mutatingoptions
in Callbackreaddir()
not affect results (LiviaMedeiros) #5605792bcd528e7
] - fs: make mutatingoptions
in Promisesreaddir()
not affect results (LiviaMedeiros) #560573a55bd9448
] - fs: lazily load ReadFileContext (Gürgün Dayıoğlu) #559980331b3fdd3
] - fs,win: fix readdir for named pipe (Hüseyin Açacak) #5611079152b54e9
] - http: add setDefaultHeaders option to http.request (Tim Perry) #5611219782855a8
] - http: don't emit error after destroy (Robert Nagy) #554578494512c17
] - http2: remove duplicate codeblock (Vitaly Aminev) #55915d2f82223d1
] - http2: support ALPNCallback option (ZYSzys) #561872616f1247a
] - http2: fix memory leak caused by premature listener removing (ywave620) #55966598fe048f2
] - lib: remove redundant global regexps (Gürgün Dayıoğlu) #56182a3c8739530
] - lib: clean up persisted signals when they are settled (Edigleysson Silva (Edy)) #5600111144ab158
] - lib: handle Float16Array in node:v8 serdes (Bartek Iwańczuk) #5599681c94a32e4
] - lib: disable default memory leak warning for AbortSignal (Lenz Weber-Tronic) #5581668dda61420
] - lib: add validation for options in compileFunction (Taejin Kim) #56023d2007aec28
] - lib: fixfs.readdir
recursive async (Rafael Gonzaga) #560410571d5556f
] - lib: avoid excluding symlinks in recursive fs.readdir with filetypes (Juan José) #55714843943d0ce
] - meta: bump github/codeql-action from 3.27.0 to 3.27.5 (dependabot[bot]) #561031529027f03
] - meta: bump actions/checkout from 4.1.7 to 4.2.2 (dependabot[bot]) #561028e265de9f5
] - meta: bump step-security/harden-runner from 2.10.1 to 2.10.2 (dependabot[bot]) #561010fba3a3b9b
] - meta: bump actions/setup-node from 4.0.3 to 4.1.0 (dependabot[bot]) #561002e3fdfdb19
] - meta: add releasers as CODEOWNERS to proposal action (Rafael Gonzaga) #560437cbe3de1d8
] - (SEMVER-MINOR) module: only emit require(esm) warning under --trace-require-module (Joyee Cheung) #561948a5429c9b3
] - module: prevent main thread exiting before esm worker ends (Shima Ryuhei) #561836575b76042
] - (SEMVER-MINOR) module: add module.stripTypeScriptTypes (Marco Ippolito) #552820794861bc3
] - module: simplify ts under node_modules check (Marco Ippolito) #5544028a11adf14
] - module: mark evaluation rejection in require(esm) as handled (Joyee Cheung) #56122bacfe6d5c9
] - (SEMVER-MINOR) net: support blocklist in net.connect (theanarkh) #56075566f0a1d25
] - (SEMVER-MINOR) net: add SocketAddress.parse (James M Snell) #56076ed7eab1421
] - (SEMVER-MINOR) net: add net.BlockList.isBlockList(value) (James M Snell) #56078b47888d390
] - (SEMVER-MINOR) net: support blocklist for net.Server (theanarkh) #56079481770a38f
] - node-api: allow napi_delete_reference in finalizers (Chengzhong Wu) #556202beb4f1f8c
] - permission: ignore internalModuleStat on module loading (Rafael Gonzaga) #55797ea4891856d
] - (SEMVER-MINOR) process: deprecatefeatures.{ipv6,uv}
andfeatures.tls_*
(René) #55545c907b2f358
] - quic: update more QUIC implementation (James M Snell) #5598643c25e2e0d
] - quic: multiple updates to quic impl (James M Snell) #5597101eb308f26
] - (SEMVER-MINOR) report: fix typos in report keys and bump the version (Yuan-Ming Hsu) #560681cfa31fb82
] - sea: only assert snapshot main function for main threads (Joyee Cheung) #5612097c38352d0
] - (SEMVER-MINOR) sqlite: aggregate constants in a single property (Edigleysson Silva (Edy)) #562132268c1ea8b
] - sqlite: add support for custom functions (Colin Ihrig) #55985f5c6955722
] - sqlite: supportdb.loadExtension
(Alex Yang) #539009a60bea6b7
] - sqlite: deps includesqlite3ext.h
(Alex Yang) #56010b4041e554a
] - (SEMVER-MINOR) sqlite: addStatementSync.prototype.iterate
method (tpoisseau) #542132889e8da04
] - src: fix outdated js2c.cc references (Chengzhong Wu) #561335ce020b0c9
] - src: use spaceship operator in SocketAddress (James M Snell) #56059a32fa30847
] - src: add missing qualifiers to env.cc (Yagiz Nizipli) #56062974b7b61ef
] - src: use std::string_view for process emit fns (Yagiz Nizipli) #560864559fac862
] - src: remove dead code in async_wrap (Gerhard Stöbich) #56065e42e4b20be
] - src: avoid copy on getV8FastApiCallCount (Yagiz Nizipli) #56081c188660e8b
] - src: fix check fd (theanarkh) #56000d894cb76ff
] - src: safely remove the last line from dotenv (Shima Ryuhei) #559822ca9f4b65a
] - src: fix kill signal on Windows (Hüseyin Açacak) #555142e3ca1bbdd
] - (SEMVER-MINOR) src: add cli option to preserve env vars on dr (Rafael Gonzaga) #55697359fff1c4e
] - src,build: add no user defined deduction guides of CTAD check (Chengzhong Wu) #5607157bb983215
] - (SEMVER-MINOR) src,lib: stabilize permission model (Rafael Gonzaga) #56201d352b0465a
] - stream: commit pull-into descriptors after filling from queue (Mattias Buelens) #56072eef9bd1bf6
] - test: remove test-sqlite-statement-sync flaky designation (Luigi Pinca) #560518718135a5d
] - test: use --permission over --experimental-permission (Rafael Gonzaga) #562399c68d4f180
] - test: remove exludes for sea tests on PPC (Michael Dawson) #56217c5d0472968
] - test: fix test-abortsignal-drop-settled-signals flakiness (Edigleysson Silva (Edy)) #561974adf518689
] - test: move localizationd data fromtest-icu-env
to external file (Livia Medeiros) #5561802383b4267
] - test: update WPT for url to6fa3fe8
(Node.js GitHub Bot) #561360e24eebf24
] - test: removehasOpenSSL3x
utils (Antoine du Hamel) #56164381e705385
] - test: update streams wpt (Mattias Buelens) #56072ad107ca0d9
] - test: remove test-fs-utimes flaky designation (Luigi Pinca) #56052e15c5dab79
] - test: ensurecli.md
is in alphabetical order (Antoine du Hamel) #56025d0302e7d2d
] - test: update WPT for WebCryptoAPI to3e3374e
(Node.js GitHub Bot) #56093a0b1e8f400
] - test: update WPT for WebCryptoAPI to76dfa54
(Node.js GitHub Bot) #56093211f058a12
] - test: move test-worker-arraybuffer-zerofill to parallel (Luigi Pinca) #56053c52bc5d71c
] - test: update WPT for url to67880a4
(Node.js GitHub Bot) #559991a78bde8d4
] - test: make HTTP/1.0 connection test more robust (Arne Keller) #55959ff7b1445a0
] - test: convert readdir test to use test runner (Thomas Chetwin) #55750b296b5a4e4
] - test: make x509 crypto tests work with BoringSSL (Shelley Vohr) #5592797458ad74b
] - test: fix determining lower priority (Livia Medeiros) #55908bb4aa7a296
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #55997fb98fa4967
] - test_runner: refactor Promise chain in run() (Colin Ihrig) #5595818c94961f8
] - test_runner: refactor build Promise in Suite() (Colin Ihrig) #55958bf3967fd3a
] - test_runner: simplify hook running logic (Colin Ihrig) #559638c065dc61e
] - test_runner: mark context.plan() as stable (Colin Ihrig) #558958ff082cf48
] - test_runner: mark snapshot testing as stable (Colin Ihrig) #558977ae125cef4
] - tools: fixnode:
enforcement for docs (Antoine du Hamel) #562840b489116a3
] - tools: update github_reporter to 1.7.2 (Node.js GitHub Bot) #562055306819fac
] - tools: add REPLACEME check to workflow (Mert Can Altin) #562514e3cab44cb
] - tools: usegithub.actor
instead of bot username for release proposals (Antoine du Hamel) #562323e8938463a
] - Revert "tools: disable automated libuv updates" (Luigi Pinca) #5622398ea499e36
] - tools: update gyp-next to 0.19.1 (Anna Henningsen) #561112e76cd2a8b
] - tools: fix release proposal linter to support more than 1 folk preparing (Antoine du Hamel) #562039fa0e41665
] - tools: enable linter fortools/icu/**
(Livia Medeiros) #56176d6e1efcc59
] - tools: use commit title as PR title when creating release proposal (Antoine du Hamel) #56165a88e4ce55e
] - tools: update gyp-next to 0.19.0 (Node.js GitHub Bot) #56158bd0760efbc
] - tools: bump the eslint group in /tools/eslint with 4 updates (dependabot[bot]) #56099c5b1cf4b12
] - tools: improve release proposal PR opening (Antoine du Hamel) #5616112baefb13d
] - tools: updatecreate-release-proposal
workflow (Antoine du Hamel) #56054e6e1495f1a
] - tools: fix update-undici script (Michaël Zasso) #56069ed635c90da
] - tools: allow dispatch oftools.yml
from forks (Antoine du Hamel) #560081e628d1f37
] - tools: fix nghttp3 updater script (Antoine du Hamel) #560071af3599b7e
] - tools: filter release keys to reduce interactivity (Antoine du Hamel) #559501893be4a9c
] - tools: update WPT updater (Antoine du Hamel) #56003f89bd2ba8a
] - tools: add WPT updater for specific subsystems (Mert Can Altin) #5446061901372d5
] - tools: use tokenless Codecov uploads (Michaël Zasso) #55943312bb4dff8
] - tools: lint js indoc/**/*.md
(Livia Medeiros) #559047b476f637c
] - tools: add linter for release commit proposals (Antoine du Hamel) #5592322d7017191
] - tools: fix riscv64 build failed (Lu Yahan) #52888f4f777f4d2
] - tools: bump cross-spawn from 7.0.3 to 7.0.5 in /tools/eslint (dependabot[bot]) #55894a648e4c44a
] - util: harden more built-in classes against prototype pollution (Antoine du Hamel) #562254a1b51b5a9
] - util: fix Latin1 decoding to return string output (Mert Can Altin) #562229e98e86604
] - util: do not rely on mutableObject
andFunction
'constructor
prop (Antoine du Hamel) #56188374eb415fd
] - util: add fast path for Latin1 decoding (Mert Can Altin) #55275bcfe9c80fc
] - (SEMVER-MINOR) util: add sourcemap support to getCallSites (Marco Ippolito) #555892aa77c8a8f
] - v8,tools: expose experimental wasm revectorize feature (Yolanda-Chen) #54896bfd11d7661
] - worker: fix crash when a worker joins after exit (Stephen Belanger) #56191v22.12.0
: 2024-12-03, Version 22.12.0 'Jod' (LTS), @ruyadornoCompare Source
Notable Changes
require(esm) is now enabled by default
Support for loading native ES modules using require() had been available on v20.x and v22.x under the command line flag --experimental-require-module, and available by default on v23.x. In this release, it is now no longer behind a flag on v22.x.
This feature is still experimental, and we are looking for user feedback to make more final tweaks before fully stabilizing it. For this reason, on v22.x, when the Node.js instance encounters a native ES module in require() for the first time, it will emit an experimental warning unless
require()
comes from a path that containsnode_modules
. If there happens to be any regressions caused by this feature, users can report it to the Node.js issue tracker. Meanwhile this feature can also be disabled using--no-experimental-require-module
as a workaround.With this feature enabled, Node.js will no longer throw
ERR_REQUIRE_ESM
ifrequire()
is used to load a ES module. It can, however, throwERR_REQUIRE_ASYNC_MODULE
if the ES module being loaded or its dependencies contain top-levelawait
. When the ES module is loaded successfully byrequire()
, the returned object will either be a ES module namespace object similar to what's returned byimport()
, or what gets exported as"module.exports"
in the ES module.Users can check
process.features.require_module
to see whetherrequire(esm)
is enabled in the current Node.js instance. For packages, the"module-sync"
exports condition can be used as a way to detectrequire(esm)
support in the current Node.js instance and allow bothrequire()
andimport
to load the same native ES module. See the documentation for more details about this feature.Contributed by Joyee Cheung in #55085
Added resizable
ArrayBuffer
support inBuffer
When a
Buffer
is created using a resizableArrayBuffer
, theBuffer
length will now correctly change as the underlyingArrayBuffer
size is changed.Contributed by James Snell in #55377
Update root certificates to NSS 3.104
This is the version of NSS that shipped in Firefox 131.0 on 2024-10-01.
Certificates added:
Contributed by Richard Lau in #55681
Other Notable Changes
4920869935
] - (SEMVER-MINOR) assert: make assertion_error use Myers diff algorithm (Giovanni Bucci) #54862ccffd3b819
] - doc: enforce strict policy to semver-major releases (Rafael Gonzaga) #55732acc6806900
] - doc: add jazelly to collaborators (Jason Zhang) #5553188d91e8bc2
] - esm: mark import attributes and JSON module as stable (Nicolò Ribaudo) #5533398bfc7dce5
] - (SEMVER-MINOR) http: add diagnostic channelhttp.client.request.created
(Marco Ippolito) #55586337f61fb25
] - (SEMVER-MINOR) lib: add UV_UDP_REUSEPORT for udp (theanarkh) #554031628c48ad6
] - (SEMVER-MINOR) net: add UV_TCP_REUSEPORT for tcp (theanarkh) #55408457e73f4c9
] - (SEMVER-MINOR) sqlite: add support for SQLite Session Extension (Bart Louwers) #54181Commits
f6885e1c68
] - assert: fix the string length check for printing the simple diff (Giovanni Bucci) #55474907484f04d
] - assert: fix deepEqual always return true on URL (Xuguang Mei) #50853301844e249
] - assert: differentiate cases wherecause
isundefined
or missing (Antoine du Hamel) #5573889ccd3e3f4
] - assert: fixdeepStrictEqual
on errors whencause
is not undefined (Edigleysson Silva (Edy)) #554064920869935
] - (SEMVER-MINOR) assert: make assertion_error use Myers diff algorithm (Giovanni Bucci) #54862c67aec368e
] - benchmark: addtest-reporters
(Aviv Keller) #5575749774cc2c0
] - benchmark: addtest_runner/mock-fn
(Aviv Keller) #557714caaeb47b2
] - benchmark: add nodeTiming.uvmetricsinfo bench (RafaelGSS) #55614cac58564a1
] - benchmark: add --runs support to run.js (Rafael Gonzaga) #551585c3ee886fc
] - benchmark: adjust byte size for buffer-copy (Rafael Gonzaga) #552956023e1bdb2
] - (SEMVER-MINOR) buffer: make Buffer work with resizable ArrayBuffer (James M Snell) #55377a6c00c2204
] - build: add create release proposal action (Rafael Gonzaga) #55690b4e413933b
] - build: implement node_use_amaro flag in GN build (Cheng) #55798d1db202d4a
] - build: apply cpp linting and formatting to ncrypto (Aviv Keller) #553628c670496da
] - build: use rclone instead of aws CLI (Michaël Zasso) #55617827e2065bd
] - build: stop pre-compilinglint-md
(Aviv Keller) #55266c3ca978d9c
] - build: fix building with system icu 76 (Michael Cho) #5556323e3287bbe
] - build: fix GN arg used in generate_config_gypi.py (Shelley Vohr) #555302b561abb0d
] - build: fix GN build for sqlite and nghttp2 (Shelley Vohr) #555297008f29d79
] - build: fix GN build for cares/uv deps (Cheng) #554776ee94a394f
] - build: fix uninstall script for AIX 7.1 (Cloorc) #55438edbbd4a374
] - build: conditionally compile bundled sqlite (Richard Lau) #554093d8e3a657c
] - build: tidy up cares.gyp (Richard Lau) #55445f0c12e8fcb
] - build: synchronize list of c-ares source files (Richard Lau) #554458daa8a62f8
] - build: fix path concatenation (Mohammed Keyvanzadeh) #5538712faf0466e
] - build: fix make errors that occur in Makefile (minkyu_kim) #55287a21be0294d
] - build,win: enable pch for clang-cl (Stefan Stojanovic) #552497ed058cd00
] - cli: add--heap-prof
flag available toNODE_OPTIONS
(Juan José) #54259c26b1bfe6a
] - crypto: allow length=0 for HKDF and PBKDF2 in SubtleCrypto.deriveBits (Filip Skokan) #55866a1201d0392
] - crypto: update root certificates to NSS 3.104 (Richard Lau) #5568120483aab7a
] - crypto: fixRSA_PKCS1_PADDING
error message (Richard Lau) #55629d345662d50
] - crypto: include openssl/rand.h explicitly (Shelley Vohr) #55425166ab3209d
] - deps: update simdutf to 5.6.1 (Node.js GitHub Bot) #55850934979e12e
] - deps: update undici to 6.21.0 (Node.js GitHub Bot) #55851af77f66424
] - deps: update c-ares to v1.34.3 (Node.js GitHub Bot) #55803948a88d2f4
] - deps: update icu to 76.1 (Node.js GitHub Bot) #55551fa4c58a983
] - deps: update acorn to 8.14.0 (Node.js GitHub Bot) #55699c91155f22e
] - deps: update sqlite to 3.47.0 (Node.js GitHub Bot) #55557d1cb7af95c
] - deps: update amaro to 0.2.0 (Node.js GitHub Bot) #55601655e5600cb
] - deps: update nghttp2 to 1.64.0 (Node.js GitHub Bot) #55559992450c469
] - deps: update acorn to 8.13.0 (Node.js GitHub Bot) #55558abd2bd4f64
] - deps: update undici to 6.20.1 (Node.js GitHub Bot) #555037dc2c2edad
] - deps: update googletest todf1544b
(Node.js GitHub Bot) #55465fa9329c024
] - deps: update c-ares to v1.34.2 (Node.js GitHub Bot) #5546341a2bcd335
] - deps: update ada to 2.9.1 (Node.js GitHub Bot) #54679a3b793defd
] - deps: update simdutf to 5.6.0 (Node.js GitHub Bot) #55379551b8f897d
] - deps: update c-ares to v1.34.1 (Node.js GitHub Bot) #5536926861eaf4e
] - Revert "deps: disable io_uring support in libuv by default" (Santiago Gimeno) #5511441c50bc15e
] - deps: update libuv to 1.49.1 (Santiago Gimeno) #5511426fcc04084
] - deps: update amaro to 0.1.9 (Node.js GitHub Bot) #553480ee6715921
] - diagnostics_channel: fix unsubscribe during publish (simon-id) #55116bf68733e7f
] - dns: stop using deprecatedares_query
(Aviv Keller) #55430ef6707eb9b
] - dns: honor the order option (Luigi Pinca) #553920f3810f3e5
] - doc: add added tag and fix typo sqlite.md (Bart Louwers) #56012d1bd0ef1b7
] - doc: remove non-working example (Antoine du Hamel) #55856824ac650ed
] - doc: addnode:sqlite
to mandatorynode:
prefix list (翠 / green) #55846b3ea42d887
] - doc: add-S
flag release preparation example (Antoine du Hamel) #558360bd5d8b9d9
] - doc: clarify UV_THREADPOOL_SIZE env var usage (Preveen P) #5583227b0236a99
] - doc: add notable-change mention to sec release (Rafael Gonzaga) #55830476075bada
] - doc: fix history info forURL.prototype.toJSON
(Antoine du Hamel) #558182743b7b1d3
] - doc: correct max-semi-space-size statement (Joe Bowbeer) #558123013870093
] - doc: update unflag info ofimport.meta.resolve
(skyclouds2001) #5581027bcd103e7
] - doc: run license-builder (github-actions[bot]) #5581372d4b30ead
] - doc: clarify triager role (Gireesh Punathil) #55775a30defe9dd
] - doc: clarify removal of experimental API does not require a deprecation (Antoine du Hamel) #55746ccffd3b819
] - doc: enforce strict policy to semver-major releases (Rafael Gonzaga) #55732b6d2a4e816
] - doc: add path aliases typescript doc (Carlos Espa) #55766a435affa11
] - doc: add esm example inpath.md
(Aviv Keller) #5574591443c2711
] - doc: consistent use of word child process (Gireesh Punathil) #5565483fb0079d4
] - doc: clarity to available addon options (Preveen P) #557156ca851457a
] - doc: update--max-semi-space-size
description (Joe Bowbeer) #55495e17fffc0ff
] - doc: brokenPerformanceObserver
code sample (Dom Harrington) #542278bd5777f0f
] - doc: add write flag when open file as the demo code's intention (robberfree) #54626f1e0e0ba55
] - doc: remove mention of ECDH-ES in crypto.diffieHellman (Filip Skokan) #556111d60b7ec97
] - doc: improve c++ embedder API doc (Gireesh Punathil) #55597bbf51d7000
] - doc: capitalize "MIT License" (Aviv Keller) #555750e69f6d123
] - doc: add suggested tsconfig for type stripping (Marco Ippolito) #5553467beb37f50
] - doc: add esm examples to node:string_decoder (Alfredo González) #55507acc6806900
] - doc: add jazelly to collaborators (Jason Zhang) #55531a6b3ed54ae
] - doc: changed the command used to verify SHASUMS256 (adriancuadrado) #554200ad7ca4f1d
] - doc: move dual package shipping docs to separate repo (Joyee Cheung) #55444e99a98ddfd
] - doc: add note about stdio streams in child_process (Ederin (Ed) Igharoro) #5532220302851a9
] - doc: addisBigIntObject
to documentation (leviscar) #5545050d983e80b
] - doc: remove outdated remarks abouthighWaterMark
in fs (Ian Kerins) #5546207c2fb2045
] - doc: move Danielle Adams key to old gpg keys (RafaelGSS) #5539941b045170d
] - doc: move Bryan English key to old gpg keys (RafaelGSS) #5539913724dcc20
] - doc: move Beth Griggs keys to old gpg keys (RafaelGSS) #553990230fb1ead
] - doc: spell out condition restrictions (Jan Martin) #5518766e41f044d
] - doc: add instructions for WinGet build (Hüseyin Açacak) #5535623d89da3f1
] - doc: add missing return values in buffer docs (Karl Horky) #552736e7b33a0ef
] - doc: fix ambasador markdown list (Rafael Gonzaga) #55361d8c552a060
] - doc: edit onboarding guide to clarify when mailmap addition is needed (Antoine du Hamel) #55334c7f82ec978
] - doc: fix the return type of outgoingMessage.setHeaders() (Jimmy Leung) #55290f1b9791694
] - doc: updaterequire(ESM)
history and stability status (Antoine du Hamel) #551999ffd2dd43b
] - doc: consolidate history table of CustomEvent (Edigleysson Silva (Edy)) #5575864fb9e6516
] - doc: add history entries for JSON modules stabilization (Antoine du Hamel) #55855ae2ae2fef1
] - esm: fix import.meta.resolve crash (Marco Ippolito) #5577715dd43dd6e
] - esm: add a fallback when importer in not a file (Antoine du Hamel) #55471aed758d270
] - esm: fix inconsistency withimportAssertion
inresolve
hook (Wei Zhu) #5536588d91e8bc2
] - esm: mark import attributes and JSON module as stable (Nicolò Ribaudo) #55333a2c8de7fba
] - events: add hasEventListener util for validate (Sunghoon) #552304f84cdc8a2
] - events: optimize EventTarget.addEventListener (Robert Nagy) #55312c17601557b
] - fs: prevent unwanteddependencyOwners
removal (Carlos Espa) #555654dd609c685
] - fs: fix bufferSize option for opendir recursive (Ethan Arrowood) #55744d695bd4c4f
] - fs: pass correct path toDirentFromStats
duringglob
(Aviv Keller) #550715357338b8e
] - fs: usewstring
on Windows paths (jazelly) #551710a7f301a36
] - http: add diagnostic channelhttp.server.response.created
(Marco Ippolito) #5562298bfc7dce5
] - (SEMVER-MINOR) http: add diagnostic channelhttp.client.request.created
(Marco Ippolito) #55586d2430ee363
] - http2: fix client async storage persistence (Orgad Shaneh) #55460753cbede2a
] - lib: remove startsWith/endsWith primordials for char checks (Gürgün Dayıoğlu) #554076e3e99c81e
] - lib: prefer logical assignment (Aviv Keller) #5504403902ebb74
] - lib: replacecreateDeferredPromise
util withPromise.withResolvers
(Yagiz Nizipli) #54836ee17fcd6f3
] - lib: prefer symbol to number in webidltype
function (Antoine du Hamel) #5573718f0f07e92
] - lib: implement webidl dictionary converter and use it in structuredClone (Jason Zhang) #55489bcead24e24
] - lib: prefer number to string in webidltype
function (Jason Zhang) #55489d48c5da039
] - lib: convert transfer sequence to array in js (Jason Zhang) #55317cefce4cbb0
] - lib: remove unnecessary optional chaining (Gürgün Dayıoğlu) #55728f2561fdeec
] - lib: usePromise.withResolvers()
in timers (Yagiz Nizipli) #55720337f61fb25
] - (SEMVER-MINOR) lib: add UV_UDP_REUSEPORT for udp (theanarkh) #554034f89059f63
] - lib: add flag to drop connection when running in cluster mode (theanarkh) #5492729f7325e73
] - lib: test_runner#mock:timers respeced timeout_max behaviour (BadKey) #5537568bcec64b8
] - lib: remove settled dependant signals when they are GCed (Edigleysson Silva (Edy)) #553543f8a5d8a28
] - meta: bump actions/setup-python from 5.2.0 to 5.3.0 (dependabot[bot]) #55688644ad5d60d
] - meta: bump actions/setup-node from 4.0.4 to 4.1.0 (dependabot[bot]) #55687334fa69c31
] - meta: bump rtCamp/action-slack-notify from 2.3.0 to 2.3.2 (dependabot[bot]) #55686fb3fa8bee2
] - meta: bump actions/upload-artifact from 4.4.0 to 4.4.3 (dependabot[bot]) #556851aca3a8289
] - meta: bump actions/cache from 4.0.2 to 4.1.2 (dependabot[bot]) #55684a6c73eb9c2
] - meta: bump actions/checkout from 4.2.0 to 4.2.2 (dependabot[bot]) #5568306445bc4e3
] - meta: bump github/codeql-action from 3.26.10 to 3.27.0 (dependabot[bot]) #5568237bafce2d8
] - meta: make review-wanted message minimal (Aviv Keller) #556074cca54b161
] - meta: show PR/issue title on review-wanted (Aviv Keller) #5560668decbf935
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #5538107fc40d823
] - meta: assign CODEOWNERS for /deps/ncrypto/* (Filip Skokan) #55426139e8f1579
] - meta: change color to blue notify review-wanted (Rafael Gonzaga) #55423c0614dc92c
] - meta: bump codecov/codecov-action from 4.5.0 to 4.6.0 (dependabot[bot]) #5522247b6c6748b
] - meta: bump github/codeql-action from 3.26.6 to 3.26.10 (dependabot[bot]) #552216c836aa97e
] - meta: bump step-security/harden-runner from 2.9.1 to 2.10.1 (dependabot[bot]) #55220c81c818a21
] - module: throw ERR_NO_TYPESCRIPT when compiled without amaro (Marco Ippolito) #55332d6d1479fcc
] - module: simplify --inspect-brk handling (Joyee Cheung) #5567991fdec3a52
] - module: fix error thrown from require(esm) hitting TLA repeatedly (Joyee Cheung) #55520cb527a925d
] - module: do not warn when require(esm) comes from node_modules (Joyee Cheung) #5596016119f206f
] - module: trim off internal stack frames for require(esm) warnings (Joyee Cheung) #5549628b5b9a57d
] - module: allow ESM that failed to be required to be re-imported (Joyee Cheung) #555026ac3400960
] - module: include module information in require(esm) warning (Joyee Cheung) #55397fcdd6167d8
] - module: check --experimental-require-module separately from detection (Joyee Cheung) #55250d8c34ced43
] - module: use kNodeModulesRE to detect node_modules (Joyee Cheung) #55243545c069eb5
] - module: support 'module.exports' interop export in require(esm) (Guy Bedford) #5456358d6871c45
] - (SEMVER-MINOR) module: unflag --experimental-require-module (Joyee Cheung) #550851628c48ad6
] - (SEMVER-MINOR) net: add UV_TCP_REUSEPORT for tcp (theanarkh) #55408a5590083cd
] - node-api: add napi_create_buffer_from_arraybuffer method (Mert Can Altin) #5450521ec855feb
] - os: improve path check with direct index access (Mert Can Altin) #554341fdaa15226
] - report: fix network queries in getReport libuv with exclude-network (Adrien Foulon) #55602457e73f4c9
] - (SEMVER-MINOR) sqlite: add support for SQLite Session Extension (Bart Louwers) #54181428701a6d8
] - sqlite: improve error handling using MaybeLocal (Tobias Nießen) #555714e5878536a
] - sqlite: add readOnly option (Tobias Nießen) #555678c35ad12de
] - sqlite: refactor open options (Tobias Nießen) #55442c3c403040a
] - sqlite: cache column names in stmt.all() (Fedor Indutny) #553736858f7a4d3
] - src: use env strings to create sqlite results (Michaël Zasso) #55785db01eaf318
] - src: improvenode:os
userInfo performance (Yagiz Nizipli) #55719383d28489d
] - src: provide workaround for container-overflow (Daniel Lemire) #555913477b6b4a5
] - src: move more key related stuff to ncrypto (James M Snell) #5536838c047e38f
] - src: refactor ECDHBitsJob signature (Filip Skokan) #55610acbb62902a
] - src: fix dns crash when failed to create NodeAresTask (theanarkh) #55521547cab9433
] - src: use NewFromUtf8Literal in NODE_DEFINE_CONSTANT (Charles Kerr) #55581231fe7b953
] - src: do not run IsWindowsBatchFile on non-windows (Yagiz Nizipli) #55560bde374ee6a
] - src: remove icu basedToASCII
andToUnicode
(Yagiz Nizipli) #551566ad23e74be
] - src: fix winapi_strerror error string (Hüseyin Açacak) #5520763bc40550b
] - src: remove uv__node_patch_is_using_io_uring (Santiago Gimeno) #551142af72a7671
] - src: implement IsInsideNodeModules() in C++ (Joyee Cheung) #55286e14fb2defb
] - src,lib: optimize nodeTiming.uvMetricsInfo (RafaelGSS) #55614e14dba3ee5
] - src,lib: introduceutil.getSystemErrorMessage(err)
(Juan José) #540758f59c41d52
] - stream: propagate AbortSignal reason (Marvin ROGER) #554737acb96362c
] - test: increase coverage ofpathToFileURL
(Antoine du Hamel) #554935861135ddb
] - test: improve test coverage for child process message sending (Juan José) #55710554d4ace2f
] - test: ensure that test priority is not higher than current priority (Livia Medeiros) #55739b0ce62a9bd
] - test: add buffer to fs_permission tests (Rafael Gonzaga) #557349d9ad81d54
] - test: improve test coverage forServerResponse
(Juan José) #55711273f84e01c
] - test: updateperformance-timeline
wpt (RedYetiDev) #5519789c9c46185
] - test: ignore unrelated events in FW watch tests (Carlos Espa) #55605fc69080669
] - test: refactor some esm tests (Antoine du Hamel) #55472a80c166733
] - test: split up test-runner-mock-timers test (Julian Gassner) #555068c2fc11f7c
] - test: remove unneeded listeners (Luigi Pinca) #554861c5872dbde
] - test: avoidapply()
calls with large amount of elements (Livia Medeiros) #555012194eb4909
] - test: increase test coverage forhttp.OutgoingMessage.appendHeader()
(Juan José) #55467ad7e81379a
] - test: make test-node-output-v8-warning more flexible (Shelley Vohr) #554016aeeaa719b
] - test: fix addons and node-api test assumptions (Antoine du Hamel) #5544173ab14fd8f
] - test: update wpt test for webmessaging/broadcastchannel (devstone) #55205ded1b68d10
] - test: deflaketest-cluster-shared-handle-bind-privileged-port
(Aviv Keller) #553780e873c3031
] - test: updateconsole
wpt (Aviv Keller) #55192832300533b
] - test: remove duplicate tests (Luigi Pinca) #55393310a734c1b
] - test: update test_util.cc for coverage (minkyu_kim) #55291254badd480
] - test: updatecompression
wpt (Aviv Keller) #55191c52a808ac9
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #55703445d117b67
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #55512cd0d748ede
] - test,crypto: make crypto tests work with BoringSSL (Shelley Vohr) #554918bac7c27c8
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #55427363e7d5a76
] - test_runner: error on mocking an already mocked date (Aviv Keller) #55858f41d329e98
] - test_runner: add support for scheduler.wait on mock timers (Erick Wendel) #55244b9200c33ae
] - test_runner: require--enable-source-maps
for sourcemap coverage (Aviv Keller) #55359f11d93d8ef
] - tools: enforce ordering of error codes inerrors.md
(Antoine du Hamel) #5532485ca31a90a
] - tools: bump @eslint/plugin-kit from 0.2.0 to 0.2.3 in /tools/eslint (dependabot[bot]) #55875506aac567b
] - tools: fix exclude labels for commit-queue (Richard Lau) #5580914ffac9995
] - tools: make commit-queue check blocked label (Marco Ippolito) #55781eb22ec87e6
] - tools: remove non-existent file from eslint config (Aviv Keller) #557725844565fb2
] - tools: fix c-ares updater script for Node.js 18 (Richard Lau) #557170a79ebd257
] - tools: update ESLint to 9.14.0 (dependabot[bot]) #5568912543d560a
] - tools: useutil.parseArgs
inlint-md
(Aviv Keller) #55694d95aa244c2
] - tools: fix root certificate updater (Richard Lau) #556813626891f8e
] - tools: compact jq output in daily-wpt-fyi.yml action (Filip Skokan) #5569502c902e68a
] - tools: run daily WPT.fyi report on all supported releases (Filip Skokan) #55619456b02351b
] - tools: lint README lists more strictly (Antoine du Hamel) #5562583a5983c7d
] - tools: update lint-md-dependencies (Node.js GitHub Bot) #5547072b4a8df6a
] - tools: update gyp-next to 0.18.3 (Node.js GitHub Bot) #554646b6e6a5590
] - tools: add script to synch c-ares source lists (Richard Lau) #55445a6c444291b
] - tools: fix typos (Nathan Baulch) #55061d5e915ba5d
] - tools: addpolyfilled
option toprefer-primordials
rule (Antoine du Hamel) #55318c8e7f767b7
] - typings: add missing type ofArrayBufferPrototypeGetByteLength
(Wuli Zuo) #554396317f77942
] - url: refactorpathToFileURL
to native (Antoine du Hamel) #554765418d40256
] - url: handle "unsafe" characters properly inpathToFileURL
(Antoine du Hamel) #54545fce8c32c19
] - util: do not mark experimental feature as deprecated (Antoine du Hamel) #55740940d22ffe1
] - (SEMVER-MINOR) util: fix util.getCallSites plurality (Chengzhong Wu) #5562642ac0c2af3
] - util: do not catch on circular@@​toStringTag
errors (Aviv Keller) #55544v22.11.0
: 2024-10-29, Version 22.11.0 'Jod' (LTS), @richardlauCompare Source
Notable Changes
This release marks the transition of Node.js 22.x into Long Term Support (LTS)
with the codename 'Jod'. The 22.x release line now moves into "Active LTS"
and will remain so until October 2025. After that time, it will move into
"Maintenance" until end of life in April 2027.
Other than updating metadata, such as the
process.release
object, to reflectthat the release is LTS, no further changes from Node.js 22.10.0 are included.
OpenSSL 3.x
Official binaries for Node.js 22.x currently include OpenSSL 3.0.x (more
specifically, the quictls OpenSSL fork).
OpenSSL 3.0.x is the currently designated long term support version that is
scheduled to be supported until 7th September 2026, which is within the expected
lifetime of Node.js 22.x. We are expecting upstream OpenSSL to announce a
successor long term support version prior to that date and since OpenSSL now
follows a semantic versioning-like versioning scheme we expect to be able to
update to the next long term supported version of OpenSSL during the lifetime of
Node.js 22.x.
v22.10.0
: 2024-10-16, Version 22.10.0 (Current), @aduh95Compare Source
Notable Changes
New
"module-sync"
exports conditionThis release introduces a
"module-sync"
exports condition that's enabled whenrequire(esm)
is enabled, so packages can supply a synchronous ES module to theNode.js module loader, no matter if it's being required or imported. This is
similar to the
"module"
condition that bundlers have been using to supportrequire(esm)
in Node.js, and allows dual-package authors to opt into ESM-firstonly on newer versions of Node.js that supports
require(esm)
to avoid thedual-package hazard.
Or if the package is only meant to be run on Node.js and wants to fallback to
CJS on older versions that don't have
require(esm)
:For package authors: this only serves as a feature-detection mechanism for
packages that wish to support both CJS and ESM users during the period when some
active Node.js LTS versions support
require(esm)
while some older ones don't.When all active Node.js LTS lines support
require(esm)
, packages can simplifytheir distributions by bumping the major version, dropping their CJS exports,
and removing the
module-sync
exports condition (with onlymain
ordefault
targetting the ESM exports). If the package needs to support both bundlers and
being run unbundled on Node.js during the transition period, use both
module-sync
andmodule
and point them to the same ESM file. If the packagealready doesn't want to support older versions of Node.js that doesn't support
require(esm)
, don't use this export condition.For bundlers/tools: they should avoid implementing this stop-gap condition.
Most existing bundlers implement the de-facto bundler standard
module
exports condition, and that should be enough to support users who want to bundle
ESM from CJS consumers. Users who want both bundlers and Node.js to recognize
the ESM exports can use both
module
/module-sync
conditions during thetransition period, and can drop
module-sync
+module
when they no longer needto support older versions of Node.js. If tools do want to support this
condition, it's recommended to make the resolution rules in the graph pointed by
this condition match the Node.js native ESM rules to avoid divergence.
We ended up implementing a condition with a different name instead of reusing
"module"
, because existing code in the ecosystem using the"module"
condition sometimes also expect the module resolution for these ESM files to
work in CJS style, which is supported by bundlers, but the native Node.js loader
has intentionally made ESM resolution different from CJS resolution (e.g.
forbidding
import './noext'
orimport './directory'
), so it would bebreaking to implement a
"module"
condition without implementing the forbiddenESM resolution rules. For now, this just implements a new condition as
semver-minor so it can be backported to older LTS.
Contributed by Joyee Cheung in #54648.
node --run
is now stableThis CLI flag runs a specified command from a
package.json
's"scripts"
object.For the following
package.json
:You can run
node --run test
and that would start the test suite.Contributed by Yagiz Nizipli in #53763.
Other notable changes
f0b441230a
] - (SEMVER-MINOR) crypto: addKeyObject.prototype.toCryptoKey
(Filip Skokan) #55262349d2ed07b
] - (SEMVER-MINOR) crypto: add Date fields forvalidTo
andvalidFrom
(Andrew Moon) #54159bebc95ed58
] - doc: add abmusse to collaborators (Abdirahim Musse) #55086914db60159
] - (SEMVER-MINOR) http2: exposenghttp2_option_set_stream_reset_rate_limit
as an option (Maël Nison) #54875f7c3b03759
] - (SEMVER-MINOR) lib: propagate aborted state to dependent signals before firing events (jazelly) #5482632261fc98a
] - (SEMVER-MINOR) module: support loading entrypoint as url (RedYetiDev) #5493306957ff355
] - (SEMVER-MINOR) module: implementflushCompileCache()
(Joyee Cheung) #549712dcf70c347
] - (SEMVER-MINOR) module: throw when invalid argument is passed toenableCompileCache()
(Joyee Cheung) #54971f9b19d7c44
] - (SEMVER-MINOR) module: write compile cache to temporary file and then rename it (Joyee Cheung) #54971e95163b170
] - (SEMVER-MINOR) process: addprocess.features.require_module
(Joyee Cheung) #552414050f68e5d
] - (SEMVER-MINOR) process: addprocess.features.typescript
(Aviv Keller) #5429586f7cb802d
] - (SEMVER-MINOR) test_runner: support custom arguments inrun()
(Aviv Keller) #55126b62f2f8259
] - (SEMVER-MINOR) test_runner: add'test:summary'
event (Colin Ihrig) #54851d7c708aec5
] - (SEMVER-MINOR) test_runner: add support for coverage viarun()
(Chemi Atlow) #539375fda4a1498
] - (SEMVER-MINOR) worker: addmarkAsUncloneable
api (Jason Zhang) #55234Commits
e3619510c8
] - assert: show the diff when deep comparing data with a custom message (Giovanni) #5475939c7a9e70c
] - benchmark: adjust config for deepEqual object (Rafael Gonzaga) #55254263526d5d0
] - benchmark: rewrite detect-esm-syntax benchmark (Joyee Cheung) #55238cd0795fb00
] - benchmark: add no-warnings to process.has bench (Rafael Gonzaga) #551594352d9cc31
] - benchmark: create benchmark for typescript (Marco Ippolito) #54904452bc9b48d
] - benchmark: add webstorage benchmark (jakecastelli) #55040d4d5ba3a9b
] - benchmark: include ascii to fs/readfile (Rafael Gonzaga) #5498823b628db65
] - benchmark: add dotenv benchmark (Aviv Keller) #54278b1ebb0d8ca
] - buffer: coerce extrema to int inblob.slice
(Antoine du Hamel) #551413a6e72483f
] - buffer: extract Blob's .arrayBuffer() & webidl changes (Matthew Aitken) #53372d109f1c4ff
] - buffer: use simdutf convert_latin1_to_utf8_safe (Robert Nagy) #5479877f8a3f9c2
] - build: fix notify-on-review-wanted action (Rafael Gonzaga) #553040d93b1ed0c
] - build: fix not valid json in coverage (jakecastelli) #55179f89664d890
] - build: include.nycrc
in coverage workflows (Wuli Zuo) #55210d7a9df6417
] - build: notify via slack when review-wanted (Rafael Gonzaga) #5510268822cc861
] - build: add more information to Makefile help (Aviv Keller) #53381f3ca9c669b
] - build: update ruff and addlint-py-fix
(Aviv Keller) #54410d99ae548d7
] - build: remove -v flag to reduce noise (iwuliz) #55025d3dfbe7ff9
] - build: display free disk space after build in the test-macOS workflow (iwuliz) #550253077f6a5b7
] - build: support up to python 3.13 in android-configure (Aviv Keller) #54529a929c71281
] - build: add the option to generate compile_commands.json in vcbuild.bat (Segev Finer) #52279a81f368b99
] - build: fix eslint makefile target (Aviv Keller) #54999c8b7a645ae
] - Revert "build: upgrade clang-format to v18" (Chengzhong Wu) #549947861ca5dc3
] - build: printRunning XYZ linter...
for py and yml (Aviv Keller) #54386aaea3944e5
] - build,win: add winget config to set up env (Hüseyin Açacak) #5472930d47220bb
] - build,win: float VS 17.11 compilation patch (Stefan Stojanovic) #54970048a1ab350
] - cli: ensure --run has proper pwd (Yagiz Nizipli) #54949a97841ee10
] - cli: fix spacing for port range error (Aviv Keller) #544951dcc5eedff
] - Revert "console: colorize console error and warn" (Aviv Keller) #54677f0b441230a
] - (SEMVER-MINOR) crypto: add KeyObject.prototype.toCryptoKey (Filip Skokan) #55262d3f8c35320
] - crypto: ensure invalid SubtleCrypto JWK data import results in DataError (Filip Skokan) #55041349d2ed07b
] - (SEMVER-MINOR) crypto: add Date fields forvalidTo
andvalidFrom
(Andrew Moon) #5415934ca36a397
] - deps: update undici to 6.20.0 (Node.js GitHub Bot) #55329f703652e84
] - deps: upgrade npm to 10.9.0 (npm team) #55255b533a51856
] - deps: V8: backport0d5d6e7
(Yagiz Nizipli) #551152f65b3fd07
] - deps: V8: partially cherry-pick8953e49
(Ben Noordhuis) #55274bb9f77d53a
] - deps: update archs files for openssl-3.0.15+quic1 (Node.js GitHub Bot) #5518463d51c82fe
] - deps: upgrade openssl sources to quictls/openssl-3.0.15+quic1 (Node.js GitHub Bot) #5518429e6484f3c
] - deps: update archs files for openssl-3.0.14+quic1 (Node.js GitHub Bot) #54336283927ec88
] - deps: upgrade openssl sources to quictls/openssl-3.0.14+quic1 (Node.js GitHub Bot) #54336b0636a1e88
] - deps: update timezone to 2024b (Node.js GitHub Bot) #55056173464d76f
] - deps: update acorn-walk to 8.3.4 (Node.js GitHub Bot) #549500d4536543b
] - deps: update corepack to 0.29.4 (Node.js GitHub Bot) #548451de5512383
] - deps: V8: cherry-pick217457d
(Michaël Zasso) #548831921d7a37c
] - doc: add release key for aduh95 (Antoine du Hamel) #55349d8e42be1b2
] - doc: moveERR_INVALID_PERFORMANCE_MARK
to legacy errors (Antoine du Hamel) #552475ea8aa183c
] - doc: fix Markdown linter (Antoine du Hamel) #55344873588888d
] - Revert "doc: update test context.assert" (Antoine du Hamel) #55344707e7cc702
] - doc: add pmarchini to collaborators (Pietro Marchini) #55331b03272b9a1
] - doc: fixevents.once()
example usingAbortSignal
(Ivo Janssen) #5514485b765953d
] - doc: add onboarding details for ambassador program (Marco Ippolito) #552845d41b8a8b0
] - doc: updaterequire(ESM)
history and stability status (Antoine du Hamel) #55199195df659e9
] - doc: moveERR_NAPI_TSFN_START/STOP_IDLE_LOOP
to legacy errors (Antoine du Hamel) #552488eae0d3f3c
] - doc: fix initial default value of autoSelectFamily (Ihor Rohovets) #55245297cb0da5a
] - doc: tweak onboarding instructions (Michael Dawson) #552127ddbfe8c2b
] - doc: update test context.assert (Pietro Marchini) #551868a57550d20
] - doc: fix unordered error anchors (Antoine du Hamel) #55242286ea4ed3d
] - doc: mention addons to experimental permission (Rafael Gonzaga) #551667c9ceabf38
] - doc: use correct dash in stability status (Antoine du Hamel) #55200781ffd8ba1
] - doc: fix link intest/README.md
(Livia Medeiros) #5516561b9ed3bf2
] - doc: add esm examples to node:net (Alfredo González) #55134bb3499038d
] - doc: remove outdated https import reference (Edigleysson Silva (Edy)) #551116cc49518c7
] - doc: move the YAML changes element (sendoru) #55112b12b4a23e4
] - doc: remove random horizontal separators inprocess.md
(Antoine du Hamel) #551497186ede388
] - doc: put --env-file-if-exists=config right under --env-file=config (Edigleysson Silva (Edy)) #551318ad0dfff10
] - doc: fix the require resolve algorithm inmodules.md
(chirsz) #55117fd40f0873f
] - doc: update style guide (Aviv Keller) #5322312c9d9780f
] - doc: add missing:
torun()
'sglobPatterns
(Aviv Keller) #5513573b05cfb04
] - doc: correctcleanup
option in stream.(promises.)finished (René) #55043bebc95ed58
] - doc: add abmusse to collaborators (Abdirahim Musse) #55086a97c80c6ae
] - doc: add note about--expose-internals
(Aviv Keller) #5286189aeae63bd
] - doc: removeparseREPLKeyword
from REPL documentation (Aviv Keller) #54749b3e0490b8b
] - doc: add missing EventSource docs to globals (Matthew Aitken) #55022516c775fa5
] - doc: cover --experimental-test-module-mocks flag (Jonathan Sharpe) #550214244f1a269
] - doc: add more details for localStorage and sessionStorage (Batuhan Tomo) #5388139a728c2e3
] - doc: change backporting guide with updated info (Aviv Keller) #537463a5fe95ad7
] - doc: add missing definitions tointernal-api.md
(Aviv Keller) #53303f2d74a26a3
] - doc: fix history ofprocess.features
(Antoine du Hamel) #5498229866ca438
] - doc: fix typo callsite.lineNumber (Rafael Gonzaga) #54969c1d73abd29
] - doc: update documentation for externalizing deps (Michael Dawson) #54792eca9668231
] - doc: add documentation for process.features (Marco Ippolito) #548970fb446e207
] - esm: do not interpret"main"
as a URL (Antoine du Hamel) #55003be2fe4b249
] - events: allow null/undefined eventInitDict (Matthew Aitken) #54643cb47e169a0
] - events: returncurrentTarget
when dispatching (Matthew Aitken) #54642dbfae3fe14
] - fs: acknowledgesignal
option infilehandle.createReadStream()
(Livia Medeiros) #551481c94725c07
] - fs: check subdir correctly in cpSync (Jason Zhang) #5503379ffefab2a
] - fs: convert to u8 string for filesystem path (Jason Zhang) #54653914db60159
] - (SEMVER-MINOR) http2: expose nghttp2_option_set_stream_reset_rate_limit as an option (Maël Nison) #5487508b5e6c794
] - lib: fix module print timing when specifier includes"
(Antoine du Hamel) #55150bf7d7aef4b
] - lib: fix typos (Nathan Baulch) #55065d803355d92
] - lib: prefer optional chaining (Aviv Keller) #55045d4873bcd6d
] - lib: remove lib/internal/idna.js (Yagiz Nizipli) #55050f7c3b03759
] - (SEMVER-MINOR) lib: propagate aborted state to dependent signals before firing events (jazelly) #54826397ae418db
] - lib: the REPL should survive deletion of Array.prototype methods (Jordan Harband) #31457566179c9ec
] - lib, tools: remove duplicate requires (Aviv Keller) #54987c9a1bbbef2
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #55300d7b73bbd1d
] - meta: bump mozilla-actions/sccache-action from 0.0.5 to 0.0.6 (dependabot[bot]) #552250f4269faa9
] - meta: bump actions/checkout from 4.1.7 to 4.2.0 (dependabot[bot]) #5522433be1990d8
] - meta: bump actions/setup-node from 4.0.3 to 4.0.4 (dependabot[bot]) #55223f5b4ae5bf8
] - meta: bump peter-evans/create-pull-request from 7.0.1 to 7.0.5 (dependabot[bot]) #552191985d9016e
] - meta: add mailmap entry for abmusse (Abdirahim Musse) #5518293b215d5e6
] - meta: add more information about nightly releases (Aviv Keller) #55084aeae5973c3
] - meta: addlinux
to OS labels in collaborator guide (Aviv Keller) #549864fb2c3baa8
] - meta: remove never-used workflow trigger (Aviv Keller) #54983e1f36d0da8
] - meta: remove unneeded ignore rules from ruff (Aviv Keller) #54360ce0d0c1ec8
] - meta: removebuild-windows.yml
(Aviv Keller) #54662ca67c97f33
] - meta: add links to alternative issue trackers (Aviv Keller) #544016fcac73738
] - module: wrap swc error in ERR_INVALID_TYPESCRIPT_SYNTAX (Marco Ippolito) #553160412ac8bf3
] - module: add internal type def forflushCompileCache
(Jacob Smith) #5522632261fc98a
] - (SEMVER-MINOR) module: support loading entrypoint as url (RedYetiDev) #54933111261e245
] - (SEMVER-MINOR) module: implement the "module-sync" exports condition (Joyee Cheung) #54648b6fc9adf5b
] - module: remove duplicated import (Aviv Keller) #5494206957ff355
] - (SEMVER-MINOR) module: implement flushCompileCache() (Joyee Cheung) #549712dcf70c347
] - (SEMVER-MINOR) module: throw when invalid argument is passed to enableCompileCache() (Joyee Cheung) #54971f9b19d7c44
] - (SEMVER-MINOR) module: write compile cache to temporary file and then rename it (Joyee Cheung) #549711d169764db
] - module: report unfinished TLA in ambiguous modules (Antoine du Hamel) #54980c89c93496d
] - module: refator ESM loader for adding future synchronous hooks (Joyee Cheung) #54769108cef22e6
] - module: remove bogus assertion in CJS entrypoint handling with --import (Joyee Cheung) #5459267ecb10c78
] - module: fix discrepancy between .ts and .js (Marco Ippolito) #544613300d5990f
] - os: use const with early return for path (Trivikram Kamat) #5495990cce6ec7c
] - path: remove repetitive conditional operator inposix.resolve
(Wiyeong Seo) #54835cbfc980f89
] - perf_hooks: add missing type argument to getEntriesByName (Luke Taher) #54767e95163b170
] - (SEMVER-MINOR) process: add process.features.require_module (Joyee Cheung) #552410655d3a384
] - process: fixprocess.features.typescript
when Amaro is unavailable (Antoine du Hamel) #553234050f68e5d
] - (SEMVER-MINOR) process: addprocess.features.typescript
(Aviv Keller) #5429575073c50ae
] - quic: start adding in the internal quic js api (James M Snell) #53256538b1eb5b0
] - repl: catch\v
and\r
in new-line detection (Aviv Keller) #5451257a9d3f15e
] - sqlite: disable DQS misfeature by default (Tobias Nießen) #55297c126543374
] - sqlite: make sourceSQL and expandedSQL string-valued properties (Tobias Nießen) #5472167f5f46c56
] - sqlite: enable foreign key constraints by default (Tobias Nießen) #5477709999491bf
] - src: handle errors correctly in webstorage (Michaël Zasso) #54544295c17c4ea
] - src: make minor tweaks to quic c++ for c++20 (James M Snell) #53256b1d47d06f9
] - src: apply getCallSite optimization (RafaelGSS) #55174d6bcc44829
] - src: modernize likely/unlikely hints (Yagiz Nizipli) #551551af5ad61ca
] - src: fixup Error.stackTraceLimit during snapshot building (Joyee Cheung) #55121b229083235
] - src: parse --stack-trace-limit and use it in --trace-* flags (Joyee Cheung) #55121942ad54e08
] - src: move more key handling to ncrypto (James M Snell) #551080bb5584288
] - src: add receiver to fast api callback methods (Carlos Espa) #54408706e9611f0
] - src: fix typos (Nathan Baulch) #55064a96d5d1bcc
] - src: move more stuff over to use Maybe<void> (James M Snell) #54831ee0a98b5a2
] - src: decode native error messages as UTF-8 (Joyee Cheung) #550241fc8edecf8
] - src: update clang-tidy and focus on modernization (Yagiz Nizipli) #537573a1485a1a3
] - src: move evp stuff to ncrypto (James M Snell) #549119ae80e1e4d
] - src: revert filesystem::path changes (Yagiz Nizipli) #55015465d05018a
] - src: mark node --run as stable (Yagiz Nizipli) #53763ef546c872c
] - src: cleanup per env handles directly without a list (Chengzhong Wu) #549930876f78411
] - src: add unistd.h import if node posix credentials is defined (Jonas) #54528284db53866
] - src: remove duplicate code setting AF_INET (He Yang) #54939f332c4c4fc
] - src: useMaybe<void>
where bool isn't needed (Michaël Zasso) #54575c7ed2ff920
] - stream: handle undefined chunks correctly in decode stream (devstone) #55153a9675a0cbc
] - stream: treat null asyncIterator as undefined (Jason Zhang) #55119bf69ae1406
] - stream: set stream prototype to closest transferable superclass (Jason Zhang) #550673273707a3a
] - test: fix tests when Amaro is unavailable (Richard Lau) #55320ff3cc3b2ab
] - test: use more informative errors intest-runner-cli
(Antoine du Hamel) #5532117d2f9de6d
] - test: maketest-loaders-workers-spawned
less flaky (Antoine du Hamel) #551721b1104e69b
] - test: add resource to internal module stat test (RafaelGSS) #55157b36f8c2146
] - test: update multiple assert tests to use node:test (James M Snell) #545851b30f7fdd6
] - test: move coverage source map tests to new file (Aviv Keller) #55123ce67e7b5b3
] - test: adding more tests for strip-types (Kevin Toshihiro Uehara) #54929a57c8ba3ef
] - test: update wpt test for encoding (devstone) #5515165fbe94d45
] - test: addescapePOSIXShell
util (Antoine du Hamel) #55125cc8838252e
] - test: remove unnecessaryawait
in test-watch-mode (Wuli) #551429aeba48bf0
] - test: fix typos (Nathan Baulch) #550630999b5e493
] - test: remove duplicated test descriptions (Christos Koutsiaris) #54140e99d4a4cb8
] - test: deflake test/pummel/test-timers.js (jakecastelli) #55098fb8470afd7
] - test: deflake test-http-remove-header-stays-removed (Luigi Pinca) #55004e879c5edf2
] - test: fix test-tls-junk-closes-server (Michael Dawson) #55089b885f0583c
] - test: fix more tests that fail when path contains a space (Antoine du Hamel) #5508885f1187942
] - test: fixassertSnapshot
when path contains a quote (Antoine du Hamel) #55087fdae57f1e1
] - test: fix some tests when path contains%
(Antoine du Hamel) #5508236c9ea8912
] - Revert "test: mark test-fs-watch-non-recursive flaky on Windows" (Luigi Pinca) #5507980da5993cc
] - test: remove interval and give more time to unsync (Pietro Marchini) #5500693c23e74b3
] - test: deflake test-inspector-strip-types (Luigi Pinca) #5505843bbca2c08
] - test: maketest-runner-assert
more robust (Aviv Keller) #55036268f1ec08f
] - test: update tls test to support OpenSSL32 (Michael Dawson) #55030a50dd21423
] - test: do not assumeprocess.execPath
contains no spaces (Antoine du Hamel) #55028c56e324cb8
] - test: fixtest-vm-context-dont-contextify
when path contains a space (Antoine du Hamel) #550266d42e44264
] - test: adjust tls-set-ciphers for OpenSSL32 (Michael Dawson) #5501622e601a76c
] - test: addutil.stripVTControlCharacters
test (RedYetiDev) #54865a6796696d7
] - test: improve coverage for timer promises schedular (Aviv Keller) #533709506f77b3e
] - test: removegetCallSite
from common (RedYetiDev) #5494720d3a806ea
] - test: remove unused common utilities (RedYetiDev) #54825341b6d9b94
] - test: deflake test-http-header-overflow (Luigi Pinca) #549781e53c10853
] - test: fixsoucre
tosource
(Aviv Keller) #550386843ca7e0d
] - test: add asserts to validate test assumptions (Michael Dawson) #5499798ff615c5e
] - test: add runner watch mode isolation tests (Pietro Marchini) #54888327a8f7b59
] - test: fix invalid wasm test (Aviv Keller) #549355b012f544c
] - test: move test-http-max-sockets to parallel (Luigi Pinca) #5497722b413910e
] - test: remove test-http-max-sockets flaky designation (Luigi Pinca) #5497662b8640550
] - test: refactor test-whatwg-webstreams-encoding to be shorter (David Dong) #545691f11d68173
] - test: adjust key sizes to support OpenSSL32 (Michael Dawson) #5497290a87ca8f7
] - test: update test to support OpenSSL32 (Michael Dawson) #549689b7834536a
] - test: update DOM events web platform tests (Matthew Aitken) #546421c001550a2
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #55029800f7c44ed
] - test_runner: throw on invalid source map (Aviv Keller) #550550f7e3f017f
] - test_runner: assert entry is a valid object (Edigleysson Silva (Edy)) #55231c308862d2e
] - test_runner: avoid spread operator on arrays (Antoine du Hamel) #5514312401972b7
] - test_runner: support typescript files in default glob (Aviv Keller) #5508119cfa3140f
] - test_runner: close and flush destinations on forced exit (Colin Ihrig) #5509986f7cb802d
] - (SEMVER-MINOR) test_runner: support custom arguments inrun()
(Aviv Keller) #551267eaeba499a
] - test_runner: fix mocking modules with quote in their URL (Antoine du Hamel) #550838818c6c88a
] - test_runner: report error on missing sourcemap source (Aviv Keller) #55037b62f2f8259
] - (SEMVER-MINOR) test_runner: add 'test:summary' event (Colin Ihrig) #54851449dad0db0
] - test_runner: usetest:
symbol on second print of parent test (RedYetiDev) #549564b962a78c7
] - test_runner: replace ansi clear with ansi reset (Pietro Marchini) #55013d7c708aec5
] - (SEMVER-MINOR) test_runner: add support for coverage via run() (Chemi Atlow) #5393793c6c90219
] - test_runner: support typescript module mocking (Marco Ippolito) #548781daec9a63f
] - test_runner: avoid coverage report partial file names (Pietro Marchini) #54379d51e5a8667
] - tools: enforce errors to not be documented in legacy section (Aviv Keller) #552186a7d201b80
] - tools: update gyp-next to 0.18.2 (Node.js GitHub Bot) #55160c988e7e2e5
] - tools: bump the eslint group in /tools/eslint with 4 updates (dependabot[bot]) #552277982d3d4ed
] - tools: only check teams on the default branch (Antoine du Hamel) #5512460a35eddb0
] - tools: makechoco install
script more readable (Aviv Keller) #54002b7b1fa6dd3
] - tools: bump Rollup from 4.18.1 to 4.22.4 forlint-md
(dependabot[bot]) #550933304bf387f
] - tools: unlock versions of irrelevant DB deps (Michaël Zasso) #5504265c376a819
] - tools: remove redudant code from eslint require rule (Aviv Keller) #54892295f684b69
] - tools: update error message for ICU in license-builder (Aviv Keller) #54742ce4b6e403d
] - tools: refactor js2c.cc to use c++20 (Yagiz Nizipli) #5484931f0ef6ea3
] - tools: bump the eslint group in /tools/eslint with 7 updates (dependabot[bot]) #54821676d0a09a0
] - tools: update github_reporter to 1.7.1 (Node.js GitHub Bot) #549510f01f38aea
] - tty: fix links for terminal colors (Aviv Keller) #54596d264639f5f
] - util: update ansi regex (Aviv Keller) #54865ea7aaf37bf
] - v8: out of bounds copy (Robert Nagy) #55261fa695facf5
] - watch: preserve output when gracefully restarted (Théo LUDWIG) #543235fda4a1498
] - (SEMVER-MINOR) worker: addmarkAsUncloneable
api (Jason Zhang) #55234d65334c454
] - worker: throw InvalidStateError in postMessage after close (devstone) #55206fc90d7c63a
] - worker: handle--input-type
more consistently (Antoine du Hamel) #54979a9fa2da870
] - zlib: throw brotli initialization error from c++ (Yagiz Nizipli) #546989abd1c7288
] - zlib: remove prototype primordials usage (Yagiz Nizipli) #54695v22.9.0
: 2024-09-17, Version 22.9.0 (Current), @RafaelGSSCompare Source
New API to retrieve execution Stack Trace
A new API
getCallSite
has been introduced to theutil
module. This API allows usersto retrieve the stacktrace of the current execution. Example:
Thanks to Rafael Gonzaga for making this work on #54380.
Disable V8 Maglev
We have seen several crashes/unexpected JS behaviors with maglev on v22
(which ships V8 v12.4). The bugs lie in the codegen so it would be difficult for
users to work around them or even figure out where the bugs are coming from.
Some bugs are fixed in the upstream while some others probably remain.
As v22 will get stuck with V8 v12.4 as LTS, it will be increasingly difficult to
backport patches for them even if the bugs are fixed. So disable it by default
on v22 to reduce the churn and troubles for users.
Thanks to Joyee Cheung for making this work on #54384
Exposes X509_V_FLAG_PARTIAL_CHAIN to tls.createSecureContext
This releases introduces a new option to the API
tls.createSecureContext
. Fornow on users can use
tls.createSecureContext({ allowPartialTrustChain: true })
to treat intermediate (non-self-signed) certificates in the trust CA certificate
list as trusted.
Thanks to Anna Henningsen for making this work on #54790
Other Notable Changes
5c9599af5a
] - src: create handle scope in FastInternalModuleStat (Joyee Cheung) #54384e2307d87e8
] - (SEMVER-MINOR) stream: relocate the status checking code in the onwritecomplete (YoonSoo_Shin) #54032Deprecations
8433032948
] - repl: doc-deprecate instantiatingnode:repl
classes withoutnew
(Aviv Keller) #548428c4c85cf31
] - zlib: deprecate instantiating classes without new (Yagiz Nizipli) #54708Commits
027b0ffe84
] - async_hooks: add an InactiveAsyncContextFrame class (Bryan English) #54510022767028e
] - benchmark: --no-warnings to avoid DEP/ExpWarn log (Rafael Gonzaga) #54928af1988c147
] - benchmark: add buffer.isAscii benchmark (RafaelGSS) #5474040c6849964
] - benchmark: add buffer.isUtf8 bench (RafaelGSS) #54740237d7dfbde
] - benchmark: add access async version to bench (Rafael Gonzaga) #54747ebe91db827
] - benchmark: enhance dc publish benchmark (Rafael Gonzaga) #54745060164485b
] - benchmark: add match and doesNotMatch bench (RafaelGSS) #547342844180c7e
] - benchmark: add rejects and doesNotReject bench (RafaelGSS) #54734af7689ed02
] - benchmark: add throws and doesNotThrow bench (RafaelGSS) #54734456a1fe222
] - benchmark: add strictEqual and notStrictEqual bench (RafaelGSS) #54734721c63c858
] - benchmark: adds groups to better separate benchmarks (Giovanni Bucci) #5439368e45b406e
] - benchmark,doc: add CPU scaling governor to perf (Rafael Gonzaga) #54723d19efd7a50
] - benchmark,doc: mention bar.R to the list of scripts (Rafael Gonzaga) #547221fb67afa2f
] - buffer: fix out of range for toString (Jason Zhang) #5455385b5ed5d41
] - buffer: re-enable Fast API for Buffer.write (Robert Nagy) #545269a075279ec
] - build: upgrade clang-format to v18 (Aviv Keller) #5395769ec9d8d2b
] - build: fix conflicting V8 object print flags (Daeyeon Jeong) #54785948bba396c
] - build: do not build with code cache for core coverage collection (Joyee Cheung) #546336200cf4fb6
] - build: don't store eslint locally (Aviv Keller) #542313b5ed97fe9
] - build: turn off-Wrestrict
(Richard Lau) #54737e38e305a35
] - build,win: enable clang-cl compilation (Stefan Stojanovic) #546555bba0781b0
] - crypto: reject dh,x25519,x448 in {Sign,Verify}Final (Huáng Jùnliàng) #537743981853c00
] - crypto: return a clearer error when loading an unsupported pkcs12 (Tim Perry) #5448502ac5376b9
] - crypto: remove unusedkHashTypes
internal (Antoine du Hamel) #54627323d9da3c9
] - deps: update cjs-module-lexer to 1.4.1 (Node.js GitHub Bot) #54846bf4bf7cc6b
] - deps: update simdutf to 5.5.0 (Node.js GitHub Bot) #5443461047dd130
] - deps: upgrade npm to 10.8.3 (npm team) #546192351da5034
] - deps: update cjs-module-lexer to 1.4.0 (Node.js GitHub Bot) #547130659516823
] - deps: allow amaro to be externalizable (Michael Dawson) #546466a32645dbc
] - deps: fix sign-compare warning in ncrypto (Cheng) #546248f62f19197
] - doc: fix broken Android building link (Niklas Wenzel) #54922440c256d76
] - doc: add support link for aduh95 (Antoine du Hamel) #5486656aca2a1ca
] - doc: run license-builder (github-actions[bot]) #548548931f569c6
] - doc: experimental flag for global accessible APIs (Chengzhong Wu) #543306f8a6e9eb6
] - doc: addERR_INVALID_ADDRESS
toerrors.md
(Aviv Keller) #54661c1b92e05e7
] - doc: add support link for mcollina (Matteo Collina) #547861def18122a
] - doc: mark--conditions
CLI flag as stable (Guy Bedford) #54209b8ae36b6c3
] - doc: fix typo in recognizing-contributors (Tobias Nießen) #548222c2ae80924
] - doc: clarify--max-old-space-size
and--max-semi-space-size
units (Alexandre ABRIOUX) #544775bd4be5ce7
] - doc: replace --allow-fs-read by --allow-fs-write in related section (M1CK431) #54427c0f3e4603f
] - doc: add support link for marco-ippolito (Marco Ippolito) #54789dc69eb8276
] - doc: fix typo in module.md (Tobias Nießen) #54794de225f5db9
] - doc: specify that preloaded modules affect subprocesses (Aviv Keller) #5293962b0007cbe
] - doc: clarify expandedSQL behavior (Tobias Nießen) #546851c7bdf95db
] - doc: render type references in SQLite docs (Tobias Nießen) #546845555095531
] - doc: fix typo (Michael Dawson) #54640754baa4efa
] - doc: fix webcrypto.md AES-GCM backticks (Filip Skokan) #546215bfb4bcf45
] - doc: add documentation about os.tmpdir() overrides (Joyee Cheung) #5461322d873208e
] - doc, build: fixup build docs (Aviv Keller) #548995e081a12b6
] - doc, child_process: add esm snippets (Aviv Keller) #536162b68c30a26
] - doc, meta: fix broken link inonboarding.md
(Aviv Keller) #54886a624002fff
] - esm: throwERR_REQUIRE_ESM
instead ofERR_INTERNAL_ASSERTION
(Antoine du Hamel) #5486831d4ef91ee
] - esm: fix support forURL
instances inimport.meta.resolve
(Antoine du Hamel) #5469040ba89e452
] - esm: use Undici/fetch
data:
URL parser (Matthew Aitken) #5474893116dd7b1
] - fs: translate error code properly in cpSync (Jason Zhang) #54906375cbb592e
] - fs: refactor rimraf to avoid using primordials (Yagiz Nizipli) #54834ee89c3149e
] - fs: respect dereference when copy symlink directory (Jason Zhang) #547327123bf7ca4
] - http: reduce likelihood of race conditions on keep-alive timeout (jazelly) #5486304ef3e4afd
] - https: only use default ALPNProtocols when appropriate (Brian White) #54411dc5593ba1e
] - lib: remove unnecessary async (jakecastelli) #548292b9a6373da
] - lib: make WeakRef safe in abort_controller (jazelly) #547915f02e1b850
] - lib: moveSymbol[Async]Dispose
polyfills tointernal/util
(Antoine du Hamel) #54853fc78ced7e4
] - lib: convert signals to array before validation (Jason Zhang) #5471421fef34a53
] - lib: add note about removingnode:sys
module (Rafael Gonzaga) #54743a37d805489
] - (SEMVER-MINOR) lib: add util.getCallSite() API (Rafael Gonzaga) #543802a1f56cce6
] - lib: ensure no holey array in fixed_queue (Jason Zhang) #54537540b1dbaf6
] - lib: refactor SubtleCrypto experimental warnings (Filip Skokan) #54620b59c8b88c7
] - lib,src: use built-in array buffer detach, transfer (Yagiz Nizipli) #54837c1cc046de9
] - meta: bump peter-evans/create-pull-request from 6.1.0 to 7.0.1 (dependabot[bot]) #5482082c08ef483
] - meta: addWindows ARM64
to flaky-tests list (Aviv Keller) #54693df30e8efa1
] - meta: ping @nodejs/performance on bench changes (Rafael Gonzaga) #54752bdd9fbb905
] - meta: bump actions/setup-python from 5.1.1 to 5.2.0 (Rich Trott) #5469119574a8403
] - meta: update sccache to v0.8.1 (Aviv Keller) #547209ebcfb2b28
] - meta: bump step-security/harden-runner from 2.9.0 to 2.9.1 (dependabot[bot]) #54704ea58feb959
] - meta: bump actions/upload-artifact from 4.3.4 to 4.4.0 (dependabot[bot]) #54703c6bd9e443e
] - meta: bump github/codeql-action from 3.25.15 to 3.26.6 (dependabot[bot]) #5470279b358af2e
] - meta: fix links inSECURITY.md
(Aviv Keller) #546966c8a20d650
] - meta: fixcontributing
codeowners (Aviv Keller) #54641b7284ed099
] - module: do not warn for typeless package.json when there isn't one (Joyee Cheung) #54045ddd24a6e63
] - node-api: add external buffer creation benchmark (Chengzhong Wu) #548774a7576efae
] - node-api: add support for UTF-8 and Latin-1 property keys (Mert Can Altin) #52984461e523498
] - os: improvetmpdir
performance (Yagiz Nizipli) #5470994fb7ab2e7
] - path: removeStringPrototypeCharCodeAt
fromposix.extname
(Aviv Keller) #5454667b1d4cb45
] - repl: avoid interpreting 'npm' as a command when errors are recoverable (Shima Ryuhei) #548488433032948
] - repl: doc-deprecate instantiatingnode:repl
classes withoutnew
(Aviv Keller) #548427766349dd0
] - sqlite: fix segfault in expandedSQL (Tobias Nießen) #546874c1b98ba2b
] - sqlite: remove unnecessary auto assignment (Tobias Nießen) #5468677d162adb6
] - src: add--env-file-if-exists
flag (Bosco Domingo) #53060424bdc03b4
] - src: add Cleanable class to Environment (Gabriel Schulhof) #54880fbd08e3a9f
] - src: switch crypto APIs to use Maybe<void> (James M Snell) #547755e72bd3545
] - src: eliminate ManagedEVPPkey (James M Snell) #5475197cbcfbb43
] - src: fix unhandled error in structuredClone (Daeyeon Jeong) #54764b89cd8d19a
] - src: move hkdf, scrypto, pbkdf2 impl to ncrypto (James M Snell) #546515c9599af5a
] - src: create handle scope in FastInternalModuleStat (Joyee Cheung) #54384e2307d87e8
] - (SEMVER-MINOR) stream: relocate the status checking code in the onwritecomplete (YoonSoo_Shin) #54032ff54cabef6
] - test: adjust test-tls-junk-server for OpenSSL32 (Michael Dawson) #5492623fb03beed
] - test: remove duplicate skip AIX (Wuli) #549172b5e70816a
] - test: adjust tls test for OpenSSL32 (Michael Dawson) #54909cefa692dcb
] - test: fix test-http2-socket-close.js (Hüseyin Açacak) #54900097f6d3e7e
] - test: improve test-internal-fs-syncwritestream (Sunghoon) #54671ed736a689f
] - test: deflake test-dns (Luigi Pinca) #54902bb4849f595
] - test: fix test test-tls-dhe for OpenSSL32 (Michael Dawson) #54903d9264bceca
] - test: use correct file naming syntax forutil-parse-env
(Aviv Keller) #53705115a7ca42a
] - test: add missing await (Luigi Pinca) #548287a1d633d77
] - test: move more url tests tonode:test
(Yagiz Nizipli) #54636ee385d62b9
] - test: strip color chars intest-runner-run
(Giovanni Bucci) #545522efec6221c
] - test: deflake test-http2-misbehaving-multiplex (Luigi Pinca) #54872b198a91404
] - test: remove dead code in test-http2-misbehaving-multiplex (Luigi Pinca) #54860194cb83f39
] - test: reduce test-esm-loader-hooks-inspect-wait flakiness (Luigi Pinca) #548274b53558e8b
] - test: reduce the allocation size in test-worker-arraybuffer-zerofill (James M Snell) #54839c968d65d6d
] - test: fix test-tls-client-mindhsize for OpenSSL32 (Michael Dawson) #54739b998bb0933
] - test: remove need to make fs call for zlib test (Yagiz Nizipli) #54814f084ea2e01
] - test: use platform timeout (jakecastelli) #54591b10e434cf3
] - test: add platform timeout support for riscv64 (jakecastelli) #54591b875f2d7de
] - test: reduce stack size for test-error-serdes (James M Snell) #54840d1a411480a
] - test: reduce fs calls in test-fs-existssync-false (Yagiz Nizipli) #54815b96ee30a09
] - test: usenode:test
intest-cli-syntax.bad
(Aviv Keller) #545135278b8b7a1
] - test: move test-http-server-request-timeouts-mixed (James M Snell) #548418345a60d3a
] - test: fix Windows async-context-frame memory failure (Stephen Belanger) #54823cad404e1a1
] - test: fix volatile for CauseSegfault with clang (Ivan Trubach) #5432541682c7286
] - test: settest-http2-socket-close
as flaky (Yagiz Nizipli) #548021e1ac48711
] - test: settest-worker-arraybuffer-zerofill
as flaky (Yagiz Nizipli) #5480256238debff
] - test: settest-runner-run-watch
as flaky (Yagiz Nizipli) #548028291de1540
] - test: settest-http-server-request-timeouts-mixed
as flaky (Yagiz Nizipli) #5480232d340e6b3
] - test: settest-single-executable-application-empty
as flaky (Yagiz Nizipli) #548026a2da4c4ca
] - test: settest-macos-app-sandbox
as flaky (Yagiz Nizipli) #548022f408847a0
] - test: settest-fs-utimes
as flaky (Yagiz Nizipli) #54802e3b7c40ffc
] - test: settest-runner-run-watch
as flaky (Yagiz Nizipli) #54802d2ede46946
] - test: settest-sqlite-statement-sync
as flaky (Yagiz Nizipli) #54802b9f3385808
] - test: settest-writewrap
as flaky (Yagiz Nizipli) #54802d55fec8f40
] - test: settest-async-context-frame
as flaky (Yagiz Nizipli) #548023dfb525f3e
] - test: settest-esm-loader-hooks-inspect-wait
as flaky (Yagiz Nizipli) #54802b0458a88b4
] - test: settest-http2-large-file
as flaky (Yagiz Nizipli) #548025f6f8757e5
] - test: settest-runner-watch-mode-complex
as flaky (Yagiz Nizipli) #548024231af336d
] - test: settest-performance-function
as flaky (Yagiz Nizipli) #5480245ef2a868e
] - test: settest-debugger-heap-profiler
as flaky (Yagiz Nizipli) #54802b5137f6405
] - test: fixtest-process-load-env-file
when path contains'
(Antoine du Hamel) #54511960116905a
] - test: refactor fs-watch tests due to macOS issue (Santiago Gimeno) #54498f074d74bf3
] - test: refactortest-esm-type-field-errors
(Giovanni Bucci) #5436867e30deced
] - test: move more zlib tests to node:test (Yagiz Nizipli) #54609fdb65111a3
] - test: improve output of child process utilities (Joyee Cheung) #5462255a12a4190
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #54925de0f445a7f
] - test_runner: reimplementassert.ok
to allow stack parsing (Aviv Keller) #54776a52c199d9d
] - (SEMVER-MINOR) test_runner: report coverage thresholds intest:coverage
(Aviv Keller) #548136552fddef5
] - test_runner: update kPatterns (Pietro Marchini) #547283396a4954d
] - test_runner: detect only tests when isolation is off (Colin Ihrig) #54832021f59b6bc
] - test_runner: apply filtering when tests begin (Colin Ihrig) #5483236da793350
] - test_runner: allow--import
with no isolation (Aviv Keller) #54697de73d1ee4b
] - test_runner: improve code coverage cleanup (Colin Ihrig) #548563d478728f2
] - timers: avoid generating holey internal arrays (Gürgün Dayıoğlu) #54771b3d567ae0f
] - timers: document ref option for scheduler.wait (Paolo Insogna) #54605c2bf0134ce
] - (SEMVER-MINOR) tls: addallowPartialTrustChain
flag (Anna Henningsen) #54790608a611132
] - tools: add readability/fn_size to filter (Rafael Gonzaga) #5474493fab49099
] - tools: add util scripts to land and rebase PRs (Antoine du Hamel) #54656d6df542ff8
] - tools: remove readability/fn_size rule (Rafael Gonzaga) #54663689d127ee7
] - typings: fix TypedArray to a global type (1ilsang) #54063071dff1d34
] - typings: correct param type ofSafePromisePrototypeFinally
(Wuli) #547275243e3240c
] - Revert "v8: enable maglev on supported architectures" (Joyee Cheung) #54384ade9da5b3a
] - vm: add vm proto property lookup test (Chengzhong Wu) #546068385958b60
] - zlib: add typings for better dx (Yagiz Nizipli) #546998c4c85cf31
] - zlib: deprecate instantiating classes without new (Yagiz Nizipli) #54708v22.8.0
: 2024-09-03, Version 22.8.0 (Current), @RafaelGSSCompare Source
New JS API for compile cache
This release adds a new API
module.enableCompileCache()
that can be used to enable on-disk code caching of all modules loaded after this API is called.Previously this could only be enabled by the
NODE_COMPILE_CACHE
environment variable, so it could only set by end-users.This API allows tooling and library authors to enable caching of their own code.
This is a built-in alternative to the v8-compile-cache/v8-compile-cache-lib packages,
but have better performance and supports ESM.
Thanks to Joyee Cheung for working on this.
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.
Thanks to Joyee Cheung for working on this.
Support for coverage thresholds
Node.js now supports requiring code coverage to meet a specific threshold before the process exits successfully.
To use this feature, you need to enable the
--experimental-test-coverage
flag.You can set thresholds for the following types of coverage:
--test-coverage-branches=<threshold>
--test-coverage-functions=<threshold>
--test-coverage-lines=<threshold>
<threshold>
should be an integer between 0 and 100. If an invalid value is provided, aTypeError
will be thrown.If the code coverage fails to meet the specified thresholds for any category, the process will exit with code
1
.For instance, to enforce a minimum of 80% line coverage and 60% branch coverage, you can run:
Thanks Aviv Keller for working on this.
Other Notable Changes
1f2cc2fa47
] - (SEMVER-MINOR) src,lib: add performance.uvMetricsInfo (Rafael Gonzaga) #544131e01bdc0d0
] - (SEMVER-MINOR) net: exclude ipv6 loopback addresses from server.listen (Giovanni Bucci) #5426497fa075c2e
] - (SEMVER-MINOR) test_runner: support running tests in process (Colin Ihrig) #53927858b583c88
] - (SEMVER-MINOR) test_runner: defer inheriting hooks until run() (Colin Ihrig) #53927Commits
94985df9d6
] - benchmark: fix benchmark for file path and URL conversion (Early Riser) #54190ac178b094b
] - buffer: truncate instead of throw when writing beyond buffer (Robert Nagy) #54524afd8c1eb4f
] - buffer: allow invalid encoding in from (Robert Nagy) #545336f0cf35cd3
] - build: reclaim disk space on macOS GHA runner (jakecastelli) #54658467ac3aec4
] - build: don't clean obj.target directory if it doesn't exist (Joyee Cheung) #5433771fdf961df
] - build: update required python version to 3.8 (Aviv Keller) #5435873604cf1c5
] - deps: update nghttp2 to 1.63.0 (Node.js GitHub Bot) #54589b00c087285
] - deps: V8: cherry-picke74d0f4
(Joyee Cheung) #5427933a6b3c7a9
] - deps: backport ICU-22787 to fix ClangCL on Windows (Stefan Stojanovic) #54502fe56949cbb
] - deps: update c-ares to v1.33.1 (Node.js GitHub Bot) #54549290f6ce619
] - deps: update amaro to 0.1.8 (Node.js GitHub Bot) #54520b5843568b4
] - deps: update amaro to 0.1.7 (Node.js GitHub Bot) #544739c709209b4
] - deps: update undici to 6.19.8 (Node.js GitHub Bot) #54456a5ce24181b
] - deps: sqlite: fix Windows compilation (Colin Ihrig) #544333caf29ea88
] - deps: update sqlite to 3.46.1 (Node.js GitHub Bot) #5443368758d4b08
] - doc: add support me link for anonrig (Yagiz Nizipli) #54611f5c5529266
] - doc: add alert on REPL from TCP socket (Rafael Gonzaga) #54594bf824483cd
] - doc: fix typo in styleText description (Rafael Gonzaga) #54616825d933fd4
] - doc: add getHeapStatistics() property descriptions (Benji Marinacci) #5458480e5150160
] - doc: fix module compile cache description (沈鸿飞) #546257fd033fe56
] - doc: run license-builder (github-actions[bot]) #54562c499913732
] - doc: fix information about including coverage files (Aviv Keller) #54527c3dc83befc
] - doc: support collaborators - talk amplification (Michael Dawson) #54508fc57beaad3
] - doc: add note about shasum generation failure (Marco Ippolito) #544871800a58f49
] - doc: update websocket flag description to reflect stable API status (Yelim Koo) #5448261affd77a7
] - doc: fix capitalization in module.md (shallow-beach) #5448825419915c7
] - doc: add esm examples to node:https (Alfredo González) #5439983b5efeb54
] - doc: reserve ABI 130 for Electron 33 (Calvin) #543836ccbd32ae8
] - doc, meta: add missing,
toBUILDING.md
(Aviv Keller) #54409fc08a9b0cd
] - fs: refactor handleTimestampsAndMode to remove redundant call (HEESEUNG) #543694a664b5fcb
] - lib: respect terminal capabilities on styleText (Rafael Gonzaga) #54389a9ce2b6a28
] - lib: fix emit warning for debuglog.time when disabled (Vinicius Lourenço) #54275b5a23c9783
] - meta: remind users to use a supported version in bug reports (Aviv Keller) #544810d7171d8e9
] - meta: add more labels to dep-updaters (Aviv Keller) #54454c4996c189f
] - meta: run coverage-windows whenvcbuild.bat
updated (Aviv Keller) #544123cf645768e
] - module: use amaro default transform values (Marco Ippolito) #54517336496b90e
] - module: add sourceURL magic comment hinting generated source (Chengzhong Wu) #5440204f83b50ad
] - Revert "net: validate host name for server listen" (jakecastelli) #545541e01bdc0d0
] - (SEMVER-MINOR) net: exclude ipv6 loopback addresses from server.listen (Giovanni Bucci) #542643cd10a3f40
] - node-api: remove RefBase and CallbackWrapper (Vladimir Morozov) #5359072c554abab
] - sqlite: return results with null prototype (Michaël Zasso) #54350e071651bb2
] - src: disable fast methods forbuffer.write
(Michaël Zasso) #54565f8cbbc685a
] - src: use v8::Isolate::GetDefaultLocale() to compute navigator.language (Joyee Cheung) #542794baf4637eb
] - (SEMVER-MINOR) src: add JS APIs for compile cache and NODE_DISABLE_COMPILE_CACHE (Joyee Cheung) #54501101e299656
] - src: move more crypto_dh.cc code to ncrypto (James M Snell) #54459e6e1f4e8bd
] - src: remove redundant AESCipherMode (Tobias Nießen) #544381ff3f63f5e
] - src: handle errors correctly inpermission.cc
(Michaël Zasso) #545414938188682
] - src: returnv8::Object
from error constructors (Michaël Zasso) #545414578e9485b
] - src: use better return types in KVStore (Michaël Zasso) #545397d9e994791
] - src: change SetEncodedValue to return Maybe<void> (Tobias Nießen) #54443eef303028f
] - src: remove cached data tag from snapshot metadata (Joyee Cheung) #541223a74c400d5
] - src: improvebuffer.transcode
performance (Yagiz Nizipli) #54153909c5320fd
] - src: move more crypto code to ncrypto (James M Snell) #543209ba75faf5f
] - (SEMVER-MINOR) src,lib: add performance.uvMetricsInfo (Rafael Gonzaga) #54413fffc300c6d
] - stream: change stream to use index instead offor...of
(Wiyeong Seo) #54474a4a6ef8d29
] - test: fix test-tls-client-auth test for OpenSSL32 (Michael Dawson) #5461076345a5d7c
] - test: update TLS test for OpenSSL 3.2 (Richard Lau) #54612522d5a359d
] - test: run V8 Fast API tests in release mode too (Michaël Zasso) #54570edbecf5209
] - test: increase key size for ca2-cert.pem (Michael Dawson) #54599bc976cfc93
] - test: update test-abortsignal-cloneable to use node:test (James M Snell) #545819f1ce732a8
] - test: update test-assert-typedarray-deepequal to use node:test (James M Snell) #54585c74f2aeb92
] - test: update test-assert to use node:test (James M Snell) #54585a0be95e4cc
] - test: merge ongc and gcutil into gc.js (tannal) #54355c10aff665e
] - test: move a couple of tests over to using node:test (James M Snell) #54582dbbc790949
] - test: update test-aborted-util to use node:test (James M Snell) #5457864442fce6b
] - test: refactor test-abortcontroller to use node:test (James M Snell) #5457472345dee1c
] - test: fix embedding test for Windows (Vladimir Morozov) #53659846e2b2896
] - test: refactor test_runner tests to change default reporter (Colin Ihrig) #54547b5eb24c86a
] - test: force spec reporter in test-runner-watch-mode.mjs (Colin Ihrig) #5453866ae9f4c0a
] - test: use valid hostnames (Luigi Pinca) #5455602d664b75f
] - test: fix improper path to URL conversion (Antoine du Hamel) #545098a4f8a9eff
] - test: add tests for runner coverage with different stdout column widths (Pietro Marchini) #54494b0ed8dbb2f
] - test: prevent V8 from writing into the system's tmpdir (Michaël Zasso) #543955ee234a5a6
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #54593a4bebf8559
] - test_runner: ensure test watcher picks up new test files (Pietro Marchini) #54225d4310fe9c1
] - (SEMVER-MINOR) test_runner: add support for coverage thresholds (Aviv Keller) #544290cf78aa24b
] - test_runner: refactormock_loader
(Antoine du Hamel) #5422397fa075c2e
] - (SEMVER-MINOR) test_runner: support running tests in process (Colin Ihrig) #53927858b583c88
] - (SEMVER-MINOR) test_runner: defer inheriting hooks until run() (Colin Ihrig) #5392745b0250692
] - test_runner: account for newline in source maps (Colin Ihrig) #544441c29e74d30
] - test_runner: makemock.module
'sspecifier
consistent withimport()
(Antoine du Hamel) #54416cbe30a02a3
] - test_runner: finish build phase before running tests (Colin Ihrig) #544238a4b26f00c
] - timers: fix validation (Paolo Insogna) #5440438798140c4
] - tools: remove unused python files (Aviv Keller) #53928da6c61def8
] - tools: add swc license (Marco Ippolito) #5446216d4c437e1
] - typings: provide internal types for wasi bindings (Andrew Moon) #54119fe5666f006
] - vm: return all own names and symbols in property enumerator interceptor (Chengzhong Wu) #54522db80eac496
] - (SEMVER-MINOR) vm: introduce vanilla contexts via vm.constants.DONT_CONTEXTIFY (Joyee Cheung) #543948ffdd1e2b2
] - zlib: simplify validators (Yagiz Nizipli) #54442v22.7.0
: 2024-08-22, Version 22.7.0 (Current), @RafaelGSSCompare Source
Experimental transform types support
With the new flag
--experimental-transform-types
it is possible to enable thetransformation of TypeScript-only syntax into JavaScript code.
This feature allows Node.js to support TypeScript syntax such as
Enum
andnamespace
.Thanks to Marco Ippolito for making this work on #54283.
Module syntax detection is now enabled by default.
Module syntax detection (the
--experimental-detect-module
flag) is nowenabled by default. Use
--no-experimental-detect-module
to disable it ifneeded.
Syntax detection attempts to run ambiguous files as CommonJS, and if the module
fails to parse as CommonJS due to ES module syntax, Node.js tries again and runs
the file as an ES module.
Ambiguous files are those with a
.js
or no extension, where the nearest parentpackage.json
has no"type"
field (either"type": "module"
or"type": "commonjs"
).Syntax detection should have no performance impact on CommonJS modules, but it
incurs a slight performance penalty for ES modules; add
"type": "module"
tothe nearest parent
package.json
file to eliminate the performance cost.A use case unlocked by this feature is the ability to use ES module syntax in
extensionless scripts with no nearby
package.json
.Thanks to Geoffrey Booth for making this work on #53619.
Performance Improvements to Buffer
Performance of Node.js Buffers have been optimized through multiple PR's with significant
improvements to the
Buffer.copy
andBuffer.write
methods. These are used throughoutthe codebase and should give a nice boost across the board.
Thanks to Robert Nagy for making this work on #54311,
#54324, and #54087.
Other Notable Changes
911de7dd6d
] - (SEMVER-MINOR) inspector: supportNetwork.loadingFailed
event (Kohei Ueno) #542469ee4b16bd8
] - (SEMVER-MINOR) lib: rewrite AsyncLocalStorage without async_hooks (Stephen Belanger) #48528Commits
c6544ff5a6
] - benchmark: use assert.ok searchparams (Rafael Gonzaga) #5433451b8576897
] - benchmark: add stream.compose benchmark (jakecastelli) #54308c166036515
] - benchmark: rename count to n (Rafael Gonzaga) #542711be0ee76ef
] - benchmark: change assert() to assert.ok() (Rafael Gonzaga) #542544dd229f546
] - benchmark: support --help in CLI (Aviv Keller) #53358a5a320cd5b
] - benchmark: remove force option as force defaults to true (Yelim Koo) #54203db0a80a0eb
] - benchmark: use assert.ok instead of assert (Rafael Gonzaga) #541768ba53ae7b7
] - buffer: properly apply dst offset and src length on fast path (Robert Nagy) #54391a5a60e6823
] - buffer: use fast API for writing one-byte strings (Robert Nagy) #543117b641bc2bd
] - buffer: optimize byteLength for short strings (Robert Nagy) #5434528ca678f81
] - buffer: optimize byteLength for common encodings (Robert Nagy) #5434212785559be
] - buffer: optimize createFromString (Robert Nagy) #54324f7f7b0c498
] - buffer: optimize for common encodings (Robert Nagy) #5431937631f826b
] - buffer: add JSDoc to blob bytes method (Roberto Simonini) #54117ab6fae9dbf
] - buffer: faster type check (Robert Nagy) #540889f8f26eb2f
] - buffer: use native copy impl (Robert Nagy) #54087019ebf03c1
] - buffer: use faster integer argument check (Robert Nagy) #54089c640a2f24c
] - build: always disable strict aliasing (Michaël Zasso) #543396aa1d9e855
] - build: updateruff
to0.5.2
(Aviv Keller) #53909350e699443
] - build: supportlint-js-fix
invcbuild.bat
(Aviv Keller) #5369598fed763f7
] - build: add--without-amaro
build flag (Antoine du Hamel) #541361ca598c5ce
] - cli: allow--test-[name/skip]-pattern
inNODE_OPTIONS
(Aviv Keller) #5300137960a67ae
] - console: use validateOneOf for colorMode validation (HEESEUNG) #54245d52f515bab
] - crypto: include NODE_EXTRA_CA_CERTS in all secure contexts by default (Eric Bickle) #44529b6a3e61353
] - deps: update amaro to 0.1.6 (Node.js GitHub Bot) #543740d716ad3f3
] - deps: update simdutf to 5.3.4 (Node.js GitHub Bot) #5431218bfea5f33
] - deps: update zlib to 1.3.0.1-motley-71660e1 (Node.js GitHub Bot) #53464d0c23f332f
] - deps: update zlib to 1.3.0.1-motley-c2469fd (Node.js GitHub Bot) #53464e7db63972c
] - deps: update zlib to 1.3.0.1-motley-68e57e6 (Node.js GitHub Bot) #53464713ae95555
] - deps: update zlib to 1.3.0.1-motley-8b7eff8 (Node.js GitHub Bot) #53464758c9df36e
] - deps: update zlib to 1.3.0.1-motley-e432200 (Node.js GitHub Bot) #53464fe7e6c9563
] - deps: update zlib to 1.3.0.1-motley-887bb57 (Node.js GitHub Bot) #5346435722b7bca
] - deps: update simdjson to 3.10.0 (Node.js GitHub Bot) #54197a2a41557db
] - deps: fix GN build warning in ncrypto (Cheng) #54222869da204d7
] - deps: update c-ares to v1.33.0 (Node.js GitHub Bot) #54198e0d503a715
] - deps: update nbytes to 0.1.1 (Node.js GitHub Bot) #54277b0c768dae1
] - deps: update undici to 6.19.7 (Node.js GitHub Bot) #54286ef9a950cb9
] - deps: update acorn to 8.12.1 (Node.js GitHub Bot) #534651597a1139a
] - deps: update undici to 6.19.5 (Node.js GitHub Bot) #54076103e4db3e0
] - deps: update simdutf to 5.3.1 (Node.js GitHub Bot) #541969f115ba9e9
] - doc: fix error description of the max header size (Egawa Ryo) #54125f967ab3810
] - doc: add git node security --cleanup (Rafael Gonzaga) #543818883c01afa
] - doc: add note on weakness of permission model (Tobias Nießen) #54268824bd58bc5
] - doc: add versions when--watch-preserve-output
was added (Théo LUDWIG) #5432833795cfd49
] - doc: replace v19 mention in Current release (Rafael Gonzaga) #54361aa6e770ea5
] - doc: correct peformance entry types (Jason Zhang) #542634b099ce1bd
] - doc: fix typo in method name in the sea doc (Eliyah Sundström) #540278a8d1d2281
] - doc: mark process.nextTick legacy (Marco Ippolito) #512806f4b5d998e
] - doc: add esm examples to node:http2 (Alfredo González) #542921535469c12
] - doc: explicitly mention node:fs module restriction (Rafael Gonzaga) #5426926c37f7910
] - doc: remove module-based permission doc (Rafael Gonzaga) #54266971b9f31f5
] - doc: updatebuffer.constants.MAX_LENGTH
size (Samuli Asmala) #542073106149965
] - doc: warn for windows build bug (Jason Zhang) #5421755f8ac3e89
] - doc: make some parameters optional intracingChannel.traceCallback
(Deokjin Kim) #54068e3e2f22cab
] - doc: add esm examples to node:dns (Alfredo González) #541720429b1eb9d
] - doc: add KevinEady as a triager (Chengzhong Wu) #541794bfa7d8e54
] - doc: add esm examples to node:console (Alfredo González) #541082f5309fc22
] - doc: fix sea assets example (Sadzurami) #5419288aef5a39d
] - doc: add links to security steward companies (Aviv Keller) #529815175903c23
] - doc: moveonread
option fromsocket.connect()
tonew net.socket()
(sendoru) #54194144637e845
] - doc: move release key for Myles Borins (Richard Lau) #54059358fdacec6
] - doc: refresh instructions for building node from source (Liran Tal) #5376811fdaa6ad2
] - doc: add documentation for blob.bytes() method (jaexxin) #54114db3b0df42c
] - doc: add missing new lines to custom test reporter examples (Eddie Abbondanzio) #541521cafefd2cf
] - doc: fix worker threadId/destination typo (Thomas Hunter II) #539337772b46038
] - doc: update list of Triagers on theREADME.md
(Antoine du Hamel) #54138af99ba3dc9
] - doc: remove unused imports from worker_threads.md (Yelim Koo) #54147826edc4341
] - doc: expand troubleshooting section (Liran Tal) #53808923195b624
] - doc: clarifyuseCodeCache
setting for cross-platform SEA generation (Yelim Koo) #539947c305a4900
] - doc, meta: replace command with link to keys (Aviv Keller) #537456f986e0ee6
] - doc, test: simplify test README table (Aviv Keller) #53971112228c15a
] - fs: remove unnecessary option argument validation (Jonas) #53958911de7dd6d
] - (SEMVER-MINOR) inspector: supportNetwork.loadingFailed
event (Kohei Ueno) #542461e825915d5
] - inspector: provide detailed info to fix DevTools frontend errors (Kohei Ueno) #54156417120a3a3
] - lib: replace spread operator with primordials function (YoonSoo_Shin) #5405309f411e6f6
] - lib: avoid for of loop and remove unnecessary variable in zlib (YoonSoo_Shin) #54258b8970570b0
] - lib: improve async_context_frame structure (Stephen Belanger) #54239783322fa16
] - lib: fix unhandled errors in webstream adapters (Fedor Indutny) #54206425b9562b9
] - lib: fix typos in comments within internal/streams (YoonSoo_Shin) #540939ee4b16bd8
] - (SEMVER-MINOR) lib: rewrite AsyncLocalStorage without async_hooks (Stephen Belanger) #485288c9a4ae12b
] - lib,permission: support Buffer to permission.has (Rafael Gonzaga) #54104c8e358c96c
] - meta: add test-permission-* CODEOWNERS (Rafael Gonzaga) #54267581c155cf8
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #542103f0d7344e3
] - meta: add module label for the lib/internal/modules folder (Aviv Keller) #528580157ec6bbd
] - meta: bumpactions/upload-artifact
from 4.3.3 to 4.3.4 (dependabot[bot]) #541667fa95d2360
] - meta: bumpactions/download-artifact
from 4.1.7 to 4.1.8 (dependabot[bot]) #54167acc5b9a0c5
] - meta: bump actions/setup-python from 5.1.0 to 5.1.1 (dependabot[bot]) #54165dede30a8d0
] - meta: bumpstep-security/harden-runner
from 2.8.1 to 2.9.0 (dependabot[bot]) #54169b733854eac
] - meta: bumpactions/setup-node
from 4.0.2 to 4.0.3 (dependabot[bot]) #541706a9f168cc6
] - meta: bumpgithub/codeql-action
from 3.25.11 to 3.25.15 (dependabot[bot]) #541689bbd85e4fe
] - meta: bumpossf/scorecard-action
from 2.3.3 to 2.4.0 (dependabot[bot]) #5417133633eebd9
] - meta: add typescript team to codeowners (Marco Ippolito) #54101240d9296c1
] - (SEMVER-MINOR) module: add --experimental-transform-types flag (Marco Ippolito) #5428366dcb2a571
] - (SEMVER-MINOR) module: unflag detect-module (Geoffrey Booth) #53619100225fbe1
] - module: do not attempt to strip type when there's no source (Antoine du Hamel) #542871ba2000703
] - module: refactor ts parser loading (Marco Ippolito) #5424313cc480030
] - module: remove outdated comment (Michaël Zasso) #54118e676d98435
] - module,win: fix long path resolve (Hüseyin Açacak) #532949aec536083
] - path: changeposix.join
to use array (Wiyeong Seo) #543318a770cf5c9
] - path: fix relative on Windows (Hüseyin Açacak) #53991267cd7f361
] - path: use the correct name invalidateString
(Benjamin Pasero) #5366931adeea855
] - sea: don't set code cache flags when snapshot is used (Joyee Cheung) #541207f1bf1ce24
] - sqlite: split up large test file (Colin Ihrig) #5401494e2ea6f5c
] - sqlite: ensure statement finalization on db close (Colin Ihrig) #54014e077ff1f38
] - src: update compile cache storage structure (Joyee Cheung) #542914e4d1def7e
] - src: refactor http parser binding initialization (Joyee Cheung) #54276409d9eb09b
] - src: shift even moar x509 to ncrypto (James M Snell) #54340f87aa27274
] - src: don't match after--
inDotenv::GetPathFromArgs
(Aviv Keller) #54237b6927dd981
] - src: move some X509Certificate stuff to ncrypto (James M Snell) #54241a394219fa5
] - src: skip inspector wait in internal workers (Chengzhong Wu) #542198daeccfe92
] - src: shift more crypto impl details to ncrypto (James M Snell) #54028e619133ac9
] - src: move spkac methods to ncrypto (James M Snell) #53985b52c2fff75
] - src: account for OpenSSL unexpected version (Shelley Vohr) #540380b16af1689
] - src,test: trackURL.canParse
fast API calls (Michaël Zasso) #543562be78b03c3
] - src,test: ensure that V8 fast APIs are called (Michaël Zasso) #543179297d29cdb
] - stream: make checking pendingcb on WritableStream backward compatible (jakecastelli) #541422a6a12e493
] - stream: throw TypeError when criteria fulfilled in getIterator (jakecastelli) #538257f68cc0f7f
] - test: make snapshot comparison more flexible (Shelley Vohr) #543753df7938832
] - test: make sure current run result is pushed and reset (jakecastelli) #543323e25be7b28
] - test: use relative paths in test-cli-permission tests (sendoru) #54188f49f1bb3e9
] - test: unmark test-sqlite as flaky (Colin Ihrig) #540142f68a74702
] - test: fix timeout not being cleared (Isaac-yz-Liu) #54242f5cfa4454e
] - test: refactortest-runner-module-mocking
(Antoine du Hamel) #54233b85b13b418
] - test: use assert.{s,deepS}trictEqual() (Luigi Pinca) #542086bcbfcd7bc
] - test: add subtests to test-node-run (sungpaks) #54204dafe97548f
] - test: set test-structuredclone-jstransferable non-flaky (Stefan Stojanovic) #54115be61793db5
] - test: update wpt test for streams (devstone) #54129670c796449
] - test: fix typo in test (Sonny) #541371a15f3f613
] - test: add initial pull delay and prototype pollution prevention tests (Sonny) #540615dbff81b71
] - test: add coverage for webstorage quota (jakecastelli) #53964141e9fe7cc
] - test_runner: use validateStringArray fortimers.enable()
(Deokjin Kim) #49534e70711e190
] - test_runner: report failures in filtered suites (Colin Ihrig) #543877766c1dc9b
] - test_runner: remove parseCommandLine() from test.js (Colin Ihrig) #54353961cbf0be0
] - test_runner: refactor hook creation (Colin Ihrig) #5435369c78ca2f5
] - test_runner: return setup() from parseCommandLine() (Colin Ihrig) #54353ed1ede8c26
] - test_runner: pass global options to createTestTree() (Colin Ihrig) #543531e88045a69
] - test_runner: pass harness object as option to root test (Colin Ihrig) #54353e3378f0679
] - test_runner: use run() argument names in parseCommandLine() (Colin Ihrig) #54353676bbd5c09
] - test_runner: fix delete test file cause dependency file not watched (jakecastelli) #53533fe793a6103
] - test_runner: do not expose internal loader (Antoine du Hamel) #541067fad771bbf
] - test_runner: fix erroneous diagnostic warning when only: false (Pietro Marchini) #54116dc465736fb
] - test_runner: make mock_loader not confuse CJS and ESM resolution (Sung Ye In) #538465a1afb2139
] - test_runner: remove outdated comment (Colin Ihrig) #5414620a01fcc39
] - test_runner: run after hooks even if test is aborted (Colin Ihrig) #54151df428adb6c
] - tools: remove header from c-ares license (Aviv Keller) #54335b659fc0f2b
] - tools: add find pyenv path on windows (Marco Ippolito) #54314b93c6d9f38
] - tools: make undici updater build wasm from src (Michael Dawson) #541283835131559
] - tools: add workflow to ensureREADME
lists are in sync with gh teams (Antoine du Hamel) #53901e218b7ca8a
] - tools: add strip-types to label system (Marco Ippolito) #541858b35f0e601
] - tools: update eslint to 9.8.0 (Node.js GitHub Bot) #54073d83421fbe5
] - tty: initialize winSize array with values (Michaël Zasso) #54281a4768374f2
] - typings: add util.styleText type definition (Rafael Gonzaga) #54252a4aecd2755
] - typings: add missing binding functionwriteFileUtf8()
(Jungku Lee) #541100bed600df9
] - url: modify pathToFileURL to handle extended UNC path (Early Riser) #54262037672f15d
] - url: improve resolveObject with ObjectAssign (Early Riser) #540924d8b53e475
] - watch: reload changes in contents of --env-file (Marek Piechut) #54109v22.6.0
: 2024-08-06, Version 22.6.0 (Current), @RafaelGSSCompare Source
Experimental TypeScript support via strip types
Node.js introduces the
--experimental-strip-types
flag for initial TypeScript support.This feature strips type annotations from .ts files, allowing them to run
without transforming TypeScript-specific syntax. Current limitations include:
enums
ornamespaces
.Thanks Marco Ippolito for working on this.
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.
Thanks Kohei Ueno for working on this.
Other Notable Changes
15a94e67b1
] - lib,src: drop --experimental-network-imports (Rafael Gonzaga) #5382268e444d2d8
] - (SEMVER-MINOR) http: add diagnostics channelhttp.client.request.error
(Kohei Ueno) #540542d982d3dee
] - (SEMVER-MINOR) deps: V8: backport7857eb3
(Stephen Belanger) #5399715816bd0dd
] - (SEMVER-MINOR) stream: expose DuplexPair API (Austin Wright) #34111893c864542
] - (SEMVER-MINOR) test_runner: fix support watch with run(), add globPatterns option (Matteo Collina) #53866048d421ad1
] - meta: add jake to collaborators (jakecastelli) #540046ad6e01bf3
] - (SEMVER-MINOR) test_runner: refactor snapshots to get file from context (Colin Ihrig) #53853698e44f8e7
] - (SEMVER-MINOR) test_runner: add context.filePath (Colin Ihrig) #53853Commits
063f46dc2a
] - assert: use isError instead of instanceof in innerOk (Pietro Marchini) #5398010bea42f81
] - build: update gcovr to 7.2 and codecov config (Benjamin E. Coe) #540197c417c6cf4
] - build: avoid compiling with VS v17.10 (Hüseyin Açacak) #53863ee97c045b4
] - build: ensure v8_pointer_compression_sandbox is enabled on 64bit (Shelley Vohr) #53884bfbed0afd5
] - build: fix conflict gyp configs (Chengzhong Wu) #536050f1fe63e32
] - build: trigger coverage ci when updating codecov (Yagiz Nizipli) #53929ad62b945f0
] - build: update codecov coverage build count (Yagiz Nizipli) #539293c40868fd3
] - build: disable test-asan workflow (Michaël Zasso) #538442a62d6ca57
] - build, tools: drop leading/
fromr2dir
(Richard Lau) #539519c7b009f47
] - build,tools: simplify upload of shasum signatures (Michaël Zasso) #53892057bd44f9f
] - child_process: fix incomplete prototype pollution hardening (Liran Tal) #5378166f7c595c7
] - cli: document--inspect
port0
behavior (Aviv Keller) #53782fad3e74b47
] - console: fix issues with frozen intrinsics (Vinicius Lourenço) #54070e685ecd7ae
] - deps: update corepack to 0.29.3 (Node.js GitHub Bot) #54072e5f7250e6d
] - deps: update amaro to 0.0.6 (Node.js GitHub Bot) #541992c1e9082e8
] - deps: update amaro to 0.0.5 (Node.js GitHub Bot) #541992d982d3dee
] - (SEMVER-MINOR) deps: V8: backport7857eb3
(Stephen Belanger) #539971061898462
] - deps: update c-ares to v1.32.3 (Node.js GitHub Bot) #54020f4a7ac5e18
] - deps: V8: cherry-pick35888fe
(Joyee Cheung) #537281176310226
] - deps: add gn build files for ncrypto (Cheng) #539407a1d5a4f84
] - deps: update c-ares to v1.32.2 (Node.js GitHub Bot) #5386566f6a2aec9
] - deps: V8: cherry-pick9812cb4
(Michaël Zasso) #539668e66a18ef0
] - deps: start working on ncrypto dep (James M Snell) #53803c114082b12
] - deps: fix include_dirs of nbytes (Cheng) #53862b7315281be
] - doc: move numCPUs require to top of file in cluster CJS example (Alfredo González) #539328e7c30c2a4
] - doc: update security-release process to automated one (Rafael Gonzaga) #5387752a4206be2
] - doc: fix typo in technical-priorities.md (YoonSoo_Shin) #5409430e18a04a3
] - doc: fix typo in diagnostic tooling support tiers document (Taejin Kim) #5405858aebfd31e
] - doc: move GeoffreyBooth to TSC regular member (Geoffrey Booth) #54047c1634c7213
] - doc: correct typescript stdin support (Marco Ippolito) #5403664812d5c22
] - doc: fix typo in recognizing-contributors (Marco Ippolito) #539906b35994b6f
] - doc: fix documentation for--run
(Aviv Keller) #5397604d203a233
] - doc: update boxstarter README (Aviv Keller) #5378586fa46db1c
] - doc: add info about prefix-only modules tomodule.builtinModules
(Grigory) #53954defdc3c568
] - doc: removescroll-behavior: smooth;
(Cloyd Lau) #53942e907236dd9
] - doc: move --test-coverage-{ex,in}clude to proper location (Colin Ihrig) #539268bf9960b98
] - doc: add--experimental-sqlite
note (Aviv Keller) #53907d7615004d8
] - doc: updateapi_assets
README for new files (Aviv Keller) #5367663cf715aa0
] - doc: add MattiasBuelens to collaborators (Mattias Buelens) #538955b8dd78112
] - doc: fix release date for 22.5.0 (Antoine du Hamel) #53889dd2c0f349a
] - doc: fix casing of GitHub handle for two collaborators (Antoine du Hamel) #53857b47c2308e1
] - doc: update release-post nodejs.org script (Rafael Gonzaga) #5376288539527d5
] - doc, test: tracing channel hasSubscribers getter (Thomas Hunter II) #5290844a08f75b0
] - doc,tools: enforce use ofnode:
prefix (Antoine du Hamel) #5395087bab76df2
] - doc,tty: add documentation for ReadStream and WriteStream (jakecastelli) #53567dcca9ba560
] - esm: refactorget_format
(Antoine du Hamel) #538725e03c17aae
] - fs: optimizefs.cpSync
js calls (Yagiz Nizipli) #53614e0054ee0a7
] - fs: ensure consistency for mkdtemp in both fs and fs/promises (YieldRay) #537768086337ea9
] - fs: remove unnecessary option argument validation (Jonas) #53861b377b93a3f
] - fs: correctly pass dirent to excludewithFileTypes
(RedYetiDev) #5382368e444d2d8
] - (SEMVER-MINOR) http: add diagnostics channelhttp.client.request.error
(Kohei Ueno) #54054de1fbc292f
] - (SEMVER-MINOR) inspector: add initial support for network inspection (Kohei Ueno) #53593744df0be24
] - lib: support dynamic trace events on debugWithTimer (Vinicius Lourenço) #53913546dab29c1
] - lib: optimize copyError with ObjectAssign in primordials (HEESEUNG) #53999494df9835a
] - lib: improve cluster/primary code (Ehsan Khakifirooz) #5375603f353293b
] - lib: improve error message when index not found on cjs (Vinicius Lourenço) #53859d8375d6236
] - lib: decorate async stack trace in source maps (Chengzhong Wu) #5386015a94e67b1
] - lib,src: drop --experimental-network-imports (Rafael Gonzaga) #53822a6eedc401d
] - meta: addsqlite
to js subsystems (Alex Yang) #5391121098856de
] - meta: move tsc member to emeritus (Michael Dawson) #54029048d421ad1
] - meta: add jake to collaborators (jakecastelli) #5400420a8c96c41
] - meta: remove license for hljs (Aviv Keller) #539702fd4ac4859
] - meta: make more bug-report information required (Aviv Keller) #53718b312ec0b0c
] - meta: reword linter messages (Aviv Keller) #53949d2526126a9
] - meta: store actions secrets in environment (Aviv Keller) #539301688f00dce
] - meta: move anonrig to tsc voting members (Yagiz Nizipli) #53888c20e8418de
] - module: fix strip-types interaction with detect-module (Marco Ippolito) #54164ab1f0b415f
] - module: fix extensionless typescript in cjs loader (Marco Ippolito) #5406292439fc160
] - (SEMVER-MINOR) module: add --experimental-strip-types (Marco Ippolito) #53725f755d31bec
] - node-api: add property keys benchmark (Chengzhong Wu) #540127382eefae5
] - node-api: rename nogc to basic (Gabriel Schulhof) #538302c4470625b
] - process: unify experimental warning messages (Aviv Keller) #5370498a7ad2e0d
] - src: expose LookupAndCompile with parameters (Shelley Vohr) #53886dd3c66be0a
] - src: simplify AESCipherTraits::AdditionalConfig (Tobias Nießen) #53890ee82f224ff
] - src: remove redundant RsaPointer (use RSAPointer) (James M Snell) #540032d77bd2929
] - src: fix -Wshadow warning (Shelley Vohr) #53885bd4a9ffe8c
] - src: start using ncrypto for CSPRNG calls (James M Snell) #539843fdcf7a47d
] - src: returnundefined
if no rows are returned in SQLite (Deokjin Kim) #53981ca6854443d
] - src: fix slice of slice of file-backed Blob (Josh Lee) #53972c457f9ed5a
] - src: cache invariant code motion (Rafael Gonzaga) #53879fd0da6c2cf
] - src: avoid strcmp in ImportJWKAsymmetricKey (Tobias Nießen) #53813fbf74bcf99
] - src: switch from ToLocalChecked to ToLocal in node_webstorage (James M Snell) #5395904bb6778e5
] - src: moveToNamespacedPath
call of webstorage (Yagiz Nizipli) #538759ffaf763e9
] - src: use Maybe<void> in SecureContext (Tobias Nießen) #53883a94c3ae06f
] - src: replace ToLocalChecked uses with ToLocal in node-file (James M Snell) #5386955461be05f
] - src: refactor webstorage implementation (Yagiz Nizipli) #53876c53cf449a6
] - src: fix env-file flag to ignore spaces before quotes (Mohit Malhotra) #53786bac3a485f6
] - src: fix potential segmentation fault in SQLite (Tobias Nießen) #53850df5083e5f9
] - src,lib: expose getCategoryEnabledBuffer to use on node.http (Vinicius Lourenço) #536028664b9ad60
] - src,test: disallow unsafe integer coercion in SQLite (Tobias Nießen) #5385115816bd0dd
] - (SEMVER-MINOR) stream: expose DuplexPair API (Austin Wright) #34111718f6bc78c
] - test: do not swallow uncaughtException errors in exit code tests (Meghan Denny) #54039c6656c9251
] - test: move shared module totest/common
(Rich Trott) #54042e471e32d46
] - test: skip sea tests with more accurate available disk space estimation (Chengzhong Wu) #5399661971ec929
] - test: remove unnecessary console log (KAYYY) #538121344bd2d6f
] - test: add comments and rename test for timer robustness (Rich Trott) #54008da3573409c
] - test: add test for one arg timers to increase coverage (Carlos Espa) #54007fc67abd97e
] - test: mark 'test/parallel/test-sqlite.js' as flaky (Colin Ihrig) #54031aa0ac3b57c
] - test: mark test-pipe-file-to-http as flaky (jakecastelli) #5375152bc8ec360
] - test: compare paths on Windows without considering case (Early Riser) #539937e8a609579
] - test: skip sea tests in large debug builds (Chengzhong Wu) #5391830a94ca0c4
] - test: skip --title check on IBM i (Abdirahim Musse) #539525cea7ed706
] - test: reduce flakiness oftest-assert-esm-cjs-message-verify
(Antoine du Hamel) #5396758cb0dd8a6
] - test: usePYTHON
executable from env inassertSnapshot
(Antoine du Hamel) #53938c247582591
] - test: deflake test-blob-file-backed (Luigi Pinca) #539203999021653
] - test_runner: switched to internal readline interface (Emil Tayeb) #540003fb97a90ee
] - test_runner: remove redundant bootstrap boolean (Colin Ihrig) #54013edd80e2bdc
] - test_runner: do not throw on mocked clearTimeout() (Aksinya Bykova) #54005893c864542
] - (SEMVER-MINOR) test_runner: fix support watch with run(), add globPatterns option (Matteo Collina) #538664887213f2e
] - test_runner: added colors to dot reporter (Giovanni) #53450c4848c53e6
] - test_runner: cleanup global event listeners after run (Eddie Abbondanzio) #53878876e7b3226
] - test_runner: refactor coverage to pass in config options (Colin Ihrig) #53931f45edb4b5e
] - test_runner: refactor and simplify internals (Colin Ihrig) #539216ad6e01bf3
] - (SEMVER-MINOR) test_runner: refactor snapshots to get file from context (Colin Ihrig) #53853698e44f8e7
] - (SEMVER-MINOR) test_runner: add context.filePath (Colin Ihrig) #5385397da7ca11b
] - test_runner: consolidate option parsing (Colin Ihrig) #5384943afcbf9dd
] - tools: fixSLACK_TITLE
in invalid commit workflow (Antoine du Hamel) #53912eed0963391
] - typings: apply lint (1ilsang) #54065e8ea49b256
] - typings: fix typo on quic onSessionDatagram (1ilsang) #54064v22.5.1
: 2024-07-19, Version 22.5.1 (Current), @richardlauCompare Source
Notable Changes
This release fixes a regression introduced in Node.js 22.5.0. The problem is known to display the following symptoms:
FATAL ERROR: v8::Object::GetCreationContextChecked No creation context available
#53902npm error Exit handler never called!
npm/cli#7657Usage Error: Couldn't find the node_modules state file - running an install might help (findPackageLocation)
yarnpkg/berry#6398Commits
e2deeedc6e
] - Revert "fs: add v8 fast api to closeSync" (Aviv Keller) #53904v22.5.0
: 2024-07-17, Version 22.5.0 (Current), @RafaelGSS prepared by @aduh95Compare Source
Notable Changes
1367c5558e
] - (SEMVER-MINOR) http: expose websockets (Natalia Venditto) #53721b31394920d
] - (SEMVER-MINOR) lib: addnode:sqlite
module (Colin Ihrig) #53752aa7df9551d
] - module: add__esModule
torequire()
'd ESM (Joyee Cheung) #521668743c4d65a
] - (SEMVER-MINOR) path: addmatchesGlob
method (Aviv Keller) #5288177936c3d24
] - (SEMVER-MINOR) process: port on-exit-leak-free to core (Vinicius Lourenço) #5323982d88a83f8
] - (SEMVER-MINOR) stream: pipeline wait for close before calling the callback (jakecastelli) #534623a0fcbb17a
] - test_runner: support glob matching coverage files (Aviv Keller) #5355322ca334090
] - (SEMVER-MINOR) worker: addpostMessageToThread
(Paolo Insogna) #53682Commits
eb4e370933
] - benchmark: add require-esm benchmark (Joyee Cheung) #521664d4a8338db
] - benchmark: add cpSync benchmark (Yagiz Nizipli) #536123d60b38afa
] - build: fix build warning of c-ares under GN build (Cheng) #53750a45c801048
] - build: fix build error in sqlite under GN build (Cheng) #5368640032eb623
] - build: add gn files for deps/nbytes (Cheng) #53685082799debb
] - build: fix mac build error of c-ares under GN (Cheng) #53687b05394ea6a
] - build: add version-specific library path for AIX (Richard Lau) #535856237172eaf
] - cli: updatenode.1
to reflect Atom's sunset (Aviv Keller) #537345697938cb7
] - crypto: avoid std::function (Tobias Nießen) #536833cc01aa314
] - crypto: make deriveBits length parameter optional and nullable (Filip Skokan) #53601f82e20fdea
] - crypto: avoid taking ownership of OpenSSL objects (Tobias Nießen) #53460ad1e5610ec
] - deps: update googletest to4b21f1a
(Node.js GitHub Bot) #53842d285d610a0
] - deps: update minimatch to 10.0.1 (Node.js GitHub Bot) #5384170f5209c9f
] - deps: update corepack to 0.29.2 (Node.js GitHub Bot) #538384930e12a45
] - deps: update simdutf to 5.3.0 (Node.js GitHub Bot) #53837d346833364
] - deps: update ada to 2.9.0 (Node.js GitHub Bot) #53748ab8abb5367
] - deps: upgrade npm to 10.8.2 (npm team) #537991ad664905a
] - deps: update nbytes and add update script (Yagiz Nizipli) #53790a66f11e798
] - deps: update googletest to34ad51b
(Node.js GitHub Bot) #531579bf61d6a0d
] - deps: update googletest to305e5a2
(Node.js GitHub Bot) #531578542ace488
] - deps: V8: cherry-pick9ebca66
(Chengzhong Wu) #5375529a734c21d
] - deps: V8: cherry-picke061cf9
(Joyee Cheung) #53755c7624af44a
] - deps: update c-ares to v1.32.1 (Node.js GitHub Bot) #53753bbcec9e129
] - deps: update minimatch to 9.0.5 (Node.js GitHub Bot) #5364676032fd980
] - deps: update c-ares to v1.32.0 (Node.js GitHub Bot) #5372226386046ad
] - doc: move MylesBorins to emeritus (Myles Borins) #53760362875bda0
] - doc: add Rafael to the last security release (Rafael Gonzaga) #53769a1a5ad848d
] - doc: use mock.callCount() in examples (Sébastien Règne) #53754bb960c5471
] - doc: clarify authenticity of plaintexts in update (Tobias Nießen) #537845dd3018eb4
] - doc: add option to have support me link (Michael Dawson) #533120f95ad3d7d
] - doc: add OpenSSL security level to TLS docs (Afanasii Kurakin) #536472d92ec2831
] - doc: updatescroll-padding-top
to 4rem (Cloyd Lau) #53662933359a786
] - doc: mention v8.setFlagsFromString to pm (Rafael Gonzaga) #53731e17c2618e3
] - doc: remove the last <pre> tag (Claudio W) #537417f18a5f47a
] - doc: exclude voting and regular TSC from spotlight (Michael Dawson) #53694df3dcd1bd1
] - doc: fix releases guide for recent Git versions (Michaël Zasso) #5370950987ea833
] - doc: requirenode:process
in assert doc examples (Alfredo González) #53702fa58d01497
] - doc: add additional explanation to the wildcard section in permissions (jakecastelli) #5366428bf1e48ef
] - doc: mark NODE_MODULE_VERSION for Node.js 22.0.0 (Michaël Zasso) #536501cc0b41f00
] - doc: include node.module_timer on available categories (Vinicius Lourenço) #53638d224e9eab5
] - doc: fix module customization hook examples (Elliot Goodrich) #536372cf60964e6
] - doc: fix doc for correct usage with plan & TestContext (Emil Tayeb) #536156df86ae056
] - doc: remove some news issues that are no longer (Michael Dawson) #5360842b9408f3e
] - doc: add issue for news from ambassadors (Michael Dawson) #536072d1ff91953
] - doc: add esm example for os (Leonardo Peixoto) #53604de99d69d75
] - doc: clarify usage of coverage reporters (Eliphaz Bouye) #53523519c328dcf
] - doc: document addition testing options (Aviv Keller) #53569c6166cdfe4
] - doc: clarify that fs.exists() may return false for existing symlink (Tobias Nießen) #535669139ab2848
] - doc: note http.closeAllConnections excludes upgraded sockets (Rob Hogan) #5356019b3718ee1
] - doc, meta: add PTAL to glossary (Aviv Keller) #5377080c1f5ce8a
] - doc, typings: events.once accepts symbol event type (René) #535421a21e0f61e
] - esm: improvedefaultResolve
performance (Yagiz Nizipli) #53711262f2cb3b6
] - esm: remove unnecessary toNamespacedPath calls (Yagiz Nizipli) #53656e29c9453a9
] - esm: move hooks test with others (Geoffrey Booth) #535588368555289
] - fs: add v8 fast api to closeSync (Yagiz Nizipli) #53627628a539810
] - fs: reduce throwing unnecessary errors on glob (Yagiz Nizipli) #53632076e82ca40
] - fs: moveToNamespacedPath
dir calls to c++ (Yagiz Nizipli) #53630128e514d81
] - fs: improve error performance offs.dir
(Yagiz Nizipli) #53667603c2c5c08
] - fs: fix typings (Yagiz Nizipli) #536261367c5558e
] - (SEMVER-MINOR) http: expose websockets (Natalia Venditto) #537217debb6c36e
] - http: remove prototype primordials (Antoine du Hamel) #53698b13aea5698
] - http, readline: replace sort with toSorted (Benjamin Gruenbaum) #536231397f5d9f4
] - http2: remove prototype primordials (Antoine du Hamel) #53696f57d3cee2c
] - lib: make navigator not runtime-lookup process.version/arch/platform (Jordan Harband) #537650a01abbd45
] - lib: refactorplatform
utility methods (Daniel Bayley) #53817afe7f4f819
] - lib: remove path.resolve from permissions.js (Rafael Gonzaga) #53729cbe77b30ca
] - lib: moveToNamespacedPath
call to c++ (Yagiz Nizipli) #536540f146aac2c
] - lib: make navigator properties lazy (James M Snell) #536490540308bd7
] - lib: add toJSON to PerformanceMeasure (theanarkh) #53603b31394920d
] - (SEMVER-MINOR) lib,src,test,doc: add node:sqlite module (Colin Ihrig) #537521a7c2dc5ea
] - meta: remove redudant logging from dep updaters (Aviv Keller) #53783ac5d7b709d
] - meta: change email address of anonrig (Yagiz Nizipli) #53829085ec5533c
] - meta: addnode_sqlite.c
to PR label config (Aviv Keller) #53797c68d873e99
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #537585ae8ea489d
] - meta: use HTML entities in commit-queue comment (Aviv Keller) #53744ecd8fceb68
] - meta: move regular TSC member to emeritus (Michael Dawson) #5369305058f9809
] - meta: bump codecov/codecov-action from 4.4.1 to 4.5.0 (dependabot[bot]) #53675e272ffa3d6
] - meta: bump mozilla-actions/sccache-action from 0.0.4 to 0.0.5 (dependabot[bot]) #53674a39407560c
] - meta: bump github/codeql-action from 3.25.7 to 3.25.11 (dependabot[bot]) #53673e4ce92ee31
] - meta: bump actions/checkout from 4.1.6 to 4.1.7 (dependabot[bot]) #536724cf98febe7
] - meta: bump peter-evans/create-pull-request from 6.0.5 to 6.1.0 (dependabot[bot]) #53671c28af95bf5
] - meta: bump step-security/harden-runner from 2.8.0 to 2.8.1 (dependabot[bot]) #53670dd2157bc83
] - meta: move member from TSC regular to emeriti (Michael Dawson) #53599508abfe178
] - meta: warnings bypass deprecation cycle (Benjamin Gruenbaum) #535133c5ec839e3
] - meta: prevent constant references to issues in versioning (Aviv Keller) #53564aa7df9551d
] - module: add __esModule to require()'d ESM (Joyee Cheung) #521668743c4d65a
] - (SEMVER-MINOR) path: addmatchesGlob
method (Aviv Keller) #5288177936c3d24
] - (SEMVER-MINOR) process: port on-exit-leak-free to core (Vinicius Lourenço) #532395e4ca9fbb6
] - src: update outdated references to spec sections (Tobias Nießen) #53832c22d9d5167
] - src: use Maybe<void> in ManagedEVPPKey (Tobias Nießen) #53811d41ed44f49
] - src: moveloadEnvFile
toNamespacedPath call (Yagiz Nizipli) #53658dc99dd391f
] - src: fix error handling in ExportJWKAsymmetricKey (Tobias Nießen) #53767ab1e03e8cd
] - src: use Maybe<void> in node::crypto::error (Tobias Nießen) #537669bde9b254d
] - src: fix implementation ofPropertySetterCallback
(Igor Sheludko) #53576021e2cf40f
] - src: remove unused ContextifyContext::WeakCallback (Chengzhong Wu) #5351787121a17c4
] - src: fix typo in node.h (Daeyeon Jeong) #5375994c7054c8d
] - src: document the Node.js context embedder data (Joyee Cheung) #53611c181940e83
] - src: zero-initialize data that are copied into the snapshot (Joyee Cheung) #535638cda2db64c
] - Revert "src: make sure that memcpy-ed structs in snapshot have no padding" (Joyee Cheung) #5356381767f6089
] - src: fix Worker termination when '--inspect-brk' is passed (Daeyeon Jeong) #53724a9db553935
] - src: refactor embedded entrypoint loading (Joyee Cheung) #535733ab8aba478
] - src: do not get string_view from temp string (Cheng) #53688664bf6c28f
] - src: replacekPathSeparator
with std::filesystem (Yagiz Nizipli) #53063cc1f49751a
] - src: moveFromNamespacedPath
to path.cc (Yagiz Nizipli) #53540e43a4e07ec
] - src: usestarts_with
in node_dotenv.cc (Yagiz Nizipli) #5353919488fd4ce
] - src,test: further cleanup references to osx (Daniel Bayley) #538204bf62f6cbd
] - stream: improve inspector ergonomics (Benjamin Gruenbaum) #5380082d88a83f8
] - (SEMVER-MINOR) stream: pipeline wait for close before calling the callback (jakecastelli) #5346253a7dd7790
] - test: update wpt test (Mert Can Altin) #53814bc480902ab
] - test: update WPT WebIDL interfaces (Filip Skokan) #53720d13153d90f
] - test: un-set inspector-async-hook-setup-at-inspect-brk as flaky (Abdirahim Musse) #53692ac9c2e6bf2
] - test: use python3 instead of python in pummel test (Mathis Wiehl) #53057bac28678e6
] - test: do not assume cwd in snapshot tests (Antoine du Hamel) #5314641e106c0c6
] - test: useSet.difference()
(Richard Lau) #535978aab680f66
] - test: fix OpenSSL version checks (Richard Lau) #535036aa4f0f266
] - test: refactor, add assertion to http-request-end (jakecastelli) #53411fbc5cbb617
] - test_runner: remove plan option from run() (Colin Ihrig) #53834c590828ad8
] - test_runner: fix escaping in snapshot tests (Julian Kniephoff) #538333a0fcbb17a
] - test_runner: support glob matching coverage files (Aviv Keller) #53553e6a1eeb73d
] - test_runner: support module detection in module mocks (Geoffrey Booth) #536424d777de7d4
] - tls: add setKeyCert() to tls.Socket (Brian White) #53636ab9adfc42a
] - tls: remove prototype primordials (Antoine du Hamel) #5369903d378ffb9
] - tools: update lint-md-dependencies (Node.js GitHub Bot) #5384006377b1b11
] - tools: update eslint to 9.7.0 (Node.js GitHub Bot) #53839d6629a2d84
] - tools: use v8_features.json to populate config.gypi (Cheng) #53749d3653fe8ac
] - tools: update eslint to 9.6.0 (Node.js GitHub Bot) #536451e930e93d4
] - tools: update lint-md-dependencies to unified@11.0.5 (Node.js GitHub Bot) #53555317a13b30f
] - tools: replace reference to NodeMainInstance with SnapshotBuilder (codediverdev) #535440e25faea0a
] - typings: addfs_dir
types (Yagiz Nizipli) #536317637f291be
] - url: fix typo (KAYYY) #538272c6548afd1
] - url: reduce unnecessary string copies (Yagiz Nizipli) #536280f2b57d1bc
] - url: make URL.parse enumerable (Filip Skokan) #537201300169f80
] - url: add missing documentation forURL.parse()
(Yagiz Nizipli) #53733c55e72ed8b
] - util: fix crashing when emitting new Buffer() deprecation warning #53075 (Aras Abbasi) #530895aa216320e
] - v8: moveToNamespacedPath
to c++ (Yagiz Nizipli) #536559fd976b09d
] - vm,src: add property query interceptors (Chengzhong Wu) #5351722ca334090
] - (SEMVER-MINOR) worker: add postMessageToThread (Paolo Insogna) #536825aecbefbd5
] - worker: allow copied NODE_OPTIONS in the env setting (Joyee Cheung) #53596v22.4.1
: 2024-07-08, Version 22.4.1 (Current), @RafaelGSSCompare Source
This is a security release.
Notable Changes
Commits
110902ff5e
] - lib,esm: handle bypass network-import via data: (RafaelGSS) nodejs-private/node-private#5220a0de3d491
] - lib,permission: support fs.lstat (RafaelGSS)93574335ff
] - lib,permission: disable fchmod/fchown when pm enabled (RafaelGSS) nodejs-private/node-private#58409899e6302
] - src: handle permissive extension on cmd check (RafaelGSS) nodejs-private/node-private#5965d9c811634
] - src,permission: fix UNC path resolution (RafaelGSS) nodejs-private/node-private#581v22.4.0
: 2024-07-02, Version 22.4.0 (Current), @targosCompare Source
Notable Changes
Experimental Web Storage API
9e30724b53
] - (SEMVER-MINOR) deps,lib,src: add experimental web storage (Colin Ihrig) #52435API stability updates
201266706b
] - doc: movenode --run
stability to rc (Yagiz Nizipli) #5343316c0884d48
] - doc: mark WebSocket as stable (Matthew Aitken) #53352cf375e73c1
] - doc: mark --heap-prof and related flags stable (Joyee Cheung) #533430160745057
] - doc: mark --cpu-prof and related flags stable (Joyee Cheung) #53343Other Notable Changes
df4762722c
] - doc: doc-only deprecate OpenSSL engine-based APIs (Richard Lau) #53329ad5282e196
] - inspector: fix disable async hooks onDebugger.setAsyncCallStackDepth
(Joyee Cheung) #53473e95af740fc
] - (SEMVER-MINOR) lib: add diagnostics_channel events to module loading (RafaelGSS) #4434050733a1abe
] - (SEMVER-MINOR) util: support--no-
for argument with boolean type for parseArgs (Zhenwei Jin) #53107Commits
9f32002397
] - assert,util: correct comparison when both contain same reference (Daniel Lemire) #53431dfdc062111
] - buffer: make indexOf(byte) faster (Tobias Nießen) #534551de437527e
] - build: configure with shared sqlite3 (Chengzhong Wu) #53519c7d44ba1f3
] - build: find version of Clang installed on Windows (Stefan Stojanovic) #5322836aad8b204
] - build: fix spacing before NINJA_ARGS (jakecastelli) #5318182092cdaa3
] - crypto: improve GetECGroupBits signature (Tobias Nießen) #53364073c231607
] - deps: update c-ares to v1.31.0 (Node.js GitHub Bot) #53554977beab729
] - (SEMVER-MINOR) deps: sqlite: fix Windows compilation (Colin Ihrig) #52435e69b8d202c
] - deps: update undici to 6.19.2 (Node.js GitHub Bot) #53468c4a7e051c8
] - deps: update undici to 6.19.1 (Node.js GitHub Bot) #53468fa34f8fcf0
] - deps: update undici to 6.19.1 (Node.js GitHub Bot) #534680b40bfad43
] - deps: update undici to 6.19.0 (Node.js GitHub Bot) #534681877f22a79
] - deps: update simdjson to 3.9.4 (Node.js GitHub Bot) #534671b84964b8d
] - deps: patch V8 to 12.4.254.21 (Node.js GitHub Bot) #534706acadeb59b
] - deps: update acorn-walk to 8.3.3 (Node.js GitHub Bot) #534667a7f438841
] - deps: update zlib to 1.3.0.1-motley-209717d (Node.js GitHub Bot) #53156bf891bf64c
] - deps: update c-ares to v1.30.0 (Node.js GitHub Bot) #53416bd68888261
] - deps: V8: cherry-picka3cc852
(kxxt) #534122defaaf771
] - deps: V8: cherry-pick6ea594f
(kxxt) #534129e30724b53
] - (SEMVER-MINOR) deps,lib,src: add experimental web storage (Colin Ihrig) #52435608cc05de1
] - doc: recommend not using libuv node-api function (Michael Dawson) #5352130858eca59
] - doc: add additional guidance for PRs to deps (Michael Dawson) #53499a5852cc710
] - doc: only apply content-visibility on all.html (Filip Skokan) #53510befabe5c58
] - doc: update the description of the return type for options.filter (Zhenwei Jin) #527425ed1a036ba
] - doc: remove first timer badge (Aviv Keller) #53338201266706b
] - doc: movenode --run
stability to rc (Yagiz Nizipli) #5343346a7681cc4
] - doc: add Buffer.from(string) to functions that use buffer pool (Christian Bates-White) #52801ec5364f6de
] - doc: add initial text for ambassadors program (Michael Dawson) #52857fa113b8fc7
] - doc: fix typo (EhsanKhaki) #53397d9182d0086
] - doc: define more cases for stream event emissions (Aviv Keller) #53317923d24b6f2
] - doc: remove mentions of policy model from security info (Aviv Keller) #5324948f78cd31b
] - doc: fix mistakes in the moduleload
hook api (István Donkó) #5334916c0884d48
] - doc: mark WebSocket as stable (Matthew Aitken) #53352df4762722c
] - doc: doc-only deprecate OpenSSL engine-based APIs (Richard Lau) #53329cf375e73c1
] - doc: mark --heap-prof and related flags stable (Joyee Cheung) #533430160745057
] - doc: mark --cpu-prof and related flags stable (Joyee Cheung) #533436e12d9f049
] - doc: remove IRC from man page (Tobias Nießen) #5334424c7a9415b
] - doc, http: addrejectNonStandardBodyWrites
option, clear its behaviour (jakecastelli) #53396ec38f3dc6a
] - doc, meta: organize contributing to Node-API guide (Aviv Keller) #53243cf5a973c42
] - doc, meta: use markdown rather than HTML in CONTRIBUTING.md (Aviv Keller) #53235105b006fd2
] - fs: moveToNamespacedPath
to c++ (Yagiz Nizipli) #52135568377f7f0
] - fs: do not crash if the watched file is removed while setting up watch (Matteo Collina) #53452fad179307c
] - fs: add fast api forInternalModuleStat
(Yagiz Nizipli) #5134441100b65f6
] - http2: reject failed http2.connect when used with promisify (ehsankhfr) #53475ad5282e196
] - inspector: fix disable async hooks on Debugger.setAsyncCallStackDepth (Joyee Cheung) #53473b5fc227344
] - lib: fix typo in comment (codediverdev) #53543e95af740fc
] - (SEMVER-MINOR) lib: add diagnostics_channel events to module loading (RafaelGSS) #44340123910f1de
] - lib: remove the unused code (theanarkh) #53463452011b719
] - lib: speed up MessageEvent creation internally (Matthew Aitken) #52951710cf7758c
] - lib: reduce amount of caught URL errors (Yagiz Nizipli) #5265845b59e58d1
] - lib: fix naming convention ofSymbol
(Deokjin Kim) #53387515dd24ee7
] - lib: fix timer leak (theanarkh) #5333777166137be
] - meta: use correct source for workflow in PR (Aviv Keller) #53490d1c10fee53
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #53480a5026386bf
] - meta: fix typo in dependency updates (Aviv Keller) #534710b9191da99
] - meta: bump step-security/harden-runner from 2.7.1 to 2.8.0 (dependabot[bot]) #5324549cfb9d001
] - src: resetprocess.versions
during pre-execution (Richard Lau) #5344415df4edd22
] - src: useargs.This()
instead ofHolder
(Michaël Zasso) #53474e16a04e852
] - src: fix dynamically linked OpenSSL version (Richard Lau) #534565961253824
] - src: removebase64
fromprocess.versions
(Richard Lau) #5344211dd15c0b5
] - src: removeSetEncoding
from StringEncoder (Yagiz Nizipli) #534410c7e69acd2
] - src: simplifysize() == 0
checks (Yagiz Nizipli) #53440f077afafda
] - src: add utilities to help debugging reproducibility of snapshots (Joyee Cheung) #50983004b9ea4c4
] - src: make sure that memcpy-ed structs in snapshot have no padding (Joyee Cheung) #50983bfc5236423
] - src: return non-empty data in context data serializer (Joyee Cheung) #50983955454ba4d
] - src: fix typo in env.cc (EhsanKhaki) #534187d8787768c
] - src: avoid strcmp in favor of operator== (Tobias Nießen) #53439599e7c3d8e
] - src: remove ArrayBufferAllocator::Reallocate override (Shu-yu Guo) #52910f9075ff38e
] - src: print v8::OOMDetails::detail when it's available (Joyee Cheung) #533604704270443
] - src: fix IsIPAddress for IPv6 (Hüseyin Açacak) #5340063f62d76de
] - src: fix permission inspector crash (theanarkh) #5338970bbc02dac
] - src, deps: add nbytes library (James M Snell) #535078b877099d0
] - stream: update outdated highwatermark doc (Jay Kim) #53494eded1e9768
] - stream: support dispose in writable (Benjamin Gruenbaum) #48547b3372a8b0e
] - stream: callback should be called when pendingcb is 0 (jakecastelli) #53438f4efb7f625
] - stream: make sure _destroy is called (jakecastelli) #532137dde37591c
] - stream: prevent stream unexpected pause when highWaterMark set to 0 (jakecastelli) #532616e66d9763f
] - test: marktest-benchmark-crypto
as flaky (Antoine du Hamel) #529551eebcbf9bf
] - test: skip reproducible snapshot test on 32-bit (Michaël Zasso) #5359291b2850303
] - test: extend env fortest-node-output-errors
(Richard Lau) #53535bcad560726
] - test: updatecompression
web-platform tests (Yagiz Nizipli) #53478b8f436c755
] - test: update encoding web-platform tests (Yagiz Nizipli) #53477d2c169a4f6
] - test: updateurl
web-platform tests (Yagiz Nizipli) #53472513e6aa4c7
] - test: check against run-time OpenSSL version (Richard Lau) #53456602b9d63c4
] - test: update tests for OpenSSL 3.0.14 (Richard Lau) #533734a3525bb08
] - test: fix test-http-server-keepalive-req-gc (Etienne Pierre-doray) #532927349edb28b
] - test: update TLS tests for OpenSSL 3.2 (Richard Lau) #53384a11a05763d
] - tls: check result of SSL_CTX_set_*_proto_version (Tobias Nießen) #534594b47f89eb2
] - tls: avoid taking ownership of OpenSSL objects (Tobias Nießen) #53436ac8adeb99f
] - tls: use SSL_get_peer_tmp_key (Tobias Nießen) #53366d5c380bb09
] - tools: lock versions of irrelevant DB deps (Michaël Zasso) #5354671321bb249
] - tools: fix skip detection of test runner output (Richard Lau) #53545ca198f4125
] - tools: update eslint to 9.5.0 (Node.js GitHub Bot) #5351530fdd482a1
] - tools: move ESLint to tools/eslint (Michaël Zasso) #53413fe85e05ba9
] - tools: fix c-ares update script (Marco Ippolito) #534148eb7bdf81b
] - tools: update lint-md-dependencies (Node.js GitHub Bot) #531589ece63d415
] - tools: do not run Corepack code before it's reviewed (Antoine du Hamel) #53405ab2021492b
] - tools: move ESLint tools to tools/eslint (Michaël Zasso) #5339378a9037a6d
] - tools: use Ubuntu 24.04 and Clang on GitHub actions (Michaël Zasso) #53212855eb25dad
] - tools: add stream label on PR when related files being changed in lib (jakecastelli) #5326950733a1abe
] - (SEMVER-MINOR) util: support--no-
for argument with boolean type for parseArgs (Zhenwei Jin) #53107v22.3.0
: 2024-06-11, Version 22.3.0 (Current), @RafaelGSSCompare Source
Notable Changes
5a41bcf9ca
] - (SEMVER-MINOR) src: traverse parent folders while running--run
(Yagiz Nizipli) #531541d5934524b
] - (SEMVER-MINOR) buffer: add .bytes() method to Blob (Matthew Aitken) #5322175e5612fae
] - (SEMVER-MINOR) src,permission: --allow-wasi & prevent WASI exec (Rafael Gonzaga) #53124b5c30e2f5e
] - (SEMVER-MINOR) module: print amount of load time of a cjs module (Vinicius Lourenço) #522138c6dffc269
] - (SEMVER-MINOR) test_runner: add snapshot testing (Colin Ihrig) #53169048478d351
] - (SEMVER-MINOR) doc: add context.assert docs (Colin Ihrig) #53169f6d2af8ee7
] - (SEMVER-MINOR) test_runner: add context.fullName (Colin Ihrig) #53169a0766bdf0e
] - (SEMVER-MINOR) net: add new net.server.listen tracing channel (Paolo Insogna) #53136374743cd4e
] - (SEMVER-MINOR) process: add process.getBuiltinModule(id) (Joyee Cheung) #527621eb55f3550
] - (SEMVER-MINOR) doc: improve explanation about built-in modules (Joyee Cheung) #527626165894774
] - fs: mark recursive cp methods as stable (Théo LUDWIG) #53127db5dd0c6df
] - doc: add StefanStojanovic to collaborators (StefanStojanovic) #53118cfcde78513
] - (SEMVER-MINOR) cli: addNODE_RUN_PACKAGE_JSON_PATH
env (Yagiz Nizipli) #530587a67ecf161
] - (SEMVER-MINOR) test_runner: support module mocking (Colin Ihrig) #52848ee56aecced
] - (SEMVER-MINOR) lib: add EventSource Client (Aras Abbasi) #515756413769bc7
] - (SEMVER-MINOR) lib: replace MessageEvent with undici's (Matthew Aitken) #52370c70b2f7a76
] - (SEMVER-MINOR) cli: addNODE_RUN_SCRIPT_NAME
env tonode --run
(Yagiz Nizipli) #53032badec0c38b
] - doc: add Marco Ippolito to TSC (Rafael Gonzaga) #53008Commits
feb0ba2860
] - benchmark: fix napi/ref addon (Michaël Zasso) #53233bb844de4e1
] - benchmark: fix api restriction for the permission category (Ryan Tsien) #515281d5934524b
] - (SEMVER-MINOR) buffer: add .bytes() method to Blob (Matthew Aitken) #53221d87f9af5aa
] - buffer: make compare/equals faster (Tobias Nießen) #52993ec83431d71
] - build: generate binlog in out directories (Chengzhong Wu) #533250976439417
] - build: fix --v8-lite-mode build (Daeyeon Jeong) #52725350c733ae6
] - build: support python 3.13 (Chengzhong Wu) #5319074cefa55a2
] - build: update ruff to v0.4.5 (Yagiz Nizipli) #5318033242ff042
] - build: add--skip-tests
totest-ci-js
target (Antoine du Hamel) #53105edcadf7f8a
] - build: fix building embedtest in GN build (Cheng) #53145d711942fce
] - build: use broader detection for 'help' (Aviv Keller) #53045ca655b61a7
] - build: fix -j propagation to ninja (Tobias Nießen) #530885fba67ff9f
] - build: exit on unsupported host OS for Android (Mohammed Keyvanzadeh) #52882b7d7e9a084
] - build: fix--enable-d8
builds (Richard Lau) #5310614547c5d32
] - build: fix ./configure --help format error (Zhenwei Jin) #53066f9490806d3
] - build: set "clang" in config.gypi in GN build (Cheng) #53004638b510ce7
] - cli: add--expose-gc
flag available toNODE_OPTIONS
(Juan José) #53078cfcde78513
] - (SEMVER-MINOR) cli: addNODE_RUN_PACKAGE_JSON_PATH
env (Yagiz Nizipli) #53058c70b2f7a76
] - (SEMVER-MINOR) cli: addNODE_RUN_SCRIPT_NAME
env tonode --run
(Yagiz Nizipli) #5303234f20983fd
] - crypto: fix propagation of "memory limit exceeded" (Tobias Nießen) #53300fef067f4f4
] - deps: update nghttp2 to 1.62.1 (Node.js GitHub Bot) #52966fc949928ac
] - deps: update nghttp2 to 1.62.0 (Node.js GitHub Bot) #529664a17dda8dc
] - deps: update undici to 6.18.2 (Node.js GitHub Bot) #53255e45cc2a551
] - deps: update ada to 2.8.0 (Node.js GitHub Bot) #5325477907a2619
] - deps: update corepack to 0.28.2 (Node.js GitHub Bot) #53253b688050778
] - deps: update simdjson to 3.9.3 (Node.js GitHub Bot) #532526303f19cbe
] - deps: patch V8 to 12.4.254.20 (Node.js GitHub Bot) #53159257004c68f
] - deps: update c-ares to 1.29.0 (Node.js GitHub Bot) #531550b375a3e36
] - deps: upgrade npm to 10.8.1 (npm team) #53207728c861b1c
] - deps: fix FP16 bitcasts.h (Stefan Stojanovic) #5313452a78737b1
] - deps: patch V8 to 12.4.254.19 (Node.js GitHub Bot) #530944d27b32e58
] - deps: update undici to 6.18.1 (Node.js GitHub Bot) #53073b94199240b
] - deps: update undici to 6.18.0 (Node.js GitHub Bot) #53073793af1b3e7
] - deps: update undici to 6.17.0 (Node.js GitHub Bot) #53034fe00becc03
] - deps: update undici to 6.16.1 (Node.js GitHub Bot) #5294896f72ae54f
] - deps: update undici to 6.15.0 (Matthew Aitken) #52763af60fbb12b
] - deps: update googletest to33af80a
(Node.js GitHub Bot) #530537b929df489
] - deps: patch V8 to 12.4.254.18 (Node.js GitHub Bot) #53054626037c0fc
] - deps: update zlib to 1.3.0.1-motley-4f653ff (Node.js GitHub Bot) #530526d8589e558
] - deps: patch V8 to 12.4.254.17 (Node.js GitHub Bot) #52980fd91eaab34
] - deps: upgrade npm to 10.8.0 (npm team) #53014133cae0732
] - doc: fix broken link instatic-analysis.md
(Richard Lau) #533457bc5f964fd
] - doc: indicate requirement on VS 17.6 or newer (Chengzhong Wu) #533018c71522ced
] - doc: remove cases for keys not containing "*" in PATTERN_KEY_COMPARE (Maarten Zuidhoorn) #53215718a3ab1ab
] - doc: add err param to fs.cp callback (Feng Yu) #53234d89bde26ff
] - doc: adderr
param to fs.copyFile callback (Feng Yu) #5323491971ee344
] - doc: reserve 128 for Electron 32 (Keeley Hammond) #53203812f0e9e14
] - doc: add note to ninjia build for macOS using -jn flag (jakecastelli) #53187048478d351
] - (SEMVER-MINOR) doc: add context.assert docs (Colin Ihrig) #53169c391923445
] - doc: include ESM import for HTTP (Aviv Keller) #531651eb55f3550
] - (SEMVER-MINOR) doc: improve explanation about built-in modules (Joyee Cheung) #5276267a766f7d4
] - doc: fix minor grammar and style issues in SECURITY.md (Rich Trott) #53168afbfe8922a
] - doc: mention pm is not enforced when using fd (Rafael Gonzaga) #531251702d2632e
] - doc: fix format inesm.md
(Pop Moore) #53170070577e7d7
] - doc: fix wrong variable name in example oftimers.tick()
(Deokjin Kim) #531477147c1df1f
] - doc: fix wrong function name in example ofcontext.plan()
(Deokjin Kim) #53140cf47384148
] - doc: add note for windows users and symlinks (Aviv Keller) #53117088dff1074
] - doc: move all TLS-PSK documentation to its section (Alba Mendez) #35717db5dd0c6df
] - doc: add StefanStojanovic to collaborators (StefanStojanovic) #531180f0bc98ad7
] - doc: improve ninja build for --built-in-modules-path (jakecastelli) #530074c65c52d30
] - doc: avoid hiding by navigation bar in anchor jumping (Cloyd Lau) #4513163fcbcfd62
] - doc: remove unavailable youtube link in pull requests (Deokjin Kim) #5298277fd504636
] - doc: add missing supported timer values intimers.enable()
(Deokjin Kim) #529696708536b03
] - fs: fix cp dir/non-dir mismatch error messages (Mathis Wiehl) #531506165894774
] - fs: mark recursive cp methods as stable (Théo LUDWIG) #531277940db7be1
] - fs: remove basename in favor of std::filesystem (Yagiz Nizipli) #53062505e9a425b
] - lib: fix misleading argument of validateUint32 (Tobias Nießen) #5330798ae1ebdd6
] - lib: fix the name of the fetch global function (Gabriel Bota) #53227fe007cd1b4
] - lib: allow CJS source map cache to be reclaimed (Chengzhong Wu) #51711040be4a7b4
] - lib: do not call callback if socket is closed (theanarkh) #52829ee56aecced
] - (SEMVER-MINOR) lib: add EventSource Client (Aras Abbasi) #515756413769bc7
] - (SEMVER-MINOR) lib: replace MessageEvent with undici's (Matthew Aitken) #52370879679e5a3
] - lib,doc: replace references to import assertions (Michaël Zasso) #52998062a0c6f67
] - meta: bump ossf/scorecard-action from 2.3.1 to 2.3.3 (dependabot[bot]) #53248e59b744b30
] - meta: bump actions/checkout from 4.1.4 to 4.1.6 (dependabot[bot]) #5324796924f48a0
] - meta: bump github/codeql-action from 3.25.3 to 3.25.7 (dependabot[bot]) #53246b7f5662dee
] - meta: bump codecov/codecov-action from 4.3.1 to 4.4.1 (dependabot[bot]) #53244e079967eb4
] - meta: removeinitializeCommand
from devcontainer (Aviv Keller) #531373afeced572
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #530654b9cdea8a6
] - Revert "module: have a single hooks thread for all workers" (Matteo Collina) #53183b5c30e2f5e
] - (SEMVER-MINOR) module: print amount of load time of a cjs module (Vinicius Lourenço) #522134cdb05a7a2
] - module: do not set CJS variables for Worker eval (Antoine du Hamel) #53050a0766bdf0e
] - (SEMVER-MINOR) net: add new net.server.listen tracing channel (Paolo Insogna) #53136374743cd4e
] - (SEMVER-MINOR) process: add process.getBuiltinModule(id) (Joyee Cheung) #52762e66eb376a0
] - repl: fix await object patterns without values (Luke Haas) #53331cb1329a8cf
] - src: use v8::(Des|S)erializeInternalFieldsCallback (Joyee Cheung) #532171886fe99af
] - src: use __FUNCSIG__ on Windows in backtrace (Joyee Cheung) #531353bfce6c816
] - src: use new V8 API to define stream accessor (Igor Sheludko) #5308411f790d911
] - src: do not use deprecated V8 API (ishell) #530846b1731cbcc
] - src: convert all endian checks to constexpr (Tobias Nießen) #529747aa9519ad4
] - src: fix external module env and kDisableNodeOptionsEnv (Rafael Gonzaga) #52905838fe59787
] - src: fix execArgv in worker (theanarkh) #530294a2c6ff05d
] - src: reduce unnecessaryGetCwd
calls (Yagiz Nizipli) #53064ec44965b49
] - src: simplify node modules traverse path (Yagiz Nizipli) #53061190129b48e
] - src: remove unusedbase64_table_url
(Yagiz Nizipli) #53040d750a3c5c4
] - src: remove calls to recently deprecated V8 APIs (Adam Klein) #52996f1890abb18
] - src: replace deprecated GetImportAssertions V8 API (Michaël Zasso) #529974347bd2acb
] - src: improve node::Dotenv declarations (Tobias Nießen) #52973e26166f30b
] - src,permission: handle process.chdir on pm (Rafael Gonzaga) #5317575e5612fae
] - (SEMVER-MINOR) src,permission: --allow-wasi & prevent WASI exec (Rafael Gonzaga) #531247c66b27407
] - stream: micro-optimize writable condition (Orgad Shaneh) #53189a656cf6bc8
] - stream: fix memory usage regression in writable (Orgad Shaneh) #531880e85a84fdc
] - test: fix test when compiled without engine support (Richard Lau) #53232cebbd83e47
] - test: update TLS trace tests for OpenSSL >= 3.2 (Richard Lau) #5322945c1eb19f1
] - Revert "test: skip v8-updates/test-linux-perf-logger" (Luke Albao) #52869c1138db3c1
] - test: unskip v8-updates/test-linux-perf-logger (Luke Albao) #5286965b64cf0f1
] - test: fix Windows native test suites (Stefan Stojanovic) #531739a47792cd1
] - test: skiptest-setproctitle
whenps
is not available (Antoine du Hamel) #53104a371dea699
] - test: increase allocation so it fails for the test (Adam Majer) #530993ce7a9a1b5
] - test: remove timers from test-tls-socket-close (Luigi Pinca) #53019494fa542af
] - test: replace.substr
with.slice
(Antoine du Hamel) #530703f7d55b7db
] - test: add AbortController to knownGlobals (Luigi Pinca) #53020c61f909ab6
] - test,doc: enable running embedtest for Windows (Vladimir Morozov) #526462d1ecbf827
] - test_runner: calculate executed lines using source map (Moshe Atlow) #53315d4f5f80f6c
] - test_runner: handle file rename and deletion under watch mode (jakecastelli) #5311407c601e32f
] - test_runner: refactor to use min/max ofvalidateInteger
(Deokjin Kim) #531488c6dffc269
] - (SEMVER-MINOR) test_runner: add snapshot testing (Colin Ihrig) #53169f6d2af8ee7
] - (SEMVER-MINOR) test_runner: add context.fullName (Colin Ihrig) #531697a67ecf161
] - (SEMVER-MINOR) test_runner: support module mocking (Colin Ihrig) #528483ff174f2bf
] - test_runner: fix t.assert methods (Colin Ihrig) #53049e2211a07c2
] - test_runner: avoid error when coverage line not found (Moshe Atlow) #53000c249289121
] - test_runner,doc: align documentation with actual stdout/stderr behavior (Moshe Atlow) #531315110b19a07
] - tls: fix negative sessionTimeout handling (Tobias Nießen) #530020ecb770331
] - tools: remove no-goma arg from make-v8 script (Michaël Zasso) #53336e7f3a3c296
] - tools: use sccache Github action (Moshe Atlow) #5331698cc094bc5
] - tools: update eslint to 9.4.0 (Node.js GitHub Bot) #532986409b1fe65
] - tools: update gyp-next to 0.18.1 (Node.js GitHub Bot) #5325186e80dcb9b
] - tools: move webcrypto into no-restricted-properties (Zihong Qu) #530236022346f0e
] - tools: update error message for Type Error (Aviv Keller) #53047c1b3e0ed6f
] - Revert "tools: add --certify-safe to nci-ci" (Antoine du Hamel) #530989f764a873c
] - tools: update ESLint to v9 and use flat config (Michaël Zasso) #527802859f4c027
] - watch: fix variable naming (jakecastelli) #53101v22.2.0
: 2024-05-15, Version 22.2.0 (Current), @targosCompare Source
Notable Changes
fb85d38e80
] - (SEMVER-MINOR) cli: allow running wasm in limited vmem with --disable-wasm-trap-handler (Joyee Cheung) #5276623a0d3339f
] - doc: add pimterry to collaborators (Tim Perry) #528747d7a762156
] - (SEMVER-MINOR) fs: allow 'withFileTypes' to be used with globs (Aviv Keller) #528378748dd6477
] - (SEMVER-MINOR) inspector: introduce the--inspect-wait
flag (Kohei Ueno) #527349a7ae9b6c4
] - lib,src: remove --experimental-policy (Rafael Gonzaga) #525831f7c2a93fc
] - (SEMVER-MINOR) perf_hooks: adddeliveryType
andresponseStatus
fields (Matthew Aitken) #515892f59529dc5
] - (SEMVER-MINOR) test_runner: support test plans (Colin Ihrig) #528606b4dac3eb5
] - (SEMVER-MINOR) zlib: expose zlib.crc32() (Joyee Cheung) #52692Commits
0f5716c364
] - assert: add deep equal check for more Error type (Zhenwei Jin) #518052c7d7caa8a
] - benchmark: filter non-present deps fromstart-cli-version
(Adam Majer) #517465db4c54bd6
] - bootstrap: print--help
message usingconsole.log
(Jacob Hummer) #5146367fcb6b85e
] - buffer: even faster atob (Daniel Lemire) #52443a5d63f9052
] - buffer: use size_t instead of uint32_t to avoid segmentation fault (Xavier Stouder) #48033f1bc994826
] - buffer: remove lines setting indexes to integer value (Zhenwei Jin) #52588a97ff753ab
] - build: add option to enable clang-cl on Windows (Michaël Zasso) #52870f96466a92c
] - build: enable building with shared uvwasi lib (Pooja D P) #43987b463385aa8
] - build: remove deprecated calls for argument groups (Mohammed Keyvanzadeh) #52913daeb7dbb3e
] - build: sync V8 warning cflags with BUILD.gn (Michaël Zasso) #52873eed967430d
] - build: harmonize Clang checks (Michaël Zasso) #52873e4b187433d
] - build: compile with C++20 support (Michaël Zasso) #52838aea6ca25ba
] - build: drop base64 dep in GN build (Cheng) #528567f866a8225
] - build: make simdjson a public dep in GN build (Cheng) #52755e1bd53c098
] - build: defineNOMINMAX
in common.gypi (Chengzhong Wu) #5279418c530f8f7
] - build, tools: copy release assets to staging R2 bucket once built (flakey5) #51394fb85d38e80
] - (SEMVER-MINOR) cli: allow running wasm in limited vmem with --disable-wasm-trap-handler (Joyee Cheung) #5276611e978916f
] - cluster: replaceforEach
withfor-of
loop (Jérôme Benoit) #50317db76c58d68
] - console: colorize console error and warn (Jithil P Ponnan) #516290d040a3035
] - crypto: fix duplicated switch-case return values (Mustafa Ateş UZUN) #49030ab7219f0b2
] - deps: update googletest tofa6de7f
(Node.js GitHub Bot) #529494ab096eccc
] - deps: update simdjson to 3.9.2 (Node.js GitHub Bot) #5294789f275b1df
] - deps: update corepack to 0.28.1 (Node.js GitHub Bot) #52946fc568b4b42
] - deps: update simdutf to 5.2.8 (Node.js GitHub Bot) #52727e399360182
] - deps: update simdutf to 5.2.6 (Node.js GitHub Bot) #52727232831f013
] - deps: enable unbundling of simdjson, simdutf, ada (Daniel Lemire) #529247ca83a5abc
] - deps: update googletest to2d16ed0
(Node.js GitHub Bot) #516573b15eb5911
] - deps: update googletest tod83fee1
(Node.js GitHub Bot) #516574190d70035
] - deps: update googletest to5a37b51
(Node.js GitHub Bot) #516577a166a2871
] - deps: update googletest to5197b1a
(Node.js GitHub Bot) #51657812dbd749f
] - deps: update googletest toeff443c
(Node.js GitHub Bot) #51657cb3ae4b9ef
] - deps: update googletest toc231e6f
(Node.js GitHub Bot) #51657d97317aaa1
] - deps: update googletest toe4fdb87
(Node.js GitHub Bot) #51657ad8ca1259f
] - deps: update googletest to5df0241
(Node.js GitHub Bot) #51657828f0d7096
] - deps: update googletest tob75ecf1
(Node.js GitHub Bot) #516573b60dbcf7b
] - deps: update googletest to4565741
(Node.js GitHub Bot) #5165737098eb880
] - deps: update simdjson to 3.9.1 (Node.js GitHub Bot) #52397a13cf1c049
] - deps: update uvwasi to 0.0.21 (Node.js GitHub Bot) #52863faf8ada719
] - deps: V8: cherry-pickf6bef09
(Richard Lau) #528028e5844c2a4
] - doc: remove reference to AUTHORS file (Marco Ippolito) #529601f3634e30f
] - doc: update hljs with the latest styles (Aviv Keller) #529119102255749
] - doc: mention quicker way to build docs (Alex Crawford) #5293715db3ef5fb
] - doc: mention push.followTags config (Rafael Gonzaga) #5290680fa675af2
] - doc: document pipeline withend
option (Alois Klink) #48970c0000f4118
] - doc: add example forexecFileSync
method and ref to stdio (Evan Shortiss) #39412e0148e2653
] - doc: add examples and notes to http server.close et al (mary marchini) #49091030f56ee6d
] - doc: fixdns.lookup
family0
andall
descriptions (Adam Jones) #51653a6d624cd5a
] - doc: updatefs.realpath
documentation (sinkhaha) #481705dab187ca8
] - doc: update fs read documentation for clarity (Mert Can Altin) #524535d3ee7205d
] - doc: watermark string behavior (Benjamin Gruenbaum) #528422dd8f092a8
] - doc: exclude commits with baking-for-lts (Marco Ippolito) #528960c2539b913
] - doc: add names next to release key bash commands (Aviv Keller) #5287823a0d3339f
] - doc: add pimterry to collaborators (Tim Perry) #5287415aad62e0c
] - doc: update BUILDING.md previous versions links (Michaël Zasso) #52852f770a993d4
] - doc: add more definitions to GLOSSARY.md (Aviv Keller) #52798f35b838a65
] - doc: make docs more welcoming and descriptive for newcomers (Serkan Özel) #38056562a019a14
] - doc: add OpenSSL errors to API docs (John Lamp) #342130cb7cf7aa9
] - doc: fix grammatical mistake (codershiba) #52808a0147ff8d0
] - doc: simplify copy-pasting ofbranch-diff
commands (Antoine du Hamel) #52757fce31fc829
] - doc: add test_runner to subsystem (Raz Luvaton) #52774ca5607bbc8
] - events: update MaxListenersExceededWarning message log (sinkhaha) #5192196566fc696
] - events: add stop propagation flag toEvent.stopImmediatePropagation
(Mickael Meausoone) #394635ee69243ed
] - events: replace NodeCustomEvent with CustomEvent (Feng Yu) #43876f076e721cb
] - fs: keep fs.promises.readFile read until EOF is reached (Zhenwei Jin) #521787d7a762156
] - (SEMVER-MINOR) fs: allow 'withFileTypes' to be used with globs (Aviv Keller) #52837ad9c4bddb1
] - http: correctly translate HTTP method (Paolo Insogna) #527018748dd6477
] - (SEMVER-MINOR) inspector: introduce the--inspect-wait
flag (Kohei Ueno) #527349a7ae9b6c4
] - lib,src: remove --experimental-policy (Rafael Gonzaga) #52583a850219600
] - meta: move@anonrig
to TSC regular member (Yagiz Nizipli) #529324dc8a387b3
] - meta: add mailmap entry for legendecas (Chengzhong Wu) #52795d10182d81d
] - meta: bump actions/checkout from 4.1.1 to 4.1.4 (dependabot[bot]) #5278748d0ac0665
] - meta: bump github/codeql-action from 3.24.9 to 3.25.3 (dependabot[bot]) #527867c7a25150e
] - meta: bump actions/upload-artifact from 4.3.1 to 4.3.3 (dependabot[bot]) #52785d9abf18342
] - meta: bump actions/download-artifact from 4.1.4 to 4.1.7 (dependabot[bot]) #52784590e5c6c45
] - meta: bump codecov/codecov-action from 4.1.1 to 4.3.1 (dependabot[bot]) #52783b3d1720515
] - meta: bump step-security/harden-runner from 2.7.0 to 2.7.1 (dependabot[bot]) #52782f74beb53de
] - module: cache synchronous module jobs before linking (Joyee Cheung) #528688fbf6628d6
] - module: have a single hooks thread for all workers (Gabriel Bota) #52706609d90bb4b
] - path: fix toNamespacedPath on Windows (Hüseyin Açacak) #529151f7c2a93fc
] - (SEMVER-MINOR) perf_hooks: adddeliveryType
andresponseStatus
fields (Matthew Aitken) #515890bbc62c42a
] - process: improve event-loop (Aras Abbasi) #52108619ac79abb
] - quic: address coverity warning (Michael Dawson) #5282404de5766ee
] - repl: fix disruptive autocomplete without inspector (Nitzan Uziely) #40661663bb973ab
] - src: fix Worker termination ininspector.waitForDebugger
(Daeyeon Jeong) #52527fca38b2d6e
] - src: useS_ISDIR
to check if the file is a directory (theanarkh) #52164b228db579f
] - src: allow preventing debug signal handler start (Shelley Vohr) #46681ace65a9aac
] - src: make sure pass theargv
to worker threads (theanarkh) #5282775004d32ab
] - src: fix typo Unabled -> Unable (Simon Siefke) #52820c40a8273ef
] - src: avoid unused variable 'error' warning (Michaël Zasso) #52886d169d0f181
] - src: fix positional args in task runner (Yagiz Nizipli) #528109c76c95c10
] - src: only apply fix in main thread (Paolo Insogna) #52702e1cba97df3
] - src: fix test local edge case (Paolo Insogna) #52702dc41c135d7
] - src: reduce unnecessary serialization of CLI options in C++ (Joyee Cheung) #52451fb24c4475c
] - src: rewrite task runner in c++ (Yagiz Nizipli) #52609323f95de9e
] - src: migrate to new V8 interceptors API (Michaël Zasso) #52745850ff02931
] - src,permission: resolve path on fs_permission (Rafael Gonzaga) #527618d3b0b7ade
] - stream: useByteLengthQueuingStrategy
when not inobjectMode
(Jason) #48847fa715437b0
] - stream: fix util.inspect for compression/decompressionStream (Mert Can Altin) #52283b0e6a6b3d5
] - string_decoder: throw an error when writing a too long buffer (zhenweijin) #52215e016e952e6
] - test: addDebugger.setInstrumentationBreakpoint
known issue (Konstantin Ulitin) #31137a589de0886
] - test: usefor-of
instead offorEach
(Gibby Free) #49790578868ddf8
] - test: verify request payload is uploaded consistently (Austin Wright) #34066c676e522e6
] - test: add fuzzer for native/js string conversion (Adam Korczynski) #511205f6415b41d
] - test: add fuzzer forClientHelloParser
(AdamKorcz) #510884d50d51a5e
] - test: fix broken env fuzzer by initializing process (AdamKorcz) #51080cd00cdcbc8
] - test: replaceforEach()
intest-stream-pipe-unpipe-stream
(Dario) #507865469adf458
] - test: test pipelineend
on transform streams (Alois Klink) #48970ea6070b0e8
] - test: improve coverage of lib/readline.js (Rongjian Zhang) #386464f96b00307
] - test: updated for each to for of in test file (lyannel) #503085d91cf1976
] - test: movetest-http-server-request-timeouts-mixed
to sequential (Madhuri) #45722f47e8fccbb
] - test: fix DNS cancel tests (Szymon Marczak) #444320b073f885a
] - test: add http agent toexecutionAsyncResource
(psj-tar-gz) #34966fbce3178ba
] - test: reduce memory usage of test-worker-stdio (Adam Majer) #377691f8eaec454
] - test: add common.expectRequiredModule() (Joyee Cheung) #528685e731da572
] - test: skip unstable shadow realm gc tests (Chengzhong Wu) #5285530a35ae522
] - test: crypto-rsa-dsa testing for dynamic openssl (Michael Dawson) #52781968fe6a8b1
] - test: skip some console tests on dumb terminal (Adam Majer) #377701448959e0d
] - test: skip v8-updates/test-linux-perf-logger (Michaël Zasso) #5282130a4248b48
] - test: add env variable test for --run (Yagiz Nizipli) #52811edb4ed3bc9
] - test: drop test-crypto-timing-safe-equal-benchmarks (Rafael Gonzaga) #52751944ae598b5
] - test, crypto: use correct object on assert (响马) #51820a814e720fa
] - test_runner: fix watch mode race condition (Moshe Atlow) #529542f59529dc5
] - (SEMVER-MINOR) test_runner: support test plans (Colin Ihrig) #528603267b3c063
] - test_runner: display failed test stack trace with dot reporter (Mihir Bhansali) #52655b96868b4e7
] - test_runner: preserve hook promise when executed twice (Moshe Atlow) #5279174341ba3c9
] - tools: fix v8-update workflow (Michaël Zasso) #52957afe39ed0df
] - tools: add --certify-safe to nci-ci (Matteo Collina) #52940bb97e1ccdd
] - tools: fix doc update action (Marco Ippolito) #52890c6043fe6c8
] - tools: fix get_asan_state() in tools/test.py (Joyee Cheung) #527666e71accc5f
] - tools: support max_virtual_memory test configuration (Joyee Cheung) #527661600bdac60
] - tools: support != in test status files (Joyee Cheung) #527668ce23dc9f3
] - tools: update gyp-next to 0.18.0 (Node.js GitHub Bot) #52835c5f832adc0
] - tools: update gyp-next to 0.17.0 (Node.js GitHub Bot) #52835646a094782
] - tools: prepare custom rules for ESLint v9 (Michaël Zasso) #52889505566347d
] - tools: update lint-md-dependencies to rollup@4.17.2 (Node.js GitHub Bot) #52836466e0c1321
] - tools: updategr2m/create-or-update-pull-request-action
(Antoine du Hamel) #52843ce7a751ad1
] - tools: use sccache GitHub action (Michaël Zasso) #528391ee38a5ec1
] - tools: specify a commit-message for V8 update workflow (Antoine du Hamel) #52844317998a1e8
] - tools: fix V8 update workflow (Antoine du Hamel) #52822ef6a2101e2
] - url,tools,benchmark: replace deprecatedsubstr()
(Jungku Lee) #515460deef2d2b1
] - util: fix%s
format behavior withSymbol.toPrimitive
(Chenyu Yang) #50992a42b93b9aa
] - util: improveisInsideNodeModules
(uzlopak) #52147d71e16154a
] - watch: allow listening for grouped changes (Matthieu Sieben) #52722e895f7cf32
] - watch: enable passthrough ipc in watch mode (Zack) #50890f5d925706a
] - watch: fix arguments parsing (Moshe Atlow) #527606b4dac3eb5
] - (SEMVER-MINOR) zlib: expose zlib.crc32() (Joyee Cheung) #52692v22.1.0
: 2024-05-02, Version 22.1.0 (Current), @targos prepared by @aduh95Compare Source
module: implement
NODE_COMPILE_CACHE
for automatic on-disk code cachingThis patch implements automatic on-disk code caching that can be enabled
via an environment variable
NODE_COMPILE_CACHE=/path/to/cache/dir
.When set, whenever Node.js compiles a CommonJS or a ECMAScript Module,
it will use on-disk V8 code cache
persisted in the specified directory
to speed up the compilation. This may slow down the first load of a
module graph, but subsequent loads of the same module graph may get
a significant speedup if the contents of the modules do not change.
Locally, this speeds up loading of
test/fixtures/snapshot/typescript.js
from ~130ms to ~80ms.
To clean up the generated code cache, simply remove the directory.
It will be recreated the next time the same directory is used for
NODE_COMPILE_CACHE
.Compilation cache generated by one version of Node.js may not be used
by a different version of Node.js. Cache generated by different versions
of Node.js will be stored separately if the same directory is used
to persist the cache, so they can co-exist.
Caveat: currently when using this with V8 JavaScript code coverage, the
coverage being collected by V8 may be less precise in functions that are
deserialized from the code cache. It's recommended to turn this off when
running tests to generate precise coverage.
Contributed by Joyee Cheung in #52535.
Other Notable Changes
44ee04cf9f
] - buffer: improvebase64
andbase64url
performance (Yagiz Nizipli) #524283c37ce5710
] - (SEMVER-MINOR) dns: add order option and support ipv6first (Paolo Insogna) #524923026401be1
] - events,doc: mark CustomEvent as stable (Daeyeon Jeong) #5261864428dc1c9
] - (SEMVER-MINOR) lib, url: add awindows
option to path parsing (Aviv Keller) #52509d79ae74f71
] - (SEMVER-MINOR) net: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) #5247443fa6a1a45
] - (SEMVER-MINOR) src: addstring_view
overload to snapshot FromBlob (Anna Henningsen) #52595c6fe433d42
] - src,permission: throw async errors on async APIs (Rafael Gonzaga) #52730e247a61d15
] - (SEMVER-MINOR) test_runner: add --test-skip-pattern cli option (Aviv Keller) #525299b18df9dcb
] - (SEMVER-MINOR) url: implement parse method for safer URL parsing (Ali Hassan) #52280Commits
35643c18c0
] - benchmark: reduce the buffer size for blob (Debadree Chatterjee) #525487cdfe8a3fc
] - benchmark: inherit stdio/stderr instead of pipe (Ali Hassan) #524567b82c17f22
] - benchmark: add ipc support to spawn stdio config (Ali Hassan) #52456dfda6fed61
] - buffer: add missing ARG_TYPE(ArrayBuffer) for isUtf8 (Jungku Lee) #5247744ee04cf9f
] - buffer: improvebase64
andbase64url
performance (Yagiz Nizipli) #52428c64a1a3b89
] - build: fix typo in node.gyp (Michaël Zasso) #527194f713fbc2e
] - build: fix headers install for shared mode on Win (Segev Finer) #524424baeb7b21d
] - build: fix arm64 cross-compilation bug on non-arm machines (Mahdi Sharifi) #52559d5cd468ce8
] - build,tools,node-api: fix building node-api tests for Windows Debug (Vladimir Morozov) #52632910533fcfd
] - crypto: simplify assertions in Safe*Print (David Benjamin) #4970961e1ac0b8c
] - crypto: enable NODE_EXTRA_CA_CERTS with BoringSSL (Shelley Vohr) #522176e98eee256
] - deps: upgrade npm to 10.7.0 (npm team) #5276727a5f9418c
] - deps: V8: cherry-pick500de8b
(Richard Lau) #526763b422ddcea
] - deps: update corepack to 0.28.0 (Node.js GitHub Bot) #52616d40e4d4c42
] - deps: update ada to 2.7.8 (Node.js GitHub Bot) #525175b52a4870a
] - deps: update icu to 75.1 (Node.js GitHub Bot) #5257380cbe72c1f
] - deps: update undici to 6.13.0 (Node.js GitHub Bot) #524939a44059055
] - deps: update zlib to 1.3.0.1-motley-7d77fb7 (Node.js GitHub Bot) #52516d67a9a5360
] - deps: update minimatch to 9.0.4 (Node.js GitHub Bot) #525248738b89971
] - deps: upgrade npm to 10.5.2 (npm team) #524588e4fd2842b
] - deps,src: simplify base64 encoding (Daniel Lemire) #527143c37ce5710
] - (SEMVER-MINOR) dns: add order option and support ipv6first (Paolo Insogna) #524923987a28a9e
] - doc: update process.versions properties (ishabi) #52736c0b58e07f1
] - doc: remove mold use on mac for speeding up build (Cong Zhang) #522529a032cf6e2
] - doc: remove relative limitation to pm (Rafael Gonzaga) #5264890c6e77238
] - doc: fix info string causing duplicated code blocks (Mathieu Leenhardt) #526604d577fa048
] - doc: add .gitattributes for md files (Hüseyin Açacak) #5216104c8e110e5
] - doc: run license-builder (github-actions[bot]) #526313552829594
] - doc: add info on contributor spotlight program (Michael Dawson) #52598eeb80ad836
] - doc: correct unsafe URL example in http docs (Malte Legenhausen) #52555c83526a688
] - doc: replace U+00A0 with U+0020 (Luigi Pinca) #5259031831e9db8
] - doc: sort options alphabetically (Luigi Pinca) #52589a93f5d4aaa
] - doc: correct stream.finished changes (KaKa) #5255127ffa35540
] - doc: add RedYetiDev to triage team (Aviv Keller) #5255663cc2b870e
] - doc: fix issue detected in markdown lint update (Rich Trott) #525667e93c4892b
] - doc: update test runner coverage limitations (Moshe Atlow) #525153026401be1
] - events,doc: mark CustomEvent as stable (Daeyeon Jeong) #52618c6e0fe2f22
] - fs: allow setting Stat date properties (Nicolò Ribaudo) #52708f23fa1de72
] - fs: fix read / readSync positional offset types (Ruy Adorno) #52603a7e03d301a
] - fs: fixes recursive fs.watch crash on Linux when deleting files (Matteo Collina) #52349d5ecb6cd00
] - http2: fix excessive CPU usage when usingallowHTTP1=true
(Eugene) #52713d1adc9b140
] - lib: enforce ASCII order in error code imports (Antoine du Hamel) #526259ffdcade37
] - lib: use predefined variable instead of bit operation (Deokjin Kim) #52580fdcde845ee
] - lib: refactor lazy loading of undici for fetch method (Victor Chen) #52275f6145aa2ca
] - lib: convert WeakMaps in cjs loader with private symbol properties (Chengzhong Wu) #52095014bf01efc
] - lib: replace string prototype usage with alternatives (Aviv Keller) #52440dc399ddd03
] - lib, doc: rename readme.md to README.md (Aviv Keller) #5247164428dc1c9
] - (SEMVER-MINOR) lib, url: add awindows
option to path parsing (Aviv Keller) #525099b2b6abb62
] - lib,src: iterate module requests of a module wrap in JS (Chengzhong Wu) #52058896a80e366
] - meta: standardize regex (Aviv Keller) #5269320c07e922e
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #52633e70d8a4fa9
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #5245720ab8f2a88
] - module: support ESM detection in the CJS loader (Joyee Cheung) #52047544c602b75
] - module: skip NODE_COMPILE_CACHE when policy is enabled (Joyee Cheung) #525773df3afc284
] - module: detect ESM syntax by trying to recompile as SourceTextModule (Joyee Cheung) #524134d77fd2c46
] - (SEMVER-MINOR) module: implement NODE_COMPILE_CACHE for automatic on-disk code caching (Joyee Cheung) #525359794d21b07
] - module: fix submodules loaded by require() and import() (Joyee Cheung) #52487b00766d9e7
] - module: tidy code and comments (Jacob Smith) #52437d79ae74f71
] - (SEMVER-MINOR) net: add CLI option for autoSelectFamilyAttemptTimeout (Paolo Insogna) #52474b17cfea289
] - node-api: address coverity report (Michael Dawson) #525841fca8baac1
] - node-api: copy external type tags when they are set (Niels Martignène) #52426d086ab42a1
] - quic: address recent coverity warnings (Michael Dawson) #52647fb4edf70cf
] - quic: rework TLSContext, additional cleanups (James M Snell) #513400c58d0319b
] - src: remove misplaced windows code under posix guard in node.cc (Ali Hassan) #52545e20d2f1de3
] - src: cast to v8::Value before using v8::EmbedderGraph::V8Node (Joyee Cheung) #5263843fa6a1a45
] - (SEMVER-MINOR) src: addstring_view
overload to snapshot FromBlob (Anna Henningsen) #52595a56faff4d0
] - src: parse inspector profiles with simdjson (Joyee Cheung) #51783ac04c6434a
] - src: remove regex usage for env file parsing (IlyasShabi) #52406f283d27285
] - src: fix loadEnvFile ENOENT error (mathis-west-1) #52438c6fe433d42
] - src,permission: throw async errors on async APIs (Rafael Gonzaga) #527309f9eca965a
] - stream: update ongoing promise in async iterator return() method (Mattias Buelens) #52657d568a9a38e
] - test: marktest-error-serdes
as flaky (Antoine du Hamel) #5273945f7002b90
] - test: mark test as flaky (Michael Dawson) #5267110596e20e8
] - test: fix backtick usage in docs (Aviv Keller) #52643b2f754c9f1
] - test: skip test-fs-watch-recursive-delete.js on IBM i (Abdirahim Musse) #52645ed080d868d
] - test: ensure that all worker servers are ready (Luigi Pinca) #52563c8c61737e4
] - test: fix test-tls-ticket-cluster.js (Hüseyin Açacak) #5243118aa5d6640
] - test: split wasi poll test for windows (Hüseyin Açacak) #52538e34e0a9ba1
] - test: write tests for assertIsArray http2 util (Sinan Sonmez (Chaush)) #52511e247a61d15
] - (SEMVER-MINOR) test_runner: add --test-skip-pattern cli option (Aviv Keller) #52529e066ba2ae4
] - test_runner: better error handing for test hook (Alex Yang) #52401328755341d
] - test_runner: don't exceed call stack when filtering (Colin Ihrig) #52488b4ccb6c626
] - test_runner: move end of work check to finalize() (Colin Ihrig) #524882ef9380472
] - tools: update lint-md-dependencies to rollup@4.17.0 (Node.js GitHub Bot) #52729db421bdefc
] - tools: take co-authors into account infind-inactive-collaborators
(Antoine du Hamel) #5266901103a85cb
] - tools: fix invalid escape sequence in mkssldef (Michaël Zasso) #52624382d951b01
] - tools: update lint-md-dependencies to rollup@4.15.0 (Node.js GitHub Bot) #52617f9ddd77ff3
] - tools: add lint rule to keep primordials in ASCII order (Antoine du Hamel) #52592552642a498
] - tools: update lint-md-dependencies (Rich Trott) #52581df61feb655
] - tools: fix heading spaces for osx-entitlements.plist (Jackson Tian) #525616b4bbfbb1f
] - tools: update lint-md-dependencies to rollup@4.14.2 vfile-reporter@8.1.1 (Node.js GitHub Bot) #525184e5ce3afb7
] - tools: use stylistic ESLint plugin for formatting (Michaël Zasso) #5071415c5686381
] - tools: update minimatch index path (Marco Ippolito) #525238ae1507ae1
] - tools: add a linter for README lists (Antoine du Hamel) #524760b970316bc
] - typings: fix invalid JSDoc declarations (Yagiz Nizipli) #526599b18df9dcb
] - (SEMVER-MINOR) url: implement parse method for safer URL parsing (Ali Hassan) #52280d33131af3a
] - vm: fix ASCII-betical order (Aviv Keller) #52686v22.0.0
: 2024-04-24, Version 22.0.0 (Current), @RafaelGSS and @marco-ippolitoCompare Source
We're excited to announce the release of Node.js 22!
Highlights include require()ing ESM graphs, WebSocket client, updates of the V8 JavaScript engine, and more!
As a reminder, Node.js 22 will enter long-term support (LTS) in October, but until then, it will be the "Current" release for the next six months.
We encourage you to explore the new features and benefits offered by this latest release and evaluate their potential impact on your applications.
Other Notable Changes
25c79f3331
] - esm: drop support for import assertions (Nicolò Ribaudo) #52104818c10e86d
] - lib: improve perf ofAbortSignal
creation (Raz Luvaton) #524084f68c7c1c9
] - watch: mark as stable (Moshe Atlow) #5207402b0bc01fe
] - (SEMVER-MAJOR) deps: update V8 to 12.4.254.14 (Michaël Zasso) #52465c975384264
] - (SEMVER-MAJOR) lib: enable WebSocket by default (Aras Abbasi) #515941abff07392
] - (SEMVER-MAJOR) stream: bump default highWaterMark (Robert Nagy) #520371a5acd0638
] - (SEMVER-MAJOR) v8: enable maglev on supported architectures (Keyhan Vakil) #51360128c60d906
] - (SEMVER-MINOR) cli: implementnode --run <script-in-package-json>
(Yagiz Nizipli) #52190151d365ad1
] - (SEMVER-MINOR) fs: expose glob and globSync (Moshe Atlow) #519125f7fad2605
] - (SEMVER-MINOR) module: support require()ing synchronous ESM graphs (Joyee Cheung) #51977Semver-Major Commits
2b1e7c2fcb
] - (SEMVER-MAJOR) build: compile with C++20 support on Windows (StefanStojanovic) #5246512d00f1479
] - (SEMVER-MAJOR) build: reset embedder string to "-node.0" (Michaël Zasso) #524655f08e11a3c
] - (SEMVER-MAJOR) build: reset embedder string to "-node.0" (Michaël Zasso) #5229394f0369d1d
] - (SEMVER-MAJOR) build: reset embedder string to "-node.0" (Michaël Zasso) #5136258674cd1d8
] - (SEMVER-MAJOR) build: reset embedder string to "-node.0" (Michaël Zasso) #5011560e836427e
] - (SEMVER-MAJOR) console: treat non-strings as separate argument in console.assert() (Jacob Hummer) #49722d62ab3a1ef
] - (SEMVER-MAJOR) crypto: runtime deprecate hmac constructor (Marco Ippolito) #52071de0602d190
] - (SEMVER-MAJOR) crypto: runtime deprecate Hash constructor (Marco Ippolito) #51880215f4d04b7
] - (SEMVER-MAJOR) crypto: move createCipher and createDecipher to eol (Marco Ippolito) #5097330801b8aaf
] - (SEMVER-MAJOR) deps: V8: cherry-pickcd10ad7
(Joyee Cheung) #52465521b629ab1
] - (SEMVER-MAJOR) deps: V8: revert CL5331688
(Michaël Zasso) #524653795e97e6c
] - (SEMVER-MAJOR) deps: patch V8 to support compilation with MSVC (StefanStojanovic) #524655bde9e677d
] - (SEMVER-MAJOR) deps: silence internal V8 deprecation warning (Michaël Zasso) #5246546e628c6f2
] - (SEMVER-MAJOR) deps: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) #52465f824e40a82
] - (SEMVER-MAJOR) deps: remove usage of a C++20 feature from V8 (Michaël Zasso) #52465d2c84c9a13
] - (SEMVER-MAJOR) deps: avoid compilation error with ASan (Michaël Zasso) #5246595d6045bdb
] - (SEMVER-MAJOR) deps: disable V8 concurrent sparkplug compilation (Michaël Zasso) #5246500f55f5743
] - (SEMVER-MAJOR) deps: silence irrelevant V8 warning (Michaël Zasso) #52465764085aa66
] - (SEMVER-MAJOR) deps: always define V8_EXPORT_PRIVATE as no-op (Michaël Zasso) #5246502b0bc01fe
] - (SEMVER-MAJOR) deps: update V8 to 12.4.254.14 (Michaël Zasso) #524650ec50a19dd
] - (SEMVER-MAJOR) deps: V8: cherry-pickcd10ad7
(Joyee Cheung) #52293021b0b7dee
] - (SEMVER-MAJOR) deps: V8: backportc4be0a9
(Richard Lau) #52293681aaf85c7
] - (SEMVER-MAJOR) deps: silence internal V8 deprecation warning (Michaël Zasso) #52293c563a1c4e4
] - (SEMVER-MAJOR) deps: patch V8 to support compilation with MSVC (Stefan Stojanovic) #5229311e94b9987
] - (SEMVER-MAJOR) deps: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) #52293856163e23c
] - (SEMVER-MAJOR) deps: remove usage of a C++20 feature from V8 (Michaël Zasso) #52293b530214127
] - (SEMVER-MAJOR) deps: avoid compilation error with ASan (Michaël Zasso) #522938054f69dd9
] - (SEMVER-MAJOR) deps: disable V8 concurrent sparkplug compilation (Michaël Zasso) #52293dee908be42
] - (SEMVER-MAJOR) deps: silence irrelevant V8 warning (Michaël Zasso) #52293cf069414ee
] - (SEMVER-MAJOR) deps: always define V8_EXPORT_PRIVATE as no-op (Michaël Zasso) #52293cc5792dd85
] - (SEMVER-MAJOR) deps: update V8 to 12.3.219.16 (Michaël Zasso) #5229361a0d3b4c4
] - (SEMVER-MAJOR) deps: V8: backportc4be0a9
(Richard Lau) #51362f55380a725
] - (SEMVER-MAJOR) deps: V8: cherry-pickf8d5e57
(Richard Lau) #51362b9d806a2dd
] - (SEMVER-MAJOR) deps: patch V8 to support compilation with MSVC (StefanStojanovic) #5136263b58bc17b
] - (SEMVER-MAJOR) deps: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) #5136286056353c4
] - (SEMVER-MAJOR) deps: remove usage of a C++20 feature from V8 (Michaël Zasso) #513622e0efc1c8d
] - (SEMVER-MAJOR) deps: avoid compilation error with ASan (Michaël Zasso) #5136259e6f62e34
] - (SEMVER-MAJOR) deps: disable V8 concurrent sparkplug compilation (Michaël Zasso) #513620423f7e27e
] - (SEMVER-MAJOR) deps: silence irrelevant V8 warning (Michaël Zasso) #51362f36620806d
] - (SEMVER-MAJOR) deps: always define V8_EXPORT_PRIVATE as no-op (Michaël Zasso) #5136209a8440b45
] - (SEMVER-MAJOR) deps: update V8 to 12.2.281.27 (Michaël Zasso) #513620da3beebfc
] - (SEMVER-MAJOR) deps: V8: cherry-pickde611e6
(Keyhan Vakil) #50115b982335637
] - (SEMVER-MAJOR) deps: V8: cherry-pick0fd478b
(Joyee Cheung) #50115481a90116c
] - (SEMVER-MAJOR) deps: V8: cherry-pick0f9ebbc
(Chengzhong Wu) #50115782addbdc3
] - (SEMVER-MAJOR) deps: V8: cherry-pick8f0b946
(Lu Yahan) #50115b682e7f540
] - (SEMVER-MAJOR) deps: V8: cherry-pickf7d000a
(Luke Albao) #50115a60090c52f
] - (SEMVER-MAJOR) deps: V8: cherry-pick2590224
(Joyee Cheung) #501158441d1fc18
] - (SEMVER-MAJOR) deps: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) #50115e8e9bbd7a9
] - (SEMVER-MAJOR) deps: remove usage of a C++20 feature from V8 (Michaël Zasso) #50115785d5cd006
] - (SEMVER-MAJOR) deps: avoid compilation error with ASan (Michaël Zasso) #501157071c1dafd
] - (SEMVER-MAJOR) deps: disable V8 concurrent sparkplug compilation (Michaël Zasso) #50115d1d60b297d
] - (SEMVER-MAJOR) deps: silence irrelevant V8 warning (Michaël Zasso) #501155b240c62f9
] - (SEMVER-MAJOR) deps: always define V8_EXPORT_PRIVATE as no-op (Michaël Zasso) #50115d8c97e4857
] - (SEMVER-MAJOR) deps: update V8 to 11.9.169.7 (Michaël Zasso) #50115b9df88a8c2
] - (SEMVER-MAJOR) doc: runtime deprecate flag --trace-atomics-wait (marco-ippolito) #511799ba5df30b4
] - (SEMVER-MAJOR) doc: bump FreeBSD experimental support to 13.2 (Michaël Zasso) #51231900d79caf2
] - (SEMVER-MAJOR) doc: add migration paths for deprecated utils (Marco Ippolito) #504888206f6bb7f
] - (SEMVER-MAJOR) fs: runtime deprecate fs.Stats constructor (Marco Ippolito) #52067c14133503a
] - (SEMVER-MAJOR) fs: use private fields instead of symbols forDir
(Jungku Lee) #51037abbdc3efaa
] - (SEMVER-MAJOR) fs: make stats date fields lazy (Yagiz Nizipli) #509084b76ccea95
] - (SEMVER-MAJOR) http: preserve raw header duplicates in writeHead after setHeader calls (Tim Perry) #50394c975384264
] - (SEMVER-MAJOR) lib: enable WebSocket by default (Aras Abbasi) #51594351495e938
] - (SEMVER-MAJOR) lib,test: handle new Iterator global (Michaël Zasso) #51362a8b21fdc90
] - (SEMVER-MAJOR) process: wait for'exit'
before printing result (Antoine du Hamel) #52172582ff5037c
] - (SEMVER-MAJOR) src: update NODE_MODULE_VERSION to 127 (Michaël Zasso) #52465c5c4b50260
] - (SEMVER-MAJOR) src: update NODE_MODULE_VERSION to 126 (Michaël Zasso) #52293d248639285
] - (SEMVER-MAJOR) src: use supported API to get stalled TLA messages (Michaël Zasso) #51362d34b02db4c
] - (SEMVER-MAJOR) src: update default V8 platform to override functions with location (Etienne Pierre-Doray) #51362d9c47e9b5f
] - (SEMVER-MAJOR) src: add missing TryCatch (Michaël Zasso) #513625cddd3b2d8
] - (SEMVER-MAJOR) src: update NODE_MODULE_VERSION to 124 (Michaël Zasso) #513621528846ada
] - (SEMVER-MAJOR) src: use non-deprecated v8::Uint8Array::kMaxLength (Michaël Zasso) #501157166986626
] - (SEMVER-MAJOR) src: adapt to v8::Exception API change (Michaël Zasso) #501154782818020
] - (SEMVER-MAJOR) src: use non-deprecated version of CreateSyntheticModule (Michaël Zasso) #501152cff0ce411
] - (SEMVER-MAJOR) src: update NODE_MODULE_VERSION to 122 (Michaël Zasso) #501151abff07392
] - (SEMVER-MAJOR) stream: bump default highWaterMark (Robert Nagy) #520379efc84a2cb
] - (SEMVER-MAJOR) test: mark test-worker-arraybuffer-zerofill as flaky (Michaël Zasso) #5136284c2e712eb
] - (SEMVER-MAJOR) test: mark some GC-related tests as flaky (Michaël Zasso) #51362cdc4437b87
] - (SEMVER-MAJOR) test: allow slightly more diff in memory leak test (Michaël Zasso) #51362515b007fae
] - (SEMVER-MAJOR) test: replace always-opt flag with alway-turbofan (Michaël Zasso) #501152341805eb2
] - (SEMVER-MAJOR) test: remove tests that create very large buffers (Michaël Zasso) #50115941cef5636
] - (SEMVER-MAJOR) test: adapt to new V8 trusted memory spaces (Michaël Zasso) #5011529de7f82cd
] - (SEMVER-MAJOR) test_runner: omit filtered test from output (Colin Ihrig) #5222100dc6d9d97
] - (SEMVER-MAJOR) test_runner: improve--test-name-pattern
to allow matching single test (Michał Drobniak) #515775def8019d5
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 12.4 (Michaël Zasso) #52465c22793d050
] - (SEMVER-MAJOR) tools: roughly port v8_abseil to gyp (Michaël Zasso) #51362ffb0302f0c
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 12.2 (Michaël Zasso) #51362aadea12440
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 12.1 (Michaël Zasso) #513627784773967
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 12.0 (Michaël Zasso) #513629fe0424baa
] - (SEMVER-MAJOR) trace_events: use private fields instead of symbols forTracing
(Jungku Lee) #51180e96cd25007
] - (SEMVER-MAJOR) util: runtime deprecate util.log (Marco Ippolito) #504886cf20d5e43
] - (SEMVER-MAJOR) util: runtime deprecate util.isUndefined (Marco Ippolito) #5048809e424921f
] - (SEMVER-MAJOR) util: runtime deprecate util.isSymbol (Marco Ippolito) #5048880b6bfd4e9
] - (SEMVER-MAJOR) util: runtime deprecate util.isString (Marco Ippolito) #50488d419edded9
] - (SEMVER-MAJOR) util: runtime deprecate util.isRegExp (Marco Ippolito) #50488e0b8de78ed
] - (SEMVER-MAJOR) util: runtime deprecate util.isPrimitive (Marco Ippolito) #504885478e1129a
] - (SEMVER-MAJOR) util: runtime deprecate util.isObject (Marco Ippolito) #50488b05b1dd541
] - (SEMVER-MAJOR) util: runtime deprecate util.isNumber (Marco Ippolito) #504885af9bf5f6a
] - (SEMVER-MAJOR) util: runtime deprecate util.isNullOrUndefined (Marco Ippolito) #50488860a10e10e
] - (SEMVER-MAJOR) util: runtime deprecate util.isNull (Marco Ippolito) #5048870330f5c2b
] - (SEMVER-MAJOR) util: runtime deprecate util.isFunction (Marco Ippolito) #504887c69c33acc
] - (SEMVER-MAJOR) util: runtime deprecate util.isError (Marco Ippolito) #50488a0c5b871a9
] - (SEMVER-MAJOR) util: runtime deprecate util.isDate (Marco Ippolito) #504883c670cb15d
] - (SEMVER-MAJOR) util: runtime deprecation util.isBuffer (Marco Ippolito) #50488c17a448ca9
] - (SEMVER-MAJOR) util: runtime deprecation util.isBoolean (Marco Ippolito) #50488fbb2f891aa
] - (SEMVER-MAJOR) util: runtime deprecate util.isArray (Marco Ippolito) #5048822d8062e42
] - (SEMVER-MAJOR) util: runtime deprecation util._extend (Marco Ippolito) #504881a5acd0638
] - (SEMVER-MAJOR) v8: enable maglev on supported architectures (Keyhan Vakil) #51360Semver-Minor Commits
128c60d906
] - (SEMVER-MINOR) cli: implementnode --run <script-in-package-json>
(Yagiz Nizipli) #52190f69946b905
] - (SEMVER-MINOR) deps: update simdutf to 5.0.0 (Daniel Lemire) #52138828ad42eee
] - (SEMVER-MINOR) deps: update undici to 6.3.0 (Node.js GitHub Bot) #5146205f8172188
] - (SEMVER-MINOR) deps: update undici to 6.2.1 (Node.js GitHub Bot) #51278a0c466810a
] - (SEMVER-MINOR) doc: deprecate fs.Stats public constructor (Marco Ippolito) #51879151d365ad1
] - (SEMVER-MINOR) fs: expose glob and globSync (Moshe Atlow) #519125f7fad2605
] - (SEMVER-MINOR) module: support require()ing synchronous ESM graphs (Joyee Cheung) #51977009665fb56
] - (SEMVER-MINOR) report: add--report-exclude-network
option (Ethan Arrowood) #5164580f86e5d02
] - (SEMVER-MINOR) src: add C++ ProcessEmitWarningSync() (Joyee Cheung) #5197778be0d0f1c
] - (SEMVER-MINOR) src: add uv_get_available_memory to report and process (theanarkh) #52023b34512e38e
] - (SEMVER-MINOR) src: preload function for Environment (Cheng Zhao) #515397d258db1d7
] - (SEMVER-MINOR) stream: support typed arrays (IlyasShabi) #518665276c0d5d4
] - (SEMVER-MINOR) test_runner: add suite() (Colin Ihrig) #5212784de97a61e
] - (SEMVER-MINOR) test_runner: support forced exit (Colin Ihrig) #52038aac5ad901d
] - (SEMVER-MINOR) test_runner: addtest:complete
event to reflect execution order (Moshe Atlow) #519099a1e01c4ce
] - (SEMVER-MINOR) util: support array of formats in util.styleText (Marco Ippolito) #520407f2d61f82a
] - (SEMVER-MINOR) v8: implement v8.queryObjects() for memory leak regression testing (Joyee Cheung) #51927d1d5da22e4
] - (SEMVER-MINOR) vm: harden module type checks (Chengzhong Wu) #52162Semver-Patch Commits
a760dadec3
] - benchmark: add AbortSignal.abort benchmarks (Raz Luvaton) #5240847c934e464
] - benchmark: conditionally use spawn with taskset for cpu pinning (Ali Hassan) #52253dde0cffb2e
] - benchmark: add toNamespacedPath bench (Rafael Gonzaga) #52236bda66ad711
] - benchmark: add style-text benchmark (Rafael Gonzaga) #5200421211a3fa9
] - buffer: improvebtoa
performance (Yagiz Nizipli) #524276f504b71ac
] - buffer: use simdutf foratob
implementation (Yagiz Nizipli) #523810ce7365856
] - build: temporary disable ubsan (Rafael Gonzaga) #525604e278f0253
] - build: speed up compilation of some V8 files (Michaël Zasso) #52083ba06c5c509
] - build,tools: add test-ubsan ci (Rafael Gonzaga) #46297562369f348
] - child_process: use internal addAbortListener (Chemi Atlow) #520818f61b658de
] - crypto: deprecate implicitly shortened GCM tags (Tobias Nießen) #5234508609b5222
] - crypto: make timingSafeEqual faster for Uint8Array (Tobias Nießen) #523419f939f5af7
] - crypto: rejectEd25519
/Ed448 in Sign/Verify prototypes (Filip Skokan) #523402241e8c5b3
] - crypto: validate RSA-PSS saltLength in subtle.sign and subtle.verify (Filip Skokan) #522626dd1c75f4a
] - crypto: fixinput
validation incrypto.hash
(Antoine du Hamel) #52070a1d48f4a26
] - deps: update simdutf to 5.2.4 (Node.js GitHub Bot) #5247308ff4a0c9d
] - deps: update nghttp2 to 1.61.0 (Node.js GitHub Bot) #52395cf629366b9
] - deps: update simdutf to 5.2.3 (Yagiz Nizipli) #52381ad86a12964
] - deps: upgrade npm to 10.5.1 (npm team) #5235145cc32c9c6
] - deps: update c-ares to 1.28.1 (Node.js GitHub Bot) #5228538161c38d9
] - deps: update zlib to 1.3.0.1-motley-24c07df (Node.js GitHub Bot) #521991264414700
] - deps: update simdjson to 3.8.0 (Node.js GitHub Bot) #52124f6996ee150
] - deps: V8: backportc4be0a9
(Richard Lau) #521830d4bc4c40e
] - deps: V8: cherry-pickf8d5e57
(Richard Lau) #5218370a05103c8
] - deps: update zlib to 1.3.0.1-motley-24342f6 (Node.js GitHub Bot) #521234c3e9659ed
] - deps: update corepack to 0.26.0 (Node.js GitHub Bot) #520270b4cdb4b42
] - deps: update ada to 2.7.7 (Node.js GitHub Bot) #52028b241a1d0ae
] - deps: update simdutf to 4.0.9 (Node.js GitHub Bot) #5165536dcd399c0
] - deps: upgrade libuv to 1.48.0 (Santiago Gimeno) #516978cf313cd72
] - deps: update undici to 6.6.0 (Node.js GitHub Bot) #51630dd4767f99f
] - deps: update undici to 6.4.0 (Node.js GitHub Bot) #515278362caa7d8
] - dgram: use internal addAbortListener (Chemi Atlow) #520814f3cf4e89a
] - diagnostics_channel: early-exit tracing channel trace methods (Stephen Belanger) #51915204018bba6
] - doc: deprecate --experimental-policy (RafaelGSS) #52602d32a914ac7
] - doc: add lint-js-fix into BUILDING.md (jakecastelli) #52290411503bacd
] - doc: remove Internet Explorer mention in BUILDING.md (Rich Trott) #52455e9ccf5aba2
] - doc: accommodate upcoming stricter .md linting (Rich Trott) #52454b4186ec2c1
] - doc: add Rafael to steward list (Rafael Gonzaga) #524527b01bfb2be
] - doc: correct naming convention in C++ style guide (Mohammed Keyvanzadeh) #52424c82f3c9e80
] - doc: updateprocess.execArg
example to be more useful (Jacob Smith) #52412655b327a4d
] - doc: call out http(s).globalAgent default (mathis-west-1) #523922c77be5488
] - doc: update the location ofbuild_with_cmake
(Emmanuel Ferdman) #523567dd514f2db
] - doc: reserve 125 for Electron 31 (Shelley Vohr) #52379756acd0877
] - doc: use consistent plural form of "index" (Rich Trott) #52373ba07e4e5e6
] - doc: fix typo in cli.md (Daeyeon Jeong) #52388461d9d665d
] - doc: add Rafael to sec release stewards (Rafael Gonzaga) #52354d0c364a844
] - doc: document missing options of events.on (Chemi Atlow) #52080a63261cf2c
] - doc: add missing space (Augustin Mauroy) #52360dd711d221a
] - doc: add tips about vcpkg cause build faild on windows (Cong Zhang) #521814df34cf6dd
] - doc: replace "below" with "following" (Rich Trott) #52315d9aa33fdbf
] - doc: fix email pattern to be wrapped with<<
instead of single<
(Raz Luvaton) #52284903f28e684
] - doc: update release gpg keyserver (marco-ippolito) #52257fd55458770
] - doc: add release key for marco-ippolito (marco-ippolito) #5225727493a1dd7
] - doc: fix arrow vertical alignment in HTML version (Akash Yeole) #52193af48641993
] - doc: move TSC members from regular to emeritus (Michael Dawson) #52209fa13ed6d79
] - doc: add section explaining todo tests (Colin Ihrig) #52204312ebd97c2
] - doc: editChildProcess
'message'
event docs (theanarkh) #52154f1635f442f
] - doc: quote test_runner glob parameters (Fabian Meyer) #52201fc029181df
] - doc: add mold to speeding up section (Cong Zhang) #521798bd3cb2f8c
] - doc: http event order correction (wh0) #51464a7f170e45a
] - doc: move gabrielschulhof to TSC emeritus (Gabriel Schulhof) #52192305375ac16
] - doc: fix--env-file
docs for valid quotes for defining values (Gabriel Bota) #521573fcaf7b900
] - doc: clarify what is supported in NODE_OPTIONS (Michael Dawson) #520764fe87357f3
] - doc: fix typos in maintaining-dependencies.md (RoboSchmied) #52160f1949ac1ae
] - doc: add spec for contains module syntax (Geoffrey Booth) #52059707155424b
] - doc: optimize the doc about Unix abstract socket (theanarkh) #520438a191e4e6a
] - doc: update pnpm link (Superchupu) #52113454d0806a1
] - doc: remove ableist language from crypto (Jamie King) #52063dafe004703
] - doc: update collaborator email (Ruy Adorno) #520888824adb031
] - doc: state that removing npm is a non-goal (Geoffrey Booth) #51951b360532f1a
] - doc: mention NodeSource in RafaelGSS steward list (Rafael Gonzaga) #5205757d2e4881c
] - doc: remove ArrayBuffer from crypto.hash() data parameter type (fengmk2) #52069e11c1d2315
] - doc: add some commonly used lables up gront (Michael Dawson) #520068f9f5db1e8
] - doc: document thatconst c2 = vm.createContext(c1); c1 === c2
is true (Daniel Kaplan) #51960d78a565713
] - doc: clarify what moderation issues are for (Antoine du Hamel) #519904cac07c931
] - doc: add Hemanth HM mention to v21.7.0 changelog (Rafael Gonzaga) #5200873025c4dec
] - doc: add UlisesGascon as a collaborator (Ulises Gascón) #51991999c6b34fb
] - doc: test for cli options (Aras Abbasi) #51623edd6190836
] - doc: deprecate hmac public constructor (Marco Ippolito) #5188125c79f3331
] - esm: drop support for import assertions (Nicolò Ribaudo) #52104d619aab575
] - events: rename high & low watermark for consistency (Chemi Atlow) #52080e263946c2e
] - events: extract addAbortListener for safe internal use (Chemi Atlow) #5208140ef2da8d6
] - events: remove abort listener from signal inon
(Neal Beeken) #5109161e5de1268
] - fs: refactor maybeCallback function (Yagiz Nizipli) #5212939f1b899cd
] - fs: fix edge case in readFileSync utf8 fast path (Richard Lau) #52101639c096004
] - fs: validate fd from cpp onfchown
(Yagiz Nizipli) #520519ac1fe05d7
] - fs: validate fd from cpp onclose
(Yagiz Nizipli) #520513ec20f25df
] - fs: validate file mode from cpp (Yagiz Nizipli) #520508c0b723ccb
] - fs,permission: make handling of buffers consistent (Tobias Nießen) #523483fc8d2200e
] - http2: fix h2-over-h2 connection proxying (Tim Perry) #52368b9d8a14a03
] - http2: use internal addAbortListener (Chemi Atlow) #52081818c10e86d
] - lib: improve perf ofAbortSignal
creation (Raz Luvaton) #524083f5ff8dc20
] - lib: .load .save add proper error message when no file passed (Thomas Mauran) #522250a252c23d9
] - lib: fix type error for _refreshLine (Jackson Tian) #5213314de082ab4
] - lib: emit listening event once when call listen twice (theanarkh) #521194e9ce7c035
] - lib: make sure clear the old timer in http server (theanarkh) #5211820525f14b9
] - lib: fix listen with handle in cluster worker (theanarkh) #520568df54481f4
] - meta: bump actions/download-artifact from 4.1.3 to 4.1.4 (dependabot[bot]) #52314bcc102147a
] - meta: bump rtCamp/action-slack-notify from 2.2.1 to 2.3.0 (dependabot[bot]) #523134e7e0ef9c3
] - meta: bump github/codeql-action from 3.24.6 to 3.24.9 (dependabot[bot]) #5231214a39881b8
] - meta: bump actions/cache from 4.0.1 to 4.0.2 (dependabot[bot]) #523112f8f90dadb
] - meta: bump actions/setup-python from 5.0.0 to 5.1.0 (dependabot[bot]) #5231095efdaf01a
] - meta: bump codecov/codecov-action from 4.1.0 to 4.1.1 (dependabot[bot]) #5230824c1a8e739
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #5230060dcfad91e
] - meta: pass Codecov upload token to codecov action (Michaël Zasso) #51982db1746182b
] - module: disallow CJS <-> ESM edges in a cycle from require(esm) (Joyee Cheung) #52264d6b57f6629
] - module: centralize SourceTextModule compilation for builtin loader (Joyee Cheung) #52291f4a0a3b04b
] - module: warn on detection in typeless package (Geoffrey Booth) #521688bc745944e
] - module: eliminate performance cost of detection for cjs entry (Geoffrey Booth) #5209363d04d4d80
] - module: fix detect-module not retrying as esm for cjs-only errors (Geoffrey Booth) #52024575ced8139
] - module: print location of unsettled top-level await in entry points (Joyee Cheung) #51999075c95f61f
] - module: refactor ESM loader initialization and entry point handling (Joyee Cheung) #5199945f0dd0192
] - module,win: fix long path resolve (Stefan Stojanovic) #51097d89fc73d45
] - net: use internal addAbortListener (Chemi Atlow) #52081f0e6acde2d
] - node-api: make tsfn accept napi_finalize once more (Gabriel Schulhof) #51801ff93f3e1a8
] - readline: use internal addAbortListener (Chemi Atlow) #520814a6ca7a1d4
] - src: remove erroneous CVE-2024-27980 revert option (Tobias Nießen) #5254364b67779f7
] - src: disallow direct .bat and .cmd file spawning (Ben Noordhuis) nodejs-private/node-private#5609ef724bc81
] - src: update branch name in node_revert.h (Tobias Nießen) #52390ec1550407b
] - src: stop usingv8::BackingStore::Reallocate
(Michaël Zasso) #52292681b0a3df3
] - src: address coverity warning in module_wrap.cc (Michael Dawson) #5214304319228e0
] - src: fix move after use reported by coverity (Michael Dawson) #521410eb2b727f6
] - src: return a number from process.constrainedMemory() constantly (Chengzhong Wu) #52039bec9b5fccc
] - src: use dedicated routine to compile function for builtin CJS loader (Joyee Cheung) #520161f193165b9
] - src: fix reading empty string views in Blob[De]serializer (Joyee Cheung) #52000fb356b3305
] - src: refactor out FormatErrorMessage for error formatting (Joyee Cheung) #519991a8ae9d6c0
] - src: use callback-based array iteration in Blob (Joyee Cheung) #517585cd2ec8bd5
] - src: implement v8 array iteration using the new callback-based API (Joyee Cheung) #5175889a26b451e
] - src: fix node_version.h (Joyee Cheung) #50375c02de658a1
] - stream: make Duplex inherit destroy from Writable (Luigi Pinca) #5231863391e749d
] - stream: addnew
when constructingERR_MULTIPLE_CALLBACK
(haze) #52110a9528e87b9
] - stream: use internal addAbortListener (Chemi Atlow) #52081ee4fa77624
] - test: fix watch test with require not testing pid (Raz Luvaton) #5235305cb16dc1a
] - test: simplify ASan build checks (Michaël Zasso) #52430eb53121b77
] - test: fix Windows compiler warnings in overlapped-checker (Michaël Zasso) #524057dfa4750af
] - test: add test for skip+todo combinations (Colin Ihrig) #522045905596719
] - test: fix incorrect test fixture (Colin Ihrig) #52185bae14b7914
] - test: do not set concurrency on parallelized runs (Antoine du Hamel) #521770b676736a0
] - test: add missing cctest/test_path.cc (Yagiz Nizipli) #52148c714cda9a7
] - test: addspawnSyncAndAssert
util (Antoine du Hamel) #52132978d5a26c9
] - test: reduce flakiness of test-runner-output.mjs (Colin Ihrig) #52146afaf889775
] - test: skip test for dynamically linked OpenSSL (Richard Lau) #52542be75821a12
] - test: add test for using--print
with promises (Antoine du Hamel) #521374e109e5958
] - test: un-set test-emit-after-on-destroyed as flaky (Abdirahim Musse) #519953f8cc88009
] - test_runner: fix clearing final timeout in own callback (Ben Richeson) #5233252f8dcfccc
] - test_runner: make end of work check stricter (Colin Ihrig) #52326433bd1b04d
] - test_runner: fix recursive run (Moshe Atlow) #52322e57992ffb2
] - test_runner: hide new line when no error in spec reporter (Moshe Atlow) #52297ac9e5e7527
] - test_runner: improve describe.only behavior (Moshe Atlow) #522962c024cd24d
] - test_runner: disable highWatermark on TestsStream (Colin Ihrig) #522877c02486f1f
] - test_runner: run afterEach hooks in correct order (Colin Ihrig) #522396af4049810
] - test_runner: simplify test end time tracking (Colin Ihrig) #52182878047be0b
] - test_runner: simplify test start time tracking (Colin Ihrig) #521824648c83dbc
] - test_runner: don't await the same promise for each test (Colin Ihrig) #52185f9755f6f79
] - test_runner: emit diagnostics when watch mode drains (Moshe Atlow) #521304ba9f45d99
] - test_runner: ignore todo flag when running suites (Colin Ihrig) #521176f4d6011ea
] - test_runner: skip each hooks for skipped tests (Colin Ihrig) #5211505db979c01
] - test_runner: run top level tests in a microtask (Colin Ihrig) #5209297b2c5344d
] - test_runner: remove redundant report call (Colin Ihrig) #52089780d030bdf
] - test_runner: use internal addAbortListener (Chemi Atlow) #52081814fa1ae74
] - test_runner: use source maps when reporting coverage (Moshe Atlow) #520603c5764a0e2
] - test_runner: handle undefined test locations (Colin Ihrig) #52036328642bbb9
] - test_runner: use paths for test locations (Colin Ihrig) #520106d625fe616
] - test_runner: support source mapped test locations (Colin Ihrig) #52010592c6907bf
] - test_runner: avoid overwriting root start time (Colin Ihrig) #5202029b231763e
] - test_runner: abort unfinished tests on async error (Colin Ihrig) #519965d13419dbd
] - test_runner: run before hook immediately if test started (Moshe Atlow) #520038451990668
] - test_runner: add support for null and date value output (Malthe Borch) #51920423ad47e0f
] - tools: change inactive limit to 12 months (Yagiz Nizipli) #524250d1e64f64c
] - tools: update stale bot messaging (Wes Todd) #524235bae73df90
] - tools: update lint-md-dependencies to rollup@4.14.0 (Node.js GitHub Bot) #52398468cb99ba4
] - tools: update Ruff to v0.3.4 (Michaël Zasso) #5230267b9dda003
] - tools: run test-ubsan on ubuntu-latest (Michaël Zasso) #52375f1f32d89e0
] - tools: update lint-md-dependencies to rollup@4.13.2 (Node.js GitHub Bot) #52286d7aa8fc9da
] - Revert "tools: runbuild-windows
workflow only on source changes" (Michaël Zasso) #52320a3b1fc3f27
] - tools: use Python 3.12 in GitHub Actions workflows (Michaël Zasso) #52301021cf91208
] - tools: allow local updates for llhttp (Paolo Insogna) #520854d8602046e
] - tools: install npm PowerShell scripts on Windows (Luke Karrys) #52009081319d762
] - tools: update lint-md-dependencies to rollup@4.13.0 (Node.js GitHub Bot) #52122c43a944231
] - tools: fix error reported by coverity in js2c.cc (Michael Dawson) #52142f05b241f07
] - tools: sync ubsan workflow with asan (Michaël Zasso) #52152a21b15a14e
] - tools: update github_reporter to 1.7.0 (Node.js GitHub Bot) #52121d60a871db2
] - tools: remove gyp-next .github folder (Marco Ippolito) #520646ad5353764
] - tools: update gyp-next to 0.16.2 (Node.js GitHub Bot) #52062dab85bdc06
] - tools: install manpage to share/man for FreeBSD (Po-Chuan Hsieh) #51791cde37e7b63
] - tools: automate gyp-next update (Marco Ippolito) #52014925a464cb8
] - url: remove #context from URLSearchParams (Matt Cowley) #51520893e2cf22b
] - watch: fix some node argument not passed to watched process (Raz Luvaton) #52358fec7e505fc
] - watch: use internal addAbortListener (Chemi Atlow) #520814f68c7c1c9
] - watch: mark as stable (Moshe Atlow) #52074257f32296d
] - watch: batch file restarts (Moshe Atlow) #51992v21.7.3
: 2024-04-10, Version 21.7.3 (Current), @RafaelGSSCompare Source
This is a security release.
Notable Changes
child_process.spawn
without shell option enabled on WindowsCommits
9095c914ed
] - src: disallow direct .bat and .cmd file spawning (Ben Noordhuis) nodejs-private/node-private#562v21.7.2
: 2024-04-03, Version 21.7.2 (Current), @RafaelGSS prepared by @marco-ippolitoCompare Source
This is a security release.
Notable changes
Commits
3dfc10c851
] - deps: update undici to 6.11.1 (Node.js GitHub Bot) #52328aceea1c5e7
] - deps: update undici to 6.10.2 (Node.js GitHub Bot) #522275f0f96b275
] - deps: update llhttpConfiguration
📅 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.
7aee59e887
to1ec40432e6
1ec40432e6
to2a415f41e1
2a415f41e1
to8ad68717a2
View 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.Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.