Update dependency remix-run/react-router to v7 #276
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:
6.30.0
->7.6.1
Release Notes
remix-run/react-router (remix-run/react-router)
v7.6.1
Compare Source
Date: 2025-05-25
Patch Changes
react-router
- Partially revert optimization added in7.1.4
to reduce calls tomatchRoutes
because it surfaced other issues (#13562)react-router
- UpdateRoute.MetaArgs
to reflect thatdata
can be potentiallyundefined
(#13563)loader
threw an error to it's ownErrorBoundary
, but it also arises in the case of a 404 which renders the rootErrorBoundary
/meta
but the rootloader
did not run because not routes matchedreact-router
- Avoid initial fetcher execution 404 error when Lazy Route Discovery is interrupted by a navigation (#13564)react-router
- Properlyhref
replaces splats*
(#13593)href("/products/*", { "*": "/1/edit" }); // -> /products/1/edit
@react-router/architect
- Update@architect/functions
from^5.2.0
to^7.0.0
(#13556)@react-router/dev
- Prevent typegen with route files that are outside theapp/
directory (#12996)@react-router/dev
- Add additional logging tobuild
command output when cleaning assets from server build (#13547)@react-router/dev
- Don't clean assets from server build whenbuild.ssrEmitAssets
has been enabled in Vite config (#13547)@react-router/dev
- Fix typegen when same route is used at multiple paths (#13574)For example,
routes/route.tsx
is used at 4 different paths here:Previously, typegen would arbitrarily pick one of these paths to be the "winner" and generate types for the route module based on that path
Now, typegen creates unions as necessary for alternate paths for the same route file
@react-router/dev
- Better types forparams
(#13543)For example:
Previously,
params
forroutes/route
were calculated as{ p: string, r: string }
.This incorrectly ignores params that could come from child routes
If visiting
/parent/1/route/2/child1/3/4
, the actual params passed toroutes/route
will have a type of{ p: string, r: string, c1a: string, c1b: string }
Now,
params
are aware of child routes and autocompletion will include child params as optionals:You can also narrow the types for
params
as it is implemented as a normalized union of params for each page that includesroutes/route
:@react-router/dev
- Fixhref
for optional segments (#13595)Type generation now expands paths with optionals into their corresponding non-optional paths
For example, the path
/user/:id?
gets expanded into/user
and/user/:id
to more closely model visitable URLshref
then uses these expanded (non-optional) paths to construct type-safe paths for your app:This becomes even more important for static optional paths where there wasn't a good way to indicate whether the optional should be included in the resulting path:
Unstable Changes
@react-router/dev
- Renamed internalreact-router/route-module
export toreact-router/internal
(#13543)@react-router/dev
- RemovedInfo
export from generated+types/*
files (#13543)@react-router/dev
- Normalize dirent entry path across node versions when generating SRI manifest (#13591)Full Changelog:
v7.6.0...v7.6.1
v7.6.0
Compare Source
Date: 2025-05-08
What's Changed
routeDiscovery
Config OptionWe've added a new config option in
7.6.0
which grants you more control over the Lazy Route Discovery feature. You can now configure the/__manifest
path if you're running multiple RR applications on the same server, or you can also disable the feature entirely if your application is small enough and the feature isn't necessary.Automatic Types for Future Flags
Some future flags alter the way types should work in React Router. Previously, you had to remember to manually opt-in to the new types. For example, for
future.unstable_middleware
:It was up to you to keep the runtime future flags synced with the types for those flags. This was confusing and error-prone.
Now, React Router will automatically enable types for future flags. That means you only need to specify the runtime future flag:
Behind the scenes, React Router will generate the corresponding
declare module
into.react-router/types
. Currently this is done in.react-router/types/+register.ts
but this is an implementation detail that may change in the future.Minor Changes
react-router
- Added a newrouteDiscovery
option inreact-router.config.ts
to configure Lazy Route Discovery behavior (#13451)react-router
- Add support for route component props increateRoutesStub
(#13528)This allows you to unit test your route components using the props instead of the hooks:
@react-router/dev
- Automatic types for future flags (#13506)Patch Changes
You may notice this list is a bit larger than usual! The team ate their vegetables last week and spent the week squashing bugs to work on lowering the issue count that had ballooned a bit since the v7 release.
react-router
- Fixreact-router
module augmentation forNodeNext
(#13498)react-router
- Don't bundlereact-router
inreact-router/dom
CJS export (#13497)react-router
- Fix bug where a submittingfetcher
would get stuck in aloading
state if a revalidatingloader
redirected (#12873)react-router
- Fix hydration error if a serverloader
returnedundefined
(#13496)react-router
- Fix initial load 404 scenarios in data mode (#13500)react-router
- StabilizeuseRevalidator
'srevalidate
function (#13542)react-router
- Preserve status code if aclientAction
throws adata()
result in framework mode (#13522)react-router
- Be defensive against leading double slashes in paths to avoidInvalid URL
errors from the URL constructor (#13510)new URL("//", window.location.origin)
react-router
- RemoveNavigator
declaration fornavigator.connection.saveData
to avoid messing with any other types beyondsaveData
in user land (#13512)react-router
- FixhandleError
params
values on.data
requests for routes with a dynamic param as the last URL segment (#13481)react-router
- Don't trigger anErrorBoundary
UI before the reload when we detect a manifest version mismatch in Lazy Route Discovery (#13480)react-router
- Inline[email protected]
dependency and fix decoding ordering ofMap
/Set
instances (#13518)react-router
- Only render dev warnings during dev (#13461)react-router
- Short circuit post-processing on aborteddataStrategy
requests (#13521)Cannot read properties of undefined (reading 'result')
@react-router/dev
- Support project root directories without apackage.json
if it exists in a parent directory (#13472)@react-router/dev
- When providing a custom Vite config path via the CLI--config
/-c
flag, default the project root directory to the directory containing the Vite config when not explicitly provided (#13472)@react-router/dev
- In aroutes.ts
context, ensure the--mode
flag is respected forimport.meta.env.MODE
(#13485)import.meta.env.MODE
within aroutes.ts
context was always"development"
for thedev
andtypegen --watch
commands, but otherwise resolved to"production"
. These defaults are still in place, but if a--mode
flag is provided, this will now take precedence.@react-router/dev
- Ensure consistent project root directory resolution logic in CLI commands (#13472)@react-router/dev
- When executingreact-router.config.ts
androutes.ts
withvite-node
, ensure that PostCSS config files are ignored (#13489)@react-router/dev
- When extracting critical CSS during development, ensure it's loaded from the client environment to avoid issues with plugins that handle the SSR environment differently (#13503)@react-router/dev
- Fix "Status message is not supported by HTTP/2" error during dev when using HTTPS (#13460)@react-router/dev
- Update config whenreact-router.config.ts
is created or deleted during development (#12319)@react-router/dev
- Skip unnecessaryroutes.ts
evaluation before Vite build is started (#13513)@react-router/dev
- FixTS2300: Duplicate identifier
errors caused by generated types (#13499)href
(.react-router/types/+register.ts
), causing type checking errorsUnstable Changes
react-router
- Fix a few bugs with error bubbling in middleware use-cases (#13538)@react-router/dev
- Whenfuture.unstable_viteEnvironmentApi
is enabled, ensure thatbuild.assetsDir
in Vite config is respected whenenvironments.client.build.assetsDir
is not configured (#13491)Changes by Package
create-react-router
react-router
@react-router/architect
@react-router/cloudflare
@react-router/dev
@react-router/express
@react-router/fs-routes
@react-router/node
@react-router/remix-config-routes-adapter
@react-router/serve
Full Changelog:
v7.5.3...v7.6.0
v7.5.3
Compare Source
Date: 2025-04-28
Patch Changes
react-router
- Fix bug where bubbled action errors would result inloaderData
being cleared at the handlingErrorBoundary
route (#13476)react-router
- Handle redirects fromclientLoader.hydrate
initial load executions (#13477)Full Changelog:
v7.5.2...v7.5.3
v7.5.2
Compare Source
Date: 2025-04-24
Security Notice
Fixed 2 security vulnerabilities that could result in cache-poisoning attacks by sending specific headers intended for build-time usage for SPA Mode and Pre-rendering (GHSA-f46r-rw29-r322, GHSA-cpj6-fhp6-mr6j).
Patch Changes
react-router
- Adjust approach for Pre-rendering/SPA Mode via headers (#13453)react-router
- Update Single Fetch to also handle the 204 redirects used in?_data
requests in Remix v2 (#13364).data
requests from outside the scope of React Router (i.e., anexpress
/hono
middleware) the same way they did in Remix v2 before Single Fetch was implemented.data
request wih a response as follows:X-Remix-Redirect: <new-location>
headerX-Remix-Replace: true
orX-Remix-Reload-Document: true
headers to replicatereplace()
/redirectDocument()
functionalityFull Changelog:
v7.5.1...v7.5.2
v7.5.1
Compare Source
Date: 2025-04-17
Patch Changes
react-router
- When using the object-basedroute.lazy
API, theHydrateFallback
andhydrateFallbackElement
properties are now skipped when lazy loading routes after hydration (#13376)If you move the code for these properties into a separate file, since the hydrate properties were unused already (if the route wasn't present during hydration), you can avoid downloading them at all. For example:
react-router
- Fix single fetch bug where no revalidation request would be made when navigating upwards to a reused parent route (#13253)react-router
- Properly revalidate pre-rendered paths when param values change when usingssr:false
+prerender
configs (#13380)react-router
- Fix pre-rendering when a loader returns a redirect (#13365)react-router
- Do not automatically addnull
tostaticHandler.query()
context.loaderData
if routes do not have loaders (#13223)undefined
from loaders, our prior check ofloaderData[routeId] !== undefined
was no longer sufficient and was changed to arouteId in loaderData
check - thesenull
values can cause issues for this new checkcreateStaticHandler()
/<StaticRouterProvider>
, and usingcontext.loaderData
to control<RouterProvider>
hydration behavior on the clientUnstable Changes
react-router
- Add better error messaging whengetLoadContext
is not updated to return aMap
(#13242)react-router
- Update context type forLoaderFunctionArgs
/ActionFunctionArgs
when middleware is enabled (#13381)react-router
- Add a newunstable_runClientMiddleware
argument todataStrategy
to enable middleware execution in customdataStrategy
implementations (#13395)react-router
- Add support for the newunstable_shouldCallHandler
/unstable_shouldRevalidateArgs
APIs indataStrategy
(#13253)Full Changelog:
v7.5.0...v7.5.1
v7.5.0
Compare Source
Date: 2025-04-04
What's Changed
route.lazy
Object APIWe've introduced a new
route.lazy
API which gives you more granular control over the lazy loading of route properties that you could not achieve with theroute.lazy()
function signature. This is useful for Framework mode and performance-critical library mode applications.route.unstable_lazyMiddleware
API which has been removed in favor ofroute.lazy.unstable_middleware
. See theUnstable Changes
section below for more information.Minor Changes
react-router
- Add granular object-based API forroute.lazy
to support lazy loading of individual route properties (#13294)Patch Changes
@react-router/dev
- Update optionalwrangler
peer dependency range to supportwrangler
v4 (#13258)@react-router/dev
- Reinstate dependency optimization in the child compiler to fixdepsOptimizer is required in dev mode
errors when usingvite-plugin-cloudflare
and importing Node.js builtins (#13317)Unstable Changes
react-router
- Introducefuture.unstable_subResourceIntegrity
flag that enables generation of animportmap
withintegrity
for the scripts that will be loaded by the browser (#13163)react-router
- Remove support for theroute.unstable_lazyMiddleware
property (#13294)route.lazy.unstable_middleware
API@react-router/dev
- Whenfuture.unstable_viteEnvironmentApi
is enabled, ensure critical CSS in development works when using a custom Vitebase
has been configured (#13305)Changes by Package
create-react-router
react-router
@react-router/architect
@react-router/cloudflare
@react-router/dev
@react-router/express
@react-router/fs-routes
@react-router/node
@react-router/remix-config-routes-adapter
@react-router/serve
Full Changelog:
v7.4.1...v7.5.0
v7.4.1
Compare Source
Date: 2025-03-28
Security Notice
Fixed a security vulnerability that allowed URL manipulation and potential cache pollution via the
Host
andX-Forwarded-Host
headers due to inadequate port sanitization (GHSA-4q56-crqp-v477/CVE-2025-31137).Patch Changes
react-router
- Dedupe calls toroute.lazy
functions (#13260)@react-router/dev
- Fix path in prerender error messages (#13257)@react-router/dev
- Fix typegen for virtual modules whenmoduleDetection
is set toforce
(#13267)@react-router/express
- Better validation ofx-forwarded-host
header to prevent potential security issues (#13309)Unstable Changes
react-router
- Fix types onunstable_MiddlewareFunction
to avoid type errors when a middleware doesn't return a value (#13311)react-router
- Add support forroute.unstable_lazyMiddleware
function to allow lazy loading of middleware logic (#13210)unstable_middleware
fromroute.lazy
route.unstable_middleware
property is no longer supported in the return value fromroute.lazy
route.unstable_lazyMiddleware
@react-router/dev
- When bothfuture.unstable_middleware
andfuture.unstable_splitRouteModules
are enabled, splitunstable_clientMiddleware
route exports into separate chunks when possible (#13210)@react-router/dev
- Improve performance offuture.unstable_middleware
by ensuring that route modules are only blocking during the middleware phase when theunstable_clientMiddleware
has been defined (#13210)Full Changelog:
v7.4.0...v7.4.1
v7.4.0
Compare Source
Date: 2025-03-19
Minor Changes
@react-router/dev
- Generate types forvirtual:react-router/server-build
module (#13152)Patch Changes
react-router
- Fix root loader data on initial load redirects in SPA mode (#13222)react-router
- Load ancestor pathless/index routes in lazy route discovery for upwards non-eager-discovery routing (#13203)react-router
- FixshouldRevalidate
behavior forclientLoader
-only routes inssr:true
apps (#13221)@react-router/dev
- Fix conflicts with other Vite plugins that use theconfigureServer
and/orconfigurePreviewServer
hooks (#13184)Unstable Changes
react-router
- If a middleware throws an error, ensure we only bubble the error itself vianext()
and are no longer leaking theMiddlewareError
implementation detail (#13180)catch
-ing errors thrown by thenext()
function in your middlewaresreact-router
- FixRequestHandler
loadContext
parameter type when middleware is enabled (#13204)react-router
- UpdateRoute.unstable_MiddlewareFunction
to have a return value ofResponse | undefined
instead ofResponse | void
(#13199)@react-router/dev
- Whenfuture.unstable_splitRouteModules
is set to"enforce"
, allow both splittable and unsplittable root route exports since it's always in a single chunk (#13238)@react-router/dev
- Whenfuture.unstable_viteEnvironmentApi
is enabled, allow plugins that override the default SSR environment (such as@cloudflare/vite-plugin
) to be placed before or after the React Router plugin (#13183)Changes by Package
create-react-router
react-router
@react-router/architect
@react-router/cloudflare
@react-router/dev
@react-router/express
@react-router/fs-routes
@react-router/node
@react-router/remix-config-routes-adapter
@react-router/serve
Full Changelog:
v7.3.0...v7.4.0
v7.3.0
Compare Source
Date: 2025-03-06
Minor Changes
fetcherKey
as a parameter topatchRoutesOnNavigation
(#13061)Patch Changes
react-router
- Detect and handle manifest-skew issues on new deploys during active sessions (#13061)fetcher
calls to undiscovered routes, this mismatch will trigger a document reload of the current pathreact-router
- Skip resource route flow in dev server in SPA mode (#13113)react-router
- Fix single fetch_root.data
requests when abasename
is used (#12898)react-router
- Fix types forloaderData
andactionData
that containedRecord
s (#13139)unstable_SerializesTo
- see the note in theUnstable Changes
section below for more information@react-router/dev
- Fix support for custom clientbuild.rollupOptions.output.entryFileNames
(#13098)@react-router/dev
- Fix usage ofprerender
option whenserverBundles
option has been configured or provided by a preset, e.g.vercelPreset
from@vercel/react-router
(#13082)@react-router/dev
- Fix support for custombuild.assetsDir
(#13077)@react-router/dev
- Remove unused dependencies (#13134)@react-router/dev
- Stub all routes except root in "SPA Mode" server builds to avoid issues when route modules or their dependencies import non-SSR-friendly modules (#13023)@react-router/dev
- Remove unused Vite file system watcher (#13133)@react-router/dev
- Fix support for custom SSR build input whenserverBundles
option has been configured (#13107)future.unstable_viteEnvironmentApi
andserverBundles
options together, hyphens are no longer supported in server bundle IDs since they also need to be valid Vite environment names.@react-router/dev
- Fix dev server when using HTTPS by stripping HTTP/2 pseudo headers from dev server requests (#12830)@react-router/dev
- Lazy load Cloudflare platform proxy on first dev server request when using thecloudflareDevProxy
Vite plugin to avoid creating unnecessaryworkerd
processes (#13016)@react-router/dev
- Fix duplicated entries in typegen for layout routes and their corresponding index route (#13140)@react-router/express
- Updateexpress
peerDependency
to include v5 (https://github.com/remix-run/react-router/pull/13064) (#12961)Unstable Changes
react-router
- Addcontext
support to client side data routers (unstable) (#12941)react-router
- Support middleware on routes (unstable) (#12941)@react-router/dev
- Fix errors withfuture.unstable_viteEnvironmentApi
when thessr
environment has been configured by another plugin to be a customVite.DevEnvironment
rather than the defaultVite.RunnableDevEnvironment
(#13008)@react-router/dev
- Whenfuture.unstable_viteEnvironmentApi
is enabled and thessr
environment hasoptimizeDeps.noDiscovery
disabled, defineoptimizeDeps.entries
andoptimizeDeps.include
(#13007)Client-side
context
(unstable)Your application
clientLoader
/clientAction
functions (orloader
/action
in library mode) will now receive acontext
parameter on the client. This is an instance ofunstable_RouterContextProvider
that you use with type-safe contexts (similar toReact.createContext
) and is most useful with the correspondingunstable_clientMiddleware
API:Similar to server-side requests, a fresh
context
will be created per navigation (orfetcher
call). If you have initial data you'd like to populate in the context for every request, you can provide anunstable_getContext
function at the root of your app:createBrowserRouter(routes, { unstable_getContext })
<HydratedRouter unstable_getContext>
This function should return an value of type
unstable_InitialContext
which is aMap<unstable_RouterContext, unknown>
of context's and initial values:Middleware (unstable)
Middleware is implemented behind a
future.unstable_middleware
flag. To enable, you must enable the flag and the types in yourreact-router.config.ts
file:clientMiddleware
that we will be addressing this before a stable release.context
parameter passed to yourloader
/action
functions - see below for more information.Once enabled, routes can define an array of middleware functions that will run sequentially before route handlers run. These functions accept the same parameters as
loader
/action
plus an additionalnext
parameter to run the remaining data pipeline. This allows middlewares to perform logic before and after handlers execute.Here's a simple example of a client-side logging middleware that can be placed on the root route:
Note that in the above example, the
next
/middleware
functions don't return anything. This is by design as on the client there is no "response" to send over the network like there would be for middlewares running on the server. The data is all handled behind the scenes by the statefulrouter
.For a server-side middleware, the
next
function will return the HTTPResponse
that React Router will be sending across the wire, thus giving you a chance to make changes as needed. You may throw a new response to short circuit and respond immediately, or you may return a new or altered response to override the default returned bynext()
.You can throw a
redirect
from a middleware to short circuit any remaining processing:Note that in cases like this where you don't need to do any post-processing you don't need to call the
next
function or return aResponse
.Here's another example of using a server middleware to detect 404s and check the CMS for a redirect:
For more information on the
middleware
API/design, please see the decision doc.Middleware
context
parameterWhen middleware is enabled, your application will use a different type of
context
parameter in your loaders and actions to provide better type safety. Instead ofAppLoadContext
,context
will now be an instance ofContextProvider
that you can use with type-safe contexts (similar toReact.createContext
):If you are using a custom server with a
getLoadContext
function, the return value for initial context values passed from the server adapter layer is no longer an object and should now return anunstable_InitialContext
(Map<RouterContext, unknown>
):unstable_SerializesTo
unstable_SerializesTo
added a way to register custom serialization types in Single Fetch for other library and framework authors like Apollo. It was implemented with branded type whose branded property that was made optional so that casting arbitrary values was easy:However, this broke type inference in
loaderData
andactionData
for anyRecord
types as those would now (incorrectly) matchunstable_SerializesTo
. This affected all users, not just those that depended onunstable_SerializesTo
. To fix this, the branded property ofunstable_SerializesTo
is marked as required instead of optional.For library and framework authors using
unstable_SerializesTo
, you may need to addas unknown
casts before casting tounstable_SerializesTo
.Changes by Package
create-react-router
react-router
@react-router/architect
@react-router/cloudflare
@react-router/dev
@react-router/express
@react-router/fs-routes
@react-router/node
@react-router/remix-config-routes-adapter
@react-router/serve
Full Changelog:
v7.2.0...v7.3.0
v7.2.0
Compare Source
Date: 2025-02-18
What's Changed
Type-safe
href
utilityIn framework mode, we now provide you with a fully type-safe
href
utility to give you all the warm and fuzzy feelings of path auto-completion and param validation for links in your application:You'll now get type errors if you pass a bad path value or a bad param value:
Prerendering with a SPA Fallback
This release enhances the ability to use a combination of pre-rendered paths alongside other paths that operate in "SPA Mode" when pre-rendering with
ssr:false
.ssr:false
without aprerender
config, this is considered "SPA Mode" and the generatedindex.html
file will only render down to the root route and will be able to hydrate for any valid application pathssr:false
with aprerender
config but do not include the/
path (i.e.,prerender: ['/blog/post']
), then we still generate a "SPA Mode"index.html
file that can hydrate for any path in the applicationssr:false
and include the/
path in yourprerender
config, the generatedindex.html
file will be specific to the root index route, so we will now also generate a separate "SPA Mode" file in__spa-fallback.html
that you can serve/hydrate for non-prerendered pathsFor more info, see the Pre-rendering docs for more info.
Allow a root
loader
in SPA ModeSPA Mode used to prohibit the use of loaders in all routes so that we could hydrate for any path in the application. However, because the root route is always rendered at build time, we can lift this restriction for the root route.
In order to use your build-time loader data during pre-rendering, we now also expose the
loaderData
as an optional prop for theHydrateFallback
component on routes:HydrateFallback
is rendering because children routes are loadingundefined
if theHydrateFallback
is rendering because the route itself has it's own hydratingclientLoader
Minor Changes
react-router
- New type-safehref
utility that guarantees links point to actual paths in your app (#13012)@react-router/dev
- Generate a "SPA fallback" HTML file when pre-rendering the/
route withssr:false
(#12948)@react-router/dev
- Allow aloader
in the root route in SPA mode because it can be called/server-rendered at build time (#12948)Route.HydrateFallbackProps
now also receivesloaderData
Patch Changes
react-router
- Disable Lazy Route Discovery for allssr:false
apps and not just "SPA Mode" because there is no runtime server to serve the search-param-configured__manifest
requests (#12894)ssr:false
appsprerender
scenarios we would pre-render the/__manifest
file but that makes some unnecessary assumptions about the static file server behaviorsreact-router
- Don't apply Single Fetch revalidation de-optimization when in SPA mode since there is no server HTTP request (#12948)react-router
- Properly handle revalidations to across a pre-render/SPA boundary (#13021).data
requests if the path wasn't pre-rendered because the request will 404loader
data inssr:false
mode is static because it's generated at build timeclientLoader
to do anything dynamicloader
and not aclientLoader
, we disable revalidation by default because there is no new data to retrieve.data
request logic if there are no server loaders withshouldLoad=true
in our single fetchdataStrategy
.data
request that would 404 after a submissionreact-router
- Align dev server behavior with static file server behavior whenssr:false
is set (#12948)prerender
config exists, only SSR down to the rootHydrateFallback
(SPA Mode)prerender
config exists but the current path is not pre-rendered, oConfiguration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.