chore(deps): update docker dependencies - autoclosed #91
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:
2.5.8
->2.7.1
2.1.49
->2.2.2
1.25.2-alpine
->1.25.4-alpine
18.16.0-alpine
->18.19.1-alpine
14.9-alpine
->14.11-alpine
Release Notes
mlocati/docker-php-extension-installer (mlocati/php-extension-installer)
v2.2.2
Compare Source
v2.2.1
Compare Source
v2.2.0
Compare Source
v2.1.85
Compare Source
25d0a51
>d359a9f
, libavif 0.9.3 > 1.0.3 (#883)v2.1.84
Compare Source
v2.1.83
Compare Source
v2.1.82
Compare Source
v2.1.81
Compare Source
v2.1.80
Compare Source
v2.1.79
Compare Source
v2.1.78
Compare Source
v2.1.77
Compare Source
v2.1.76
Compare Source
v2.1.75
Compare Source
v2.1.74
Compare Source
v2.1.73
Compare Source
v2.1.72
Compare Source
v2.1.71
Compare Source
v2.1.70
Compare Source
org.opencontainers.image.source
(#848)v2.1.69
Compare Source
v2.1.68
Compare Source
v2.1.67
Compare Source
v2.1.66
Compare Source
v2.1.65
Compare Source
v2.1.64
Compare Source
v2.1.63
Compare Source
v2.1.62
Compare Source
v2.1.61
Compare Source
v2.1.60
Compare Source
v2.1.59
Compare Source
v2.1.58
Compare Source
v2.1.57
Compare Source
v2.1.56
Compare Source
v2.1.55
Compare Source
v2.1.54
Compare Source
v2.1.53
Compare Source
v2.1.52
Compare Source
v2.1.51
Compare Source
v2.1.50
Compare Source
nodejs/node (node)
v18.19.1
: 2024-02-14, Version 18.19.1 'Hydrogen' (LTS), @RafaelGSS prepared by @marco-ippolitoCompare Source
Notable changes
This is a security release.
Notable changes
Commits
69e0a1dba8
] - crypto: update root certificates to NSS 3.95 (Node.js GitHub Bot) #50805d3d357ab09
] - crypto: disable PKCS#1 padding for privateDecrypt (Michael Dawson) nodejs-private/node-private#5253d27175c42
] - deps: fix GHSA-f74f-cvh7-c6q6/CVE-2024-24806 (Santiago Gimeno) #51614331558b8ab
] - deps: update archs files for openssl-3.0.13+quic1 (Node.js GitHub Bot) #5161499b77dfb9c
] - deps: upgrade openssl sources to quictls/openssl-3.0.13+quic1 (Node.js GitHub Bot) #516146cdc71bff1
] - deps: upgrade npm to 10.2.4 (npm team) #50751911cb33cda
] - http: add maximum chunk extension size (Paolo Insogna) nodejs-private/node-private#520f48b89689d
] - lib: update undici to v5.28.3 (Matteo Collina) nodejs-private/node-private#536e6b4c105e0
] - src: fix HasOnly(capability) in node::credentials (Tobias Nießen) nodejs-private/node-private#50597c49076cd
] - test: skip test-child-process-stdio-reuse-readable-stdio on Windows (Joyee Cheung) #4962160affdde8e
] - tools: add macOS notarization verification step (Ulises Gascón) #50833ccc676a327
] - tools: use macOS keychain to notarize the releases (Ulises Gascón) #5071531f1ceb380
] - tools: remove unused file (Ulises Gascon) #50622bd5f6fb92a
] - tools: add macOS notarization stapler (Ulises Gascón) #506254168c4f71b
] - tools: improve macOS notarization process output readability (Ulises Gascón) #503894622f775aa
] - tools: remove unusedversion
function (Ulises Gascón) #50390b90804b1e7
] - win,tools: upgrade Windows signing to smctl (Stefan Stojanovic) #50956f31d47e135
] - zlib: pause stream if outgoing buffer is full (Matteo Collina) nodejs-private/node-private#542v18.19.0
: 2023-11-29, Version 18.19.0 'Hydrogen' (LTS), @targosCompare Source
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-pick70caf33
(kxxt) #5050649c5495339
] - deps: update zlib to 1.2.13.1-motley-fef5869 (Node.js GitHub Bot) #50085e0fd52bf07
] - deps: update googletest to2dd1c13
(Node.js GitHub Bot) #500811b103cc567
] - deps: update googletest toe47544a
(Node.js GitHub Bot) #49982736c869eeb
] - deps: update googletest tod1467f5
(Node.js GitHub Bot) #49676cd99ee1f35
] - deps: update googletest to8a6feab
(Node.js GitHub Bot) #494635c338573ff
] - deps: update zlib to 1.2.13.1-motley-f5fd0ad (Node.js GitHub Bot) #49252374ec3d623
] - deps: update googletest to7e33b6a
(Node.js GitHub Bot) #49034c15dd6679b
] - deps: update zlib to 1.2.13.1-motley-526382e (Node.js GitHub Bot) #49033588bd5e524
] - deps: update googletest toc875c4e
(Node.js GitHub Bot) #489646059b59018
] - deps: update zlib to 1.2.13.1-motley-61dc0bd (Node.js GitHub Bot) #48788e455dd4003
] - deps: update googletest tocc36671
(Node.js GitHub Bot) #48789747fbb49ca
] - deps: V8: cherry-pick1a782f6
(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-pickd69c793
(Michaël Zasso) #464255f852cc9fe
] - deps: V8: cherry-pickf7d000a
(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) [#48Configuration
📅 Schedule: Branch creation - "before 4am on the first day of the month" (UTC), 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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.