-
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
⬆️ Updates Node.js to v23 #1839
base: master
Are you sure you want to change the base?
Conversation
Thanks for the PR! This section of the codebase is owner by https://github.com/AlexRogalskiy/ - if they write a comment saying "LGTM" then it will be merged. |
Thanks for opening an issue! Make sure you've followed CONTRIBUTING.md. |
Hello from PR HelperIs your PR ready for review and processing? Mark the PR ready by including If you still have work to do, even after marking this ready. Put the PR on hold by including |
805dbf0
to
f5f966f
Compare
f5f966f
to
dbf8bd1
Compare
dbf8bd1
to
92c1b1e
Compare
92c1b1e
to
3025f09
Compare
3025f09
to
ef435a9
Compare
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
ef435a9
to
70e1aa8
Compare
This PR contains the following updates:
14.16.0
->23.4.0
Release Notes
nodejs/node (node)
v23.4.0
: 2024-12-10, Version 23.4.0 (Current), @aduh95 prepared by @targosCompare Source
Notable Changes
Introducing experimental
assert.partialDeepStrictEqual
Sometimes, when writing test, we want to validate that some specific properties
are present, and the mere presence of additional keys are not exactly relevant
for that specific test. For this use case, we can now use
assert.partialDeepStrictEqual
, which should be familiar to those already usingassert.deepStrictEqual
, with the main difference that it does not require allproperties in the
actual
parameter to be present in theexpected
parameter.Here are a few examples of usage:
Contributed by Giovanni Bucci in #54630.
Implement
--trace-env
and--trace-env-[js|native]-stack
This release introduces
--trace-env
,--trace-env-js-stack
and--trace-env-native-stack
CLI options that print information about any access to environment variables done in the current
Node.js instance to stderr. Currently in the logs, only the names of the environment variables
being accessed are printed, while the values are not printed to avoid leaking sensitive
information. To print the stack trace of the access, use
--trace-env-js-stack
and/or--trace-env-native-stack
.Contributed by Joyee Cheung in #55604.
Other notable changes
59d6891872
] - doc: add LJHarb to collaborators (Jordan Harband) #56132565b04a7be
] - (SEMVER-MINOR) net: addBlockList.isBlockList(value)
(James M Snell) #56078c9698ed6a4
] - (SEMVER-MINOR) net: supportblockList
innet.connect
(theanarkh) #5607530d604180d
] - (SEMVER-MINOR) net: supportblockList
innet.Server
(theanarkh) #560799fba5e1df1
] - (SEMVER-MINOR) net: addSocketAddress.parse
(James M Snell) #560764cdb03201e
] - (SEMVER-MINOR) process: deprecatefeatures.{ipv6,uv}
andfeatures.tls_*
(René) #55545efb9f05f59
] - (SEMVER-MINOR) sqlite: unflagnode:sqlite
module (Colin Ihrig) #55890d777d4a52d
] - (SEMVER-MINOR) sqlite: addStatementSync.prototype.iterate
method (tpoisseau) #54213Commits
5b0ce376a2
] - assert: optimize partial comparison of twoSet
s (Antoine du Hamel) #55970a4f57f0293
] - (SEMVER-MINOR) assert: add partialDeepStrictEqual (Giovanni Bucci) #546301b81a7d003
] - build: allow overriding clang usage (Shelley Vohr) #5601639c901307f
] - build: remove defaults for create-release-proposal (Rafael Gonzaga) #560427133c0459f
] - build: avoid compiling with VS v17.12 (Stefan Stojanovic) #55930ce53f1689f
] - build: set node_arch to target_cpu in GN (Shelley Vohr) #559672023b09d27
] - build: add create release proposal action (Rafael Gonzaga) #5569026ec99634c
] - build: use variable for crypto dep path (Shelley Vohr) #55928f48e289580
] - build: fix GN build for sqlite (Cheng) #55912fffabca6b8
] - build: compile bundled simdutf conditionally (Jakub Jirutka) #55886d8eb83c5c5
] - build: compile bundled simdjson conditionally (Jakub Jirutka) #5588683e02dc482
] - build: compile bundled ada conditionally (Jakub Jirutka) #55886816d37a187
] - (SEMVER-MINOR) cli: implement --trace-env and --trace-env-[js|native]-stack (Joyee Cheung) #5560453c0f2f186
] - crypto: ensure CryptoKey usages and algorithm are cached objects (Filip Skokan) #5610893d36bf1c8
] - crypto: allow non-multiple of 8 in SubtleCrypto.deriveBits (Filip Skokan) #552968680b8030c
] - deps: update ngtcp2 to 1.9.1 (Node.js GitHub Bot) #5609578a2a6ca1e
] - deps: upgrade npm to 10.9.2 (npm team) #5613552dfe5af4b
] - deps: update sqlite to 3.47.1 (Node.js GitHub Bot) #560943852b5c8d1
] - deps: update zlib to 1.3.0.1-motley-82a5fec (Node.js GitHub Bot) #55980f99f95f62f
] - deps: update corepack to 0.30.0 (Node.js GitHub Bot) #5597796e846de89
] - deps: update ngtcp2 to 1.9.0 (Node.js GitHub Bot) #55975d180a8aedb
] - deps: update simdutf to 5.6.3 (Node.js GitHub Bot) #55973288416a764
] - deps: upgrade npm to 10.9.1 (npm team) #55951cf3f7ac512
] - deps: update zlib to 1.3.0.1-motley-7e2e4d7 (Node.js GitHub Bot) #544327768b3d054
] - deps: update simdjson to 3.10.1 (Node.js GitHub Bot) #546789c6103833b
] - deps: update simdutf to 5.6.2 (Node.js GitHub Bot) #558897b133d6220
] - dgram: check udp buffer size to avoid fd leak (theanarkh) #56084e4529b8179
] - doc: add report version and history section (Chengzhong Wu) #56130718625a03a
] - doc: mention-a
flag for the release script (Ruy Adorno) #5612459d6891872
] - doc: add LJHarb to collaborators (Jordan Harband) #56132d7ed32404a
] - doc: add create-release-action to process (Rafael Gonzaga) #559933b4ef93371
] - doc: rename file to advocacy-ambassador-program.md (Tobias Nießen) #5604659e4087d5e
] - doc: add added tag and fix typo sqlite.md (Bart Louwers) #56012a1b26608ae
] - doc: remove unused import from sample code (Blended Bram) #55570498f44ad73
] - doc: add FAQ to releases section (Rafael Gonzaga) #55992d48348afaa
] - doc: move history entry to class description (Luigi Pinca) #5599196926ce13c
] - doc: add history entry for textEncoder.encodeInto() (Luigi Pinca) #55990e92d51d511
] - doc: improve GN build documentation a bit (Shelley Vohr) #559686be3824d6f
] - doc: fix deprecation codes (Filip Skokan) #56018fa2b35d28d
] - doc: remove confusing and outdated sentence (Luigi Pinca) #55988baed2763df
] - doc: deprecate passing invalid types infs.existsSync
(Carlos Espa) #55892a3f7db6b6d
] - doc: add doc for PerformanceObserver.takeRecords() (skyclouds2001) #55786770572423b
] - doc: add vetted courses to the ambassador benefits (Matteo Collina) #5593498f8f4a8a9
] - doc: ordernode:crypto
APIs alphabetically (Julian Gassner) #558311e0decb44c
] - doc: doc how to add message for promotion (Michael Dawson) #55843ff48c29724
] - doc: add esm example for zlib (Leonardo Peixoto) #55946ccc5a6d552
] - doc: document approach for building wasm in deps (Michael Dawson) #55940c8bb8a6ac5
] - doc: fix Node.js 23 column in CHANGELOG.md (Richard Lau) #559359d078802ad
] - doc: remove RedYetiDev from triagers team (Aviv Keller) #559475a2a757119
] - doc: add esm examples to node:timers (Alfredo González) #55857f711a48e15
] - doc: fix relative path mention in --allow-fs (Rafael Gonzaga) #55791219f5f2627
] - doc: include git node release --promote to steps (Rafael Gonzaga) #55835f9d25ed3e4
] - doc: add history entry for import assertion removal (Antoine du Hamel) #55883efb9f05f59
] - (SEMVER-MINOR) doc,lib,src,test: unflag sqlite module (Colin Ihrig) #55890a37e5fe5f8
] - fs: lazily load ReadFileContext (Gürgün Dayıoğlu) #559989289374248
] - http2: fix memory leak caused by premature listener removing (ywave620) #5596649af1c33ac
] - lib: add validation for options in compileFunction (Taejin Kim) #560238faf91846b
] - lib: fixfs.readdir
recursive async (Rafael Gonzaga) #56041a2382303d7
] - lib: refactor code to improve readability (Pietro Marchini) #5599530f26ba254
] - lib: avoid excluding symlinks in recursive fs.readdir with filetypes (Juan José) #557149b272ae339
] - meta: bump github/codeql-action from 3.27.0 to 3.27.5 (dependabot[bot]) #56103fb0e6ca68b
] - meta: bump actions/checkout from 4.1.7 to 4.2.2 (dependabot[bot]) #561020ab611513c
] - meta: bump step-security/harden-runner from 2.10.1 to 2.10.2 (dependabot[bot]) #56101ff4839b8ab
] - meta: bump actions/setup-node from 4.0.3 to 4.1.0 (dependabot[bot]) #56100f262207356
] - meta: add releasers as CODEOWNERS to proposal action (Rafael Gonzaga) #56043b6005b3fac
] - module: mark evaluation rejection in require(esm) as handled (Joyee Cheung) #56122b8ab5332a9
] - module: remove --experimental-default-type (Geoffrey Booth) #560924be5047030
] - module: do not warn when require(esm) comes from node_modules (Joyee Cheung) #55960c9698ed6a4
] - (SEMVER-MINOR) net: support blocklist in net.connect (theanarkh) #560759fba5e1df1
] - (SEMVER-MINOR) net: add SocketAddress.parse (James M Snell) #56076565b04a7be
] - (SEMVER-MINOR) net: add net.BlockList.isBlockList(value) (James M Snell) #5607830d604180d
] - (SEMVER-MINOR) net: support blocklist for net.Server (theanarkh) #560794cdb03201e
] - (SEMVER-MINOR) process: deprecatefeatures.{ipv6,uv}
andfeatures.tls_*
(René) #55545d09e57b26d
] - quic: update more QUIC implementation (James M Snell) #559861fb30d6e86
] - quic: multiple updates to quic impl (James M Snell) #559719e4f7aa808
] - sqlite: deps includesqlite3ext.h
(Alex Yang) #56010d777d4a52d
] - (SEMVER-MINOR) sqlite: addStatementSync.prototype.iterate
method (tpoisseau) #5421366451bb9ba
] - src: use spaceship operator in SocketAddress (James M Snell) #56059ad9ebe417a
] - src: add missing qualifiers to env.cc (Yagiz Nizipli) #5606256c4da240d
] - src: use std::string_view for process emit fns (Yagiz Nizipli) #5608626ab8e9823
] - src: remove dead code in async_wrap (Gerhard Stöbich) #560654dea44e468
] - src: avoid copy on getV8FastApiCallCount (Yagiz Nizipli) #56081b778a4fe46
] - src: fix check fd (theanarkh) #56000971f5f54df
] - src: safely remove the last line from dotenv (Shima Ryuhei) #55982497a9aea1c
] - src: fix kill signal on Windows (Hüseyin Açacak) #555148a935489f9
] - src,build: add no user defined deduction guides of CTAD check (Chengzhong Wu) #560715edb8d5919
] - test: remove test-fs-utimes flaky designation (Luigi Pinca) #56052046e642a80
] - test: ensurecli.md
is in alphabetical order (Antoine du Hamel) #56025da354f46cd
] - test: update WPT for WebCryptoAPI to3e3374e
(Node.js GitHub Bot) #560939486c7ce4c
] - test: update WPT for WebCryptoAPI to76dfa54
(Node.js GitHub Bot) #56093a8809fc0f5
] - test: move test-worker-arraybuffer-zerofill to parallel (Luigi Pinca) #560536194435b9e
] - test: update WPT for url to67880a4
(Node.js GitHub Bot) #55999f7567d46d8
] - test: make HTTP/1.0 connection test more robust (Arne Keller) #55959c157e026fc
] - test: convert readdir test to use test runner (Thomas Chetwin) #5575029362ce673
] - test: make x509 crypto tests work with BoringSSL (Shelley Vohr) #55927493e16c852
] - test: fix determining lower priority (Livia Medeiros) #5590899858ceb9f
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #559977c3a4d4bcd
] - test_runner: refactor Promise chain in run() (Colin Ihrig) #5595895e8c4ef6c
] - test_runner: refactor build Promise in Suite() (Colin Ihrig) #55958c048865199
] - test_runner: simplify hook running logic (Colin Ihrig) #559638197815fe8
] - test_runner: mark snapshot testing as stable (Colin Ihrig) #558978a5d8c7669
] - test_runner: mark context.plan() as stable (Colin Ihrig) #55895790a2ca3b7
] - tools: updatecreate-release-proposal
workflow (Antoine du Hamel) #5605498ce4652e2
] - tools: fix update-undici script (Michaël Zasso) #56069d6a6c8ace1
] - tools: allow dispatch oftools.yml
from forks (Antoine du Hamel) #56008cc96fce5eb
] - tools: fix nghttp3 updater script (Antoine du Hamel) #560072cd939cb95
] - tools: filter release keys to reduce interactivity (Antoine du Hamel) #559504b3919f1be
] - tools: update WPT updater (Antoine du Hamel) #5600354c46b8464
] - tools: add WPT updater for specific subsystems (Mert Can Altin) #5446032b1681b7f
] - tools: use tokenless Codecov uploads (Michaël Zasso) #55943475141e370
] - tools: add linter for release commit proposals (Antoine du Hamel) #55923d093820f64
] - tools: lint js indoc/**/*.md
(Livia Medeiros) #5590472eb710f0f
] - tools: fix riscv64 build failed (Lu Yahan) #52888882b70c83f
] - tools: bump cross-spawn from 7.0.3 to 7.0.5 in /tools/eslint (dependabot[bot]) #558949eccd7dba9
] - util: add fast path for Latin1 decoding (Mert Can Altin) #55275v22.12.0
Compare Source
v22.11.0
Compare Source
v22.10.0
: 2024-10-16, Version 22.10.0 (Current), @aduh95Compare Source
Notable Changes
New
"module-sync"
exports conditionThis release introduces a
"module-sync"
exports condition that's enabled whenrequire(esm)
is enabled, so packages can supply a synchronous ES module to theNode.js module loader, no matter if it's being required or imported. This is
similar to the
"module"
condition that bundlers have been using to supportrequire(esm)
in Node.js, and allows dual-package authors to opt into ESM-firstonly on newer versions of Node.js that supports
require(esm)
to avoid thedual-package hazard.
Or if the package is only meant to be run on Node.js and wants to fallback to
CJS on older versions that don't have
require(esm)
:For package authors: this only serves as a feature-detection mechanism for
packages that wish to support both CJS and ESM users during the period when some
active Node.js LTS versions support
require(esm)
while some older ones don't.When all active Node.js LTS lines support
require(esm)
, packages can simplifytheir distributions by bumping the major version, dropping their CJS exports,
and removing the
module-sync
exports condition (with onlymain
ordefault
targetting the ESM exports). If the package needs to support both bundlers and
being run unbundled on Node.js during the transition period, use both
module-sync
andmodule
and point them to the same ESM file. If the packagealready doesn't want to support older versions of Node.js that doesn't support
require(esm)
, don't use this export condition.For bundlers/tools: they should avoid implementing this stop-gap condition.
Most existing bundlers implement the de-facto bundler standard
module
exports condition, and that should be enough to support users who want to bundle
ESM from CJS consumers. Users who want both bundlers and Node.js to recognize
the ESM exports can use both
module
/module-sync
conditions during thetransition period, and can drop
module-sync
+module
when they no longer needto support older versions of Node.js. If tools do want to support this
condition, it's recommended to make the resolution rules in the graph pointed by
this condition match the Node.js native ESM rules to avoid divergence.
We ended up implementing a condition with a different name instead of reusing
"module"
, because existing code in the ecosystem using the"module"
condition sometimes also expect the module resolution for these ESM files to
work in CJS style, which is supported by bundlers, but the native Node.js loader
has intentionally made ESM resolution different from CJS resolution (e.g.
forbidding
import './noext'
orimport './directory'
), so it would bebreaking to implement a
"module"
condition without implementing the forbiddenESM resolution rules. For now, this just implements a new condition as
semver-minor so it can be backported to older LTS.
Contributed by Joyee Cheung in #54648.
node --run
is now stableThis CLI flag runs a specified command from a
package.json
's"scripts"
object.For the following
package.json
:You can run
node --run test
and that would start the test suite.Contributed by Yagiz Nizipli in #53763.
Other notable changes
f0b441230a
] - (SEMVER-MINOR) crypto: addKeyObject.prototype.toCryptoKey
(Filip Skokan) #55262349d2ed07b
] - (SEMVER-MINOR) crypto: add Date fields forvalidTo
andvalidFrom
(Andrew Moon) #54159bebc95ed58
] - doc: add abmusse to collaborators (Abdirahim Musse) #55086914db60159
] - (SEMVER-MINOR) http2: exposenghttp2_option_set_stream_reset_rate_limit
as an option (Maël Nison) #54875f7c3b03759
] - (SEMVER-MINOR) lib: propagate aborted state to dependent signals before firing events (jazelly) #5482632261fc98a
] - (SEMVER-MINOR) module: support loading entrypoint as url (RedYetiDev) #5493306957ff355
] - (SEMVER-MINOR) module: implementflushCompileCache()
(Joyee Cheung) #549712dcf70c347
] - (SEMVER-MINOR) module: throw when invalid argument is passed toenableCompileCache()
(Joyee Cheung) #54971f9b19d7c44
] - (SEMVER-MINOR) module: write compile cache to temporary file and then rename it (Joyee Cheung) #54971e95163b170
] - (SEMVER-MINOR) process: addprocess.features.require_module
(Joyee Cheung) #552414050f68e5d
] - (SEMVER-MINOR) process: addprocess.features.typescript
(Aviv Keller) #5429586f7cb802d
] - (SEMVER-MINOR) test_runner: support custom arguments inrun()
(Aviv Keller) #55126b62f2f8259
] - (SEMVER-MINOR) test_runner: add'test:summary'
event (Colin Ihrig) #54851d7c708aec5
] - (SEMVER-MINOR) test_runner: add support for coverage viarun()
(Chemi Atlow) #539375fda4a1498
] - (SEMVER-MINOR) worker: addmarkAsUncloneable
api (Jason Zhang) #55234Commits
e3619510c8
] - assert: show the diff when deep comparing data with a custom message (Giovanni) #5475939c7a9e70c
] - benchmark: adjust config for deepEqual object (Rafael Gonzaga) #55254263526d5d0
] - benchmark: rewrite detect-esm-syntax benchmark (Joyee Cheung) #55238cd0795fb00
] - benchmark: add no-warnings to process.has bench (Rafael Gonzaga) #551594352d9cc31
] - benchmark: create benchmark for typescript (Marco Ippolito) #54904452bc9b48d
] - benchmark: add webstorage benchmark (jakecastelli) #55040d4d5ba3a9b
] - benchmark: include ascii to fs/readfile (Rafael Gonzaga) #5498823b628db65
] - benchmark: add dotenv benchmark (Aviv Keller) #54278b1ebb0d8ca
] - buffer: coerce extrema to int inblob.slice
(Antoine du Hamel) #551413a6e72483f
] - buffer: extract Blob's .arrayBuffer() & webidl changes (Matthew Aitken) #53372d109f1c4ff
] - buffer: use simdutf convert_latin1_to_utf8_safe (Robert Nagy) #5479877f8a3f9c2
] - build: fix notify-on-review-wanted action (Rafael Gonzaga) #553040d93b1ed0c
] - build: fix not valid json in coverage (jakecastelli) #55179f89664d890
] - build: include.nycrc
in coverage workflows (Wuli Zuo) #55210d7a9df6417
] - build: notify via slack when review-wanted (Rafael Gonzaga) #5510268822cc861
] - build: add more information to Makefile help (Aviv Keller) #53381f3ca9c669b
] - build: update ruff and addlint-py-fix
(Aviv Keller) #54410d99ae548d7
] - build: remove -v flag to reduce noise (iwuliz) #55025d3dfbe7ff9
] - build: display free disk space after build in the test-macOS workflow (iwuliz) #550253077f6a5b7
] - build: support up to python 3.13 in android-configure (Aviv Keller) #54529a929c71281
] - build: add the option to generate compile_commands.json in vcbuild.bat (Segev Finer) #52279a81f368b99
] - build: fix eslint makefile target (Aviv Keller) #54999c8b7a645ae
] - Revert "build: upgrade clang-format to v18" (Chengzhong Wu) #549947861ca5dc3
] - build: printRunning XYZ linter...
for py and yml (Aviv Keller) #54386aaea3944e5
] - build,win: add winget config to set up env (Hüseyin Açacak) #5472930d47220bb
] - build,win: float VS 17.11 compilation patch (Stefan Stojanovic) #54970048a1ab350
] - cli: ensure --run has proper pwd (Yagiz Nizipli) #54949a97841ee10
] - cli: fix spacing for port range error (Aviv Keller) #544951dcc5eedff
] - Revert "console: colorize console error and warn" (Aviv Keller) #54677f0b441230a
] - (SEMVER-MINOR) crypto: add KeyObject.prototype.toCryptoKey (Filip Skokan) #55262d3f8c35320
] - crypto: ensure invalid SubtleCrypto JWK data import results in DataError (Filip Skokan) #55041349d2ed07b
] - (SEMVER-MINOR) crypto: add Date fields forvalidTo
andvalidFrom
(Andrew Moon) #5415934ca36a397
] - deps: update undici to 6.20.0 (Node.js GitHub Bot) #55329f703652e84
] - deps: upgrade npm to 10.9.0 (npm team) #55255b533a51856
] - deps: V8: backport0d5d6e7
(Yagiz Nizipli) #551152f65b3fd07
] - deps: V8: partially cherry-pick8953e49
(Ben Noordhuis) #55274bb9f77d53a
] - deps: update archs files for openssl-3.0.15+quic1 (Node.js GitHub Bot) #5518463d51c82fe
] - deps: upgrade openssl sources to quictls/openssl-3.0.15+quic1 (Node.js GitHub Bot) #5518429e6484f3c
] - deps: update archs files for openssl-3.0.14+quic1 (Node.js GitHub Bot) #54336283927ec88
] - deps: upgrade openssl sources to quictls/openssl-3.0.14+quic1 (Node.js GitHub Bot) #54336b0636a1e88
] - deps: update timezone to 2024b (Node.js GitHub Bot) #55056173464d76f
] - deps: update acorn-walk to 8.3.4 (Node.js GitHub Bot) #549500d4536543b
] - deps: update corepack to 0.29.4 (Node.js GitHub Bot) #548451de5512383
] - deps: V8: cherry-pick217457d
(Michaël Zasso) #548831921d7a37c
] - doc: add release key for aduh95 (Antoine du Hamel) #55349d8e42be1b2
] - doc: moveERR_INVALID_PERFORMANCE_MARK
to legacy errors (Antoine du Hamel) #552475ea8aa183c
] - doc: fix Markdown linter (Antoine du Hamel) #55344873588888d
] - Revert "doc: update test context.assert" (Antoine du Hamel) #55344707e7cc702
] - doc: add pmarchini to collaborators (Pietro Marchini) #55331b03272b9a1
] - doc: fixevents.once()
example usingAbortSignal
(Ivo Janssen) #5514485b765953d
] - doc: add onboarding details for ambassador program (Marco Ippolito) #552845d41b8a8b0
] - doc: updaterequire(ESM)
history and stability status (Antoine du Hamel) #55199195df659e9
] - doc: moveERR_NAPI_TSFN_START/STOP_IDLE_LOOP
to legacy errors (Antoine du Hamel) #552488eae0d3f3c
] - doc: fix initial default value of autoSelectFamily (Ihor Rohovets) #55245297cb0da5a
] - doc: tweak onboarding instructions (Michael Dawson) #552127ddbfe8c2b
] - doc: update test context.assert (Pietro Marchini) #551868a57550d20
] - doc: fix unordered error anchors (Antoine du Hamel) #55242286ea4ed3d
] - doc: mention addons to experimental permission (Rafael Gonzaga) #551667c9ceabf38
] - doc: use correct dash in stability status (Antoine du Hamel) #55200781ffd8ba1
] - doc: fix link intest/README.md
(Livia Medeiros) #5516561b9ed3bf2
] - doc: add esm examples to node:net (Alfredo González) #55134bb3499038d
] - doc: remove outdated https import reference (Edigleysson Silva (Edy)) #551116cc49518c7
] - doc: move the YAML changes element (sendoru) #55112b12b4a23e4
] - doc: remove random horizontal separators inprocess.md
(Antoine du Hamel) #551497186ede388
] - doc: put --env-file-if-exists=config right under --env-file=config (Edigleysson Silva (Edy)) #551318ad0dfff10
] - doc: fix the require resolve algorithm inmodules.md
(chirsz) #55117fd40f0873f
] - doc: update style guide (Aviv Keller) #5322312c9d9780f
] - doc: add missing:
torun()
'sglobPatterns
(Aviv Keller) #5513573b05cfb04
] - doc: correctcleanup
option in stream.(promises.)finished (René) #55043bebc95ed58
] - doc: add abmusse to collaborators (Abdirahim Musse) #55086a97c80c6ae
] - doc: add note about--expose-internals
(Aviv Keller) #5286189aeae63bd
] - doc: removeparseREPLKeyword
from REPL documentation (Aviv Keller) #54749b3e0490b8b
] - doc: add missing EventSource docs to globals (Matthew Aitken) #55022516c775fa5
] - doc: cover --experimental-test-module-mocks flag (Jonathan Sharpe) #550214244f1a269
] - doc: add more details for localStorage and sessionStorage (Batuhan Tomo) #5388139a728c2e3
] - doc: change backporting guide with updated info (Aviv Keller) #537463a5fe95ad7
] - doc: add missing definitions tointernal-api.md
(Aviv Keller) #53303f2d74a26a3
] - doc: fix history ofprocess.features
(Antoine du Hamel) #5498229866ca438
] - doc: fix typo callsite.lineNumber (Rafael Gonzaga) #54969c1d73abd29
] - doc: update documentation for externalizing deps (Michael Dawson) #54792eca9668231
] - doc: add documentation for process.features (Marco Ippolito) #548970fb446e207
] - esm: do not interpret"main"
as a URL (Antoine du Hamel) #55003be2fe4b249
] - events: allow null/undefined eventInitDict (Matthew Aitken) #54643cb47e169a0
] - events: returncurrentTarget
when dispatching (Matthew Aitken) #54642dbfae3fe14
] - fs: acknowledgesignal
option infilehandle.createReadStream()
(Livia Medeiros) #551481c94725c07
] - fs: check subdir correctly in cpSync (Jason Zhang) #5503379ffefab2a
] - fs: convert to u8 string for filesystem path (Jason Zhang) #54653914db60159
] - (SEMVER-MINOR) http2: expose nghttp2_option_set_stream_reset_rate_limit as an option (Maël Nison) #5487508b5e6c794
] - lib: fix module print timing when specifier includes"
(Antoine du Hamel) #55150bf7d7aef4b
] - lib: fix typos (Nathan Baulch) #55065d803355d92
] - lib: prefer optional chaining (Aviv Keller) #55045d4873bcd6d
] - lib: remove lib/internal/idna.js (Yagiz Nizipli) #55050f7c3b03759
] - (SEMVER-MINOR) lib: propagate aborted state to dependent signals before firing events (jazelly) #54826397ae418db
] - lib: the REPL should survive deletion of Array.prototype methods (Jordan Harband) #31457566179c9ec
] - lib, tools: remove duplicate requires (Aviv Keller) #54987c9a1bbbef2
](https://redirect.github.com/nodejs/node/commConfiguration
📅 Schedule: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" in timezone Europe/Moscow, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.