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:
1.11.0
->1.11.1
0.38.2
->0.38.3
9.11.1
->9.16.0
0.42.0
->0.43.0
22.9.0
->22.12.0
3.3.3
->3.4.2
Release Notes
actions/toolkit (@actions/core)
v1.11.1
crypto.randomUUID
on Node 18 and earlier #1842vercel/ncc (@vercel/ncc)
v0.38.3
Compare Source
Bug Fixes
--asset-builds
to cli help message (#1228) (84f8c52)eslint/eslint (eslint)
v9.16.0
Compare Source
Features
8f70eb1
feat: AddignoreComputedKeys
option insort-keys
rule (#19162) (Milos Djermanovic)Documentation
9eefc8f
docs: fix typos inuse-isnan
(#19190) (루밀LuMir)0c8cea8
docs: switch the order of words inno-unreachable
(#19189) (루밀LuMir)0c19417
docs: add missing backtick tono-async-promise-executor
(#19188) (루밀LuMir)8df9276
docs: add backtick in-0
indescription
ofno-compare-neg-zero
(#19186) (루밀LuMir)7e16e3f
docs: fixcaseSensitive
option's title ofsort-keys
(#19183) (Tanuj Kanti)0c6b842
docs: fix typos inmigration-guide.md
(#19180) (루밀LuMir)353266e
docs: fix a typo indebug.md
(#19179) (루밀LuMir)5ff318a
docs: delete unnecessary horizontal rule(---
) innodejs-api
(#19175) (루밀LuMir)576bcc5
docs: mark more rules as handled by TypeScript (#19164) (Tanuj Kanti)742d054
docs: note thatno-restricted-syntax
can be used with any language (#19148) (Milos Djermanovic)Chores
feb703b
chore: upgrade to@eslint/[email protected]
(#19195) (Francesco Trotta)df9bf95
chore: package.json update for @eslint/js release (Jenkins)f831893
chore: add type forignoreComputedKeys
option ofsort-keys
(#19184) (Tanuj Kanti)3afb8a1
chore: update dependency @eslint/json to ^0.8.0 (#19177) (Milos Djermanovic)1f77c53
chore: addrepository.directory
property topackage.json
(#19165) (루밀LuMir)d460594
chore: update dependency @arethetypeswrong/cli to ^0.17.0 (#19147) (renovate[bot])45cd4ea
refactor: update default options in rules (#19136) (Milos Djermanovic)v9.15.0
Compare Source
v9.14.0
Compare Source
v9.13.0
Compare Source
v9.12.0
Compare Source
Features
5a6a053
feat: update tojiti
v2 (#18954) (Arya Emami)17a07fb
feat: Hooks for test cases (RuleTester) (#18771) (Anna Bocharova)2ff0e51
feat: Implement alternate config lookup (#18742) (Nicholas C. Zakas)2d17453
feat: Implement modified cyclomatic complexity (#18896) (Dmitry Pashkevich)Bug Fixes
ea380ca
fix: Upgrade retry to avoid EMFILE errors (#18986) (Nicholas C. Zakas)fdd6319
fix: Issues with type definitions (#18940) (Arya Emami)Documentation
ecbd522
docs: Mention code explorer (#18978) (Nicholas C. Zakas)7ea4ecc
docs: Clarifying the Use of Meta Objects (#18697) (Amaresh S M)d3e4b2e
docs: Clarify how to exclude.js
files (#18976) (Milos Djermanovic)57232ff
docs: Mention plugin-kit in language docs (#18973) (Nicholas C. Zakas)b80ed00
docs: Update README (GitHub Actions Bot)cb69ab3
docs: Update README (GitHub Actions Bot)7fb0d95
docs: Update README (GitHub Actions Bot)493348a
docs: Update README (GitHub Actions Bot)87a582c
docs: fix typo inid-match
rule (#18944) (Jay)Chores
555aafd
chore: upgrade to@eslint/[email protected]
(#18987) (Francesco Trotta)873ae60
chore: package.json update for @eslint/js release (Jenkins)d0a5414
refactor: replace strip-ansi with native module (#18982) (Cristopher)b827029
chore: Enable JSON5 linting (#18979) (Milos Djermanovic)8f55ca2
chore: Upgrade espree, eslint-visitor-keys, eslint-scope (#18962) (Nicholas C. Zakas)c1a2725
chore: update dependency mocha to ^10.7.3 (#18945) (Milos Djermanovic)igorshubovych/markdownlint-cli (markdownlint-cli)
v0.43.0
Compare Source
nodejs/node (node)
v22.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
] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #55300d7b73bbd1d
] - meta: bump mozilla-actions/sccache-action from 0.0.5 to 0.0.6 (dependabot[bot]) #552250f4269faa9
] - meta: bump actions/checkout from 4.1.7 to 4.2.0 (dependabot[bot]) #5522433be1990d8
] - meta: bump actions/setup-node from 4.0.3 to 4.0.4 (dependabot[bot]) #55223f5b4ae5bf8
] - meta: bump peter-evans/create-pull-request from 7.0.1 to 7.0.5 (dependabot[bot]) #552191985d9016e
] - meta: add mailmap entry for abmusse (Abdirahim Musse) #5518293b215d5e6
] - meta: add more information about nightly releases (Aviv Keller) #55084aeae5973c3
] - meta: addlinux
to OS labels in collaborator guide (Aviv Keller) #549864fb2c3baa8
] - meta: remove never-used workflow trigger (Aviv Keller) #54983e1f36d0da8
] - meta: remove unneeded ignore rules from ruff (Aviv Keller) #54360ce0d0c1ec8
] - meta: removebuild-windows.yml
(Aviv Keller) #54662ca67c97f33
] - meta: add links to alternative issue trackers (Aviv Keller) #544016fcac73738
] - module: wrap swc error in ERR_INVALID_TYPESCRIPT_SYNTAX (Marco Ippolito) #553160412ac8bf3
] - module: add internal type def forflushCompileCache
(Jacob Smith) #5522632261fc98a
] - (SEMVER-MINOR) module: support loading entrypoint as url (RedYetiDev) #54933111261e245
] - (SEMVER-MINOR) module: implement the "module-sync" exports condition (Joyee Cheung) #54648b6fc9adf5b
] - module: remove duplicated import (Aviv Keller) #5494206957ff355
] - (SEMVER-MINOR) module: implement flushCompileCache() (Joyee Cheung) #549712dcf70c347
] - (SEMVER-MINOR) module: throw when invalid argument is passed to enableCompileCache() (Joyee Cheung) #54971f9b19d7c44
] - (SEMVER-MINOR) module: write compile cache to temporary file and then rename it (Joyee Cheung) #549711d169764db
] - module: report unfinished TLA in ambiguous modules (Antoine du Hamel) #54980c89c93496d
] - module: refator ESM loader for adding future synchronous hooks (Joyee Cheung) #54769108cef22e6
] - module: remove bogus assertion in CJS entrypoint handling with --import (Joyee Cheung) #5459267ecb10c78
] - module: fix discrepancy between .ts and .js (Marco Ippolito) #544613300d5990f
] - os: use const with early return for path (Trivikram Kamat) #5495990cce6ec7c
] - path: remove repetitive conditional operator inposix.resolve
(Wiyeong Seo) #54835cbfc980f89
] - perf_hooks: add missing type argument to getEntriesByName (Luke Taher) #54767e95163b170
] - (SEMVER-MINOR) process: add process.features.require_module (Joyee Cheung) #552410655d3a384
] - process: fixprocess.features.typescript
when Amaro is unavailable (Antoine du Hamel) #553234050f68e5d
] - (SEMVER-MINOR) process: addprocess.features.typescript
(Aviv Keller) #5429575073c50ae
] - quic: start adding in the internal quic js api (James M Snell) #53256538b1eb5b0
] - repl: catch\v
and\r
in new-line detection (Aviv Keller) #5451257a9d3f15e
] - sqlite: disable DQS misfeature by default (Tobias Nießen) #55297c126543374
] - sqlite: make sourceSQL and expandedSQL string-valued properties (Tobias Nießen) #5472167f5f46c56
] - sqlite: enable foreign key constraints by default (Tobias Nießen) #5477709999491bf
] - src: handle errors correctly in webstorage (Michaël Zasso) #54544295c17c4ea
] - src: make minor tweaks to quic c++ for c++20 (James M Snell) #53256b1d47d06f9
] - src: apply getCallSite optimization (RafaelGSS) #55174d6bcc44829
] - src: modernize likely/unlikely hints (Yagiz Nizipli) #551551af5ad61ca
] - src: fixup Error.stackTraceLimit during snapshot building (Joyee Cheung) #55121b229083235
] - src: parse --stack-trace-limit and use it in --trace-* flags (Joyee Cheung) #55121942ad54e08
] - src: move more key handling to ncrypto (James M Snell) #551080bb5584288
] - src: add receiver to fast api callback methods (Carlos Espa) #54408706e9611f0
] - src: fix typos (Nathan Baulch) #55064a96d5d1bcc
] - src: move more stuff over to use Maybe<void> (James M Snell) #54831ee0a98b5a2
] - src: decode native error messages as UTF-8 (Joyee Cheung) #550241fc8edecf8
] - src: update clang-tidy and focus on modernization (Yagiz Nizipli) #537573a1485a1a3
] - src: move evp stuff to ncrypto (James M Snell) #549119ae80e1e4d
] - src: revert filesystem::path changes (Yagiz Nizipli) #55015465d05018a
] - src: mark node --run as stable (Yagiz Nizipli) #53763ef546c872c
] - src: cleanup per env handles directly without a list (Chengzhong Wu) #549930876f78411
] - src: add unistd.h import if node posix credentials is defined (Jonas) #54528284db53866
] - src: remove duplicate code setting AF_INET (He Yang) #54939f332c4c4fc
] - src: useMaybe<void>
where bool isn't needed (Michaël Zasso) #54575c7ed2ff920
] - stream: handle undefined chunks correctly in decode stream (devstone) #55153a9675a0cbc
] - stream: treat null asyncIterator as undefined (Jason Zhang) #55119bf69ae1406
] - stream: set stream prototype to closest transferable superclass (Jason Zhang) #550673273707a3a
] - test: fix tests when Amaro is unavailable (Richard Lau) #55320ff3cc3b2ab
] - test: use more informative errors intest-runner-cli
(Antoine du Hamel) [#55321](https:/Configuration
📅 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 is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.