Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
16.16.0-bullseye-slim
->23.4.0-bullseye-slim
Release Notes
nodejs/node
v23.4.0
Compare 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
Compare 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
Compare 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)Configuration
📅 Schedule: "before 3am on the first day of the month" (UTC).
🚦 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.