-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
v18.19.0 release proposal #50953
v18.19.0 release proposal #50953
Conversation
This avoids initializing arrays that we never use, and simplifies the implementation overall. PR-URL: #48296 Backport-PR-URL: #50669 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Major functional changes: - Allow `import()` to work within loaders that require other loaders, - Unflag the use of `Module.register`. A new interface `Customizations` has been created in order to unify `ModuleLoader` (previously `DefaultModuleLoader`), `Hooks` and `CustomizedModuleLoader` all of which now implement it: ```ts interface LoadResult { format: ModuleFormat; source: ModuleSource; } interface ResolveResult { format: string; url: URL['href']; } interface Customizations { allowImportMetaResolve: boolean; load(url: string, context: object): Promise<LoadResult> resolve( originalSpecifier: string, parentURL: string, importAssertions: Record<string, string> ): Promise<ResolveResult> resolveSync( originalSpecifier: string, parentURL: string, importAssertions: Record<string, string> ) ResolveResult; register(specifier: string, parentUrl: string): any; forceLoadHooks(): void; importMetaInitialize(meta, context, loader): void; } ``` The `ModuleLoader` class now has `setCustomizations` which takes an object of this shape and delegates its responsibilities to this object if present. Note that two properties `allowImportMetaResolve` and `resolveSync` exist now as a mechanism for `import.meta.resolve` – since `Hooks` does not implement `resolveSync` other loaders cannot use `import.meta.resolve`; `allowImportMetaResolve` is a way of checking for that case instead of invoking `resolveSync` and erroring. Fixes #48515 Closes #48439 PR-URL: #48559 Backport-PR-URL: #50669 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Some tests are assuming they will be run from a directory that do not contain any quote or special character in its path. That assumption is not necessary, using `JSON.stringify` or `pathToFileURL` ensures the test can be run whatever the path looks like. PR-URL: #48958 Backport-PR-URL: #50669 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Follows @giltayar's proposed API: > `register` can pass any data it wants to the loader, which will be passed to the exported `initialize` function of the loader. Additionally, if the user of `register` wants to communicate with the loader, it can just create a `MessageChannel` and pass the port to the loader as data. The `register` API is now: ```ts interface Options { parentUrl?: string; data?: any; transferList?: any[]; } function register(loader: string, parentUrl?: string): any; function register(loader: string, options?: Options): any; ``` This API is backwards compatible with the old one (new arguments are optional and at the end) and allows for passing data into the new `initialize` hook. If this hook returns data it is passed back to `register`: ```ts function initialize(data: any): Promise<any>; ``` **NOTE**: Currently there is no mechanism for a loader to exchange ownership of something back to the caller. Refs: nodejs/loaders#147 PR-URL: #48842 Backport-PR-URL: #50669 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
PR-URL: #49038 Backport-PR-URL: #50669 Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Jan Krems <jan.krems@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me>
- Always check stderr before stdout as the former would contain error information. - Always match the full stdout to avoid surprises. - Use `deepStrictEqual` when appropriate to get more informative test failures. - Remove leading slashes from relative paths/URLs to not confuse them with absolute paths. - Remove unnecessary `--no-warnings` flag. PR-URL: #49131 Backport-PR-URL: #50669 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Review requested:
|
A test specific to v18.x fails for |
@nodejs/lts PTAL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
Notable changes: deps: * (SEMVER-MINOR) update uvwasi to 0.0.19 (Node.js GitHub Bot) #49908 * (SEMVER-MINOR) upgrade npm to 10.2.3 (npm team) #50531 doc: * move and rename loaders section (Geoffrey Booth) #49261 esm: * use import attributes instead of import assertions (Antoine du Hamel) #50140 * --experimental-default-type flag to flip module defaults (Geoffrey Booth) #49869 * unflag import.meta.resolve (Guy Bedford) #49028 * move hook execution to separate thread (Jacob Smith) #44710 * leverage loaders when resolving subsequent loaders (Maël Nison) #43772 lib: * (SEMVER-MINOR) add api to detect whether source-maps are enabled (翠 / green) #46391 * (SEMVER-MINOR) add tracing channel to diagnostics_channel (Stephen Belanger) #44943 src: * (SEMVER-MINOR) add cjs_module_lexer_version base64_version (Jithil P Ponnan) #45629 stream: * use bitmap in readable state (Benjamin Gruenbaum) #49745 test_runner: * (SEMVER-MINOR) accept `testOnly` in `run` (Moshe Atlow) #49753 * (SEMVER-MINOR) add junit reporter (Moshe Atlow) #49614 * (SEMVER-MINOR) expose location of tests (Colin Ihrig) #48975 * (SEMVER-MINOR) add shards support (Raz Luvaton) #48639 * (SEMVER-MINOR) add initial draft for fakeTimers (Erick Wendel) #47775 test_runner, cli: * (SEMVER-MINOR) add --test-concurrency flag (Colin Ihrig) #49996 tls: * (SEMVER-MINOR) add ALPNCallback server option for dynamic ALPN negotiation (Tim Perry) #45190 vm: * (SEMVER-MINOR) use import attributes instead of import assertions (Antoine du Hamel) #50141 PR-URL: #50953
I’d guess that IITM was doing something like “if Node 18, use these hooks, if Node 20+, use these hooks” and because we backported a lot of hooks changes it needs to be updated to something like “if Node < 18.19.0, use these hooks”. |
Notable changes: deps: * (SEMVER-MINOR) update uvwasi to 0.0.19 (Node.js GitHub Bot) nodejs/node#49908 * (SEMVER-MINOR) upgrade npm to 10.2.3 (npm team) nodejs/node#50531 doc: * move and rename loaders section (Geoffrey Booth) nodejs/node#49261 esm: * use import attributes instead of import assertions (Antoine du Hamel) nodejs/node#50140 * --experimental-default-type flag to flip module defaults (Geoffrey Booth) nodejs/node#49869 * unflag import.meta.resolve (Guy Bedford) nodejs/node#49028 * move hook execution to separate thread (Jacob Smith) nodejs/node#44710 * leverage loaders when resolving subsequent loaders (Maël Nison) nodejs/node#43772 lib: * (SEMVER-MINOR) add api to detect whether source-maps are enabled (翠 / green) nodejs/node#46391 * (SEMVER-MINOR) add tracing channel to diagnostics_channel (Stephen Belanger) nodejs/node#44943 src: * (SEMVER-MINOR) add cjs_module_lexer_version base64_version (Jithil P Ponnan) nodejs/node#45629 stream: * use bitmap in readable state (Benjamin Gruenbaum) nodejs/node#49745 test_runner: * (SEMVER-MINOR) accept `testOnly` in `run` (Moshe Atlow) nodejs/node#49753 * (SEMVER-MINOR) add junit reporter (Moshe Atlow) nodejs/node#49614 * (SEMVER-MINOR) expose location of tests (Colin Ihrig) nodejs/node#48975 * (SEMVER-MINOR) add shards support (Raz Luvaton) nodejs/node#48639 * (SEMVER-MINOR) add initial draft for fakeTimers (Erick Wendel) nodejs/node#47775 test_runner, cli: * (SEMVER-MINOR) add --test-concurrency flag (Colin Ihrig) nodejs/node#49996 tls: * (SEMVER-MINOR) add ALPNCallback server option for dynamic ALPN negotiation (Tim Perry) nodejs/node#45190 vm: * (SEMVER-MINOR) use import attributes instead of import assertions (Antoine du Hamel) nodejs/node#50141 PR-URL: nodejs/node#50953
Notable changes: deps: * (SEMVER-MINOR) update uvwasi to 0.0.19 (Node.js GitHub Bot) nodejs/node#49908 * (SEMVER-MINOR) upgrade npm to 10.2.3 (npm team) nodejs/node#50531 doc: * move and rename loaders section (Geoffrey Booth) nodejs/node#49261 esm: * use import attributes instead of import assertions (Antoine du Hamel) nodejs/node#50140 * --experimental-default-type flag to flip module defaults (Geoffrey Booth) nodejs/node#49869 * unflag import.meta.resolve (Guy Bedford) nodejs/node#49028 * move hook execution to separate thread (Jacob Smith) nodejs/node#44710 * leverage loaders when resolving subsequent loaders (Maël Nison) nodejs/node#43772 lib: * (SEMVER-MINOR) add api to detect whether source-maps are enabled (翠 / green) nodejs/node#46391 * (SEMVER-MINOR) add tracing channel to diagnostics_channel (Stephen Belanger) nodejs/node#44943 src: * (SEMVER-MINOR) add cjs_module_lexer_version base64_version (Jithil P Ponnan) nodejs/node#45629 stream: * use bitmap in readable state (Benjamin Gruenbaum) nodejs/node#49745 test_runner: * (SEMVER-MINOR) accept `testOnly` in `run` (Moshe Atlow) nodejs/node#49753 * (SEMVER-MINOR) add junit reporter (Moshe Atlow) nodejs/node#49614 * (SEMVER-MINOR) expose location of tests (Colin Ihrig) nodejs/node#48975 * (SEMVER-MINOR) add shards support (Raz Luvaton) nodejs/node#48639 * (SEMVER-MINOR) add initial draft for fakeTimers (Erick Wendel) nodejs/node#47775 test_runner, cli: * (SEMVER-MINOR) add --test-concurrency flag (Colin Ihrig) nodejs/node#49996 tls: * (SEMVER-MINOR) add ALPNCallback server option for dynamic ALPN negotiation (Tim Perry) nodejs/node#45190 vm: * (SEMVER-MINOR) use import attributes instead of import assertions (Antoine du Hamel) nodejs/node#50141 PR-URL: nodejs/node#50953
2023-11-29, Version 18.19.0 'Hydrogen' (LTS), @targos
Notable Changes
npm updated to v10
After two months of baking time in Node.js 20, npm 10 is backported, so that all
release lines include a supported version of npm. This release includes npm v10.2.3.
Refer to nodejs/Release#884 for the plan to land npm 10.
ESM and customization hook changes
Leverage loaders when resolving subsequent loaders
Loaders now apply to subsequent loaders, for example:
--experimental-loader ts-node --experimental-loader loader-written-in-typescript
.Contributed by Maël Nison in #43772.
New
node:module
APIregister
for module customization hooks; newinitialize
hookThere is a new API
register
available onnode:module
to specify a file that exports module customization hooks, and pass data to the hooks, and establish communication channels with them. The “define the file with the hooks” part was previously handled by a flag--experimental-loader
, but when the hooks moved into a dedicated thread in 20.0.0 there was a need to provide a way to communicate between the main (application) thread and the hooks thread. This can now be done by callingregister
from the main thread and passing data, includingMessageChannel
instances.We encourage users to migrate to an approach that uses
--import
withregister
, such as:Using
--import
ensures that the customization hooks are registered before any application code runs, even the entry point.Contributed by João Lenon and Jacob Smith in #46826, Izaak Schroeder and Jacob Smith in #48842 and #48559.
import.meta.resolve
unflaggedIn ES modules,
import.meta.resolve(specifier)
can be used to get an absolute URL string to which
specifier
resolves, similarto
require.resolve
in CommonJS. This aligns Node.js with browsers and other server-side runtimes.Contributed by Guy Bedford in #49028.
--experimental-default-type
flag to flip module defaultsThe new flag
--experimental-default-type
can be used to flip the defaultmodule system used by Node.js. Input that is already explicitly defined as ES
modules or CommonJS, such as by a
package.json
"type"
field or.mjs
/.cjs
file extension or the
--input-type
flag, is unaffected. What is currentlyimplicitly CommonJS would instead be interpreted as ES modules under
--experimental-default-type=module
:String input provided via
--eval
or STDIN, if--input-type
is unspecified.Files ending in
.js
or with no extension, if there is nopackage.json
filepresent in the same folder or any parent folder.
Files ending in
.js
or with no extension, if the nearest parentpackage.json
field lacks atype
field; unless the folder is inside anode_modules
folder.In addition, extensionless files are interpreted as Wasm if
--experimental-wasm-modules
is passed and the file contains the "magic bytes"Wasm header.
Contributed by Geoffrey Booth in #49869.
Other ESM-related changes
ed2d46f4cc
] - doc: move and rename loaders section (Geoffrey Booth) #4926192734d4480
] - esm: use import attributes instead of import assertions (Antoine du Hamel) #50140e96f7ef881
] - (SEMVER-MINOR) vm: use import attributes instead of import assertions (Antoine du Hamel) #50141Test runner changes
Many changes to the built-in test runner have been backported. This includes
the following additions:
b283ae4238
] - (SEMVER-MINOR) test_runner: accepttestOnly
inrun
(Moshe Atlow) #49753059b1945d8
] - (SEMVER-MINOR) test_runner: add junit reporter (Moshe Atlow) #49614d61a505546
] - (SEMVER-MINOR) test_runner: expose location of tests (Colin Ihrig) #48975b55eb2a8d1
] - (SEMVER-MINOR) test_runner: add shards support (Raz Luvaton) #4863905e7f28b40
] - (SEMVER-MINOR) test_runner: add initial draft for fakeTimers (Erick Wendel) #47775428301ad27
] - (SEMVER-MINOR) test_runner, cli: add --test-concurrency flag (Colin Ihrig) #49996Other notable changes
0c4a84e8e9
] - (SEMVER-MINOR) deps: update uvwasi to 0.0.19 (Node.js GitHub Bot) #49908fae60c5841
] - stream: use bitmap in readable state (Benjamin Gruenbaum) #4974517246be158
] - (SEMVER-MINOR) lib: add api to detect whether source-maps are enabled (翠 / green) #463912e9f7284a1
] - (SEMVER-MINOR) lib: add tracing channel to diagnostics_channel (Stephen Belanger) #44943cc7bf1f641
] - (SEMVER-MINOR) src: add cjs_module_lexer_version base64_version (Jithil P Ponnan) #45629b5d16cd8f0
] - (SEMVER-MINOR) tls: add ALPNCallback server option for dynamic ALPN negotiation (Tim Perry) #45190Commits
0d0eb47e2a
] - benchmark: add benchmarks for the test_runner (Raz Luvaton) #489318bb03d10f4
] - benchmark: differentiate whatwg and legacy url (Yagiz Nizipli) #473773d7734cbe3
] - benchmark: lower URL.canParse runs (Khafra) #4735124d3fcf415
] - benchmark: stablize encode benchmark (Joyee Cheung) #46658e08fd98bcc
] - bootstrap: use correct descriptor for Symbol.{dispose,asyncDispose} (Jordan Harband) #48703cf9ddcd6c8
] - bootstrap: simplify initialization of source map handlers (Joyee Cheung) #4830412d731e431
] - bootstrap: log isolate data info in mksnapshot debug logs (Joyee Cheung) #47768d66873871a
] - bootstrap: store internal loaders in C++ via a binding (Joyee Cheung) #472151a499c5082
] - bootstrap: optimize modules loaded in the built-in snapshot (Joyee Cheung) #45849e0e09caafe
] - bootstrap: make CJS loader snapshotable (Joyee Cheung) #458495f37decd56
] - bootstrap: include event_target into the built-in snapshot (Joyee Cheung) #45849c3f56a3dee
] - bootstrap: support module_wrap binding in snapshot (Joyee Cheung) #458496466acbc89
] - bootstrap: lazy load non-essential modules (Joyee Cheung) #45659a0d4b69df4
] - bootstrap: lazy-load Performance.prototype.timeOrigin (Joyee Cheung) #46425c1bc8118e3
] - bootstrap: generate bootstrapper arguments in BuiltinLoader (Joyee Cheung) #44488075c57e88b
] - build: add symlink tocompile_commands.json
file if needed (Juan José) #492609e1c531b8d
] - build: expand when we run internet tests (Michael Dawson) #49218a781d24624
] - build: fix typolibray
->library
(configure.py) (michalbiesek) #49106f2eccb7a04
] - build: fixconfigure --link-module
(Richard Lau) #48522a44d555494
] - build: fix IBM i build with Python 3.9 (Richard Lau) #480567f68e14ea2
] - child_process: improve spawn performance on Linux (Keyhan Vakil) #4852376e4d4117c
] - crypto: ensure valid point on elliptic curve in SubtleCrypto.importKey (Filip Skokan) #502347af54279b5
] - deps: V8: cherry-pick 70caf337c3f6 (kxxt) #5050649c5495339
] - deps: update zlib to 1.2.13.1-motley-fef5869 (Node.js GitHub Bot) #50085e0fd52bf07
] - deps: update googletest to 2dd1c13 (Node.js GitHub Bot) #500811b103cc567
] - deps: update googletest to e47544a (Node.js GitHub Bot) #49982736c869eeb
] - deps: update googletest to d1467f5 (Node.js GitHub Bot) #49676cd99ee1f35
] - deps: update googletest to 8a6feab (Node.js GitHub Bot) #494635c338573ff
] - deps: update zlib to 1.2.13.1-motley-f5fd0ad (Node.js GitHub Bot) #49252374ec3d623
] - deps: update googletest to 7e33b6a (Node.js GitHub Bot) #49034c15dd6679b
] - deps: update zlib to 1.2.13.1-motley-526382e (Node.js GitHub Bot) #49033588bd5e524
] - deps: update googletest to c875c4e (Node.js GitHub Bot) #489646059b59018
] - deps: update zlib to 1.2.13.1-motley-61dc0bd (Node.js GitHub Bot) #48788e455dd4003
] - deps: update googletest to cc36671 (Node.js GitHub Bot) #48789747fbb49ca
] - deps: V8: cherry-pick 1a782f6543ae (Keyhan Vakil) #48523272e55c66f
] - deps: upgrade npm to 10.2.3 (npm team) #505313f6dcc62e5
] - deps: update archs files for openssl-3.0.12+quic1 (Node.js GitHub Bot) #50411da26cdbe84
] - deps: upgrade openssl sources to quictls/openssl-3.0.12+quic1 (Node.js GitHub Bot) #5041123069c34b2
] - deps: V8: cherry-pick d69c7937c99d (Michaël Zasso) #464255f852cc9fe
] - deps: V8: cherry-pick f7d000a7ae7b (Luke Albao) #503440c4a84e8e9
] - (SEMVER-MINOR) deps: update uvwasi to 0.0.19 (Node.js GitHub Bot) #499088682b90d02
] - deps: update simdutf to 3.2.18 (Node.js GitHub Bot) #5009111ecd06aeb
] - deps: update simdutf to 3.2.17 (Node.js GitHub Bot) #4901943bfe5f020
] - deps: upgrade npm to 10.2.0 (npm team) #50027a140bc284b
] - deps: upgrade npm to 10.1.0 (npm team) #4957065ca41c276
] - (SEMVER-MINOR) deps: upgrade npm to 10.0.0 (npm team) #49423df1ff8e3da
] - deps: fix call to undeclared functions 'ntohl' and 'htons' (MatteoBax) #49979f228dc7955
] - deps: update corepack to 0.22.0 (Node.js GitHub Bot) #503254324ebab67
] - deps: update corepack to 0.21.0 (Node.js GitHub Bot) #500881cabb77659
] - deps: update corepack to 0.20.0 (Node.js GitHub Bot) #4946404227b287e
] - deps: update c-ares to 1.20.1 (Node.js GitHub Bot) #5008213e69ee11c
] - deps: update c-ares to 1.20.0 (Node.js GitHub Bot) #50082ac717df17e
] - deps: update ada to 2.7.2 (Node.js GitHub Bot) #503386885fc9386
] - deps: update ada to 2.6.10 (Node.js GitHub Bot) #4998476c5f4039f
] - deps: update ada to 2.6.9 (Node.js GitHub Bot) #49340597ea77422
] - deps: update ada to 2.6.8 (Node.js GitHub Bot) #493408e7dcba553
] - deps: update ada to 2.6.7 (Node.js GitHub Bot) #493409f2037e8ee
] - deps: update ada to 2.6.5 (Node.js GitHub Bot) #493404723976703
] - deps: update ada to 2.6.3 (Node.js GitHub Bot) #493407ccb478664
] - deps: update undici to 5.26.4 (Node.js GitHub Bot) #5027488f9ebb770
] - diagnostics_channel: fix ref counting bug when reaching zero subscribers (Stephen Belanger) #47520284a869540
] - dns: callada::idna::to_ascii
directly from c++ (Yagiz Nizipli) #4792010968370b5
] - doc: drop github actions check in sec release process (Rafael Gonzaga) #4897807c3b88c74
] - doc: remove@anonrig
from performance initiative (Yagiz Nizipli) #49641e26b89e8be
] - doc: fix node-api call example (Chengzhong Wu) #493954c93905f6c
] - doc: add news issue for Diagnostics WG (Michael Dawson) #493063f1a237a8f
] - doc: add print results for examples inStringDecoder
(Jungku Lee) #4932645caad82bb
] - doc: update outdated reference to NIST SP 800-131A (Tobias Nießen) #4931662f823d5a2
] - doc: usecjs
as block code's type inMockTimers
(Deokjin Kim) #493090dda724d3f
] - doc: updateoptions.filter
description forfs.cp
(Shubham Pandey) #492894ba11e352b
] - doc: avoid "not currently recommended" (Tobias Nießen) #493009ca85b58b3
] - doc: modify param description for end(),write() inStringDecoder
(Jungku Lee) #492853f771cab67
] - doc: use NODE_API_SUPPORTED_VERSION_MAX in release doc (Cheng Zhao) #49268f181c37e75
] - doc: fix typo instream.finished
documentation (Antoine du Hamel) #49271c70945ddc2
] - doc: update description forpercent_encode
sets inWHATWG API
(Jungku Lee) #49258f9c2a3fb3e
] - doc: clarify use of Uint8Array for n-api (Fedor Indutny) #48742bf22a5f66e
] - doc: use same name in the doc as in the code (Hyunjin Kim) #4921672bd527fb6
] - doc: add notable-change label mention to PR template (Rafael Gonzaga) #491882247e52fe0
] - doc: add h1 summary to security release process (Rafael Gonzaga) #491123b82e9aed1
] - doc: fix wording in napi_async_init (Tobias Nießen) #4918055171d88a0
] - doc: fixType
notation in webstreams (Deokjin Kim) #4912179c0497398
] - doc: make the NODE_VERSION_IS_RELEASE revert clear (Rafael Gonzaga) #491147ee26fb8df
] - doc: update with latest security release (Rafael Gonzaga) #490859ce73964be
] - doc: add description for--port
flag ofnode inspect
(Michael Bianco) #48785633b8cd181
] - doc: add missing period (Rich Trott) #490946daa9ec2a4
] - doc: add ESM examples in http.md (btea) #4776312b83e81b9
] - doc: detailed description of keystrokes Ctrl-Y and Meta-Y (Ray) #43529ead654f976
] - doc: clarify use of process.env in worker threads on Windows (Daeyeon Jeong) #490084047947838
] - doc: remove v14 mention (Rafael Gonzaga) #49005833c643eb4
] - doc: run license-builder (github-actions[bot]) #48898cb43717c97
] - doc: add ver of 18.x where Node-api 9 is supported (Michael Dawson) #48876a8d5c16a2a
] - doc: include experimental features assessment (Rafael Gonzaga) #48824e6d8735e2b
] - doc: add new TSC members (Michael Dawson) #48841d4fe00d0c7
] - doc: refactor node-api support matrix (Michael Dawson) #48774629132d84c
] - doc: declarepath
on example ofasync_hooks.executionAsyncId()
(Deokjin Kim) #48556dfd368ac9f
] - doc: remove the . in the end to reduce confusing (Jason) #4871974d8f96413
] - doc: nodejs-social over nodejs/tweet (Rafael Gonzaga) #4876973a7e00d06
] - doc: add missing history info forimport.meta.resolve
(Antoine du Hamel) #49700c20fdb4e52
] - doc: editimport.meta.resolve
documentation (Antoine du Hamel) #492471ac389ecef
] - doc: update module hooks docs (Geoffrey Booth) #49265ed2d46f4cc
] - doc: move and rename loaders section (Geoffrey Booth) #49261258df0e72d
] - doc: add signature formodule.register
(Geoffrey Booth) #4925158eaf3f6ae
] - doc: caveat unavailability ofimport.meta.resolve
in custom loaders (Jacob Smith) #492422fef28b2b9
] - doc: fix name of the flag ininitialize()
docs (Antoine du Hamel) #4915815280fb42c
] - doc: add steps about signing the binary in single-executable docs (Darshan Sen) #46764e374ba296c
] - doc: add "type" to test runner event details (Phil Nash) #49014ec0a6c1f1b
] - doc: add new reporter events to custom reporter examples (Chemi Atlow) #48903e8a32fb49b
] - doc: change duration to duration_ms on test documentation (Ardi_Nugraha) #488922b30c8b8a3
] - doc: fixglobalPreload
example (bmacnaughton) #503008a57182769
] - doc,test: extend the list of platforms supported by single-executables (Darshan Sen) #4702692734d4480
] - esm: use import attributes instead of import assertions (Antoine du Hamel) #50140c3c945e654
] - esm: bypass CommonJS loader under --default-type (Geoffrey Booth) #49986fe691984b2
] - esm: unflag extensionless javascript and wasm in module scope (Geoffrey Booth) #4997456bd9a88ac
] - esm: --experimental-default-type flag to flip module defaults (Geoffrey Booth) #4986972644d62e7
] - esm: improve JSDoc annotation of internal functions (Antoine du Hamel) #49959957725f601
] - esm: require braces for modules code (Geoffrey Booth) #49657c12685f82d
] - esm: fix cache collision on JSON files using file: URL (Antoine du Hamel) #49887ed8dd33493
] - esm: identify parent importing a url with invalid host (Jacob Smith) #4973646d730ab75
] - esm: fix return type ofimport.meta.resolve
(Antoine du Hamel) #4969812cb700478
] - esm: update loaders warning (Geoffrey Booth) #4963347193a347e
] - esm: fix support forURL
instances inregister
(Antoine du Hamel) #4965551ced0f1a1
] - esm: clarify ERR_REQUIRE_ESM errors (Daniel Compton) #495214be5612bae
] - esm: remove return value forModule.register
(Antoine du Hamel) #495290875867e27
] - esm: refactor test-esm-loader-resolve-type (Geoffrey Booth) #494939b7c9d93e9
] - esm: refactor test-esm-named-exports (Geoffrey Booth) #49493d1f5514917
] - esm: refactor mocking test (Geoffrey Booth) #4946501ca6d277d
] - esm: fixglobalPreload
warning (Antoine du Hamel) #49069c1a84398b4
] - esm: unflag import.meta.resolve (Guy Bedford) #49028ef43f084e9
] - esm: import.meta.resolve exact module not found errors should return (Guy Bedford) #49038385f24c9cc
] - esm: protectERR_UNSUPPORTED_DIR_IMPORT
against prototype pollution (Antoine du Hamel) #4906010e7c3a376
] - esm: addinitialize
hook, integrate withregister
(Izaak Schroeder) #48842f96b610268
] - esm: fix typoparentUrl
->parentURL
(Antoine du Hamel) #4899903c1b5e647
] - esm: unflagModule.register
and allow nested loaderimport()
(Izaak Schroeder) #4855963aa5d7270
] - esm: add backglobalPreload
tests and fix failing ones (Antoine du Hamel) #487791c7be606f1
] - esm: remove support for arrays inimport
internal method (Antoine du Hamel) #48296655111fa00
] - esm: handleglobalPreload
hook returning a nullish value (Antoine du Hamel) #482499938a8bf13
] - esm: handle more error types thrown from the loader thread (Antoine du Hamel) #482478cab32a5d1
] - esm: do not use'beforeExit'
on the main thread (Antoine du Hamel) #47964b61efcce95
] - esm: renameURLCanParse
to be consistent (Antoine du Hamel) #47668ca20f5931d
] - esm: remove support for deprecated hooks (Antoine du Hamel) #475805de37a1e37
] - esm: initializeimport.meta
on eval (Antoine du Hamel) #4755139fbce7313
] - esm: propagateprocess.exit
from the loader thread to the main thread (Antoine du Hamel) #475482a528b76e6
] - esm: avoid try/catch when validating urls (Yagiz Nizipli) #47541bac9b1758f
] - esm: move hook execution to separate thread (Jacob Smith) #44710dfa444477a
] - esm: skip file: URL conversion to path when possible (Antoine du Hamel) #4630545de8d1bd7
] - esm: allow resolve to return import assertions (Geoffrey Booth) #461535ffc90a06b
] - esm: move hooks handling into separate class (Geoffrey Booth) #45869490b598dbf
] - esm: leverage loaders when resolving subsequent loaders (Maël Nison) #43772acd987287c
] - events: remove weak listener for event target (Raz Luvaton) #4895269b7f91a92
] - fs: remove redundant code in readableWebStream() (Deokjin Kim) #49298ae8bb162b4
] - fs: remove redundantnullCheck
(Livia Medeiros) #4882648c25b154b
] - fs: makemkdtemp
accept buffers and URL (LiviaMedeiros) #48828edf46c1b59
] - fs: move fs_use_promises_symbol to per-isolate symbols (Joyee Cheung) #47768fe41d22afc
] - fs: use kResistStopPropagation (Chemi Atlow) #485217c758f60ab
] - fs: fix readdir recursive sync & callback (Ethan Arrowood) #486988874b2e11d
] - http: start connections checking interval on listen (Paolo Insogna) #4861129697229b6
] - https: fix connection checking interval not clearing on server close (Nitzan Uziely) #48383981aa7866d
] - lib: fix MIME overmatch in data URLs (André Alves) #49104fe26f8a860
] - lib: merge cjs and esm package json reader caches (Yagiz Nizipli) #4847717246be158
] - (SEMVER-MINOR) lib: add api to detect whether source-maps are enabled (翠 / green) #463912e9f7284a1
] - (SEMVER-MINOR) lib: add tracing channel to diagnostics_channel (Stephen Belanger) #4494304dad9c2f6
] - lib: fix BroadcastChannel initialization location (Shelley Vohr) #46864671d2c0067
] - lib: fix DOMException property descriptors after being lazy loaded (Filip Skokan) #467999a4b57d6d4
] - lib: improve esm resolve performance (Yagiz Nizipli) #46652c6b2f56723
] - lib: lazy-load deps in modules/run_main.js (Joyee Cheung) #45849baa280a4f6
] - lib: lazy-load deps in source_map_cache.js (Joyee Cheung) #4584900bdb72b6e
] - lib: add getLazy() method to internal/util (Joyee Cheung) #45849b77a6b2376
] - loader: use default loader as cascaded loader in the in loader worker (Joyee Cheung) #476207778e190b0
] - meta: move Trott to TSC regular member (Rich Trott) #502975b9575dd30
] - meta: ping TSC for offboarding (Tobias Nießen) #50147d24c3a0692
] - meta: update website team with new name (Rich Trott) #49883332d2aedb4
] - meta: fix linter error (Antoine du Hamel) #49755dc70c444f4
] - meta: add primordials strategic initiative (Benjamin Gruenbaum) #49706213a9f8a4b
] - meta: bump rtCamp/action-slack-notify from 2.2.0 to 2.2.1 (dependabot[bot]) #494372827779faa
] - meta: remove modules team from CODEOWNERS (Benjamin Gruenbaum) #494125d6daf0d01
] - meta: add test/reporters to codeowners (Chemi Atlow) #49186dee7dc5d54
] - meta: bump actions/upload-artifact from 3.1.2 to 3.1.3 (dependabot[bot]) #5000098294fdeee
] - meta: bump actions/cache from 3.3.1 to 3.3.2 (dependabot[bot]) #5000379270327d0
] - meta: bump github/codeql-action from 2.21.5 to 2.21.9 (dependabot[bot]) #500026591a03c89
] - meta: bump github/codeql-action from 2.21.2 to 2.21.5 (dependabot[bot]) #494383a107f80bc
] - meta: bump actions/checkout from 3.6.0 to 4.1.0 (dependabot[bot]) #5000126c5c3c4a2
] - meta: bump actions/checkout from 3.5.3 to 3.6.0 (dependabot[bot]) #494360fc0b88d97
] - meta: bump step-security/harden-runner from 2.5.0 to 2.5.1 (dependabot[bot]) #49435dad5785d5d
] - meta: bump actions/setup-node from 3.7.0 to 3.8.1 (dependabot[bot]) #49434155a275acb
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #49264bd17f0b992
] - meta: mention nodejs/tsc when changing GH templates (Rafael Gonzaga) #49189f6e68a0238
] - meta: bump github/codeql-action from 2.20.1 to 2.21.2 (dependabot[bot]) #489865c352eeecb
] - meta: bump step-security/harden-runner from 2.4.1 to 2.5.0 (dependabot[bot]) #4898542ac5a6e5f
] - meta: bump actions/setup-node from 3.6.0 to 3.7.0 (dependabot[bot]) #48984b0d769fe7c
] - meta: bump actions/setup-python from 4.6.1 to 4.7.0 (dependabot[bot]) #48983f62b24276c
] - meta: add mailmap entry for atlowChemi (Chemi Atlow) #488108c55f317a3
] - module: move helpers out of cjs loader (Geoffrey Booth) #4991214e148ee6c
] - module: ensure successful import returns the same result (Antoine du Hamel) #4666265dfe85f03
] - module: implementregister
utility (João Lenon) #468266f0458d0a6
] - module: refactor to usenormalizeRequirableId
in the CJS module loader (Darshan Sen) #4789689ed24b94a
] - module: do less CJS module loader initialization at run time (Joyee Cheung) #47194939c8764b8
] - module: move callbacks and conditions into modules/esm/utils.js (Joyee Cheung) #45849a3b0f4cf55
] - module: move modules/cjs/helpers.js to modules/helpers.js (Joyee Cheung) #4584997579895f2
] - module, esm: jsdoc for modules files (Geoffrey Booth) #49523daca87bbef
] - net: use asserts in JS Socket Stream to catch races in future (Tim Perry) #4940003063bd022
] - net: fix crash due to simultaneous close/shutdown on JS Stream Sockets (Tim Perry) #4940067fe7d8822
] - net: fix setting of value in 'setDefaultAutoSelectFamilyAttemptTimeout' (Deokjin Kim) #47012f449b222fd
] - node-api: update headers for better wasm support (Toyo Li) #490375148f030b8
] - node-api: run finalizers directly from GC (Vladimir Morozov) #42651edef4fa668
] - node-api: enable uncaught exceptions policy by default (Chengzhong Wu) #4931348a1b9336b
] - node-api: fix compiler warning in node_api.h (Michael Graeb) #4910357966318fe
] - node-api: avoid macro redefinition (Tobias Nießen) #48879d4f26f4651
] - policy: fix path to URL conversion (Antoine du Hamel) #49133a625f22acb
] - readline: add paste bracket mode (Jakub Jankiewicz) #47150bbafd42d75
] - repl: display dynamic import variant in static import error messages (Hemanth HM) #48129b8634eeb16
] - sea: allow requiring core modules with the "node:" prefix (Darshan Sen) #47779066d9d4492
] - src: remove unused functionGetName()
in node_perf (Jungku Lee) #49244158c91a38a
] - src: use ARES_SUCCESS instead of 0 (Jungku Lee) #490488c33731ac6
] - src: add a condition if the argument ofDomainToUnicode
is empty (Jungku Lee) #4909767dba57d77
] - src: use ARES_SUCCESS instead of 0 (Hyunjin Kim) #4883497d87495c7
] - src: remove unnecessary temporary creation (Jason) #48734f5384c3262
] - src: fix nullptr access on realm (Jan Olaf Krems) #48802358273d77f
] - src: remove OnScopeLeaveImpl's move assignment overload (Jason) #48732cc7bf1f641
] - (SEMVER-MINOR) src: add cjs_module_lexer_version base64_version (Jithil P Ponnan) #456290a950c3752
] - src: add missing to_ascii method in dns queries (Daniel Lemire) #483543552afb904
] - src: fix duplication of externalized builtin code (Keyhan Vakil) #4707966e4ba5062
] - src: fix AliasedBuffer memory attribution in heap snapshots (Joyee Cheung) #46817946f19b5e3
] - src: move AliasedBuffer implementation to -inl.h (Joyee Cheung) #46817d35f8702c9
] - src: bootstrap prepare stack trace callback in shadow realm (Chengzhong Wu) #471073551a19205
] - src: make BuiltinLoader threadsafe and non-global (Anna Henningsen) #4594292311a0801
] - src: define per-isolate internal bindings registration callback (Chengzhong Wu) #45547629fc774ca
] - src: use an array for faster binding data lookup (Joyee Cheung) #4662062e2e590fc
] - src: fix TLSWrap lifetime bug in ALPN callback (Ben Noordhuis) #49635fae60c5841
] - stream: use bitmap in readable state (Benjamin Gruenbaum) #49745ee4fc7d78c
] - stream: use Buffer.from when constructor is a Buffer (Matthew Aitken) #49250651e4504ce
] - stream: addhighWaterMark
for the map operator (Raz Luvaton) #49249d585d13127
] - stream: improve WebStreams performance (Raz Luvaton) #490897f39f8e805
] - test: replace forEach with for..of in test-http-perf_hooks.js (Niya Shiyas) #498182f0ffde842
] - test: replace forEach with for..of in test-net-isipv4.js (Niya Shiyas) #49822bbd302b5ab
] - test: replace forEach with for..of in test-http2-server (Niya Shiyas) #49819128ca3e213
] - test: replace forEach with for..of in test-http2-client-destroy.js (Niya Shiyas) #49820a2ca1a605f
] - test: print instruction for creating missing snapshot in assertSnapshot (Raz Luvaton) #48914a0bb30cdca
] - test: settest-watch-mode-inspect
as flaky (Yagiz Nizipli) #502591047d95698
] - test: settest-emit-after-on-destroyed
as flaky (Yagiz Nizipli) #5024691a3b57962
] - test: set inspector async stack test as flaky (Yagiz Nizipli) #50244b41aa7b82a
] - test: set test-worker-nearheaplimit-deadlock flaky (StefanStojanovic) #50277e81b066fb1
] - test: settest-cli-node-options
as flaky (Yagiz Nizipli) #502960c05c25c4e
] - test: set crypto-timing test as flaky (Yagiz Nizipli) #5023283e339dbba
] - test: settest-structuredclone-*
as flaky (Yagiz Nizipli) #50261866a399488
] - test: set inspector async hook test as flaky (Yagiz Nizipli) #50252cb0bd2116b
] - test: set parallel http server test as flaky (Yagiz Nizipli) #5022754f3d877ae
] - test: set test-worker-nearheaplimit-deadlock flaky (Stefan Stojanovic) #502385953a255b6
] - test: settest-runner-watch-mode
as flaky (Yagiz Nizipli) #502215820d7e14d
] - test: deflake test-runner-output (Moshe Atlow) #498781d75da43f2
] - Revert "test: mark test-http-regr-Segfault innode::Environment::KickNextTick
#2928 as flaky" (Luigi Pinca) #497085df23520e7
] - test: mark test-runner-watch-mode as flaky (Joyee Cheung) #496277e714e6497
] - test: remove --no-warnings flag in test_runner fixtures (Raz Luvaton) #489890fea550641
] - test: reorder test files fixtures for better understanding (Raz Luvaton) #48787c5857bde42
] - test: avoid copying test source files (Chengzhong Wu) #4951567cb6f9a34
] - test: reduce length in crypto keygen tests (Joyee Cheung) #49221958e114655
] - test: split JWK async elliptic curve keygen tests (Joyee Cheung) #49221344592dc00
] - test: split test-crypto-keygen.js (Joyee Cheung) #492215f1a1aeeed
] - test: rename test-crypto-modp1-error (Tobias Nießen) #49348107015b45d
] - test: migrate message source map tests from Python to JS (Yiyun Lei) #49238ddebd29515
] - test: fix compiler warning in NodeCryptoEnv (Tobias Nießen) #492060261c5de56
] - test: make test-perf-hooks more robust and work with workers (Joyee Cheung) #49197e18de802c8
] - test: use gcUntil() in test-v8-serialize-leak (Joyee Cheung) #4916852d5dd8dba
] - test: add expectSyncExitWithoutError() and expectSyncExit() utils (Joyee Cheung) #4902067925bb914
] - test: add Symbol.dispose support to mock timers (Benjamin Gruenbaum) #4854900c08539b6
] - test: fix edge snapshot stack traces (Geoffrey Booth) #4965948f6d9a975
] - test: refactortest-node-output-errors
(Antoine du Hamel) #48992c1a8ae38c0
] - test: deflaketest-loaders-workers-spawned
(Antoine du Hamel) #50251d5cc5d7956
] - test: deflaketest-esm-loader-resolve-type
(Antoine du Hamel) #50273866d646b0e
] - test: increase coverage ofModule.register
andinitialize
hook (Antoine du Hamel) #4953265201ab36b
] - test: isolateglobalPreload
tests (Geoffrey Booth) #4954565058d9a35
] - test: addtmpdir.fileURL()
(Livia Medeiros) #49040e1c6f46926
] - test: reduce flakiness oftest-esm-loader-hooks
(Antoine du Hamel) #49248e8d475ffc4
] - test: refactortest-esm-loader-hooks
for easier debugging (Antoine du Hamel) #4913126f01669fc
] - test: reduce flakiness oftest-esm-loader-hooks
(Antoine du Hamel) #49105d5a1153970
] - test: usefixtures.fileURL
when appropriate (Antoine du Hamel) #489903424793013
] - test: fix snapshot tests when cwd contains spaces or backslashes (Antoine du Hamel) #48959a9347a4635
] - test: ordercommon.mjs
in ASCII order (Antoine du Hamel) #48960adb9280d8e
] - test: fix some assumptions in tests (Antoine du Hamel) #48958f02637e805
] - test: fixes-module/test-esm-initialization
(Antoine du Hamel) #488808c918e5e59
] - test: relax version check with shared OpenSSL (Luigi Pinca) #50505c6caf13ad5
] - test: fix crypto-dh error message for OpenSSL 3.x (Kerem Kat) #5039565b41ebd1f
] - test: split test-crypto-dh to avoid timeout on slow machines in the CI (Joyee Cheung) #494927606921e1d
] - test: fix testsuite against zlib version 1.3 (Dominique Leuenberger) #503644f78233254
] - test: verify tracePromise does not do runStores (Stephen Belanger) #47349cb6ef74cf2
] - test: fix IPv6 checks on IBM i (Abdirahim Musse) #46546bcf97ab1b2
] - test: fix flaky test-runner-exit-code.js (Colin Ihrig) #46138f0e8ff90eb
] - test: use an array for WPT gloablThis initialization scripts (Joyee Cheung) #464250e0dd1fe90
] - test: adapt tests for OpenSSL 3.1 (OttoHollmann) #47859e3ea906988
] - test: disambiguate AIX and IBM i (Richard Lau) #48056088460d80c
] - test: add os setPriority, getPriority test coverage (Wael) #38771b011a498c5
] - test,benchmark: usetmpdir.fileURL()
(Livia Medeiros) #4913854168b7364
] - test_runner: add test location for FileTests (Colin Ihrig) #499991d9c37161d
] - test_runner: replace spurious if with else (Colin Ihrig) #49943b283ae4238
] - (SEMVER-MINOR) test_runner: accepttestOnly
inrun
(Moshe Atlow) #49753103c4a088a
] - test_runner: catch reporter errors (Moshe Atlow) #49646e459598cf2
] - test_runner: fix test runner watch mode when no positional arguments (Moshe Atlow) #49578059b1945d8
] - (SEMVER-MINOR) test_runner: add junit reporter (Moshe Atlow) #4961476a35632d3
] - test_runner: add jsdocs to mock.js (Caio Borghi) #49555ba57c24fde
] - test_runner: fix invalid timer call (Erick Wendel) #494775949ae016f
] - test_runner: add jsdocs to MockTimers (Erick Wendel) #49476429846f258
] - test_runner: fix typescript coverage (Moshe Atlow) #49406760c98280e
] - test_runner: preserve original property descriptor (Erick Wendel) #4943395cc98e14b
] - test_runner: expose spec reporter as newable function (Chemi Atlow) #49184d83964031b
] - test_runner: reland run global after() hook earlier (Colin Ihrig) #49116d61a505546
] - (SEMVER-MINOR) test_runner: expose location of tests (Colin Ihrig) #4897500c70e12f7
] - test_runner: dont set exit code on todo tests (Moshe Atlow) #4892971f7ed728d
] - test_runner: fix global after not failing the tests (Raz Luvaton) #4891311fbd924ed
] - test_runner: add support for setImmediate (Erick Wendel) #49397fb64d415be
] - test_runner: fix timeout in *Each hook failing further tests (Raz Luvaton) #4892567d7faddb2
] - test_runner: cleanup test timeout abort listener (Raz Luvaton) #48915d217435cd3
] - test_runner: fix todo and only in spec reporter (Moshe Atlow) #489299f122be15a
] - test_runner: unwrap error message in TAP reporter (Colin Ihrig) #489423a74316624
] - test_runner: add__proto__
null (Raz Luvaton) #4866366ea9bdb4d
] - test_runner: fix global before not called when no global test exists (Raz Luvaton) #488770bd9704018
] - test_runner: use os.availableParallelism() (Colin Ihrig) #45969b55eb2a8d1
] - (SEMVER-MINOR) test_runner: add shards support (Raz Luvaton) #48639c2575c8db0
] - test_runner: fix test_runnertest:fail
event type (Ethan Arrowood) #488546b186d41cd
] - test_runner: fix async callback in describe not awaited (Raz Luvaton) #488562d4511baab
] - test_runner: call abort on test finish (Raz Luvaton) #4882705e7f28b40
] - (SEMVER-MINOR) test_runner: add initial draft for fakeTimers (Erick Wendel) #47775428301ad27
] - (SEMVER-MINOR) test_runner, cli: add --test-concurrency flag (Colin Ihrig) #499964b2e258c76
] - test_runner,test: fix flaky test-runner-cli-concurrency.js (Colin Ihrig) #50108b5d16cd8f0
] - (SEMVER-MINOR) tls: add ALPNCallback server option for dynamic ALPN negotiation (Tim Perry) #45190a1c94037ab
] - tools: fix --v8-non-optimized-debug for v18.x (Joyee Cheung) #506123b65c61f5c
] - tools: update lint-md-dependencies (Node.js GitHub Bot) #5008307941a3609
] - tools: update lint-md-dependencies (Node.js GitHub Bot) #49983ad6e7a6270
] - tools: update lint-md-dependencies to rollup@3.29.2 (Node.js GitHub Bot) #496793511b13c94
] - tools: update lint-md-dependencies to rollup@3.29.0 unified@11.0.3 (Node.js GitHub Bot) #49584b6522a2b6b
] - tools: update lint-md-dependencies (Node.js GitHub Bot) #4934201b2588acf
] - tools: update lint-md-dependencies (Node.js GitHub Bot) #492530cb42ccb5c
] - tools: update lint-md-dependencies (Node.js GitHub Bot) #49122caa7ecca30
] - tools: update lint-md-dependencies to rollup@3.27.2 (Node.js GitHub Bot) #4903542846a02b3
] - tools: limit the number of auto start CIs (Antoine du Hamel) #490679cc3b2061f
] - tools: update lint-md-dependencies to rollup@3.27.0 (Node.js GitHub Bot) #489651cbb186039
] - tools: update lint-md-dependencies to rollup@3.26.3 (Node.js GitHub Bot) #48888f7d6e9ba43
] - tools: update lint-md-dependencies to @rollup/plugin-commonjs@25.0.3 (Node.js GitHub Bot) #48791a98addb626
] - tools: skip ruff on tools/node_modules (Moshe Atlow) #498386cf8dd95d1
] - tools: update eslint to 8.51.0 (Node.js GitHub Bot) #50084b8d2a29ff5
] - tools: update eslint to 8.50.0 (Node.js GitHub Bot) #499891c1cbf06f0
] - tools: update eslint to 8.49.0 (Node.js GitHub Bot) #4958692d21864c5
] - tools: update eslint to 8.48.0 (Node.js GitHub Bot) #493430940de36ee
] - tools: update eslint to 8.47.0 (Node.js GitHub Bot) #491244880a05fa2
] - tools: update eslint to 8.46.0 (Node.js GitHub Bot) #48966e9632454cd
] - tools: update eslint to 8.45.0 (Node.js GitHub Bot) #48793ae49f319c4
] - tools: drop support for osx notarization with gon (Ulises Gascón) #50291014b65e9b7
] - tools: use osx notarytool for future releases (Ulises Gascon) #4870171c386a25c
] - typings: update JSDoc forcwd
inchild_process
(LiviaMedeiros) #490294d70a2c344
] - typings: sync JSDoc with the actual implementation (Hyunjin Kim) #48853945609487c
] - typings: fix missing property inExportedHooks
(Antoine du Hamel) #495672ef80f12b9
] - typings: fix JSDoc in ESM loader modules (Antoine du Hamel) #484247fc15b6d42
] - url: fixisURL
detection by checkingpath
(Zhuo Zhang) #48928916a63b124
] - url: improveisURL
detection (Yagiz Nizipli) #47886ac27431372
] - url: validatepathToFileURL(path)
argument as string (LiviaMedeiros) #49161f256b160bf
] - url: handle unicode hostname if empty (Yagiz Nizipli) #493962441415c68
] - url: reducepathToFileURL
cpp calls (Yagiz Nizipli) #48709227e749888
] - url: validate URL constructor arg length (Matthew Aitken) #47513bf4ee17d18
] - url: validate argument length in canParse (Matthew Aitken) #47513a67fa2a107
] - util: addgetCwdSafe
internal util fn (João Lenon) #48434e96f7ef881
] - (SEMVER-MINOR) vm: use import attributes instead of import assertions (Antoine du Hamel) #50141525de686a7
] - (SEMVER-MINOR) wasi: updates required for latest uvwasi version (Michael Dawson) #49908f27d505805
] - watch: decrease debounce rate (Moshe Atlow) #4892683a6d20d70
] - watch: use debounce instead of throttle (Moshe Atlow) #48926879b958184
] - worker: protect against user mutating well-known prototypes (Antoine du Hamel) #49270