chore(deps): update dependency node to v21.7.0 #45
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
21.6.2
->21.7.0
Release Notes
nodejs/node (node)
v21.7.0
: 2024-03-06, Version 21.7.0 (Current), @RafaelGSS prepared by @marco-ippolitoCompare Source
Text Styling
util.styleText(format, text)
: This function returns a formatted text considering theformat
passed.A new API has been created to format text based on
util.inspect.colors
, enabling you to style text in different colors (such as red, blue, ...) and emphasis (italic, bold, ...).Contributed by Rafael Gonzaga in #51850.
Loading and parsing environment variables
process.loadEnvFile(path)
:.env
file. If no path is specified, it automatically loads the .env file in the current directory. Example:process.loadEnvFile()
.process.loadEnvFile('./development.env')
.util.parseEnv(content)
:require('node:util').parseEnv('HELLO=world')
.Contributed by Yagiz Nizipli in #51476
Support for multi-line values for
.env
fileNode.js 21.7.0 will now support multi-line values in the .env file:
Contributed by Ilyas Shabi #51289
sea: support embedding assets
Users can now include assets by adding a key-path dictionary
to the configuration as the
assets
field. At build time, Node.jswould read the assets from the specified paths and bundle them into
the preparation blob. In the generated executable, users can retrieve
the assets using the
sea.getAsset()
andsea.getAssetAsBlob()
API.The single-executable application can access the assets as follows:
Contributed by Joyee Cheung in #50960
vm: support using the default loader to handle dynamic import()
This patch adds support for using
vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER
as theimportModuleDynamically
option in all vm APIs that take this option exceptvm.SourceTextModule
. This allows users to have a shortcut to support dynamicimport()
in the compiled code without missing the compilation cache if they don't need customization of the loading process. We emit an experimental warning when theimport()
is actually handled by the default loader through this option instead of requiring--experimental-vm-modules
.Contributed by Joyee Cheung in #51244
crypto: implement crypto.hash()
This patch introduces a helper crypto.hash() that computes
a digest from the input at one shot. This can be 1.2-2x faster
than the object-based createHash() for smaller inputs (<= 5MB)
that are readily available (not streamed) and incur less memory
overhead since no intermediate objects will be created.
Contributed by Joyee Cheung in #51044
Other Notable Changes
8ae0eeb7f4
] - (SEMVER-MINOR) build: build opt to set local location of headers (Michael Dawson) #51525496776cc78
] - crypto: update root certificates to NSS 3.98 (Node.js GitHub Bot) #51794a8c9e6f7e9
] - doc: add zcbenz to collaborators (Cheng Zhao) #51812adbf2d3837
] - doc: add lemire to collaborators (Daniel Lemire) #515724b1c6839f4
] - (SEMVER-MINOR) http2: add h2 compat support for appendHeader (Tim Perry) #51412d8aa2bac0b
] - (SEMVER-MINOR) http2: add server handshake utility (snek) #51172b9275d9039
] - (SEMVER-MINOR) http2: receive customsettings (Marten Richter) #513235a2d2daad5
] - (SEMVER-MINOR) lib: move encodingsMap to internal/util (Joyee Cheung) #51044e8d9065262
] - (SEMVER-MINOR) sea: support sea.getRawAsset() (Joyee Cheung) #5096047186fbad5
] - (SEMVER-MINOR) src: print string content better in BlobDeserializer (Joyee Cheung) #50960119e045053
] - (SEMVER-MINOR) src: do not coerce dotenv paths (Tobias Nießen) #514259ab353af00
] - (SEMVER-MINOR) stream: implementmin
option forReadableStreamBYOBReader.read
(Mattias Buelens) #50888Commits
4ddb9b33d5
] - async_hooks,inspector: implement inspector api without async_wrap (Gabriel Bota) #515017e06c11f55
] - benchmark: update iterations of assert/deepequal-typedarrays.js (Lei Shi) #5141972be232006
] - benchmark: update iterations of benchmark/assert/deepequal-map.js (Lei Shi) #5141692e7c310cb
] - benchmark: rename startup.js to startup-core.js (Joyee Cheung) #51669c9ada533a2
] - build: removelibrt
libs link for Android compatibility (BuShe Pie) #5163286ac787889
] - build: do not rely on gn_helpers in GN build (Cheng Zhao) #514399be6b7ccf0
] - build: fix warning in cares under GN build (Cheng Zhao) #51687d1a8c2e989
] - build: fix building js2c with GN (Cheng Zhao) #518189840715dc0
] - build: encode non-ASCII Latin1 characters as one byte in JS2C (Joyee Cheung) #516058ae0eeb7f4
] - (SEMVER-MINOR) build: build opt to set local location of headers (Michael Dawson) #515251999719877
] - build: use macOS m1 machines for testing (Yagiz Nizipli) #5162085f63f3d7d
] - build: check before removing %config% link (liudonghua) #51437cc37959232
] - build: increase parallel executions in github (Yagiz Nizipli) #515542921d55121
] - build: remove copyright header in node.gni (Cheng Zhao) #515359da0926396
] - build: update GN build files for ngtcp2 (Cheng Zhao) #5131359117317f3
] - build,tools: make addons tests work with GN (Cheng Zhao) #5073778c226281c
] - (SEMVER-MINOR) crypto: implement crypto.hash() (Joyee Cheung) #51044496776cc78
] - crypto: update root certificates to NSS 3.98 (Node.js GitHub Bot) #5179417c554f1ca
] - crypto: use EVP_MD_fetch and cache EVP_MD for hashes (Joyee Cheung) #51034014cc53541
] - deps: upgrade npm to 10.5.0 (npm team) #519134ebb944800
] - deps: update undici to 6.6.2 (Michaël Zasso) #516673b29dff0ed
] - deps: update ngtcp2 to 1.3.0 (Node.js GitHub Bot) #5179628c0ffb363
] - deps: update simdjson to 3.7.0 (Daniel Lemire) #5185958b1403693
] - deps: update corepack to 0.25.2 (Node.js GitHub Bot) #51810c7083720cc
] - deps: update c-ares to 1.27.0 (Node.js GitHub Bot) #518466d2699d40b
] - deps: update timezone to 2024a (Michaël Zasso) #517238d2222714d
] - deps: update icu to 74.2 (Michaël Zasso) #51723c3dbd7cccd
] - deps: update c-ares to 1.26.0 (Node.js GitHub Bot) #51582dfc3811056
] - deps: update googletest to6a59382
(Node.js GitHub Bot) #515808235c2676e
] - deps: update nghttp2 to 1.59.0 (Node.js GitHub Bot) #515812ad665e24f
] - deps: V8: cherry-pickefb1133
(Joyee Cheung) #51551e5db8d416f
] - deps: update corepack to 0.24.1 (Node.js GitHub Bot) #51459fe597de72e
] - deps: update ada to 2.7.6 (Node.js GitHub Bot) #515425aca6f54f9
] - deps: update ada to 2.7.5 (Node.js GitHub Bot) #515428f63f6ff57
] - deps: update ngtcp2 to 1.2.0 (Node.js GitHub Bot) #51584a04aa36ce8
] - deps: update googletest to7c07a86
(Node.js GitHub Bot) #514584b1d25b68d
] - deps: update ngtcp2 to 1.1.0 (Node.js GitHub Bot) #51319682f4f67b0
] - deps: update acorn-walk to 8.3.2 (Node.js GitHub Bot) #51457365a9dc2cb
] - deps: update timezone to 2023d (Node.js GitHub Bot) #5146140e8b362a2
] - deps: update base64 to 0.5.2 (Node.js GitHub Bot) #51455139a626264
] - deps: compile c-ares with C11 support (Michaël Zasso) #514101cc37c4355
] - deps: upgrade npm to 10.3.0 (npm team) #51431942e10f5b5
] - deps: update c-ares to 1.25.0 (Node.js GitHub Bot) #5138517cb4af5a9
] - deps: update uvwasi to 0.0.20 and fixup tests (Michael Dawson) #5135576582e434c
] - deps: add nghttp3/**/.deps to .gitignore (Luigi Pinca) #514004a889e8ea3
] - doc: add stability index to crypto.hash() (Joyee Cheung) #519783fdaeba9e6
] - doc: remove redundant backquote which breaks sentence (JounQin) #5190458747734a2
] - doc: update node-api/node-addon-api team link to sharing project news (Ulises Gascón) #518772cdfe35437
] - doc: add website team to sharing project news (Ulises Gascón) #49002db30428f06
] - doc: update guide link for Event Loop (Shrujal Shah) #51874a5a17a18e3
] - doc: changeExperimentalWarnings
toExperimentalWarning
(Ameet Kaustav) #5174132d92aca1f
] - doc: add Paolo to TSC members (Michael Dawson) #518252de1e85268
] - doc: reserve 123 for Electron 30 (Keeley Hammond) #51803ad8cefcbf1
] - doc: add mention to GPG_TTY (Rafael Gonzaga) #51806a8c9e6f7e9
] - doc: add zcbenz to collaborators (Cheng Zhao) #518124e0c79bea9
] - doc: add entry to stewards (Rafael Gonzaga) #517607fa30812ea
] - doc: update technical priorities for 2023 (Jean Burellier) #47523af6b5b1722
] - doc: mark isWebAssemblyCompiledModule eol (Marco Ippolito) #51442a62f69ecad
] - doc: fixglobals.md
introduction (Antoine du Hamel) #51742519dc8aad6
] - doc: updates for better json generating (Dmitry Semigradsky) #515921b45ca4e38
] - doc: document the GN build (Cheng Zhao) #5167637182c4c1f
] - doc: fix uncaught exception example (Gabriel Schulhof) #51638c9be260b7d
] - doc: clarify execution ofafter
hook on test suite completion (Ognjen Jevremović) #515238c0a257021
] - doc: fixdns.lookup
anddnsPromises.lookup
description (Duncan Chiu) #51517177e13cb0d
] - doc: note that path.normalize deviates from POSIX (Tobias Nießen) #51513adbf2d3837
] - doc: add lemire to collaborators (Daniel Lemire) #51572fd2a3cef57
] - doc: fix historical experimental fetch flag (Kenrick) #515061d40a0067a
] - doc: fix type of connectionAttempt parameter (Rafael Gonzaga) #51490d3b78051ce
] - doc: remove reference to resolved child_process v8 issue (Ian Kerins) #514672bf371886a
] - doc: update typos (Aranđel Šarenac) #5147510f95283c6
] - doc: add notes on inspector breakpoints (Chengzhong Wu) #514174ea194ab33
] - doc: add links inoffboarding.md
(Antoine du Hamel) #51440fc5629616b
] - doc: fix spelling mistake (u9g) #5145470e88cf159
] - doc: add check for security reverts (Michael Dawson) #5137674d4e382a7
] - doc: fix some policy scope typos (Tim Kuijsten) #51234d7658ca6a2
] - doc: improve subtests documentation (Marco Ippolito) #51379c18a813638
] - doc: add missing word inchild_process.md
(Joseph Joy) #50370fabd5c4b21
] - doc: fixup alignment of warning subsection (James M Snell) #5137480c750c8c1
] - doc,crypto: further clarify RSA_PKCS1_PADDING support (Tobias Nießen) #51799b53919d988
] - doc,crypto: add changelog and note about disabled RSA_PKCS1_PADDING (Filip Skokan) #5178208832e76d3
] - esm: improve error when callingimport.meta.resolve
fromdata:
URL (Antoine du Hamel) #4951678f818069a
] - events: no stopPropagation call in cancelBubble (mert.altin) #50405f130a33438
] - Revert "fs: remove workaround foresm
package" (Jeremy Meng) #509075a8af3d362
] - fs: load rimraf lazily in fs/promises (Joyee Cheung) #5161715a7f2103b
] - fs: remove race condition for recursive watch on Linux (Matteo Collina) #51406d8bb4b2c1e
] - fs: update jsdoc forfilehandle.createWriteStream
andappendFile
(Jungku Lee) #51494e8fffebdd3
] - fs,test: add URL to string to fs.watch (Rafael Gonzaga) #51346ec17fd73cc
] - http: fixclose
return value mismatch between doc and implementation (kylo5aby) #51797b8e7a87aa9
] - http: split set-cookie when using setHeaders (Marco Ippolito) #51649682951af60
] - http2: close idle connections when allowHTTP1 is true (xsbchen) #515694b1c6839f4
] - (SEMVER-MINOR) http2: add h2 compat support for appendHeader (Tim Perry) #51412d8aa2bac0b
] - (SEMVER-MINOR) http2: add server handshake utility (snek) #51172b9275d9039
] - (SEMVER-MINOR) http2: receive customsettings (Marten Richter) #5132358e2015a03
] - inspector: add NodeRuntime.waitingForDebugger event (mary marchini) #51560af32d433ee
] - lib: account for cwd access from snapshot serialization cb (Anna Henningsen) #519011edbc7d353
] - lib: fix http client socket path (theanarkh) #519004dfc9e092e
] - lib: only build the ESM facade for builtins when they are needed (Joyee Cheung) #516695a2d2daad5
] - (SEMVER-MINOR) lib: move encodingsMap to internal/util (Joyee Cheung) #51044eb1089ab17
] - lib: do not access process.noDeprecation at build time (Joyee Cheung) #51447614ca327c8
] - lib: add assertion for user ESM execution (Joyee Cheung) #5174877ae03f723
] - lib: create global console properties at snapshot build time (Joyee Cheung) #517007f698f064e
] - lib: define FormData and fetch etc. in the built-in snapshot (Joyee Cheung) #515984b583bfcc5
] - lib: allow checking the test result from afterEach (Tim Stableford) #51485ec60639cc0
] - lib: remove unnecessary refreshHrtimeBuffer() (Joyee Cheung) #514468dc3f91eb4
] - lib,src: extract sourceMappingURL from module (unbyte) #5169084c71fa895
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #51726e5c52a2a6b
] - meta: bump codecov/codecov-action from 3.1.4 to 4.0.1 (dependabot[bot]) #5164816aa6e5341
] - meta: bump actions/download-artifact from 4.1.0 to 4.1.1 (dependabot[bot]) #5164497825603ae
] - meta: bump actions/upload-artifact from 4.0.0 to 4.3.0 (dependabot[bot]) #5164351f0d80876
] - meta: bump step-security/harden-runner from 2.6.1 to 2.7.0 (dependabot[bot]) #5164197e3cb5844
] - meta: bump actions/cache from 3.3.2 to 4.0.0 (dependabot[bot]) #51640dcf5f28d68
] - meta: bump github/codeql-action from 3.22.12 to 3.23.2 (dependabot[bot]) #51639c4a28b2211
] - meta: add .mailmap entry for lemire (Daniel Lemire) #51600dbf44744ba
] - meta: mark security-wg codeowner for deps folder (Marco Ippolito) #5152916fea71d08
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #51468015c4dcacf
] - meta: move RaisinTen to emeritus and remove from strategic initiatives (Darshan Sen) #51411e942dc1d0c
] - meta: add .temp and .lock tags to ignore (Rafael Gonzaga) #51343595542e330
] - meta: bump actions/setup-python from 4.7.1 to 5.0.0 (dependabot[bot]) #513356c3ba73d03
] - meta: bump actions/setup-node from 4.0.0 to 4.0.1 (dependabot[bot]) #51334e4f9f0a260
] - meta: bump github/codeql-action from 2.22.8 to 3.22.12 (dependabot[bot]) #5133377598c3a8e
] - meta: bump actions/stale from 8.0.0 to 9.0.0 (dependabot[bot]) #5133222a11c32c0
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #51329391aeb1996
] - module: fix crash when built-in module export adefault
key (Antoine du Hamel) #51481615b0ae307
] - module: fix--preserve-symlinks-main
(per4uk) #51312c6cc3ed3b4
] - net: fix connect crash when call destroy in lookup handler (theanarkh) #5182663e0ceb48f
] - net: fix example IPv4 in dns docs (Aras Abbasi) #51377bc6f33d8d1
] - node-api: make napi_get_buffer_info check if passed buffer is valid (Janrupf) #515715b94ff44ec
] - node-api: move NAPI_EXPERIMENTAL definition to gyp file (Gabriel Schulhof) #5125466c11f31c3
] - node-api: optimize napi_set_property for perf (Mert Can Altın) #50282cb621863c6
] - perf_hooks: performance milestone time origin timestamp improvement (IlyasShabi) #517134d06d80675
] - quic: various additional cleanups, fixes in Endpoint (James M Snell) #513103e579ab2fd
] - repl: fixNO_COLORS
env var is ignored (Moshe Atlow) #515687ceb6d6700
] - sea: update stability index (Joyee Cheung) #51774e8d9065262
] - (SEMVER-MINOR) sea: support sea.getRawAsset() (Joyee Cheung) #50960cea5295c16
] - (SEMVER-MINOR) sea: support embedding assets (Joyee Cheung) #509607543e774bd
] - src: simplify direct queries of env vars in C++ land (Joyee Cheung) #518298f10543c58
] - src: stop the profiler and the inspector before snapshot serialization (Joyee Cheung) #51815ccc76bbfd7
] - src: simplify embedder entry point execution (Joyee Cheung) #515570c41210865
] - src: compile code eagerly in snapshot builder (Joyee Cheung) #516722a46dc7b86
] - src: check empty before accessing string (Cheng Zhao) #5166547186fbad5
] - (SEMVER-MINOR) src: print string content better in BlobDeserializer (Joyee Cheung) #509606603d32ce3
] - src: fix vm bug for configurable globalThis (F. Hinkelmann) #51602c7912c3d5a
] - (SEMVER-MINOR) src: support multi-line values for .env file (IlyasShabi) #51289b8ae5c27c6
] - (SEMVER-MINOR) src: addprocess.loadEnvFile
andutil.parseEnv
(Yagiz Nizipli) #51476e3a63843f2
] - src: terminate correctly double-quote in env variable (Marco Ippolito) #51510119e045053
] - (SEMVER-MINOR) src: do not coerce dotenv paths (Tobias Nießen) #51425b271cc5b16
] - src: refactorGetCreationContext
calls (Jungku Lee) #5136736e42aa570
] - src: do not read string out of bounds (Cheng Zhao) #513588ea7d79082
] - src: avoid shadowed string in fs_permission (Shelley Vohr) #511235b06af7814
] - stream: fix eventNames() to not return not defined events (IlyasShabi) #51331438b7fd049
] - stream: fix cloned webstreams not being unref correctly (tsctx) #515269ab353af00
] - (SEMVER-MINOR) stream: implementmin
option forReadableStreamBYOBReader.read
(Mattias Buelens) #5088817ab5ae570
] - test: fix unreliable assumption in js-native-api/test_cannot_run_js (Joyee Cheung) #51898e2c51385c7
] - test: test surrogate pair filenames on windows (Mert Can Altın) #51800049e5f5e8c
] - test: deflake test-http2-large-write-multiple-requests (Joyee Cheung) #518632bf03ee678
] - test: fix test-debugger-profile for coverage generation (Joyee Cheung) #51816d47a95f3b1
] - test: fix test-bootstrap-modules for coverage generation (Joyee Cheung) #51816c0918f082f
] - test: ensure delay in recursive fs watch tests (Joyee Cheung) #518421f6551dda2
] - test: fix test-child-process-fork-net (Joyee Cheung) #51841f845a16c58
] - test: split wasi tests (Joyee Cheung) #51836275cea0fdb
] - test: mark test-wasi as flaky on Windows on ARM (Joyee Cheung) #518342fb620cd00
] - test: remove test-fs-stat-bigint flaky designation (Luigi Pinca) #51735b046712e86
] - test: skip test-http-correct-hostname on loong64 (Shi Pujin) #5166383f581d4c1
] - test: increase platform timeout zlib-brotli-16gb (Rafael Gonzaga) #51792ea08350c83
] - test: remove test-cli-node-options flaky designation (Luigi Pinca) #517169d3a014f67
] - test: remove test-domain-error-types flaky designation (Luigi Pinca) #51717d7563a5448
] - test: fixinternet/test-inspector-help-page
(Richard Lau) #51693e9299255ca
] - test: remove duplicate entry for flaky test (Luigi Pinca) #51654a8ac337250
] - test: remove test-crypto-keygen flaky designation (Luigi Pinca) #51567c820166e4b
] - test: remove test-fs-rmdir-recursive flaky designation (Luigi Pinca) #51566db88bf185f
] - test: remove common.expectsError calls for asserts (Paulo Chaves) #51504fc0c1309b2
] - test: mark test-http2-large-file as flaky (Michaël Zasso) #51549c88f0b6db9
] - test: use checkIfCollectableByCounting in SourceTextModule leak test (Joyee Cheung) #51512d4d07f4a44
] - test: remove test-file-write-stream4 flaky designation (Luigi Pinca) #514727420a7d2f8
] - test: add URL tests to fs-write (Rafael Gonzaga) #5135228c2bf3e42
] - test: remove unneeded common.expectsError for asserts (Andrés Morelos) #513539dfb36fbe5
] - test,crypto: update WebCryptoAPI WPT (Filip Skokan) #51533e4d4bc6f9a
] - test_runner: serialize 'expected' and 'actual' in isolation (Malthe Borch) #518515f9491237c
] - test_runner: add ref methods to mocked timers (Marco Ippolito) #51809af5875c6e8
] - test_runner: check if timeout was cleared by own callback (Ben Richeson) #51673e0789fbc8a
] - test_runner: do not invoke after hook when test is empty (Marco Ippolito) #5138927f8549903
] - tools: fix installing node with shared mode (Cheng Zhao) #5191071a809bd43
] - tools: update eslint to 8.57.0 (Node.js GitHub Bot) #5186720effe638a
] - tools: update lint-md-dependencies to [email protected] (Node.js GitHub Bot) #517956c0a3b9c0d
] - tools: update lint-md-dependencies to [email protected] (Node.js GitHub Bot) #5179503f926ddca
] - tools: fix missing [[fallthrough]] in js2c (Cheng Zhao) #51845b502be1d09
] - tools: disable automated libuv updates (Rafael Gonzaga) #51775787fb32557
] - tools: fix update-icu.sh (Michaël Zasso) #51723ba22c614c1
] - tools: update lint-md-dependencies to [email protected] (Node.js GitHub Bot) #51720751821fa21
] - tools: update github_reporter to 1.6.0 (Node.js GitHub Bot) #516585fe493d0e4
] - tools: runbuild-windows
workflow only on source changes (Antoine du Hamel) #51596e1b9655bdc
] - tools: update lint-md-dependencies to [email protected] (Node.js GitHub Bot) #51583d8e1058f18
] - tools: fix loong64 build (Shi Pujin) #51401e0eeebc960
] - tools: set normalizeTD text default to empty string (Marco Ippolito) #5154381fd7d1ca9
] - tools: limit parallelism with ninja in V8 builds (Richard Lau) #51473e88a301e98
] - tools: do not pass invalid flag to C compiler (Michaël Zasso) #51409129d3b3293
] - tools: update lint-md-dependencies to [email protected] (Node.js GitHub Bot) #51460f3845de204
] - tools: update inspector_protocol to83b1154
(Kohei Ueno) #5130958901d08fd
] - tools: update github_reporter to 1.5.4 (Node.js GitHub Bot) #5139529492e2c88
] - tools: fix version parsing in brotli update script (Richard Lau) #5137317593d95ba
] - tools: update lint-md-dependencies to [email protected] (Node.js GitHub Bot) #5139635f33d3a31
] - tools: remove openssl v1 update script (Marco Ippolito) #5137883b3aa838b
] - tools: remove deprecated python api (Alex Yang) #49731adb2c36f0f
] - typings: lib/internal/vm.js (Geoffrey Booth) #50112407341e25c
] - url: don't update URL immediately on update to URLSearchParams (Matt Cowley) #5152088e08bbe80
] - (SEMVER-MINOR) util: add styleText API to text formatting (Rafael Gonzaga) #51850ba444a949d
] - vm: implement isContext() directly in JS land with private symbol (Joyee Cheung) #516854c508269cd
] - (SEMVER-MINOR) vm: support using the default loader to handle dynamic import() (Joyee Cheung) #51244Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.