
Notable changes: cli: * (SEMVER-MINOR) support `${pid}` placeholder in `--cpu-prof-name` (Haram Jeong) https://github.com/nodejs/node/pull/59072 crypto: * (SEMVER-MINOR) add `tls.setDefaultCACertificates()` (Joyee Cheung) https://github.com/nodejs/node/pull/58822 deps: * upgrade to openssl-3.5.1 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/59234 dns: * (SEMVER-MINOR) support max timeout (theanarkh) https://github.com/nodejs/node/pull/58440 doc: * update the instruction on how to verify releases (Antoine du Hamel) https://github.com/nodejs/node/pull/59113 esm: * (SEMVER-MINOR) unflag `--experimental-wasm-modules` (Guy Bedford) https://github.com/nodejs/node/pull/57038 http,https: * (SEMVER-MINOR) add built-in proxy support in http/https.request and `Agent` (Joyee Cheung) https://github.com/nodejs/node/pull/58980 net: * (SEMVER-MINOR) update net.blocklist to allow file save and file management (alphaleadership) https://github.com/nodejs/node/pull/58087 test: * (SEMVER-MINOR) move http proxy tests to test/client-proxy (Joyee Cheung) https://github.com/nodejs/node/pull/58980 worker: * (SEMVER-MINOR) add web locks api (ishabi) https://github.com/nodejs/node/pull/58666 PR-URL: https://github.com/nodejs/node/pull/59257
184 KiB
Node.js 24 ChangeLog
Current |
---|
24.5.0 24.4.1 24.4.0 24.3.0 24.2.0 24.1.0 24.0.2 24.0.1 24.0.0 |
- Other Versions
2025-07-31, Version 24.5.0 (Current), @aduh95
Notable Changes
Upgrade to OpenSSL 3.5
This release is distributed with OpenSSL 3.5.1, following the announcement that OpenSSL 3.5 will be supported until April 2030, while Node.js 24 will be supported until April 2028. Read more about OpenSSL support in their blog post: https://openssl-library.org/post/2025-02-20-openssl-3.5-lts/.
Contributed by Richard Lau in #58100.
Unflag --experimental-wasm-modules
Node.js supports both source phase imports and instance phase imports to WebAssembly modules and for WASM imports to JavaScript, in line with the current Phase 3 WebAssembly ESM Integration proposal. The implementation and the specification are still subject to change.
Contributed by Guy Bedford in #57038.
Built-in proxy support in request()
and Agent
node:http
and node:https
now support proxies. When NODE_USE_ENV_PROXY
is set to 1
, the default global agent would parse the http_proxy
/HTTP_PROXY
,
https_proxy
/HTTPS_PROXY
, no_proxy
/NO_PROXY
settings from the
environment variables, and proxy the requests sent through the built-in http/https
client accordingly.
To use global proxy support from the command line:
NODE_USE_ENV_PROXY=1 HTTP_PROXY=http://proxy.example.com:8080 HTTPS_PROXY=http://proxy.example.com:8080 NO_PROXY=localhost,127.0.0.1 node client.js
In addition, http.Agent
and https.Agent
now support the custom proxyEnv
options.
const agent = new https.Agent({ proxyEnv: { HTTPS_PROXY: 'http://proxy.example.com:8080' } });
For reference, fetch()
already supports NODE_USE_ENV_PROXY
as of Node.js 24.0.0.
Contributed by Joyee Cheung in https://github.com/nodejs/node/pull/58980.
Add setDefaultCACertificates()
to node:tls
This API allows dynamically configuring CA certificates that will be used by the Node.js TLS clients by default.
Once called, the provided certificates will become the default CA certificate list
returned by tls.getCACertificates('default')
and used by TLS connections that
don't specify their own CA certificates.
To add system CA certificates to the default bundle (which includes the Mozilla CA certificates):
tls.setDefaultCACertificates(tls.getCACertificates('default').concat(tls.getCACertificates('system')));
Contributed by Joyee Cheung in https://github.com/nodejs/node/pull/58822.
Other notable changes
- [
d5640ca58a
] - (SEMVER-MINOR) cli: support${pid}
placeholder in--cpu-prof-name
(Haram Jeong) #59072 - [
c52aaacfc5
] - (SEMVER-MINOR) dns: support max timeout (theanarkh) #58440 - [
927742b342
] - doc: update the instruction on how to verify releases (Antoine du Hamel) #59113 - [
f753645cd8
] - (SEMVER-MINOR) net: update net.blocklist to allow file save and file management (alphaleadership) #58087 - [
9791ff3480
] - (SEMVER-MINOR) worker: add web locks api (ishabi) #58666
Commits
- [
5457c7a8a1
] - benchmark: adjust configuration for string-decoder bench (Rafael Gonzaga) #59187 - [
28538f2255
] - benchmark: add --track to benchmark (Rafael Gonzaga) #59174 - [
a28d804497
] - benchmark: small lint fix on _cli.js (Rafael Gonzaga) #59172 - [
09717eb68e
] - benchmark: drop misc/punycode benchmark (Rafael Gonzaga) #59171 - [
ad6757ef02
] - benchmark: fix sqlite-is-transaction (Rafael Gonzaga) #59170 - [
7fc3143f61
] - benchmark: reduce N for diagnostics_channel subscribe benchmark (Arthur Angelo) #59116 - [
f2812723a0
] - buffer: cache Environment::GetCurrent to avoid repeated calls (Mert Can Altin) #59043 - [
e3e729ca60
] - build: remove suppressions.supp (Rafael Gonzaga) #59079 - [
dc66422768
] - build,deps,tools: prepare to update to OpenSSL 3.5 (Richard Lau) #58100 - [
f5da4947d9
] - cli: add --use-env-proxy (Joyee Cheung) #59151 - [
d5640ca58a
] - (SEMVER-MINOR) cli: support${pid}
placeholder in --cpu-prof-name (Haram Jeong) #59072 - [
eeeb40e95b
] - (SEMVER-MINOR) crypto: add tls.setDefaultCACertificates() (Joyee Cheung) #58822 - [
135fca5b72
] - crypto: avoid copying buffers to UTF-8 strings incrypto.hash()
(Renegade334) #59067 - [
998cef10e3
] - deps: update archs files for openssl-3.5.1 (Node.js GitHub Bot) #59234 - [
1f06ca956a
] - deps: upgrade openssl sources to openssl-3.5.1 (Node.js GitHub Bot) #59234 - [
55a90eed8d
] - deps: upgrade npm to 11.5.1 (npm team) #59199 - [
2b5d451ae0
] - deps: update amaro to 1.1.1 (Node.js GitHub Bot) #59141 - [
af789d9b5c
] - deps: update undici to 7.12.0 (Node.js GitHub Bot) #59135 - [
a34e44545e
] - deps: update sqlite to 3.50.3 (Node.js GitHub Bot) #59132 - [
bfe4781c7d
] - deps: update googletest to 7e17b15 (Node.js GitHub Bot) #59131 - [
72adf52e51
] - deps: update ada to 3.2.6 (Node.js GitHub Bot) #58966 - [
2a5f35b589
] - deps: V8: cherry-pick 3d750c2aa9ef (Michaël Zasso) #58750 - [
3f813eaba7
] - deps: update archs files for openssl-3.0.17 (Node.js GitHub Bot) #59134 - [
fb52d0d8df
] - deps: upgrade openssl sources to openssl-3.0.17 (Node.js GitHub Bot) #59134 - [
f122602f9d
] - deps: update corepack to 0.34.0 (Node.js GitHub Bot) #59133 - [
c52aaacfc5
] - (SEMVER-MINOR) dns: support max timeout (theanarkh) #58440 - [
927742b342
] - doc: update the instruction on how to verify releases (Antoine du Hamel) #59113 - [
9a8d2020ad
] - doc: copyedit SECURITY.md (Rich Trott) #59190 - [
3da5bc0668
] - doc: fix broken sentence inURL.parse
(Superchupu) #59164 - [
06cd7461e0
] - doc: improve onboarding instructions (Joyee Cheung) #59159 - [
dfb72d158b
] - doc: add constraints for mem leak to threat model (Rafael Gonzaga) #58917 - [
51b8dfd5c6
] - doc: add Aditi-1400 to collaborators (Aditi) #59157 - [
4ffa756ce3
] - doc: avoid suggesting testing fast api with intense loop (Chengzhong Wu) #59111 - [
6f81b274f7
] - doc: fix typo in writing-test.md (SeokHun) #59123 - [
88e434e687
] - doc: add new environment variables doc page (Dario Piotrowicz) #59052 - [
b1a318d706
] - doc: update release key for aduh95 (Antoine du Hamel) #58877 - [
34c49000c9
] - doc: add missing section forsetReturnArrays
insqlite.md
(Edy Silva) #59074 - [
9b2e965aff
] - doc: add RafaelGSS as steward July 25 (Rafael Gonzaga) #59078 - [
2d1dcb87e6
] - doc: clarify ERR_FS_FILE_TOO_LARGE to reflect fs.readFile() I/O limit (Haram Jeong) #59050 - [
999b5e51e7
] - doc: run license-builder (github-actions[bot]) #59056 - [
1940a2cb46
] - doc: fix typed list formatting (Aviv Keller) #59019 - [
6cb5e0d22f
] - doc: refineutil.parseArgs
default
definition (Slayer95) #58958 - [
d2e7f8e13a
] - doc: remove unused import inzlib.md
(coderaiser) #59041 - [
9d02960149
] - doc: add missing environment variables to manpage (amir lavasani) #58963 - [
45ffdb34fb
] - doc: add stability index to the--watch-kill-signal
flag (Dario Piotrowicz) #58997 - [
3924c43600
] - doc: add missing<code>
blocks (Antoine du Hamel) #58995 - [
cb95e183f3
] - doc: add scroll margin to links (Roman Reiss) #58982 - [
c9ded6ba15
] - doc: add sponsorship link to RafaelGSS (Rafael Gonzaga) #58983 - [
b919fe0447
] - (SEMVER-MINOR) esm: unflag --experimental-wasm-modules (Guy Bedford) #57038 - [
71bb6cd077
] - esm: js-string Wasm builtins in ESM Integration (Guy Bedford) #59020 - [
8d869e6d62
] - fs: fix return value of fs APIs (theanarkh) #58996 - [
7f654cee9e
] - (SEMVER-MINOR) http,https: add built-in proxy support in http/https.request and Agent (Joyee Cheung) #58980 - [
85d6a28f4f
] - inspector: initial support for Network.loadNetworkResource (Shima Ryuhei) #58077 - [
cfaa299f2e
] - lib: fix incorrectArrayBufferPrototypeGetDetached
primordial type (Dario Piotrowicz) #58978 - [
d555db22ad
] - lib: flag to conditionally modify proto on deprecate (Rafael Gonzaga) #58928 - [
96c9dd79e6
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #59140 - [
324d9fc9d4
] - meta: enable jsdoc/check-tag-names rule (Yagiz Nizipli) #58521 - [
04c751463b
] - meta: add marco-ippolito to security release stewards (Marco Ippolito) #58944 - [
fe0195fdcc
] - module: fix conditions override in synchronous resolve hooks (Joyee Cheung) #59011 - [
515b581d47
] - module: throw error when re-runing errored module jobs (Joyee Cheung) #58957 - [
f753645cd8
] - (SEMVER-MINOR) net: update net.blocklist to allow file save and file management (alphaleadership) #58087 - [
15e6c28d82
] - node-api,doc: update links to ecma262 with section names (Chengzhong Wu) #59087 - [
f67b686551
] - perf_hooks: do not expose SafeMap via Histogram wrapper (René) #59094 - [
3d2f919f7c
] - process: make execve's args argument optional (Allon Murienik) #58412 - [
1a44265810
] - repl: handle errors from getters during completion (Shima Ryuhei) #59044 - [
467dbd31e6
] - repl: fix repl crashing on variable declarations without init (Dario Piotrowicz) #59032 - [
3a3eb6852d
] - repl: improve REPL disabling completion on proxies and getters (Dario Piotrowicz) #58891 - [
55838e79b8
] - src: call unmask after install signal handler (theanarkh) #59059 - [
77649ad93b
] - src: useFastStringKey
forTrackV8FastApiCall
(Anna Henningsen) #59148 - [
86babf9c4b
] - src: use C++20consteval
forFastStringKey
(Anna Henningsen) #59148 - [
88b99eeae1
] - src: remove declarations of removed BaseObject static fns (Anna Henningsen) #59093 - [
d89390fc8f
] - src: add cache to nearest parent package json (Ilyas Shabi) #59086 - [
21780075e4
] - src: check import attributes value types as strings (Chengzhong Wu) #58986 - [
ef89c2fac9
] - src,test: fix config file parsing for flags defaulted to true (Edy Silva) #59110 - [
1e990866e0
] - test: mark web lock held test as flaky (Ilyas Shabi) #59144 - [
ba8e95a785
] - test: use mustSucceed in test-fs-read (Sungwon) #59204 - [
39978f507f
] - test: prepare test-crypto-rsa-dsa for newer OpenSSL (Richard Lau) #58100 - [
1c3aadb9d6
] - test: fix flaky test-worker-message-port-transfer-filehandle test (Alex Yang) #59158 - [
a0d22e9c51
] - test: remove timeout in test-https-proxy-request-handshake-failure (Joyee Cheung) #59165 - [
7e0a0fccc1
] - test: expand linting rules aroundassert
w literal messages (Anna Henningsen) #59147 - [
c6070046c3
] - test: update WPT for WebCryptoAPI to ab08796857 (Node.js GitHub Bot) #59129 - [
15d8cc908e
] - test: update WPT for WebCryptoAPI to 19d82c57ab (Node.js GitHub Bot) #59129 - [
83023e5144
] - test: skip tests that cause timeouts on IBM i (Abdirahim Musse) #59014 - [
82d4175ec3
] - test: updatestartCLI
to set--port=0
by default (Dario Piotrowicz) #59042 - [
16dc53c143
] - (SEMVER-MINOR) test: move http proxy tests to test/client-proxy (Joyee Cheung) #58980 - [
a9511a6066
] - test: mark test-inspector-network-fetch as flaky on Windows (Joyee Cheung) #59091 - [
1cffcc02a3
] - test: add missing port=0 arg in test-debugger-extract-function-name (Dario Piotrowicz) #58977 - [
83cdf1701b
] - test_runner: clean up promisified interval generation (René) #58824 - [
195d6038dc
] - tools: clarify README linter error message (Joyee Cheung) #59160 - [
51f578a3bf
] - tools: add support for URLs to PR commits inmerge.sh
(Antoine du Hamel) #59162 - [
20be9012eb
] - tools: bump @eslint/plugin-kit from 0.3.1 to 0.3.3 in /tools/eslint (dependabot[bot]) #59119 - [
623e264e93
] - tools: ignore CVE mention when linting release proposals (Antoine du Hamel) #59037 - [
0e547e09ab
] - tools,test: enforce best practices to detect never settling promises (Antoine du Hamel) #58992 - [
075d1968db
] - util: respect nested formats in styleText (Alex Yang) #59098 - [
9791ff3480
] - (SEMVER-MINOR) worker: add web locks api (ishabi) #58666
2025-07-15, Version 24.4.1 (Current), @RafaelGSS
This is a security release.
Notable Changes
- (CVE-2025-27209) HashDoS in V8 with new RapidHash algorithm
- (CVE-2025-27210) Windows Device Names (CON, PRN, AUX) Bypass Path Traversal Protection in path.normalize()
Commits
- [
c33223f1a5
] - (CVE-2025-27209) deps: V8: revert rapidhash commits (Michaël Zasso) nodejs-private/node-private#713 - [
56f9db2aaa
] - (CVE-2025-27210) lib: handle all windows reserved driver name (RafaelGSS) nodejs-private/node-private#721
2025-07-09, Version 24.4.0 (Current), @RafaelGSS
Notable Changes
- [
22b60e8a57
] - (SEMVER-MINOR) crypto: support outputLength option in crypto.hash for XOF functions (Aditi) #58121 - [
80dec9849d
] - (SEMVER-MINOR) doc: add all watch-mode related flags to node.1 (Dario Piotrowicz) #58719 - [
87f4d078b3
] - (SEMVER-MINOR) fs: add disposable mkdtempSync (Kevin Gibbons) #58516 - [
9623c50b53
] - (SEMVER-MINOR) permission: propagate permission model flags on spawn (Rafael Gonzaga) #58853 - [
797ec4da04
] - (SEMVER-MINOR) sqlite: add support for readBigInts option in db connection level (Miguel Marcondes Filho) #58697 - [
ed966a0215
] - (SEMVER-MINOR) src,permission: add support to permission.has(addon) (Rafael Gonzaga) #58951 - [
fe17f5d285
] - (SEMVER-MINOR) watch: add--watch-kill-signal
flag (Dario Piotrowicz) #58719
Commits
- [
a118bfc536
] - assert: remove dead code (Yoshiya Hinosawa) #58760 - [
31252b9af1
] - benchmark: add source map and source map cache (Miguel Marcondes Filho) #58125 - [
4170359bcd
] - bootstrap: initialize http proxy after user module loader setup (Joyee Cheung) #58938 - [
c76585d10e
] - build: disable v8_enable_pointer_compression_shared_cage on non-64bit (Shelley Vohr) #58867 - [
049c838609
] - build: option to use custom inspector_protocol path (Shelley Vohr) #58839 - [
22b60e8a57
] - (SEMVER-MINOR) crypto: support outputLength option in crypto.hash for XOF functions (Aditi) #58121 - [
77712ae2a1
] - crypto: fix SHAKE128/256 breaking change introduced with OpenSSL 3.4 (Filip Skokan) #58942 - [
93e1a33b81
] - crypto: fix inclusion of OPENSSL_IS_BORINGSSL define (Shelley Vohr) #58845 - [
573171deb0
] - deps: V8: cherry-pick 0ce2edb7adfd (Levi Zim) #58773 - [
bf66291382
] - deps: V8: cherry-pick 1d7159580156 (Michaël Zasso) #58749 - [
f735b8b8d0
] - deps: update sqlite to 3.50.2 (Node.js GitHub Bot) #58882 - [
8e9622e494
] - deps: update undici to 7.11.0 (Node.js GitHub Bot) #58859 - [
8741da81c7
] - deps: update googletest to 35b75a2 (Node.js GitHub Bot) #58710 - [
028ce40e25
] - deps: update minimatch to 10.0.3 (Node.js GitHub Bot) #58712 - [
3afb15b715
] - dns: fix parse memory leaky (theanarkh) #58973 - [
f40ac32f3e
] - dns: set timeout to 1000ms when timeout < 0 (theanarkh) #58441 - [
921b563999
] - doc: remove broken link to permission model source code (Juan José) #58972 - [
78628d6158
] - doc: clarify details of TSC public and private meetings (James M Snell) #58925 - [
ab834a8b94
] - doc: mark stability markers consistent inglobals.md
(Antoine du Hamel) #58932 - [
8d4f6a0016
] - doc: move "Core Promise APIs" to "Completed initiatives" (Antoine du Hamel) #58934 - [
94725fced5
] - doc: fixfetch
subsections inglobals.md
(Antoine du Hamel) #58933 - [
a7a4870014
] - doc: add missingClass:
mentions (Antoine du Hamel) #58931 - [
98f29fa2fd
] - doc: remove myself from security steward rotation (Michael Dawson) #58927 - [
710e13d436
] - doc: add ovflowd back to core collaborators (Claudio W.) #58911 - [
8b93008dc0
] - doc: update email address for Richard Lau (Richard Lau) #58910 - [
9ff81d21ed
] - doc: update vm doc links (Chengzhong Wu) #58885 - [
ff2efd266d
] - doc: fix links in test.md (Vas Sudanagunta) #58876 - [
5e854e1f61
] - doc: add missing comma inchild_process.md
(ronijames008) #58862 - [
48f5d6d686
] - doc: add guidelines for introduction of ERM support (James M Snell) #58526 - [
80dec9849d
] - (SEMVER-MINOR) doc: add all watch-mode related flags to node.1 (Dario Piotrowicz) #58719 - [
b36fa0fda1
] - doc: fix jsdoc definition of assert.ifError() fn in lib/assert.js (jesh) #58573 - [
cebb93ea12
] - doc: add array type in http request headers (Michael Henrique) #58049 - [
6e6b373da1
] - doc: add missing colon to headers inglobals.md
(Aviv Keller) #58825 - [
1519b75191
] - doc: fixstream.md
section order (Antoine du Hamel) #58811 - [
87f4d078b3
] - (SEMVER-MINOR) fs: add disposable mkdtempSync (Kevin Gibbons) #58516 - [
b378fc3ac0
] - fs: close dir before throwing ifoptions.bufferSize
is invalid (Livia Medeiros) #58856 - [
23bd4d1867
] - fs: special input-1
onchown
,lchown
andfchown
(Alex Yang) #58836 - [
d07ce8e90c
] - fs: throwERR_INVALID_THIS
on illegal invocations (Livia Medeiros) #58848 - [
0d969a66dc
] - inspector: support undici traffic data inspection (Chengzhong Wu) #58953 - [
839b25e371
] - lib: exposesetupInstance
method on WASI class (toyobayashi) #57214 - [
d8f3f649c2
] - lib: fixgetTypeScriptParsingMode
jsdoc (沈鸿飞) #58681 - [
d534706211
] - meta: bump step-security/harden-runner from 2.12.0 to 2.12.2 (dependabot[bot]) #58923 - [
3ec5fe04d0
] - meta: bump github/codeql-action from 3.28.18 to 3.29.2 (dependabot[bot]) #58922 - [
bd4a1a5b06
] - meta: add IlyasShabi to collaborators (Ilyas Shabi) #58916 - [
d29b195b51
] - module: link module with a module request record (Chengzhong Wu) #58886 - [
a78385c4bd
] - module: convert schema-only core module onconvertCJSFilenameToURL
(Alex Yang) #58612 - [
e0de362319
] - module: update tests for combined ambiguous module syntax error (Mert Can Altin) #55874 - [
7f7a833e82
] - os: fix GetInterfaceAddresses memory lieaky (theanarkh) #58940 - [
9623c50b53
] - (SEMVER-MINOR) permission: propagate permission model flags on spawn (Rafael Gonzaga) #58853 - [
efe19b50b6
] - repl: fix eval errors thrown after close throwingERR_USE_AFTER_CLOSE
(Dario Piotrowicz) #58791 - [
c891db1c05
] - repl: improve tab completion on computed properties (Dario Piotrowicz) #58775 - [
797ec4da04
] - (SEMVER-MINOR) sqlite: add support for readBigInts option in db connection level (Miguel Marcondes Filho) #58697 - [
8eecaa264d
] - src: -Wunreachable-code-break in node_config_file.cc (Shelley Vohr) #58901 - [
143379df56
] - src: -Wunreachable-code error in crypto_context.cc (Shelley Vohr) #58901 - [
056a1af197
] - src: fix -Wunreachable-code-return in src/node_contextify.cc (Shelley Vohr) #58901 - [
ba661459f5
] - src: fix -Wunreachable-code in src/node_api.cc (Shelley Vohr) #58901 - [
6af0163dda
] - src: simplify adding fast APIs to ExternalReferenceRegistry (René) #58896 - [
210e608938
] - src: cleanup uv_fs_req before uv_fs_stat on existSync (RafaelGSS) #58915 - [
2445f86dc9
] - src: -Wmismatched-new-delete in debug_utils.cc (Shelley Vohr) #58844 - [
12286c9f64
] - src: use ranges library (C++20) more systematically (Daniel Lemire) #58028 - [
ed966a0215
] - (SEMVER-MINOR) src,permission: add support to permission.has(addon) (Rafael Gonzaga) #58951 - [
dd54910ab1
] - src,permission: enhance permission model debug (Rafael Gonzaga) #58898 - [
94f9424d78
] - test: deflake test-runner-watch-mode-kill-signal (Dario Piotrowicz) #58952 - [
b6ff6c8d20
] - test: add known issue tests for recursive readdir calls with Buffer path (Dario Piotrowicz) #58893 - [
c300f107ac
] - test: add known issue tests for fs.cp (James M Snell) #58883 - [
d8a86a622e
] - test: add tests to ensure that node.1 is kept in sync with cli.md (Dario Piotrowicz) #58878 - [
57c69acb78
] - test: replace.filter()[0]
with.find()
(Livia Medeiros) #58872 - [
67b3f4fbee
] - test: remove reliance on in-treedeps/undici
(Richard Lau) #58866 - [
df85b02a00
] - test: close dirs infs-opendir
test (Livia Medeiros) #58855 - [
692f1aebf0
] - test: update WPT for urlpattern to 84b75f0880 (Node.js GitHub Bot) #58785 - [
3a119be362
] - test: save the config file in a temporary directory (Luigi Pinca) #58799 - [
924cf1ef25
] - test: deflake test-config-file (Luigi Pinca) #58799 - [
b5c7e645c9
] - test_runner: correctly filter --experimental-config-file (Pietro Marchini) #58833 - [
d0faf723c7
] - test_runner: fix timeout not propagated to the child process in run (jakecastelli) #58831 - [
6052d8c1ac
] - test_runner: correct "already mocked" error punctuation placement (Jacob Smith) #58840 - [
e8dd1897d5
] - tools: compile maglev files into v8_compiler if maglev is disabled (Yao Zi) #58861 - [
191396260c
] - tools: bump the eslint group in /tools/eslint with 6 updates (dependabot[bot]) #58921 - [
1e423e0680
] - tools: update inspector_protocol to 69d69dd (Shelley Vohr) #58900 - [
0def4e23b1
] - tools: update gyp-next to 0.20.2 (Node.js GitHub Bot) #58788 - [
adb950cde2
] - tools,doc: move more MDN links to types (Antoine du Hamel) #58930 - [
1ee539a3aa
] - tty: treat emptyNO_COLOR
same as absentNO_COLOR
(Antoine du Hamel) #58074 - [
2b34867ba9
] - v8: fix missing callback in heap utils destroy (Ruben Bridgewater) #58846 - [
a1f4333695
] - vm: expose import phase on SourceTextModule.moduleRequests (Chengzhong Wu) #58829 - [
fe17f5d285
] - (SEMVER-MINOR) watch: add--watch-kill-signal
flag (Dario Piotrowicz) #58719
2025-06-24, Version 24.3.0 (Current), @RafaelGSS
Notable Changes
- [
841609ac1c
] - doc: add islandryu to collaborators (Shima Ryuhei) #58714 - [
839964ece8
] - (SEMVER-MINOR) fs: allow correct handling of burst in fs-events with AsyncIterator (Philipp Dunkel) #58490 - [
9b28f40834
] - (SEMVER-MINOR) module: remove experimental warning from type stripping (Marco Ippolito) #58643 - [
7cdda927fa
] - test: fix test-timeout-flag after revert of auto subtest wait (Pietro Marchini) #58282 - [
713fbad7b6
] - (SEMVER-MINOR) test_runner: support object property mocking (Idan Goshen) #58438 - [
ef0230abaf
] - (SEMVER-MINOR) url: add fileURLToPathBuffer API (James M Snell) #58700
Commits
- [
2ba2c93dee
] - build: fix typo 'Stoage' to 'Storage' in help text (ganglike) #58777 - [
11811c15da
] - deps: update nghttp2 to 1.66.0 (Node.js GitHub Bot) #58786 - [
7643ce9322
] - deps: update acorn to 8.15.0 (Node.js GitHub Bot) #58711 - [
4b61f10eb6
] - deps: V8: cherry-pick e3df60f3f5ab (Chengzhong Wu) #58691 - [
fa6854f083
] - deps: update amaro to 1.1.0 (Node.js GitHub Bot) #58754 - [
68671f4314
] - deps: upgrade npm to 11.4.2 (npm team) #58696 - [
450f4815b3
] - deps: update amaro to 1.0.0 (Node.js GitHub Bot) #58639 - [
3aa2762e96
] - deps: update sqlite to 3.50.1 (Node.js GitHub Bot) #58630 - [
80eac147e6
] - deps: update simdjson to 3.13.0 (Node.js GitHub Bot) #58629 - [
dc1023878c
] - deps: update zlib to 1.3.1-470d3a2 (Node.js GitHub Bot) #58628 - [
97fbfd82af
] - doc: fix stability 1.x links excluding the decimal digit (Dario Piotrowicz) #58783 - [
e2e88d4971
] - doc: fix wrong RFC number in http2 (Deokjin Kim) #58753 - [
7bb1246c8f
] - doc: add history entry for TS support in hooks (Antoine du Hamel) #58732 - [
f125310d3a
] - doc: run license-builder (github-actions[bot]) #58722 - [
841609ac1c
] - doc: add islandryu to collaborators (Shima Ryuhei) #58714 - [
1cc77c7ee6
] - doc: punctuation fix for Node-API versioning clarification (Jiacai Liu) #58599 - [
d59680348e
] - doc: add path rules and validation for export targets in package.json (0hm☘️) #58604 - [
b6760b3379
] - esm: syncify default path ofModuleLoader.load
(Jacob Smith) #57419 - [
96c78d726c
] - fs: makeDir
disposers idempotent (René) #58692 - [
62b5879d88
] - fs: avoid computing time coefficient constants in runtime (Livia Medeiros) #58728 - [
af18c0e81a
] - fs: remove IIFE in glob (LiviaMedeiros) #58418 - [
fb4378b72e
] - fs: add UV_ENOSPC to list of things to pass to err directly (Jacky Zhao) #56918 - [
839964ece8
] - (SEMVER-MINOR) fs: allow correct handling of burst in fs-events with AsyncIterator (Philipp Dunkel) #58490 - [
c9dc0a8903
] - http: fix keep-alive not timing out after post-request empty line (Shima Ryuhei) #58178 - [
b11da1115e
] - http2: fix DEP0194 message (KaKa) #58669 - [
b1f60d2f18
] - http2: add diagnostics channel 'http2.server.stream.close' (Darshan Sen) #58602 - [
be93091694
] - inspector: add protocol methods retrieving sent/received data (Chengzhong Wu) #58645 - [
20089e2a2e
] - lib: renamevalidateInternalField
intovalidateThisInternalField
(LiviaMedeiros) #58765 - [
74983832f9
] - lib: makevalidateInternalField()
throwERR_INVALID_THIS
(LiviaMedeiros) #58765 - [
081c70878f
] - lib: make domexception a native error (Chengzhong Wu) #58691 - [
6390f70da2
] - lib,src: support DOMException ser-des (Chengzhong Wu) #58649 - [
4c2c100f63
] - meta: add @nodejs/inspector as codeowner (Chengzhong Wu) #58790 - [
ff8a3691c4
] - module: fix typescript import.meta.main (Marco Ippolito) #58661 - [
45f7d160ed
] - module: refactor commonjs typescript loader (Marco Ippolito) #58657 - [
9b28f40834
] - (SEMVER-MINOR) module: remove experimental warning from type stripping (Marco Ippolito) #58643 - [
a3c7a63c73
] - module: allow cycles in require() in the CJS handling in ESM loader (Joyee Cheung) #58598 - [
d0e42ffa58
] - repl: avoid deprecatedrequire.extensions
in tab completion (baki gul) #58653 - [
82b18ba890
] - repl: fix tab completion not working with computer string properties (Dario Piotrowicz) #58709 - [
8c2089683e
] - src: add FromV8Value<T>() for integral and enum types (Aditi) #57931 - [
a0b1378a20
] - src: pass resource on permission checks for spawn (Rafael Gonzaga) #58758 - [
dfb0144490
] - src: enhance error messages for unknown options (Pietro Marchini) #58677 - [
e9c6fa514c
] - src: replace std::array with static arrays in contextify (Mert Can Altin) #58580 - [
4347ce3dba
] - src: add new CopyUtimes function to reduce code duplication (Dario Piotrowicz) #58625 - [
893999e0ee
] - src: replace V8 Fast API todo comment with note comment (Dario Piotrowicz) #58614 - [
7cdda927fa
] - test: fix test-timeout-flag after revert of auto subtest wait (Pietro Marchini) #58282 - [
d9c2b7054b
] - test: refactor repl save-load tests (Dario Piotrowicz) #58715 - [
3faa4e8b56
] - test: deflake test-buffer-large-size-buffer-alloc-unsafe (Luigi Pinca) #58771 - [
8eec789888
] - test: correct SIMD support comment (Richard Lau) #58767 - [
6e0ee39b6d
] - test: skip the test if the buffer allocation fails (Luigi Pinca) #58738 - [
d94b184700
] - test: deflake test-buffer-large-size-buffer-alloc (Luigi Pinca) #58734 - [
704b1fa075
] - test: add tests for REPL custom evals (Dario Piotrowicz) #57850 - [
c39d570871
] - test: reduce the use of private symbols in test-events-once.js (Yoshiya Hinosawa) #58685 - [
b7e488c77f
] - test: refactor repl tab complete tests (Dario Piotrowicz) #58636 - [
ec808b3e06
] - test: usecommon.skipIfInspectorDisabled()
to skip tests (Dario Piotrowicz) #58675 - [
94e53d4f6c
] - test: update WPT for urlpattern to 3ffda23e5a (Node.js GitHub Bot) #58537 - [
fa089d610f
] - test: update WPT for dom/abort to dc928169ee (Node.js GitHub Bot) #58644 - [
aa657f0fc4
] - test: split indirect eval import tests (Chengzhong Wu) #58637 - [
76e3c8aaf2
] - test: update WPT for es-exceptions to 2f96fa1996 (Node.js GitHub Bot) #58640 - [
7e34aa4eaa
] - test: skip tests failing when run under root (Livia Medeiros) #58610 - [
85f062c22e
] - test: deflake async-hooks/test-improper-order on AIX (Baki Gul) #58567 - [
181014a8fe
] - test: cleanup status files (Filip Skokan) #58633 - [
a4d756068d
] - test: close FileHandle objects in tests explicitly (James M Snell) #58615 - [
a1529d5d99
] - test_runner: automatically wait for subtests to finish (Colin Ihrig) #58800 - [
dce1995c55
] - Revert "test_runner: remove promises returned by t.test()" (Romain Menke) #58282 - [
8b0c5edbb6
] - Revert "test_runner: remove promises returned by test()" (Romain Menke) #58282 - [
6ef7329c8c
] - Revert "test_runner: automatically wait for subtests to finish" (Romain Menke) #58282 - [
c9e7b5e43a
] - test_runner: preferAtomics
primordials (Renegade334) #58716 - [
713fbad7b6
] - (SEMVER-MINOR) test_runner: support object property mocking (Idan Goshen) #58438 - [
9df1cfe402
] - tools: make nodedownload module compatible with Python 3.14 (Lumír 'Frenzy' Balhar) #58752 - [
b5ff3f42b8
] - tools: include toolchain.gypi in abseil.gyp (Chengzhong Wu) #58678 - [
dc2f23e986
] - tools: bumpbrace-expansion
in/tools/clang-format
(dependabot[bot]) #58699 - [
e6a1787140
] - tools: bump brace-expansion from 1.1.11 to 1.1.12 in /tools/eslint (dependabot[bot]) #58698 - [
b22e970774
] - tools: switch to@stylistic/eslint-plugin
(Michaël Zasso) #58623 - [
268c8c1799
] - tools: remove config.status undermake distclean
(René) #58603 - [
c1f9791844
] - tools: edit commit-queue workflow file (Antoine du Hamel) #58667 - [
afbaf9277b
] - tools: improve release proposal linter (Antoine du Hamel) #58647 - [
17df800b90
] - typings: add Atomics primordials (Renegade334) #58577 - [
ffff8ce3a4
] - typings: add ZSTD_COMPRESS, ZSTD_DECOMPRESS to internalBinding (Meghan Denny) #58655 - [
ef0230abaf
] - (SEMVER-MINOR) url: add fileURLToPathBuffer API (James M Snell) #58700 - [
6f7b89516f
] - util: inspect: do not crash on an Error stack pointing to itself (Sam Verschueren) #58196
2025-06-09, Version 24.2.0 (Current), @aduh95
Notable Changes
Remove support for HTTP/2 priority signaling
The support for priority signaling has been removed in nghttp2, following its deprecation in the RFC 9113. As a consequence of this, priority signaling is deprecated on all release lines of Node.js, and removed from Node.js 24 so we can include latest updates from nghttp2.
Contributed by Matteo Collina and Antoine du Hamel in #58293.
import.meta.main
is now available
Boolean value available in ECMAScript modules, which can be used to detect whether the current module was the entry point of the current process.
export function foo() {
return 'Hello, world';
}
function main() {
const message = foo();
console.log(message);
}
if (import.meta.main) main();
// `foo` can be imported from another module without possible side-effects from `main`
Contributed by Joe and Antoine du Hamel in #57804.
Other Notable Changes
- [
e13930bbe0
] - doc: add Filip Skokan to TSC (Rafael Gonzaga) #58499 - [
984894b38c
] - doc: deprecateutil.isNativeError
in favor ofError.isError
(Miguel Marcondes Filho) #58262 - [
d261274b0f
] - doc: deprecate passing an empty string tooptions.shell
(Antoine du Hamel) #58564 - [
510872a522
] - (SEMVER-MINOR) doc: graduateSymbol.dispose
/asyncDispose
from experimental (James M Snell) #58467 - [
6f4c9dd423
] - (SEMVER-MINOR) fs: addautoClose
option toFileHandle
readableWebStream (James M Snell) #58548 - [
32efb63242
] - http: deprecate instantiating classes without new (Yagiz Nizipli) #58518 - [
0234a8ef53
] - (SEMVER-MINOR) http2: add diagnostics channelhttp2.server.stream.finish
(Darshan Sen) #58560 - [
0f1e94f731
] - (SEMVER-MINOR) lib: graduate error codes that have been around for years (James M Snell) #58541 - [
13abca3c26
] - (SEMVER-MINOR) perf_hooks: make event loop delay histogram disposable (James M Snell) #58384 - [
8ea1fc5f3b
] - (SEMVER-MINOR) src: support namespace options in configuration file (Pietro Marchini) #58073 - [
d6ea36ad6c
] - src,permission: implicit allow-fs-read to app entrypoint (Rafael Gonzaga) #58579 - [
5936cef60a
] - (SEMVER-MINOR) test: add disposable histogram test (James M Snell) #58384 - [
7a91f4aaa1
] - (SEMVER-MINOR) test: add test for async disposable worker thread (James M Snell) #58385 - [
532c173cf2
] - (SEMVER-MINOR) util: addnone
style to styleText (James M Snell) #58437 - [
aeb9ab4c4c
] - (SEMVER-MINOR) worker: make Worker async disposable (James M Snell) #58385
Commits
- [
6c92329b1b
] - Revert "benchmark: fix broken fs.cpSync benchmark" (Yuesong Jake Li) #58476 - [
8bc045264e
] - benchmark: fix broken fs.cpSync benchmark (Dario Piotrowicz) #58472 - [
46aa079cce
] - benchmark: add callback-basedfs.glob
to glob benchmark (Livia Medeiros) #58417 - [
a57b05e105
] - benchmark: add more options to cp-sync (Sonny) #58278 - [
8b5ada4b31
] - buffer: use Utf8LengthV2() instead of Utf8Length() (Tobias Nießen) #58156 - [
22e97362f3
] - build: search for libnode.so in multiple places (Jan Staněk) #58213 - [
0b4056c573
] - build: add support for OpenHarmony operating system (hqzing) #58350 - [
db7f413dd3
] - build: fix pointer compression builds (Joyee Cheung) #58171 - [
7ff37183e5
] - build: fix defaults for shared llhttp (Antoine du Hamel) #58269 - [
b8c33190fe
] - build,win: fix dll build (Stefan Stojanovic) #58357 - [
ef9ecbe8a6
] - child_process: give names toChildProcess
functions (Livia Medeiros) #58370 - [
cec9d9d016
] - crypto: forward auth tag to OpenSSL immediately (Tobias Nießen) #58547 - [
9fccb0609f
] - crypto: expose crypto.constants.OPENSSL_IS_BORINGSSL (Shelley Vohr) #58387 - [
e7c69b9345
] - deps: update nghttp2 to 1.65.0 (Node.js GitHub Bot) #57269 - [
d0b89598a3
] - deps: use proper C standard when building libuv (Yaksh Bariya) #58587 - [
8a1fe7bc6a
] - deps: update simdjson to 3.12.3 (Node.js GitHub Bot) #57682 - [
36b639b1eb
] - deps: update googletest to e9092b1 (Node.js GitHub Bot) #58565 - [
f8a2a1ef52
] - deps: update corepack to 0.33.0 (Node.js GitHub Bot) #58566 - [
efb28f7895
] - deps: V8: cherry-pick 249de887a8d3 (Michaël Zasso) #58561 - [
88e621ea97
] - deps: update sqlite to 3.50.0 (Node.js GitHub Bot) #58272 - [
8d2ba386f1
] - deps: update OpenSSL gen container to Ubuntu 22.04 (Michaël Zasso) #58432 - [
7e62a77a7f
] - deps: update undici to 7.10.0 (Node.js GitHub Bot) #58445 - [
87eebd7bad
] - deps: keep required OpenSSL doc files (Michaël Zasso) #58431 - [
10910660f6
] - deps: update undici to 7.9.0 (Node.js GitHub Bot) #58268 - [
5e27078ca2
] - deps: update ada to 3.2.4 (Node.js GitHub Bot) #58152 - [
3b1e4bdbbb
] - deps: update libuv to 1.51.0 (Node.js GitHub Bot) #58124 - [
6bddf587ae
] - dns: fix dns query cache implementation (Ethan Arrowood) #58404 - [
984894b38c
] - doc: deprecate utilisNativeError in favor of ErrorisError (Miguel Marcondes Filho) #58262 - [
377ef3ce3a
] - doc: add support link for panva (Filip Skokan) #58591 - [
33a69ff9e4
] - doc: update metadata for _transformState deprecation (James M Snell) #58530 - [
d261274b0f
] - doc: deprecate passing an empty string tooptions.shell
(Antoine du Hamel) #58564 - [
447ca11010
] - doc: correct formatting of example definitions for--test-shard
(Jacob Smith) #58571 - [
2f555e0e19
] - doc: clarify DEP0194 scope (Antoine du Hamel) #58504 - [
af0446edcb
] - doc: deprecate HTTP/2 priority signaling (Matteo Collina) #58313 - [
80cc17f1ec
] - doc: explain child_process code and signal null values everywhere (Darshan Sen) #58479 - [
e13930bbe0
] - doc: add Filip Skokan to TSC (Rafael Gonzaga) #58499 - [
5f3f045ecc
] - doc: updategit node release
example (Antoine du Hamel) #58475 - [
4bbd026cde
] - doc: add missing options.info for ZstdOptions (Jimmy Leung) #58360 - [
a6d0d2a0d7
] - doc: add missing options.info for BrotliOptions (Jimmy Leung) #58359 - [
510872a522
] - (SEMVER-MINOR) doc: graduate Symbol.dispose/asyncDispose from experimental (James M Snell) #58467 - [
08685256cd
] - doc: clarify x509.checkIssued only checks metadata (Filip Skokan) #58457 - [
095794fc24
] - doc: add links to parent class fornode:zlib
classes (Antoine du Hamel) #58433 - [
7acac70bce
] - doc: remove remaining uses of@@wellknown
syntax (René) #58413 - [
62056d40c7
] - doc: clarify behavior of --watch-path and --watch flags (Juan Ignacio Benito) #58136 - [
e6e6ae887d
] - doc: fix the order ofprocess.md
sections (Allon Murienik) #58403 - [
d2f6c82c0f
] - doc,lib: update source map links to ECMA426 (Chengzhong Wu) #58597 - [
a994d3d51a
] - doc,src,test: fix typos (Noritaka Kobayashi) #58477 - [
252acc1e89
] - errors: show url of unsupported attributes in the error message (Aditi) #58303 - [
767e88cbc3
] - esm: unwrap WebAssembly.Global on Wasm Namespaces (Guy Bedford) #57525 - [
adef9af3ae
] - (SEMVER-MINOR) esm: implement import.meta.main (Joe) #57804 - [
308f4cac4b
] - esm: add support for dynamic source phase hook (Guy Bedford) #58147 - [
fcef56cb05
] - fs: improve cpSync no-filter copyDir performance (Dario Piotrowicz) #58461 - [
996fdb05ab
] - fs: fix cp handle existing symlinks (Yuesong Jake Li) #58476 - [
d2931e50e3
] - fs: fix cpSync handle existing symlinks (Yuesong Jake Li) #58476 - [
6f4c9dd423
] - (SEMVER-MINOR) fs: add autoClose option to FileHandle readableWebStream (James M Snell) #58548 - [
8870bb8677
] - fs: improvecpSync
dest overriding performance (Dario Piotrowicz) #58160 - [
f2e2301559
] - fs: unexpose internal constants (Chengzhong Wu) #58327 - [
32efb63242
] - http: deprecate instantiating classes without new (Yagiz Nizipli) #58518 - [
0b987e5741
] - (SEMVER-MAJOR) http2: remove support for priority signaling (Matteo Collina) #58293 - [
44ca874b2c
] - http2: add lenient flag for RFC-9113 (Carlos Fuentes) #58116 - [
0234a8ef53
] - (SEMVER-MINOR) http2: add diagnostics channel 'http2.server.stream.finish' (Darshan Sen) #58560 - [
2b868e8aa7
] - http2: add diagnostics channel 'http2.server.stream.error' (Darshan Sen) #58512 - [
b4df8d38cd
] - http2: add diagnostics channel 'http2.server.stream.start' (Darshan Sen) #58449 - [
d86ff608bb
] - http2: remove no longer userful options.selectPadding (Jimmy Leung) #58373 - [
13dbbdc8a8
] - http2: add diagnostics channel 'http2.server.stream.created' (Darshan Sen) #58390 - [
08855464ec
] - http2: add diagnostics channel 'http2.client.stream.close' (Darshan Sen) #58329 - [
566fc567b8
] - http2: add diagnostics channel 'http2.client.stream.finish' (Darshan Sen) #58317 - [
f30b9117d4
] - http2: add diagnostics channel 'http2.client.stream.error' (Darshan Sen) #58306 - [
79b852a692
] - inspector: add mimeType and charset support to Network.Response (Shima Ryuhei) #58192 - [
402ac8b1d8
] - inspector: add protocol method Network.dataReceived (Chengzhong Wu) #58001 - [
29f34a7f86
] - lib: disable REPL completion on proxies and getters (Dario Piotrowicz) #57909 - [
0f1e94f731
] - (SEMVER-MINOR) lib: graduate error codes that have been around for years (James M Snell) #58541 - [
cc1aacabb0
] - lib: make ERM functions into wrappers returning undefined (Livia Medeiros) #58400 - [
8df4dee38c
] - lib: remove no-mixed-operators eslint rule (Ruben Bridgewater) #58375 - [
104d173f58
] - meta: bump github/codeql-action from 3.28.16 to 3.28.18 (dependabot[bot]) #58552 - [
b454e8386c
] - meta: bump codecov/codecov-action from 5.4.2 to 5.4.3 (dependabot[bot]) #58551 - [
f31e014b81
] - meta: bump step-security/harden-runner from 2.11.0 to 2.12.0 (dependabot[bot]) #58109 - [
4da920cc13
] - meta: bump ossf/scorecard-action from 2.4.1 to 2.4.2 (dependabot[bot]) #58550 - [
eb9bb95fe2
] - meta: bump rtCamp/action-slack-notify from 2.3.2 to 2.3.3 (dependabot[bot]) #58108 - [
27ada1f18c
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #58456 - [
4606a6792b
] - meta: bump github/codeql-action from 3.28.11 to 3.28.16 (dependabot[bot]) #58112 - [
7dfe448b7f
] - meta: bump codecov/codecov-action from 5.4.0 to 5.4.2 (dependabot[bot]) #58110 - [
18bb5f7e7e
] - meta: bump actions/download-artifact from 4.2.1 to 4.3.0 (dependabot[bot]) #58106 - [
72f2a22889
] - module: clarify cjs global-like error on ModuleJobSync (Carlos Espa) #56491 - [
b0e0b1afae
] - net: always publish to 'net.client.socket' diagnostics channel (Darshan Sen) #58349 - [
f373d6a540
] - node-api: use WriteOneByteV2 in napi_get_value_string_latin1 (Chengzhong Wu) #58325 - [
429c38db1b
] - node-api: use WriteV2 in napi_get_value_string_utf16 (Tobias Nießen) #58165 - [
b882148999
] - path: improve path.resolve() performance when used as process.cwd() (Ruben Bridgewater) #58362 - [
13abca3c26
] - (SEMVER-MINOR) perf_hooks: make event loop delay histogram disposable (James M Snell) #58384 - [
1cd417d823
] - permission: remove useless conditional (Juan José) #58514 - [
462c4b0c24
] - readline: add stricter validation for functions called after closed (Dario Piotrowicz) #58283 - [
e3e36f902c
] - repl: extract and standardize history from both repl and interface (Giovanni Bucci) #58225 - [
cbb2a0172f
] - report: use uv_getrusage_thread in report (theanarkh) #58405 - [
3a6bd9c4c4
] - sqlite: handle thrown errors in result callback (Colin Ihrig) #58426 - [
0d761bbccd
] - src: env_vars caching and local variable scope optimization (Mert Can Altin) #57624 - [
8ea1fc5f3b
] - (SEMVER-MINOR) src: support namespace options in configuration file (Pietro Marchini) #58073 - [
f72ce2ef75
] - src: remove fast API for InternalModuleStat (Joyee Cheung) #58489 - [
8a1eaea151
] - src: update std::vector<v8::Local<T>> to use v8::LocalVector<T> (Aditi) #58500 - [
d99d657842
] - src: fix FIPS init error handling (Tobias Nießen) #58379 - [
11e4cd698b
] - src: fix possible dereference of null pointer (Eusgor) #58459 - [
ca0f5a0188
] - src: add env->cppgc_allocation_handle() convenience method (James M Snell) #58483 - [
440d4f42bd
] - src: fix -Wreturn-stack-address error (Shelley Vohr) #58439 - [
08615b1020
] - src: prepare for v8 sandboxing (James M Snell) #58376 - [
63f643e844
] - src: reorganize ContextifyFunction methods (Chengzhong Wu) #58434 - [
3b6895a506
] - src: improve CompileFunctionAndCacheResult error handling (Chengzhong Wu) #58434 - [
7f1c95aee8
] - src: make a number of minor improvements to buffer (James M Snell) #58377 - [
ce081bcb9a
] - src: fix build when using shared simdutf (Antoine du Hamel) #58407 - [
a35cc216e5
] - src: track cppgc wrappers with a list in Realm (Joyee Cheung) #56534 - [
947c1c2cd5
] - src,lib: obtain sourceURL in magic comments from V8 (Chengzhong Wu) #58389 - [
d6ea36ad6c
] - src,permission: implicit allow-fs-read to app entrypoint (Rafael Gonzaga) #58579 - [
e8a07f2198
] - stream: making DecompressionStream spec compilent for trailing junk (0hm☘️) #58316 - [
3caa2f71c1
] - stream: test explicit resource management implicitly (LiviaMedeiros) #58296 - [
9ccdf4fdb4
] - test: improve flakiness detection on stack corruption tests (Darshan Sen) #58601 - [
d3fea003df
] - test: mark timeouts & flaky test as flaky on IBM i (Abdirahim Musse) #58583 - [
8347ef6b53
] - test: dispose of filehandles in filehandle.read tests (Livia Medeiros) #58543 - [
34e86f91aa
] - test: rewrite test-child-process-spawn-args (Michaël Zasso) #58546 - [
d7a2458a58
] - test: make sqlite-database-sync tests work with system sqlite (Jelle Licht) #58507 - [
4d9d6830e0
] - test: force slow JSON.stringify path for overflow (Shelley Vohr) #58181 - [
bef67e45e3
] - test: account for truthy signal in flaky async_hooks tests (Darshan Sen) #58478 - [
007c82f206
] - test: marktest-http2-debug
as flaky on LinuxONE (Richard Lau) #58494 - [
21f6400098
] - test: update WPT for WebCryptoAPI to 591c95ce61 (Node.js GitHub Bot) #58176 - [
1deb5f06a5
] - test: remove --no-warnings flag (Tobias Nießen) #58424 - [
beba631a10
] - test: add tests ensuring worker threads cannot access internals (Joe) #58332 - [
5936cef60a
] - (SEMVER-MINOR) test: add disposable histogram test (James M Snell) #58384 - [
7a91f4aaa1
] - (SEMVER-MINOR) test: add test for async disposable worker thread (James M Snell) #58385 - [
5fc4706280
] - test: leverage process.features.openssl_is_boringssl in test (Shelley Vohr) #58421 - [
4629b18397
] - test: fix test-buffer-tostring-range on allocation failure (Joyee Cheung) #58416 - [
4c445a8c85
] - test: skip in test-buffer-tostring-rangeerror on allocation failure (Joyee Cheung) #58415 - [
53cb29898b
] - test: fix missing edge case in test-blob-slice-with-large-size (Joyee Cheung) #58414 - [
89fdfdedc1
] - test: make crypto tests work with BoringSSL (Shelley Vohr) #58117 - [
3b5d0e62b1
] - test: test reordering of setAAD and setAuthTag (Tobias Nießen) #58396 - [
029440bec5
] - test: switch from deprecatedoptparse
toargparse
(Aviv Keller) #58224 - [
d05263edcc
] - test: do not skip OCB decryption in FIPS mode (Tobias Nießen) #58382 - [
23474cb257
] - test: show more information in test-http2-debug upon failure (Joyee Cheung) #58391 - [
d0302e7b3d
] - test: remove loop over single element (Tobias Nießen) #58368 - [
33f615897d
] - test: add chacha20-poly1305 to auth tag order test (Tobias Nießen) #58367 - [
8f09a1f502
] - test: skip wasm-allocation tests for pointer compression builds (Joyee Cheung) #58171 - [
4ae6a1a5ed
] - test: remove references to create(De|C)ipher (Tobias Nießen) #58363 - [
4d647271b2
] - test_runner: emit event when file changes in watch mode (Jacopo Martinelli) #57903 - [
1eda87c365
] - test_runner: add level parameter to reporter.diagnostic (Jacopo Martinelli) #57923 - [
13377512be
] - tools: bump the eslint group in/tools/eslint
with 6 updates (dependabot[bot]) #58549 - [
fcc881de0d
] - tools: supportDisposableStack
andAsyncDisposableStack
in linter (LiviaMedeiros) #58454 - [
208d6a5754
] - tools: support explicit resource management in eslint (LiviaMedeiros) #58296 - [
32070f304a
] - tools: add missing highway defines for IBM i (Abdirahim Musse) #58335 - [
ddab63a323
] - tty: improve color terminal color detection (Ruben Bridgewater) #58146 - [
c094bea8d9
] - tty: use terminal VT mode on Windows (Anna Henningsen) #58358 - [
dc21054a1e
] - typings: add inspector internalBinding typing (Shima Ryuhei) #58492 - [
3499285904
] - typings: remove no longer validFixedSizeBlobCopyJob
type (Dario Piotrowicz) #58305 - [
1ed2deb2c8
] - typings: remove no longer validrevokeDataObject
type (Dario Piotrowicz) #58305 - [
532c173cf2
] - (SEMVER-MINOR) util: add 'none' style to styleText (James M Snell) #58437 - [
2d5a1ef528
] - vm: import call should return a promise in the current context (Chengzhong Wu) #58309 - [
588c2449f2
] - win,tools: use Azure Trusted Signing (Stefan Stojanovic) #58502 - [
aeb9ab4c4c
] - (SEMVER-MINOR) worker: make Worker async disposable (James M Snell) #58385 - [
23416cce0a
] - worker: give names toMessagePort
functions (Livia Medeiros) #58307 - [
44df21b7fb
] - zlib: remove mentions of unexposed Z_TREES constant (Jimmy Leung) #58371
2025-05-21, Version 24.1.0 (Current), @aduh95
Notable Changes
- [
9d35b4ce95
] - doc: add JonasBa to collaborators (Jonas Badalic) #58355 - [
b7d1bfa7b4
] - doc: add puskin to collaborators (Giovanni Bucci) #58308 - [
fcead7c28e
] - (SEMVER-MINOR) fs: add toDir
support for explicit resource management (Antoine du Hamel) #58206 - [
f7041b9369
] - Revert "test_runner: change ts default glob" (Théo LUDWIG) #58202
Commits
- [
b33e8d2a71
] - async_hooks: ensure AsyncLocalStore instances work isolated (Gerhard Stöbich) #58149 - [
a1b078b18c
] - buffer: give names toBuffer.prototype.*Write()
functions (Livia Medeiros) #58258 - [
4c967b73c3
] - buffer: use constexpr where possible (Yagiz Nizipli) #58141 - [
327095a928
] - build: fix uvwasi pkgname (Antoine du Hamel) #58270 - [
2e54653d3d
] - build: use FILE_OFFSET_BITS=64 esp. on 32-bit arch (RafaelGSS) #58090 - [
7e4453fe93
] - build: escape > metachar in vcbuild (Gerhard Stöbich) #58157 - [
7dabf079b1
] - child_process: give names to promisifiedexec()
andexecFile()
(LiviaMedeiros) #57916 - [
a896eff1f2
] - crypto: handle missing OPENSSL_TLS_SECURITY_LEVEL (Shelley Vohr) #58103 - [
6403aa458f
] - crypto: merge CipherBase.initiv into constructor (Tobias Nießen) #58166 - [
30897d915c
] - deps: V8: backport 1d3362c55396 (Shu-yu Guo) #58230 - [
63f5d69d2b
] - deps: V8: cherry-pick 4f38995c8295 (Shu-yu Guo) #58230 - [
5a5f6bb1d4
] - deps: V8: cherry-pick 044b9b6f589d (Rezvan Mahdavi Hezaveh) #58230 - [
db57f0a4c0
] - deps: patch V8 to 13.6.233.10 (Michaël Zasso) #58230 - [
f54a7a44ab
] - Revert "deps: patch V8 to support compilation with MSVC" (Michaël Zasso) #58187 - [
e3193eeca4
] - Revert "deps: always define V8_EXPORT_PRIVATE as no-op" (Michaël Zasso) #58187 - [
e75ecf8ad1
] - Revert "deps: disable V8 concurrent sparkplug compilation" (Michaël Zasso) #58187 - [
a0ca15558d
] - deps: update llhttp to 9.3.0 (Fedor Indutny) #58144 - [
90d4c11992
] - deps: update amaro to 0.5.3 (Node.js GitHub Bot) #58174 - [
9d35b4ce95
] - doc: add JonasBa to collaborators (Jonas Badalic) #58355 - [
2676ca0cf5
] - doc: add latest security release steward (Rafael Gonzaga) #58339 - [
c35cc1bdd9
] - doc: document default test-reporter change (Nico Jansen) #58302 - [
2bb433d4a5
] - doc: fix CryptoKey.algorithm type and other interfaces in webcrypto.md (Filip Skokan) #58294 - [
f04f09d783
] - doc: mark the callback argument of crypto.generatePrime as mandatory (Allon Murienik) #58299 - [
3b9b010844
] - doc: remove comma delimiter mention on permissions doc (Rafael Gonzaga) #58297 - [
f0cf1a028d
] - doc: make Stability labels not sticky in Stability index (Livia Medeiros) #58291 - [
a1b937bdee
] - doc: update commit-queue documentation (Dario Piotrowicz) #58275 - [
b7d1bfa7b4
] - doc: add puskin to collaborators (Giovanni Bucci) #58308 - [
fc30cdd8d2
] - doc: update stability status for diagnostics_channel to experimental (Idan Goshen) #58261 - [
290a5ab8ca
] - doc: clarify napi_get_value_string_* for bufsize 0 (Tobias Nießen) #58158 - [
c26863a683
] - doc: fix typo of filehttp.md
,outgoingMessage.setTimeout
section (yusheng chen) #58188 - [
62dbd36dcb
] - doc: update return types for eventNames method in EventEmitter (Yukihiro Hasegawa) #58083 - [
130c135f38
] - fs: add support forURL
forfs.glob
'scwd
option (Antoine du Hamel) #58182 - [
fcead7c28e
] - (SEMVER-MINOR) fs: add toDir
support for explicit resource management (Antoine du Hamel) #58206 - [
655326ba9f
] - fs: glob is stable, so should not emit experimental warnings (Théo LUDWIG) #58236 - [
6ebcce7625
] - fs: ensuredir.read()
does not throw synchronously (Antoine du Hamel) #58228 - [
7715722323
] - http: remove unused functions and add todos (Yagiz Nizipli) #58143 - [
74a807e31f
] - http,https: give names to anonymous or misnamed functions (Livia Medeiros) #58180 - [
24a9aefb08
] - http2: add diagnostics channel 'http2.client.stream.start' (Darshan Sen) #58292 - [
2cb86a3cd6
] - http2: add diagnostics channel 'http2.client.stream.created' (Darshan Sen) #58246 - [
8f1aee90d9
] - http2: give name to promisifiedconnect()
(LiviaMedeiros) #57916 - [
b66f1b0be6
] - inspector: support for worker inspection in chrome devtools (Shima Ryuhei) #56759 - [
868e72e367
] - lib: fix sourcemaps with ts module mocking (Marco Ippolito) #58193 - [
570cb6f6b6
] - meta: ignore mailmap changes in linux ci (Jonas Badalic) #58356 - [
b94f63b865
] - module: handle instantiated async module jobs in require(esm) (Joyee Cheung) #58067 - [
714b706f2e
] - repl: add proper vertical cursor movements (Giovanni Bucci) #58003 - [
629a954477
] - repl: add possibility to edit multiline commands while adding them (Giovanni Bucci) #58003 - [
17746129f3
] - sqlite: setname
andlength
onsqlite.backup()
(Livia Medeiros) #58251 - [
908782b1c0
] - sqlite: add build option to build without sqlite (Michael Dawson) #58122 - [
a92a4074e4
] - src: remove unusedinternalVerifyIntegrity
internal binding (Dario Piotrowicz) #58285 - [
e0355b71ba
] - src: add a variant of ToV8Value() for primitive arrays (Aditi) #57576 - [
cb24fc71c4
] - src: remove unusedcheckMessagePort
internal binding (Dario Piotrowicz) #58267 - [
4db5d0bc49
] - src: remove unusedshouldRetryAsESM
internal binding (Dario Piotrowicz) #58265 - [
3b8d4e32ca
] - src: add a couple fast apis in node_os (James M Snell) #58210 - [
a135c0aea3
] - src: remove unneeded explicit V8 flags (Michaël Zasso) #58230 - [
abeb5c4cdc
] - src: fix module buffer allocation (X-BW) #57738 - [
9ca4b46eb3
] - src: use String::WriteV2() in TwoByteValue (Tobias Nießen) #58164 - [
bb28e2bfd7
] - src: remove overzealous tcsetattr error check (Ben Noordhuis) #58200 - [
329e008e73
] - src: refactor WriteUCS2 and remove flags argument (Tobias Nießen) #58163 - [
c815f29d61
] - src: remove NonCopyableMaybe (Tobias Nießen) #58168 - [
685d137dec
] - test: reduce iteration count in test-child-process-stdout-flush-exit (Antoine du Hamel) #58273 - [
40dc092e25
] - test: remove unnecessaryconsole.log
from test-repl-null-thrown (Dario Piotrowicz) #58281 - [
a3af644dda
] - test: allowtmpDir.path
to be modified (Aviv Keller) #58173 - [
97f80374a6
] - test: addFloat16Array
tocommon.getArrayBufferViews()
(Livia Medeiros) #58233 - [
65683735ab
] - test: fix executable flags (Livia Medeiros) #58250 - [
ebb82aa1c3
] - test: deflake test-http2-client-socket-destroy (Luigi Pinca) #58212 - [
eb4f130b17
] - test: remove Float16Array flag (Livia Medeiros) #58184 - [
09a85fdeb1
] - test: skip test-buffer-tostring-rangeerror when low on memory (Ruben Bridgewater) #58142 - [
65446632b1
] - test: reduce flakiness in test-heapdump-http2 (Joyee Cheung) #58148 - [
f7041b9369
] - Revert "test_runner: change ts default glob" (Théo LUDWIG) #58202 - [
287454298d
] - test_runner: unify --require and --import behavior when isolation none (Pietro Marchini) #57924 - [
6301b003f7
] - tools: ignoredeps/
andbenchmark/
for CodeQL (Rafael Gonzaga) #58254 - [
2d5de7e309
] - tools: add read permission to workflows that read contents (Antoine du Hamel) #58255 - [
b8d4715527
] - tools: support environment variables via comments (Pietro Marchini) #58186 - [
d8e88f2c17
] - typings: add missing typings forTypedArray
(Jason Zhang) #58248 - [
4c6f73c5d5
] - url: improve performance of the format function (Giovanni Bucci) #57099 - [
94c720c4ee
] - util: add internalassignFunctionName()
function (LiviaMedeiros) #57916 - [
3ed159afd1
] - watch: fix watch args not being properly filtered (Dario Piotrowicz) #58279
2025-05-14, Version 24.0.2 (Current), @RafaelGSS
This is a security release.
Notable Changes
- (CVE-2025-23166) fix error handling on async crypto operation
Commits
- [
7d0c17b2ad
] - (CVE-2025-23166) src: fix error handling on async crypto operations (RafaelGSS) nodejs-private/node-private#688
2025-05-08, Version 24.0.1 (Current), @aduh95
Notable Changes
- [
2e1d9581e0
] - Revert "buffer: move SlowBuffer to EOL" (Filip Skokan) #58211
Commits
- [
d38e811c5b
] - benchmark: fix typo in method name for error-stack (Miguel Marcondes Filho) #58128 - [
2e1d9581e0
] - Revert "buffer: move SlowBuffer to EOL" (Filip Skokan) #58211 - [
a883b0c979
] - build: use //third_party/simdutf by default in GN (Shelley Vohr) #58115 - [
3d84b5c7a4
] - doc: add HBSPS as triager (Wiyeong Seo) #57980 - [
1e57cb686e
] - doc: add history entries to--input-type
section (Antoine du Hamel) #58175 - [
0b54f06b6f
] - doc: add ambassaor message (Brian Muenzenmeyer) #57600 - [
46bee52d57
] - doc: fix misaligned options in vm.compileFunction() (Jimmy Leung) #58145 - [
e732a8bfdd
] - doc: fix typo in benchmark script path (Miguel Marcondes Filho) #58129 - [
d49ff34adb
] - doc: add missing options.signal to readlinePromises.createInterface() (Jimmy Leung) #55456 - [
bc9f5a2e79
] - doc: fix typo of filezlib.md
(yusheng chen) #58093 - [
c8e8558958
] - doc: clarify future Corepack removal in v25+ (Trivikram Kamat) #57825 - [
b13d5d14bd
] - meta: bump actions/setup-node from 4.3.0 to 4.4.0 (dependabot[bot]) #58111 - [
0ebb17a300
] - meta: bump actions/setup-python from 5.5.0 to 5.6.0 (dependabot[bot]) #58107 - [
5946785bf4
] - tools: exclude deps/v8/tools from CodeQL scans (Rich Trott) #58132 - [
0708497c7f
] - tools: bump the eslint group in /tools/eslint with 6 updates (dependabot[bot]) #58105
2025-05-06, Version 24.0.0 (Current), @RafaelGSS and @juanarbol
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 uses
AsyncContextFrame
by default, and URLPattern
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:
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 to AsyncContextFrame
AsyncLocalStorage
now uses AsyncContextFrame
by default, which provides a
more 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 global
The 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 broader
adoption.
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:
- Runtime deprecation of
url.parse()
- use the WHATWG URL API instead (#55017) - Removal of deprecated
tls.createSecurePair
(#57361) - Runtime deprecation of
SlowBuffer
(#55175) - Runtime deprecation of instantiating REPL without new (#54869)
- Deprecation of using Zlib classes without
new
(#55718) - Deprecation of passing
args
tospawn
andexecFile
in child_process (#57199)
Semver-Major Commits
- [
c6b934380a
] - (SEMVER-MAJOR) src: enableFloat16Array
on global object (Michaël Zasso) #58154 - [
69efb81a73
] - (SEMVER-MAJOR) src: enable explicit resource management (Michaël Zasso) #58154 - [
b00ff4270e
] - (SEMVER-MAJOR) src,test: unregister the isolate after disposal and before freeing (Joyee Cheung) #58070 - [
b81697d860
] - (SEMVER-MAJOR) src: use non-deprecated WriteUtf8V2() method (Yagiz Nizipli) #58070 - [
1f06169b87
] - (SEMVER-MAJOR) src: use non-deprecated Utf8LengthV2() method (Yagiz Nizipli) #58070 - [
eae9a296f0
] - (SEMVER-MAJOR) src: use V8-owned CppHeap (Joyee Cheung) #58070 - [
087c254a11
] - (SEMVER-MAJOR) test: fix test-fs-write for V8 13.6 (Michaël Zasso) #58070 - [
9e49bedd8e
] - (SEMVER-MAJOR) build: update list of installed cppgc headers (Michaël Zasso) #58070 - [
93cca8a43e
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 13.6 (Michaël Zasso) #58070 - [
347daa07be
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 13.5 (Michaël Zasso) #58070 - [
2a35d5a86c
] - (SEMVER-MAJOR) build: fix V8 TLS config for shared lib builds (Michaël Zasso) #58070 - [
b0fb5a09cf
] - (SEMVER-MAJOR) build: pass-fPIC
to linker as well for shared builds (Michaël Zasso) #58070 - [
dd4c5d6c73
] - (SEMVER-MAJOR) src,test: add V8 API to test the hash seed (Michaël Zasso) #58070 - [
1d5d7b6eed
] - (SEMVER-MAJOR) src: usev8::ExternalMemoryAccounter
(Michaël Zasso) #58070 - [
3779e43cce
] - (SEMVER-MAJOR) tools: update license-builder and LICENSE for V8 deps (Michaël Zasso) #58070 - [
82c2255206
] - (SEMVER-MAJOR) deps: remove deps/simdutf (Michaël Zasso) #58070 - [
8a258eb7b1
] - (SEMVER-MAJOR) test: handle explicit resource management globals (Michaël Zasso) #58070 - [
9e0d9b6024
] - (SEMVER-MAJOR) test: adapt assert tests to stack trace changes (Michaël Zasso) #58070 - [
f7406aa56d
] - (SEMVER-MAJOR) test: update test-linux-perf-logger (Michaël Zasso) #58070 - [
c7493fac5e
] - (SEMVER-MAJOR) Revert "test: disable fast API call count checks" (Michaël Zasso) #58070 - [
50a8527867
] - (SEMVER-MAJOR) src: replace uses of FastApiTypedArray (Michaël Zasso) #58070 - [
9c1ebb713c
] - (SEMVER-MAJOR) build: add/bigobj
to compile V8 on Windows (Michaël Zasso) #58070 - [
fb3d5ea45d
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 13.4 (Michaël Zasso) #58070 - [
756abacf73
] - (SEMVER-MAJOR) build,src,tools: adapt build config for V8 13.3 (Michaël Zasso) #58070 - [
f8953e54b0
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 13.2 (Michaël Zasso) #58070 - [
c8a0e205e1
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 13.1 (Michaël Zasso) #58070 - [
1689ee84ce
] - (SEMVER-MAJOR) build: enable shared RO heap with ptr compression (Michaël Zasso) #58070 - [
15f2fb9467
] - (SEMVER-MAJOR) build: remove support for s390 32-bit (Richard Lau) #58070 - [
4ab254c9f2
] - (SEMVER-MAJOR) deps: V8: backport 954187bb1b87 (Joyee Cheung) #58070 - [
732923b927
] - (SEMVER-MAJOR) deps: patch V8 to support compilation with MSVC (StefanStojanovic) #58070 - [
972834d7c0
] - (SEMVER-MAJOR) deps: always define V8_EXPORT_PRIVATE as no-op (Michaël Zasso) #58070 - [
7098bff3a9
] - (SEMVER-MAJOR) deps: disable V8 concurrent sparkplug compilation (Michaël Zasso) #58070 - [
dc82c40d4a
] - (SEMVER-MAJOR) deps: use std::map in MSVC STL for EphemeronRememberedSet (Joyee Cheung) #58070 - [
42f5130ee2
] - (SEMVER-MAJOR) deps: patch V8 for illumos (Dan McDonald) #58070 - [
23b17dbd9e
] - (SEMVER-MAJOR) deps: remove problematic comment from v8-internal (Michaël Zasso) #58070 - [
c5d71fcdab
] - (SEMVER-MAJOR) deps: define V8_PRESERVE_MOST as no-op on Windows (Stefan Stojanovic) #58070 - [
fbc2005b15
] - (SEMVER-MAJOR) deps: fix FP16 bitcasts.h (Stefan Stojanovic) #58070 - [
57f9430503
] - (SEMVER-MAJOR) deps: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) #58070 - [
f26cab1b85
] - (SEMVER-MAJOR) src: update NODE_MODULE_VERSION to 137 (Michaël Zasso) #58070 - [
f8923a4f17
] - (SEMVER-MAJOR) build: reset embedder string to "-node.0" (Michaël Zasso) #58070 - [
c7964bc02b
] - (SEMVER-MAJOR) deps: update V8 to 13.6.233.8 (Michaël Zasso) #58070 - [
6682861d6f
] - (SEMVER-MAJOR) build: downgrade armv7 support to experimental (Michaël Zasso) #58071 - [
0579e0ec93
] - (SEMVER-MAJOR) buffer: move SlowBuffer to EOL (James M Snell) #58008 - [
a55f5d5e63
] - (SEMVER-MAJOR) readline: add stricter validation for functions called after closed (Dario Piotrowicz) #57680 - [
d16b0bae55
] - (SEMVER-MAJOR) http2: session tracking and graceful server close (Kushagra Pandey) #57586 - [
e2b94dc3f9
] - (SEMVER-MAJOR) readline: fix unicode line separators being ignored (Dario Piotrowicz) #57591 - [
4a47ce5ff9
] - (SEMVER-MAJOR) Revert "assert,util: revert recursive breaking change" (Ruben Bridgewater) #57622 - [
7d4db69049
] - (SEMVER-MAJOR) http: remove outgoingmessage _headers and _headersList (Yagiz Nizipli) #57551 - [
fabf9384e0
] - (SEMVER-MAJOR) fs: remove ability to call truncate with fd (Yagiz Nizipli) #57567 - [
a587bd2ee2
] - (SEMVER-MAJOR) net: make _setSimultaneousAccepts() end-of-life deprecated (Yagiz Nizipli) #57550 - [
c6bca3fd34
] - (SEMVER-MAJOR) child_process: deprecate passingargs
tospawn
andexecFile
(Daniel Venable) #57199 - [
e42c01b56d
] - (SEMVER-MAJOR) buffer: makebuflen
in integer range (zhenweijin) #51821 - [
cc08ad56b8
] - (SEMVER-MAJOR) tls: remove deprecated tls.createSecurePair (Jonas) #57361 - [
6f2a6b262b
] - (SEMVER-MAJOR) tls: make server.prototype.setOptions end-of-life (Yagiz Nizipli) #57339 - [
0c371d919e
] - (SEMVER-MAJOR) lib: remove obsolete Cipher export (James M Snell) #57266 - [
2cbf3c38db
] - (SEMVER-MAJOR) timers: check for immediate instance in clearImmediate (Gürgün Dayıoğlu) #57069 - [
4f512faf4a
] - (SEMVER-MAJOR) lib: unexpose six process bindings (Michaël Zasso) #57149 - [
8b40221777
] - (SEMVER-MAJOR) build: bump supported macOS version to 13.5 (Michaël Zasso) #57115 - [
5d7091f1bc
] - (SEMVER-MAJOR) timers: set several methods EOL (Yagiz Nizipli) #56966 - [
d1f8ccb10d
] - (SEMVER-MAJOR) url: expose urlpattern as global (Jonas) #56950 - [
ed52ab913b
] - (SEMVER-MAJOR) build: increase minimum Xcode version to 16.1 (Michaël Zasso) #56824 - [
1a2eb15bc6
] - (SEMVER-MAJOR) test_runner: remove promises returned by t.test() (Colin Ihrig) #56664 - [
96718268fe
] - (SEMVER-MAJOR) test_runner: remove promises returned by test() (Colin Ihrig) #56664 - [
aa3523ec22
] - (SEMVER-MAJOR) test_runner: automatically wait for subtests to finish (Colin Ihrig) #56664 - [
6857dbc018
] - (SEMVER-MAJOR) test: disable fast API call count checks (Michaël Zasso) #55014 - [
89f661dd66
] - (SEMVER-MAJOR) build: link V8 with atomic library (Michaël Zasso) #55014 - [
7e8752006a
] - (SEMVER-MAJOR) src: update GetForegroundTaskRunner override (Etienne Pierre-doray) #55014 - [
44b0e423dc
] - (SEMVER-MAJOR) build: remove support for ppc 32-bit (Michaël Zasso) #55014 - [
6f965260dd
] - (SEMVER-MAJOR) tools: update V8 gypfiles for 13.0 (Michaël Zasso) #55014 - [
52d39441d0
] - (SEMVER-MAJOR) deps: V8: cherry-pick f915fa4c9f41 (Olivier Flückiger) #55014 - [
99ffe3555a
] - (SEMVER-MAJOR) deps: V8: cherry-pick 0d5d6e71bbb0 (Yagiz Nizipli) #55014 - [
5d8011d91c
] - (SEMVER-MAJOR) deps: V8: cherry-pick 0c11feeeca4a (Michaël Zasso) #55014 - [
d85d2f8350
] - (SEMVER-MAJOR) deps: define V8_PRESERVE_MOST as no-op on Windows (Stefan Stojanovic) #55014 - [
e8f55f7b7a
] - (SEMVER-MAJOR) deps: always define V8_NODISCARD as no-op (Michaël Zasso) #55014 - [
b3c1b63a5d
] - (SEMVER-MAJOR) deps: fix FP16 bitcasts.h (Stefan Stojanovic) #55014 - [
d0361f0bba
] - (SEMVER-MAJOR) deps: patch V8 to support compilation with MSVC (StefanStojanovic) #55014 - [
a4e0fce896
] - (SEMVER-MAJOR) deps: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) #55014 - [
4f8fd566cc
] - (SEMVER-MAJOR) deps: disable V8 concurrent sparkplug compilation (Michaël Zasso) #55014 - [
1142f78f1d
] - (SEMVER-MAJOR) deps: always define V8_EXPORT_PRIVATE as no-op (Michaël Zasso) #55014 - [
7917b67313
] - (SEMVER-MAJOR) src: update NODE_MODULE_VERSION to 134 (Michaël Zasso) #55014 - [
1f654e655c
] - (SEMVER-MAJOR) build: reset embedder string to "-node.0" (Michaël Zasso) #55014 - [
5edec0e39a
] - (SEMVER-MAJOR) deps: update V8 to 13.0.245.25 (Michaël Zasso) #55014 - [
25b22e4754
] - (SEMVER-MAJOR) deps: upgrade npm to 11.0.0 (npm team) #56274 - [
529b56ef9d
] - (SEMVER-MAJOR) fs: deprecate passing invalid types infs.existsSync
(Carlos Espa) #55753 - [
bf3bc4ec2f
] - (SEMVER-MAJOR) src: drop --experimental-permission in favour of --permission (Rafael Gonzaga) #56240 - [
fd8de670da
] - (SEMVER-MAJOR) stream: catch and forward error from dest.write (jakecastelli) #55270 - [
47b80c293d
] - (SEMVER-MAJOR) deps: update undici to 7.0.0 (Node.js GitHub Bot) #56070 - [
58982d712b
] - (SEMVER-MAJOR) src: add async context frame to AsyncResource (Gerhard Stöbich) #56082 - [
4ee87b8bc3
] - (SEMVER-MAJOR) zlib: deprecate classes usage withoutnew
(Yagiz Nizipli) #55718 - [
b02cd411c2
] - (SEMVER-MAJOR) fs: runtime deprecatefs.F_OK
,fs.R_OK
,fs.W_OK
,fs.X_OK
(Livia Medeiros) #49686 - [
d9540b51eb
] - (SEMVER-MAJOR) fs: removedirent.path
(Antoine du Hamel) #55548 - [
0368f2f662
] - (SEMVER-MAJOR) repl: runtime deprecate instantiating without new (Aviv Keller) #54869 - [
03dcd7077a
] - (SEMVER-MAJOR) src: nuke deprecated and un-used enum members inOptionEnvvarSettings
(Juan José) #53079 - [
51ae57673d
] - (SEMVER-MAJOR) lib: make ALS default to AsyncContextFrame (Stephen Belanger) #55552 - [
11fbdd8c9d
] - (SEMVER-MAJOR) url: runtime deprecate url.parse (Yagiz Nizipli) #55017 - [
019efe1453
] - (SEMVER-MAJOR) lib: runtime deprecate SlowBuffer (Rafael Gonzaga) #55175
Semver-Minor Commits
- [
bf9f25719a
] - (SEMVER-MINOR) esm: graduate import.meta properties (James M Snell) #58011 - [
947c6a4405
] - (SEMVER-MINOR) src: add ExecutionAsyncId getter for any Context (Attila Szegedi) #57820 - [
ea04184328
] - (SEMVER-MINOR) worker: add worker.getHeapStatistics() (Matteo Collina) #57888 - [
ec79f7686d
] - (SEMVER-MINOR) util: addtypes.isFloat16Array()
(Livia Medeiros) #57879 - [
13dee58d0e
] - (SEMVER-MINOR) test_runner: add global setup and teardown functionality (Pietro Marchini) #57438 - [
932c2d9c70
] - (SEMVER-MINOR) stream: preserve AsyncLocalStorage context in finished() (Gürgün Dayıoğlu) #57865 - [
18d6249580
] - (SEMVER-MINOR) repl: add support for multiline history (Giovanni Bucci) #57400 - [
c3e44342d9
] - (SEMVER-MINOR) lib: add defaultValue and name options to AsyncLocalStorage (James M Snell) #57766 - [
f99f815641
] - (SEMVER-MINOR) doc: graduate multiple experimental apis (James M Snell) #57765 - [
21f3c96199
] - (SEMVER-MINOR) esm: support top-level Wasm without package type (Guy Bedford) #57610 - [
ada34bd0ea
] - (SEMVER-MINOR) http: support http proxy for fetch under NODE_USE_ENV_PROXY (Joyee Cheung) #57165 - [
05cf1410b1
] - (SEMVER-MINOR) assert: mark partialDeepStrictEqual() as stable (Ruben Bridgewater) #57370 - [
57e49ee777
] - (SEMVER-MINOR) esm: support source phase imports for WebAssembly (Guy Bedford) #56919 - [
55413004c8
] - (SEMVER-MINOR) stream: handle generator destruction from Duplex.from() (Matthieu Sieben) #55096
Semver-Patch Commits
- [
7df9558efc
] - assert: supportFloat16Array
in loose deep equality checks (Livia Medeiros) #57881 - [
d9e78c00c1
] - assert,util: fix constructor lookup in deep equal comparison (Ruben Bridgewater) #57876 - [
f4572f0826
] - assert,util: improve deep object comparison performance (Ruben Bridgewater) #57648 - [
2e9fb6e1e0
] - assert,util: improve unequal number comparison performance (Ruben Bridgewater) #57619 - [
5f9cc5ecbb
] - assert,util: improve array comparison (Ruben Bridgewater) #57619 - [
b5b192314c
] - async_hooks: enable AsyncLocalStorage once constructed (Chengzhong Wu) #58029 - [
442b4162fb
] - benchmark: add sqlite prepare select get (Vinícius Lourenço) #58040 - [
2d894eacae
] - benchmark: add sqlite prepare select all (Vinícius Lourenço) #58040 - [
4d47f3afef
] - benchmark: add sqlite is transaction (Vinícius Lourenço) #58040 - [
85f2bbc02b
] - benchmark: add sqlite prepare insert (Vinícius Lourenço) #58040 - [
e61b38e47d
] - benchmark: disambiguatefilename
anddirname
read perf (Antoine du Hamel) #58056 - [
ca86c93390
] - buffer: avoid creating unnecessary environment (Yagiz Nizipli) #58053 - [
dc22890dd8
] - buffer: improve byteLength performance (Yagiz Nizipli) #58048 - [
619bf86fe9
] - buffer: define global v8::CFunction objects as const (Mert Can Altin) #57676 - [
d24414ceec
] - build: use$(BUILDTYPE)
when cleaning coverage files (Aviv Keller) #57995 - [
004913992c
] - build: define python when generatingout/Makefile
(Aviv Keller) #57970 - [
77d11f9c7c
] - build: fix zstd libname (Antoine du Hamel) #57999 - [
74473af8ee
] - build: use clang-cl in coverage-windows workflow (Michaël Zasso) #57919 - [
46fc497e7b
] - build: fix missing files warning (Luigi Pinca) #57870 - [
403264c02e
] - build: remove redundant-mXX
flags for V8 (Michaël Zasso) #57907 - [
e55b02b368
] - build: drop support for python 3.8 (Aviv Keller) #55239 - [
234c71077b
] - crypto: fix cross-realmSharedArrayBuffer
validation (Antoine du Hamel) #57974 - [
14367588d8
] - crypto: fix cross-realm check ofArrayBuffer
(Felipe Forbeck) #57828 - [
0f55a96e9c
] - crypto: forbid passingFloat16Array
togetRandomValues()
(Livia Medeiros) #57880 - [
dce6f43a4f
] - crypto: revert dangerous uses of std::string_view (Tobias Nießen) #57816 - [
fd3fb0c347
] - crypto: fix misleading positional argument (Tobias Nießen) #57843 - [
92aae40dce
] - crypto: make auth tag size assumption explicit (Tobias Nießen) #57803 - [
4793bb2fdc
] - crypto: remove CipherBase::Init (Tobias Nießen) #57787 - [
e567952388
] - crypto: remove BoringSSL dh-primes addition (Shelley Vohr) #57023 - [
270ab65ee4
] - deps: update ada to 3.2.3 (Node.js GitHub Bot) #58045 - [
f725127c19
] - deps: update zstd to 1.5.7 (Node.js GitHub Bot) #57940 - [
fd6adb7de6
] - deps: update simdutf to 6.5.0 (Node.js GitHub Bot) #57939 - [
cdedec7e29
] - deps: update undici to 7.8.0 (Node.js GitHub Bot) #57770 - [
878dc9337e
] - deps: update zlib to 1.3.0.1-motley-780819f (Node.js GitHub Bot) #57768 - [
3e885e1441
] - deps: update timezone to 2025b (Node.js GitHub Bot) #57857 - [
e92e100c9d
] - deps: update amaro to 0.5.2 (Node.js GitHub Bot) #57871 - [
afc49db038
] - deps: update simdutf to 6.4.2 (Node.js GitHub Bot) #57855 - [
70bd8bc174
] - deps: delete OpenSSL demos, doc and test folders (Michaël Zasso) #57835 - [
40dcd4a3d1
] - deps: upgrade npm to 11.3.0 (npm team) #57801 - [
678d82b9be
] - deps: update c-ares to v1.34.5 (Node.js GitHub Bot) #57792 - [
f079c4aa37
] - deps: update simdutf to 6.4.0 (Node.js GitHub Bot) #56764 - [
ec29f563a9
] - deps: update ada to 3.2.2 (Yagiz Nizipli) #57693 - [
95296d0d84
] - deps: update amaro to 0.5.1 (Marco Ippolito) #57704 - [
c377394657
] - deps: update undici to 7.6.0 (nodejs-github-bot) #57685 - [
a56175561a
] - deps: update amaro to 0.5.0 (nodejs-github-bot) #57687 - [
a86912a462
] - deps: update icu to 77.1 (Node.js GitHub Bot) #57455 - [
0b2cf1b642
] - deps: update undici to 7.5.0 (Node.js GitHub Bot) #57427 - [
c3927aa558
] - deps: upgrade npm to 11.2.0 (npm team) #57334 - [
9c7bc95f56
] - deps: update undici to 7.4.0 (Node.js GitHub Bot) #57236 - [
9dee7b94bf
] - deps: update undici to 7.3.0 (Node.js GitHub Bot) #56624 - [
cadc4ed067
] - deps: upgrade npm to 11.1.0 (npm team) #56818 - [
5770972dc6
] - deps: update undici to 7.2.1 (Node.js GitHub Bot) #56569 - [
67b647edc7
] - deps: update undici to 7.2.0 (Node.js GitHub Bot) #56335 - [
6c03beba46
] - deps: update undici to 7.1.0 (Node.js GitHub Bot) #56179 - [
8b4bacdf1a
] - dns: restore dns query cache ttl (Ethan Arrowood) #57640 - [
f6a085da3f
] - doc: mark Node.js 18 as End-of-Life (Richard Lau) #58084 - [
ca67c002d6
] - doc: add dario-piotrowicz to collaborators (Dario Piotrowicz) #58102 - [
cdb3d01194
] - doc: fix formatting ofimport.meta.filename
section (Antoine du Hamel) #58079 - [
0557d60f41
] - doc: fix env variable name inutil.styleText
(Antoine du Hamel) #58072 - [
d5783af1fe
] - doc: add returns for https.get (Eng Zer Jun) #58025 - [
a2260a4a18
] - doc: fix typo inbuffer.md
(chocolateboy) #58052 - [
352df168da
] - doc: reserve module version 136 for Electron 37 (Calvin) #57979 - [
ebbbdd15a1
] - doc: correct deprecation type ofassert.CallTracker
(René) #57997 - [
36b0a296db
] - doc: fixAsyncLocalStorage
example response changes after node v18 (Naor Tedgi (Abu Emma)) #57969 - [
8b4adfb439
] - doc: fix linter errors (Antoine du Hamel) #57987 - [
626b26d888
] - doc: mark devtools integration section as active development (Chengzhong Wu) #57886 - [
56a808d20b
] - doc: fix typo inmodule.md
(Alex Schwartz) #57889 - [
df90bd9656
] - doc: increase z-index of header element (Dario Piotrowicz) #57851 - [
74c415d46a
] - doc: add missing TS formats forload
hooks (Antoine du Hamel) #57837 - [
ce1b5aabd4
] - doc: clarify the multi REPL example (Dario Piotrowicz) #57759 - [
deb434e61f
] - doc: fix deprecation type forDEP0148
(Livia Medeiros) #57785 - [
a5ef2e8858
] - doc: list DOMException as a potential error raised by Node.js (Chengzhong Wu) #57783 - [
f66a2717ee
] - doc: add missing v0.x changelog entries (Antoine du Hamel) #57779 - [
05098668ba
] - doc: fix typo in writing-docs (Sebastian Beltran) #57776 - [
379718e26e
] - doc: clarify examples section in REPL doc (Dario Piotrowicz) #57762 - [
952a212377
] - doc: explicitly state that corepack will be removed in v25+ (Trivikram Kamat) #57747 - [
81066717d0
] - doc: update position type to integer | null in fs (Yukihiro Hasegawa) #57745 - [
a00fec62f9
] - doc: allow the $schema property in node.config.json (Remco Haszing) #57560 - [
cc848986ad
] - doc: update CI instructions (Antoine du Hamel) #57743 - [
576a6df5bb
] - doc: update example of usingawait
in REPL (Dario Piotrowicz) #57653 - [
0a15b00d34
] - doc: add back mention of visa fees to onboarding doc (Darshan Sen) #57730 - [
766d9a8eac
] - doc: remove link toQUIC.md
(Antoine du Hamel) #57729 - [
a8da209796
] - doc: process.execve is only unavailable for Windows (Yaksh Bariya) #57726 - [
d066d1fcec
] - doc: mark type stripping as release candidate (Marco Ippolito) #57705 - [
35096b7353
] - doc: clarifyunhandledRejection
events behaviors in process doc (Dario Piotrowicz) #57654 - [
27b113dced
] - doc: improved fetch docs (Alessandro Miliucci) #57296 - [
310ccb5b7d
] - doc: document REPL custom eval arguments (Dario Piotrowicz) #57690 - [
44dfbeca23
] - doc: classify Chrome DevTools Protocol as tier 2 (Chengzhong Wu) #57634 - [
1e920a06c7
] - doc: mark multiple vm module APIS stable (James M Snell) #57513 - [
db770a0b3b
] - doc: correct status of require(esm) warning in v20 changelog (Joyee Cheung) #57529 - [
24c460dc0c
] - doc: reserve NMV 135 for Electron 36 (David Sanders) #57151 - [
5119049ca6
] - doc: fix faulty YAML metadata (Antoine du Hamel) #56508 - [
7bedcfd4a2
] - doc: fix typo (Alex Yang) #56125 - [
069ec1b983
] - doc: consolidate history table of CustomEvent (Edigleysson Silva (Edy)) #55758 - [
304f164f52
] - doc,build,win: update docs with clang (Stefan Stojanovic) #57991 - [
c4ca0d7ab1
] - esm: avoidimport.meta
setup costs for unused properties (Antoine du Hamel) #57286 - [
073d40be42
] - fs: added test for missing call to uv_fs_req_cleanup (Justin Nietzel) #57811 - [
52e4967f45
] - fs: add missing call to uv_fs_req_cleanup (Justin Nietzel) #57811 - [
3edea66431
] - fs: improve globSync performance (Rich Trott) #57725 - [
b8865dfda5
] - fs: only show deprecation warning when error code matches (Antoine du Hamel) #56549 - [
c91ce2120c
] - fs: fixgetDirent().parentPath
when type isUV_DIRENT_UNKNOWN
(Livia Medeiros) #55553 - [
5e9cac2714
] - http2: add raw header array support to h2Session.request() (Tim Perry) #57917 - [
924ebcd7f7
] - http2: use args.This() instead of args.Holder() (Joyee Cheung) #58004 - [
a3655645d9
] - http2: fix graceful session close (Kushagra Pandey) #57808 - [
406b06b046
] - http2: fix check forframe->hd.type
(hanguanqiang) #57644 - [
8f3aeea613
] - http2: skip writeHead if stream is closed (Shima Ryuhei) #57686 - [
398674a25a
] - lib: avoid StackOverflow onserializeError
(Chengzhong Wu) #58075 - [
4ef6376cff
] - lib: resolve the issue of not adhering to the specified buffer size (0hm☘️🏳️⚧️) #55896 - [
5edcb28583
] - lib: fix AbortSignal.any() with timeout signals (Gürgün Dayıoğlu) #57867 - [
68c5954d59
] - lib: use Map primordial for ActiveAsyncContextFrame (Gürgün Dayıoğlu) #57670 - [
62640750fd
] - meta: allow penetration testing on live system with prior authorization (Matteo Collina) #57966 - [
33803a5fbb
] - meta: fix subsystem in commit title (Luigi Pinca) #57945 - [
7e195ec8f8
] - meta: bump Mozilla-Actions/sccache-action from 0.0.8 to 0.0.9 (dependabot[bot]) #57720 - [
6ab9db9552
] - meta: bump actions/download-artifact from 4.1.9 to 4.2.1 (dependabot[bot]) #57719 - [
f0c84a6aab
] - meta: bump actions/setup-python from 5.4.0 to 5.5.0 (dependabot[bot]) #57718 - [
eb1a515c99
] - meta: bump peter-evans/create-pull-request from 7.0.7 to 7.0.8 (dependabot[bot]) #57717 - [
89c156d715
] - meta: bump github/codeql-action from 3.28.10 to 3.28.13 (dependabot[bot]) #57716 - [
8e27c827fa
] - meta: bump actions/cache from 4.2.2 to 4.2.3 (dependabot[bot]) #57715 - [
dd5e580acd
] - meta: bump actions/setup-node from 4.2.0 to 4.3.0 (dependabot[bot]) #57714 - [
4876e1658f
] - meta: bump actions/upload-artifact from 4.6.1 to 4.6.2 (dependabot[bot]) #57713 - [
004914722f
] - module: fix incorrect formatting in require(esm) cycle error message (haykam821) #57453 - [
a5406899db
] - module: improvegetPackageType
performance (Dario Piotrowicz) #57599 - [
6adbbe2887
] - module: remove unnecessaryreadPackage
function (Dario Piotrowicz) #57596 - [
1e490aa570
] - module: improve typescript error message format (Marco Ippolito) #57687 - [
ecd081df82
] - node-api: add nested object wrap and napi_ref test (Chengzhong Wu) #57981 - [
b4f6aa8a87
] - node-api: convert NewEnv to node_napi_env__::New (Vladimir Morozov) #57834 - [
8cd98220af
] - os: fix netmask format check condition in getCIDR function (Wiyeong Seo) #57324 - [
8b83ab39e3
] - process: disable building execve on IBM i (Abdirahim Musse) #57883 - [
9230f22029
] - process: remove support for undocumented symbol (Antoine du Hamel) #56552 - [
5835de65ee
] - quic: fix debug log (jakecastelli) #57689 - [
14b357940c
] - Revert "readline: add stricter validation for functions called after closed" (Dario Piotrowicz) #58024 - [
ab99ee6f4c
] - repl: fix multiline history editing string order (Giovanni Bucci) #57874 - [
160da87484
] - repl: deprecaterepl.builtinModules
(Dario Piotrowicz) #57508 - [
10eb2b079e
] - sqlite: add location method (Edy Silva) #57860 - [
da05addc5e
] - sqlite: add getter to detect transactions (Colin Ihrig) #57925 - [
0df87e07a0
] - sqlite: add timeout options to DatabaseSync (Edy Silva) #57752 - [
2b2a0bf96b
] - sqlite: add setReturnArrays method to StatementSync (Gürgün Dayıoğlu) #57542 - [
064e0ebc90
] - sqlite: enable common flags (Edy Silva) #57621 - [
26fa594454
] - sqlite: refactor prepared statement iterator (Colin Ihrig) #57569 - [
0bf2c2827c
] - sqlite,doc,test: add aggregate function (Edy Silva) #56600 - [
da281d7651
] - sqlite,src: refactor sqlite value conversion (Edy Silva) #57571 - [
413e93ce7d
] - src: only block on user blocking worker tasks (Joyee Cheung) #58047 - [
a5d01667e1
] - src: use priority queue to run worker tasks (Joyee Cheung) #58047 - [
d2f5ceb757
] - src: add more debug logs and comments in NodePlatform (Joyee Cheung) #58047 - [
130eaa20a4
] - src: improve parsing of boolean options (Edy Silva) #58039 - [
f7ab6300de
] - src: remove unused detachArrayBuffer method (Yagiz Nizipli) #58055 - [
d712aa4cc0
] - src: fix internalModuleStat v8 fast path (Yagiz Nizipli) #58054 - [
902cbe66a2
] - src: fix EnvironmentOptions.async_context_frame default value (Chengzhong Wu) #58030 - [
cfb39b9adb
] - src: annotate BaseObjects in the heap snapshots correctly (Joyee Cheung) #57417 - [
4e02f239e4
] - src: use macros to reduce code duplication is cares_wrap (James M Snell) #57937 - [
f36d30043a
] - src: improve error handling in cares_wrap (James M Snell) #57937 - [
88f047b828
] - src: use ranges library (C++20) to simplify code (Daniel Lemire) #57975 - [
09206e9731
] - src: fix -Wunreachable-code-return in node_sea (Shelley Vohr) #57664 - [
87fd838a73
] - src: add dcheck_eq for Object::New constructor calls (Jonas) #57943 - [
2877207e19
] - src: move windows specific fns to_WIN32
(Yagiz Nizipli) #57951 - [
b4055150bd
] - src: avoid calling SetPrototypeV2() (Yagiz Nizipli) #57949 - [
46062f14e7
] - src: change DCHECK to CHECK (Wuli Zuo) #57948 - [
a1106cc878
] - src: improve thread safety of TaskQueue (Shelley Vohr) #57910 - [
99ed5034ea
] - src: fixup errorhandling more in various places (James M Snell) #57852 - [
227f2cb9a8
] - src: fix typo in comments (Edy Silva) #57868 - [
a7d614a930
] - src: update std::vector<v8::Local<T>> to use v8::LocalVector<T> (Aditi) #57646 - [
4e7ae97dce
] - src: update std::vector<v8::Local<T>> to use v8::LocalVector<T> (Aditi) #57642 - [
aab4adb34e
] - src: update std::vector<v8::Local<T>> to use v8::LocalVector<T> (Aditi) #57578 - [
fded233676
] - src: migrate from deprecated SnapshotCreator constructor (Joyee Cheung) #55337 - [
8c5f9b4708
] - src: improve error message for invalid child stdio type in spawn_sync (Dario Piotrowicz) #57589 - [
14d751a736
] - src: implement util.types fast API calls (Ruben Bridgewater) #57819 - [
5e14fd13aa
] - src: enter and lock isolate properly in json parser (Joyee Cheung) #57823 - [
34350019f8
] - src: add BaseObjectPtr nullptr operations (Chengzhong Wu) #56585 - [
d50b8a8815
] - src: removevoid*
->char*
->void*
casts (Tobias Nießen) #57791 - [
2b0f65ed5f
] - src: improve error handling innode_env_var.cc
(Antoine du Hamel) #57767 - [
fc5295521a
] - src: improve error handling in node_http2 (James M Snell) #57764 - [
c707633f45
] - src: improve error handing in node_messaging (James M Snell) #57760 - [
4093de6ff5
] - src: improve error handling in crypto_x509 (James M Snell) #57757 - [
d309712820
] - src: improve error handling in callback.cc (James M Snell) #57758 - [
6d39c47ee8
] - src: improve StringBytes error handling (James M Snell) #57706 - [
3ff37a844f
] - src: initialize privateSymbols for per_context (Jason Zhang) #57479 - [
56380df40c
] - src: improve error handling in process.env handling (James M Snell) #57707 - [
db8b29d282
] - src: remove unused variable in crypto_x509.cc (Michaël Zasso) #57754 - [
ed72044cca
] - src: update std::vector<v8::Local<T>> to use v8::LocalVector<T> (Aditi) #57733 - [
50f57073d8
] - src: fix kill signal 0 on Windows (Stefan Stojanovic) #57695 - [
e144b69044
] - src: fixup fs SyncCall to propagate errors correctly (James M Snell) #57711 - [
f58c12078b
] - src: fix inefficient usage of v8_inspector::StringView (Simon Zünd) #52372 - [
a3ad331ce5
] - src: disable abseil deadlock detection (Chengzhong Wu) #57582 - [
e4ff2b6fad
] - src: remove deleted tls file (Shelley Vohr) #57481 - [
d5db63a1a8
] - Revert "src: do not expose simdjson.h in node_config_file.h" (James M Snell) #57197 - [
076a99f11d
] - src: do not expose simdjson.h in node_config_file.h (Cheng) #57173 - [
ad845588d0
] - Revert "src: modernize cleanup queue to use c++20" (Richard Lau) #56846 - [
581b44421a
] - src: modernize cleanup queue to use c++20 (Yagiz Nizipli) #56063 - [
a154352215
] - src,permission: make ERR_ACCESS_DENIED more descriptive (Rafael Gonzaga) #57585 - [
6156f8a6d5
] - Revert "stream: handle generator destruction from Duplex.from()" (jakecastelli) #56278 - [
a0077c9b8b
] - test: remove deadlock workaround (Joyee Cheung) #58047 - [
1f2b26172a
] - test: prevent extraneous HOSTNAME substitution in test-runner-output (René) #58076 - [
9ba16469c3
] - test: update WPT for WebCryptoAPI to b48efd681e (Node.js GitHub Bot) #58044 - [
3d708e0132
] - test: add missing newlines to repl .exit writes (Dario Piotrowicz) #58041 - [
3457aee009
] - test: use validateByRetainingPath in heapdump tests (Joyee Cheung) #57417 - [
3d34c5f5e3
] - test: add fast api tests for getLibuvNow() (Yagiz Nizipli) #58022 - [
b8b019245b
] - test: add ALS test using http agent keep alive (Gerhard Stöbich) #58017 - [
cbd2abeb8d
] - test: deflake test-http2-options-max-headers-block-length (Luigi Pinca) #57959 - [
21d052a578
] - test: rename to getCallSites (Wuli Zuo) #57948 - [
f2fd19e641
] - test: force GC in test-file-write-stream4 (Luigi Pinca) #57930 - [
7039173398
] - test: enable skipped colorize test (Shima Ryuhei) #57887 - [
baa6968f95
] - test: update WPT for WebCryptoAPI to 164426ace2 (Node.js GitHub Bot) #57854 - [
660d238798
] - test: deflake test-buffer-large-size (jakecastelli) #57789 - [
ce2274d52f
] - test: add test for frame count being 0.5 (Jake Yuesong Li) #57732 - [
9d2a09db00
] - test: fix the decimal fractions explaination (Jake Yuesong Li) #57732 - [
12f4124af8
] - Revert "test: add tests for REPL custom evals" (Tobias Nießen) #57793 - [
3cdf8ec7c7
] - test: add tests for REPL custom evals (Dario Piotrowicz) #57691 - [
9af8b92fb4
] - test: update expected error message for macOS (Antoine du Hamel) #57742 - [
eaec2b5169
] - test: fix dangling promise in test_runner no isolation test setup (Jacob Smith) #57595 - [
51ded6eaeb
] - test: improve test description (jakecastelli) #56943 - [
75b9c1cdd8
] - test: remove test-macos-app-sandbox flaky designation (Luigi Pinca) #56471 - [
72537f5631
] - test: remove flaky test-pipe-file-to-http designation (Luigi Pinca) #56472 - [
984a472137
] - test: remove test-runner-watch-mode-complex flaky designation (Luigi Pinca) #56470 - [
23275cc7bc
] - test: add test case forutil.inspect
(Jordan Harband) #55778 - [
99e4685636
] - test_runner: support mocking json modules (Jacob Smith) #58007 - [
8207828aad
] - test_runner: recalculate run duration on watch restart (Pietro Marchini) #57786 - [
7416a7f35a
] - test_runner: match minimum file column to 'all files' (Shima Ryuhei) #57848 - [
87ac6cfed7
] - test_runner: improve --test-timeout to be per test (jakecastelli) #57672 - [
ae08210e37
] - tools: ignore V8 tests in CodeQL scans (Rich Trott) #58081 - [
25c17ab365
] - tools: enable CodeQL config file (Rich Trott) #58036 - [
c3d2a1c723
] - tools: ignore test directory in CodeQL scans (Rich Trott) #57978 - [
d31e630462
] - tools: add semver-major release support to release-lint (Antoine du Hamel) #57892 - [
3a99975a88
] - tools: add codeql nightly (Rafael Gonzaga) #57788 - [
77dee41a5d
] - tools: edit create-release-proposal workflow to handle pr body length (Elves Vieira) #57841 - [
6592803bd0
] - tools: add zstd updater to workflow (KASEYA\yahor.siarheyenka) #57831 - [
c08349393b
] - tools: remove unusedosx-pkg-postinstall.sh
(Antoine du Hamel) #57667 - [
82bb228796
] - tools: do not use temp files when merging PRs (Antoine du Hamel) #57790 - [
f2cdc98e75
] - tools: update gyp-next to 0.20.0 (Node.js GitHub Bot) #57683 - [
02d36cd61d
] - tools: update doc to new version (Node.js GitHub Bot) #57769 - [
74ac98c78e
] - tools: bump the eslint group in /tools/eslint with 4 updates (dependabot[bot]) #57721 - [
dcba975031
] - tools: enable linter intest/fixtures/source-map/output
(Antoine du Hamel) #57700 - [
b9043c9e9b
] - tools: enable linter intest/fixtures/errors
(Antoine du Hamel) #57701 - [
bbbf49812e
] - tools: enable linter intest/fixtures/test-runner/output
(Antoine du Hamel) #57698 - [
9f1ad3c6da
] - tools: enable linter intest/fixtures/eval
(Antoine du Hamel) #57699 - [
98df74464f
] - tools: enable linter on some fixtures file (Antoine du Hamel) #57674 - [
cf02cdb799
] - tools: update ESLint to 9.23 (Antoine du Hamel) #57673 - [
8790348303
] - tools: update doc to new version (Node.js GitHub Bot) #57085 - [
b1ee186a62
] - tools: update doc to new version (Node.js GitHub Bot) #51192 - [
be34b5e7fc
] - tools: disable doc building when ICU is not available (Antoine du Hamel) #51192 - [
6a486347fb
] - url: improve canParse() performance for non-onebyte strings (Yagiz Nizipli) #58023 - [
7e3503fff1
] - util: fix parseEnv handling of invalid lines (Augustin Mauroy) #57798 - [
594269fcca
] - util: fix formatting of objects with built-in Symbol.toPrimitive (Shima Ryuhei) #57832 - [
8ca56a8db8
] - util: preservelength
of deprecated functions (Livia Medeiros) #57806 - [
6add4c56aa
] - util: fix parseEnv incorrectly splitting multiple ‘=‘ in value (HEESEUNG) #57421 - [
e577618227
] - util: inspect: enumerable Symbols no longer have square brackets (Jordan Harband) #55778 - [
cb7eb15161
] - watch: clarify completion/failure watch mode messages (Dario Piotrowicz) #57926 - [
65562127bd
] - watch: check parent and child path properly (Jason Zhang) #57425 - [
b39fb9aa7f
] - win: fix SIGQUIT on ClangCL (Stefan Stojanovic) #57659 - [
76c5ea669d
] - worker: add ESM version examples to worker docs (fisker Cheung) #57645 - [
17965eb33d
] - zlib: fix pointer alignment (jhofstee) #57727