Michaël Zasso
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 https://github.com/nodejs/Release/issues/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 API register for module customization hooks; new initialize hook
There is a new API register available on node: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 calling register from the main thread and passing data, including MessageChannel instances.
We encourage users to migrate to an approach that uses --import with register, such as:
node --import ./file-that-calls-register.js ./app.js
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 unflagged
In ES modules, import.meta.resolve(specifier)
can be used to get an absolute URL string to which specifier resolves, similar
to 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 defaults
The new flag --experimental-default-type can be used to flip the default
module 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 currently
implicitly CommonJS would instead be interpreted as ES modules under
--experimental-default-type=module:
-
String input provided via
--evalor STDIN, if--input-typeis unspecified. -
Files ending in
.jsor with no extension, if there is nopackage.jsonfile present in the same folder or any parent folder. -
Files ending in
.jsor with no extension, if the nearest parentpackage.jsonfield lacks atypefield; unless the folder is inside anode_modulesfolder.
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.
- [
ed2d46f4cc] - doc: move and rename loaders section (Geoffrey Booth) #49261 - [
92734d4480] - esm: use import attributes instead of import assertions (Antoine du Hamel) #50140 - [
e96f7ef881] - (SEMVER-MINOR) vm: use import attributes instead of import assertions (Antoine du Hamel) #50141
Test runner changes
Many changes to the built-in test runner have been backported. This includes the following additions:
- [
b283ae4238] - (SEMVER-MINOR) test_runner: accepttestOnlyinrun(Moshe Atlow) #49753 - [
059b1945d8] - (SEMVER-MINOR) test_runner: add junit reporter (Moshe Atlow) #49614 - [
d61a505546] - (SEMVER-MINOR) test_runner: expose location of tests (Colin Ihrig) #48975 - [
b55eb2a8d1] - (SEMVER-MINOR) test_runner: add shards support (Raz Luvaton) #48639 - [
05e7f28b40] - (SEMVER-MINOR) test_runner: add initial draft for fakeTimers (Erick Wendel) #47775 - [
428301ad27] - (SEMVER-MINOR) test_runner, cli: add --test-concurrency flag (Colin Ihrig) #49996
Other notable changes
- [
0c4a84e8e9] - (SEMVER-MINOR) deps: update uvwasi to 0.0.19 (Node.js GitHub Bot) #49908 - [
fae60c5841] - stream: use bitmap in readable state (Benjamin Gruenbaum) #49745 - [
17246be158] - (SEMVER-MINOR) lib: add api to detect whether source-maps are enabled (翠 / green) #46391 - [
2e9f7284a1] - (SEMVER-MINOR) lib: add tracing channel to diagnostics_channel (Stephen Belanger) #44943 - [
cc7bf1f641] - (SEMVER-MINOR) src: add cjs_module_lexer_version base64_version (Jithil P Ponnan) #45629 - [
b5d16cd8f0] - (SEMVER-MINOR) tls: add ALPNCallback server option for dynamic ALPN negotiation (Tim Perry) #45190
Commits
- [
0d0eb47e2a] - benchmark: add benchmarks for the test_runner (Raz Luvaton) #48931 - [
8bb03d10f4] - benchmark: differentiate whatwg and legacy url (Yagiz Nizipli) #47377 - [
3d7734cbe3] - benchmark: lower URL.canParse runs (Khafra) #47351 - [
24d3fcf415] - benchmark: stablize encode benchmark (Joyee Cheung) #46658 - [
e08fd98bcc] - bootstrap: use correct descriptor for Symbol.{dispose,asyncDispose} (Jordan Harband) #48703 - [
cf9ddcd6c8] - bootstrap: simplify initialization of source map handlers (Joyee Cheung) #48304 - [
12d731e431] - bootstrap: log isolate data info in mksnapshot debug logs (Joyee Cheung) #47768 - [
d66873871a] - bootstrap: store internal loaders in C++ via a binding (Joyee Cheung) #47215 - [
1a499c5082] - bootstrap: optimize modules loaded in the built-in snapshot (Joyee Cheung) #45849 - [
e0e09caafe] - bootstrap: make CJS loader snapshotable (Joyee Cheung) #45849 - [
5f37decd56] - bootstrap: include event_target into the built-in snapshot (Joyee Cheung) #45849 - [
c3f56a3dee] - bootstrap: support module_wrap binding in snapshot (Joyee Cheung) #45849 - [
6466acbc89] - bootstrap: lazy load non-essential modules (Joyee Cheung) #45659 - [
a0d4b69df4] - bootstrap: lazy-load Performance.prototype.timeOrigin (Joyee Cheung) #46425 - [
c1bc8118e3] - bootstrap: generate bootstrapper arguments in BuiltinLoader (Joyee Cheung) #44488 - [
075c57e88b] - build: add symlink tocompile_commands.jsonfile if needed (Juan José) #49260 - [
9e1c531b8d] - build: expand when we run internet tests (Michael Dawson) #49218 - [
a781d24624] - build: fix typolibray->library(configure.py) (michalbiesek) #49106 - [
f2eccb7a04] - build: fixconfigure --link-module(Richard Lau) #48522 - [
a44d555494] - build: fix IBM i build with Python 3.9 (Richard Lau) #48056 - [
7f68e14ea2] - child_process: improve spawn performance on Linux (Keyhan Vakil) #48523 - [
76e4d4117c] - crypto: ensure valid point on elliptic curve in SubtleCrypto.importKey (Filip Skokan) #50234 - [
7af54279b5] - deps: V8: cherry-pick 70caf337c3f6 (kxxt) #50506 - [
49c5495339] - deps: update zlib to 1.2.13.1-motley-fef5869 (Node.js GitHub Bot) #50085 - [
e0fd52bf07] - deps: update googletest to 2dd1c13 (Node.js GitHub Bot) #50081 - [
1b103cc567] - deps: update googletest to e47544a (Node.js GitHub Bot) #49982 - [
736c869eeb] - deps: update googletest to d1467f5 (Node.js GitHub Bot) #49676 - [
cd99ee1f35] - deps: update googletest to 8a6feab (Node.js GitHub Bot) #49463 - [
5c338573ff] - deps: update zlib to 1.2.13.1-motley-f5fd0ad (Node.js GitHub Bot) #49252 - [
374ec3d623] - deps: update googletest to 7e33b6a (Node.js GitHub Bot) #49034 - [
c15dd6679b] - deps: update zlib to 1.2.13.1-motley-526382e (Node.js GitHub Bot) #49033 - [
588bd5e524] - deps: update googletest to c875c4e (Node.js GitHub Bot) #48964 - [
6059b59018] - deps: update zlib to 1.2.13.1-motley-61dc0bd (Node.js GitHub Bot) #48788 - [
e455dd4003] - deps: update googletest to cc36671 (Node.js GitHub Bot) #48789 - [
747fbb49ca] - deps: V8: cherry-pick 1a782f6543ae (Keyhan Vakil) #48523 - [
272e55c66f] - deps: upgrade npm to 10.2.3 (npm team) #50531 - [
3f6dcc62e5] - deps: update archs files for openssl-3.0.12+quic1 (Node.js GitHub Bot) #50411 - [
da26cdbe84] - deps: upgrade openssl sources to quictls/openssl-3.0.12+quic1 (Node.js GitHub Bot) #50411 - [
23069c34b2] - deps: V8: cherry-pick d69c7937c99d (Michaël Zasso) #46425 - [
5f852cc9fe] - deps: V8: cherry-pick f7d000a7ae7b (Luke Albao) #50344 - [
0c4a84e8e9] - (SEMVER-MINOR) deps: update uvwasi to 0.0.19 (Node.js GitHub Bot) #49908 - [
8682b90d02] - deps: update simdutf to 3.2.18 (Node.js GitHub Bot) #50091 - [
11ecd06aeb] - deps: update simdutf to 3.2.17 (Node.js GitHub Bot) #49019 - [
43bfe5f020] - deps: upgrade npm to 10.2.0 (npm team) #50027 - [
a140bc284b] - deps: upgrade npm to 10.1.0 (npm team) #49570 - [
65ca41c276] - (SEMVER-MINOR) deps: upgrade npm to 10.0.0 (npm team) #49423 - [
df1ff8e3da] - deps: fix call to undeclared functions 'ntohl' and 'htons' (MatteoBax) #49979 - [
f228dc7955] - deps: update corepack to 0.22.0 (Node.js GitHub Bot) #50325 - [
4324ebab67] - deps: update corepack to 0.21.0 (Node.js GitHub Bot) #50088 - [
1cabb77659] - deps: update corepack to 0.20.0 (Node.js GitHub Bot) #49464 - [
04227b287e] - deps: update c-ares to 1.20.1 (Node.js GitHub Bot) #50082 - [
13e69ee11c] - deps: update c-ares to 1.20.0 (Node.js GitHub Bot) #50082 - [
ac717df17e] - deps: update ada to 2.7.2 (Node.js GitHub Bot) #50338 - [
6885fc9386] - deps: update ada to 2.6.10 (Node.js GitHub Bot) #49984 - [
76c5f4039f] - deps: update ada to 2.6.9 (Node.js GitHub Bot) #49340 - [
597ea77422] - deps: update ada to 2.6.8 (Node.js GitHub Bot) #49340 - [
8e7dcba553] - deps: update ada to 2.6.7 (Node.js GitHub Bot) #49340 - [
9f2037e8ee] - deps: update ada to 2.6.5 (Node.js GitHub Bot) #49340 - [
4723976703] - deps: update ada to 2.6.3 (Node.js GitHub Bot) #49340 - [
7ccb478664] - deps: update undici to 5.26.4 (Node.js GitHub Bot) #50274 - [
88f9ebb770] - diagnostics_channel: fix ref counting bug when reaching zero subscribers (Stephen Belanger) #47520 - [
284a869540] - dns: callada::idna::to_asciidirectly from c++ (Yagiz Nizipli) #47920 - [
10968370b5] - doc: drop github actions check in sec release process (Rafael Gonzaga) #48978 - [
07c3b88c74] - doc: remove@anonrigfrom performance initiative (Yagiz Nizipli) #49641 - [
e26b89e8be] - doc: fix node-api call example (Chengzhong Wu) #49395 - [
4c93905f6c] - doc: add news issue for Diagnostics WG (Michael Dawson) #49306 - [
3f1a237a8f] - doc: add print results for examples inStringDecoder(Jungku Lee) #49326 - [
45caad82bb] - doc: update outdated reference to NIST SP 800-131A (Tobias Nießen) #49316 - [
62f823d5a2] - doc: usecjsas block code's type inMockTimers(Deokjin Kim) #49309 - [
0dda724d3f] - doc: updateoptions.filterdescription forfs.cp(Shubham Pandey) #49289 - [
4ba11e352b] - doc: avoid "not currently recommended" (Tobias Nießen) #49300 - [
9ca85b58b3] - doc: modify param description for end(),write() inStringDecoder(Jungku Lee) #49285 - [
3f771cab67] - doc: use NODE_API_SUPPORTED_VERSION_MAX in release doc (Cheng Zhao) #49268 - [
f181c37e75] - doc: fix typo instream.finisheddocumentation (Antoine du Hamel) #49271 - [
c70945ddc2] - doc: update description forpercent_encodesets inWHATWG API(Jungku Lee) #49258 - [
f9c2a3fb3e] - doc: clarify use of Uint8Array for n-api (Fedor Indutny) #48742 - [
bf22a5f66e] - doc: use same name in the doc as in the code (Hyunjin Kim) #49216 - [
72bd527fb6] - doc: add notable-change label mention to PR template (Rafael Gonzaga) #49188 - [
2247e52fe0] - doc: add h1 summary to security release process (Rafael Gonzaga) #49112 - [
3b82e9aed1] - doc: fix wording in napi_async_init (Tobias Nießen) #49180 - [
55171d88a0] - doc: fixTypenotation in webstreams (Deokjin Kim) #49121 - [
79c0497398] - doc: make the NODE_VERSION_IS_RELEASE revert clear (Rafael Gonzaga) #49114 - [
7ee26fb8df] - doc: update with latest security release (Rafael Gonzaga) #49085 - [
9ce73964be] - doc: add description for--portflag ofnode inspect(Michael Bianco) #48785 - [
633b8cd181] - doc: add missing period (Rich Trott) #49094 - [
6daa9ec2a4] - doc: add ESM examples in http.md (btea) #47763 - [
12b83e81b9] - doc: detailed description of keystrokes Ctrl-Y and Meta-Y (Ray) #43529 - [
ead654f976] - doc: clarify use of process.env in worker threads on Windows (Daeyeon Jeong) #49008 - [
4047947838] - doc: remove v14 mention (Rafael Gonzaga) #49005 - [
833c643eb4] - doc: run license-builder (github-actions[bot]) #48898 - [
cb43717c97] - doc: add ver of 18.x where Node-api 9 is supported (Michael Dawson) #48876 - [
a8d5c16a2a] - doc: include experimental features assessment (Rafael Gonzaga) #48824 - [
e6d8735e2b] - doc: add new TSC members (Michael Dawson) #48841 - [
d4fe00d0c7] - doc: refactor node-api support matrix (Michael Dawson) #48774 - [
629132d84c] - doc: declarepathon example ofasync_hooks.executionAsyncId()(Deokjin Kim) #48556 - [
dfd368ac9f] - doc: remove the . in the end to reduce confusing (Jason) #48719 - [
74d8f96413] - doc: nodejs-social over nodejs/tweet (Rafael Gonzaga) #48769 - [
73a7e00d06] - doc: add missing history info forimport.meta.resolve(Antoine du Hamel) #49700 - [
c20fdb4e52] - doc: editimport.meta.resolvedocumentation (Antoine du Hamel) #49247 - [
1ac389ecef] - doc: update module hooks docs (Geoffrey Booth) #49265 - [
ed2d46f4cc] - doc: move and rename loaders section (Geoffrey Booth) #49261 - [
258df0e72d] - doc: add signature formodule.register(Geoffrey Booth) #49251 - [
58eaf3f6ae] - doc: caveat unavailability ofimport.meta.resolvein custom loaders (Jacob Smith) #49242 - [
2fef28b2b9] - doc: fix name of the flag ininitialize()docs (Antoine du Hamel) #49158 - [
15280fb42c] - doc: add steps about signing the binary in single-executable docs (Darshan Sen) #46764 - [
e374ba296c] - doc: add "type" to test runner event details (Phil Nash) #49014 - [
ec0a6c1f1b] - doc: add new reporter events to custom reporter examples (Chemi Atlow) #48903 - [
e8a32fb49b] - doc: change duration to duration_ms on test documentation (Ardi_Nugraha) #48892 - [
2b30c8b8a3] - doc: fixglobalPreloadexample (bmacnaughton) #50300 - [
8a57182769] - doc,test: extend the list of platforms supported by single-executables (Darshan Sen) #47026 - [
92734d4480] - esm: use import attributes instead of import assertions (Antoine du Hamel) #50140 - [
c3c945e654] - esm: bypass CommonJS loader under --default-type (Geoffrey Booth) #49986 - [
fe691984b2] - esm: unflag extensionless javascript and wasm in module scope (Geoffrey Booth) #49974 - [
56bd9a88ac] - esm: --experimental-default-type flag to flip module defaults (Geoffrey Booth) #49869 - [
72644d62e7] - esm: improve JSDoc annotation of internal functions (Antoine du Hamel) #49959 - [
957725f601] - esm: require braces for modules code (Geoffrey Booth) #49657 - [
c12685f82d] - esm: fix cache collision on JSON files using file: URL (Antoine du Hamel) #49887 - [
ed8dd33493] - esm: identify parent importing a url with invalid host (Jacob Smith) #49736 - [
46d730ab75] - esm: fix return type ofimport.meta.resolve(Antoine du Hamel) #49698 - [
12cb700478] - esm: update loaders warning (Geoffrey Booth) #49633 - [
47193a347e] - esm: fix support forURLinstances inregister(Antoine du Hamel) #49655 - [
51ced0f1a1] - esm: clarify ERR_REQUIRE_ESM errors (Daniel Compton) #49521 - [
4be5612bae] - esm: remove return value forModule.register(Antoine du Hamel) #49529 - [
0875867e27] - esm: refactor test-esm-loader-resolve-type (Geoffrey Booth) #49493 - [
9b7c9d93e9] - esm: refactor test-esm-named-exports (Geoffrey Booth) #49493 - [
d1f5514917] - esm: refactor mocking test (Geoffrey Booth) #49465 - [
01ca6d277d] - esm: fixglobalPreloadwarning (Antoine du Hamel) #49069 - [
c1a84398b4] - esm: unflag import.meta.resolve (Guy Bedford) #49028 - [
ef43f084e9] - esm: import.meta.resolve exact module not found errors should return (Guy Bedford) #49038 - [
385f24c9cc] - esm: protectERR_UNSUPPORTED_DIR_IMPORTagainst prototype pollution (Antoine du Hamel) #49060 - [
10e7c3a376] - esm: addinitializehook, integrate withregister(Izaak Schroeder) #48842 - [
f96b610268] - esm: fix typoparentUrl->parentURL(Antoine du Hamel) #48999 - [
03c1b5e647] - esm: unflagModule.registerand allow nested loaderimport()(Izaak Schroeder) #48559 - [
63aa5d7270] - esm: add backglobalPreloadtests and fix failing ones (Antoine du Hamel) #48779 - [
1c7be606f1] - esm: remove support for arrays inimportinternal method (Antoine du Hamel) #48296 - [
655111fa00] - esm: handleglobalPreloadhook returning a nullish value (Antoine du Hamel) #48249 - [
9938a8bf13] - esm: handle more error types thrown from the loader thread (Antoine du Hamel) #48247 - [
8cab32a5d1] - esm: do not use'beforeExit'on the main thread (Antoine du Hamel) #47964 - [
b61efcce95] - esm: renameURLCanParseto be consistent (Antoine du Hamel) #47668 - [
ca20f5931d] - esm: remove support for deprecated hooks (Antoine du Hamel) #47580 - [
5de37a1e37] - esm: initializeimport.metaon eval (Antoine du Hamel) #47551 - [
39fbce7313] - esm: propagateprocess.exitfrom the loader thread to the main thread (Antoine du Hamel) #47548 - [
2a528b76e6] - esm: avoid try/catch when validating urls (Yagiz Nizipli) #47541 - [
bac9b1758f] - esm: move hook execution to separate thread (Jacob Smith) #44710 - [
dfa444477a] - esm: skip file: URL conversion to path when possible (Antoine du Hamel) #46305 - [
45de8d1bd7] - esm: allow resolve to return import assertions (Geoffrey Booth) #46153 - [
5ffc90a06b] - esm: move hooks handling into separate class (Geoffrey Booth) #45869 - [
490b598dbf] - esm: leverage loaders when resolving subsequent loaders (Maël Nison) #43772 - [
acd987287c] - events: remove weak listener for event target (Raz Luvaton) #48952 - [
69b7f91a92] - fs: remove redundant code in readableWebStream() (Deokjin Kim) #49298 - [
ae8bb162b4] - fs: remove redundantnullCheck(Livia Medeiros) #48826 - [
48c25b154b] - fs: makemkdtempaccept buffers and URL (LiviaMedeiros) #48828 - [
edf46c1b59] - fs: move fs_use_promises_symbol to per-isolate symbols (Joyee Cheung) #47768 - [
fe41d22afc] - fs: use kResistStopPropagation (Chemi Atlow) #48521 - [
7c758f60ab] - fs: fix readdir recursive sync & callback (Ethan Arrowood) #48698 - [
8874b2e11d] - http: start connections checking interval on listen (Paolo Insogna) #48611 - [
29697229b6] - https: fix connection checking interval not clearing on server close (Nitzan Uziely) #48383 - [
981aa7866d] - lib: fix MIME overmatch in data URLs (André Alves) #49104 - [
fe26f8a860] - lib: merge cjs and esm package json reader caches (Yagiz Nizipli) #48477 - [
17246be158] - (SEMVER-MINOR) lib: add api to detect whether source-maps are enabled (翠 / green) #46391 - [
2e9f7284a1] - (SEMVER-MINOR) lib: add tracing channel to diagnostics_channel (Stephen Belanger) #44943 - [
04dad9c2f6] - lib: fix BroadcastChannel initialization location (Shelley Vohr) #46864 - [
671d2c0067] - lib: fix DOMException property descriptors after being lazy loaded (Filip Skokan) #46799 - [
9a4b57d6d4] - lib: improve esm resolve performance (Yagiz Nizipli) #46652 - [
c6b2f56723] - lib: lazy-load deps in modules/run_main.js (Joyee Cheung) #45849 - [
baa280a4f6] - lib: lazy-load deps in source_map_cache.js (Joyee Cheung) #45849 - [
00bdb72b6e] - lib: add getLazy() method to internal/util (Joyee Cheung) #45849 - [
b77a6b2376] - loader: use default loader as cascaded loader in the in loader worker (Joyee Cheung) #47620 - [
7778e190b0] - meta: move Trott to TSC regular member (Rich Trott) #50297 - [
5b9575dd30] - meta: ping TSC for offboarding (Tobias Nießen) #50147 - [
d24c3a0692] - meta: update website team with new name (Rich Trott) #49883 - [
332d2aedb4] - meta: fix linter error (Antoine du Hamel) #49755 - [
dc70c444f4] - meta: add primordials strategic initiative (Benjamin Gruenbaum) #49706 - [
213a9f8a4b] - meta: bump rtCamp/action-slack-notify from 2.2.0 to 2.2.1 (dependabot[bot]) #49437 - [
2827779faa] - meta: remove modules team from CODEOWNERS (Benjamin Gruenbaum) #49412 - [
5d6daf0d01] - meta: add test/reporters to codeowners (Chemi Atlow) #49186 - [
dee7dc5d54] - meta: bump actions/upload-artifact from 3.1.2 to 3.1.3 (dependabot[bot]) #50000 - [
98294fdeee] - meta: bump actions/cache from 3.3.1 to 3.3.2 (dependabot[bot]) #50003 - [
79270327d0] - meta: bump github/codeql-action from 2.21.5 to 2.21.9 (dependabot[bot]) #50002 - [
6591a03c89] - meta: bump github/codeql-action from 2.21.2 to 2.21.5 (dependabot[bot]) #49438 - [
3a107f80bc] - meta: bump actions/checkout from 3.6.0 to 4.1.0 (dependabot[bot]) #50001 - [
26c5c3c4a2] - meta: bump actions/checkout from 3.5.3 to 3.6.0 (dependabot[bot]) #49436 - [
0fc0b88d97] - meta: bump step-security/harden-runner from 2.5.0 to 2.5.1 (dependabot[bot]) #49435 - [
dad5785d5d] - meta: bump actions/setup-node from 3.7.0 to 3.8.1 (dependabot[bot]) #49434 - [
155a275acb] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #49264 - [
bd17f0b992] - meta: mention nodejs/tsc when changing GH templates (Rafael Gonzaga) #49189 - [
f6e68a0238] - meta: bump github/codeql-action from 2.20.1 to 2.21.2 (dependabot[bot]) #48986 - [
5c352eeecb] - meta: bump step-security/harden-runner from 2.4.1 to 2.5.0 (dependabot[bot]) #48985 - [
42ac5a6e5f] - meta: bump actions/setup-node from 3.6.0 to 3.7.0 (dependabot[bot]) #48984 - [
b0d769fe7c] - meta: bump actions/setup-python from 4.6.1 to 4.7.0 (dependabot[bot]) #48983 - [
f62b24276c] - meta: add mailmap entry for atlowChemi (Chemi Atlow) #48810 - [
8c55f317a3] - module: move helpers out of cjs loader (Geoffrey Booth) #49912 - [
14e148ee6c] - module: ensure successful import returns the same result (Antoine du Hamel) #46662 - [
65dfe85f03] - module: implementregisterutility (João Lenon) #46826 - [
6f0458d0a6] - module: refactor to usenormalizeRequirableIdin the CJS module loader (Darshan Sen) #47896 - [
89ed24b94a] - module: do less CJS module loader initialization at run time (Joyee Cheung) #47194 - [
939c8764b8] - module: move callbacks and conditions into modules/esm/utils.js (Joyee Cheung) #45849 - [
a3b0f4cf55] - module: move modules/cjs/helpers.js to modules/helpers.js (Joyee Cheung) #45849 - [
97579895f2] - module, esm: jsdoc for modules files (Geoffrey Booth) #49523 - [
daca87bbef] - net: use asserts in JS Socket Stream to catch races in future (Tim Perry) #49400 - [
03063bd022] - net: fix crash due to simultaneous close/shutdown on JS Stream Sockets (Tim Perry) #49400 - [
67fe7d8822] - net: fix setting of value in 'setDefaultAutoSelectFamilyAttemptTimeout' (Deokjin Kim) #47012 - [
f449b222fd] - node-api: update headers for better wasm support (Toyo Li) #49037 - [
5148f030b8] - node-api: run finalizers directly from GC (Vladimir Morozov) #42651 - [
edef4fa668] - node-api: enable uncaught exceptions policy by default (Chengzhong Wu) #49313 - [
48a1b9336b] - node-api: fix compiler warning in node_api.h (Michael Graeb) #49103 - [
57966318fe] - node-api: avoid macro redefinition (Tobias Nießen) #48879
0 Comments
Log in to join the conversation.No comments yet. Be the first to share your thoughts.