fix(deps): update backstage monorepo #145
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "renovate/backstage-monorepo"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
1.5.17
->1.6.1
^0.30.0
->^0.32.0
^0.30.0
->^0.32.0
1.15.5
->1.16.1
1.15.5
->1.16.1
^0.16.0
->^0.17.0
1.10.4
->1.10.6
1.1.7
->1.1.9
1.2.4
->1.2.6
0.12.4
->0.12.6
^0.4.0
->^0.5.0
0.24.3
->0.24.5
1.27.0
->1.29.0
1.31.0
->1.32.1
^0.7.0
->^0.8.0
0.4.16
->0.4.18
0.12.10
->0.12.13
1.15.2
->1.17.0
0.6.36
->0.6.38
^0.8.0
->^0.9.0
0.4.31
->0.4.33
^0.5.0
->^0.6.0
1.28.0
->1.30.1
1.30.0
->1.32.1
1.4.23
->1.4.25
^1.0.0
->^2.0.0
0.5.41
->0.5.43
1.3.8
->1.3.10
1.8.6
->1.8.8
1.12.3
->1.12.5
^1.1.2
->^2.0.0
1.1.21
->1.1.23
1.2.14
->1.2.16
0.8.19
->0.8.21
1.7.5
->1.7.7
0.6.4
->0.6.5
Release Notes
backstage/backstage (@backstage/app-defaults)
v1.6.1
Compare Source
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
Updated dependencies
v1.6.0
Compare Source
Minor Changes
12f8e01
: BREAKING: The defaultDiscoveryApi
implementation has been switched to useFrontendHostDiscovery
, which adds support for thediscovery.endpoints
configuration.This is marked as a breaking change because it will cause any existing
discovery.endpoints
configuration to be picked up and used, which may break existing setups.For example, consider the following configuration:
This will now cause requests from the frontend towards the
catalog
plugin to be routed tohttps://catalog.internal.acme.org/api/catalog
, but this might not be reachable from the frontend. To fix this, you should update thediscovery.endpoints
configuration to only override the internal URL of the plugin:Patch Changes
backstage/backstage (@backstage/cli)
v0.32.0
Compare Source
Minor Changes
a47fd39
: Removes default React imports from template files, aligning with the requirements for the upcoming React 19 migration. Introduces a new ESLint rule to disallowimport React from 'react'
andimport * as React from 'react'
.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
65b584c
: Internal update to move thenew
andcreate-github-app
to their own module.c7254ae
: Internal update to move theclean
,pre/postpack
andfix
commands into their own separate module.Patch Changes
4ea76f7
: Bump @module-federation/enhanced ^0.9.0 to fix GHSA-593f-38f6-jp5m87a5cb4
: Fixed an issue causing therepo lint
command to fail when the--max-warnings
option was used.6969f79
: Avoid trailing/*
when automatically adding imports for package with multiple entry points.98b7131
: Update theto do
plugin template to stop using the deprecated catalog alpha service reference.If you start seeing the
should create TODO item with catalog information
test failing, you have two options to fix this:Update the test to mock the legacy alpha catalog service, or migrate the
TODO
plugin backend to use the new catalog service reference.We recommend the second option, see this pull request for an example of how to do the migration.
d5c4fed
: make certificate strings optional for Dev environmentsd83f3f4
: Resolved a problem where thestart
command did not correctly handle multiple--require
flags, ensuring all specified modules are now properly loaded.d2091c6
: Added a newrepo start
command to replace the existing pattern of usingyarn dev
scripts. Therepo start
command runs the app and/or backend package in the repo by default, but will also fall back to running other individual frontend or backend packages or even plugin dev entry points if the can be uniquely selected.The goal of this change is to reduce the number of different necessary scripts and align on
yarn start
being the only command needed for local development, similar to howrepo test
handles testing in the repo. It also opens up for more powerful options, like the--plugin <pluginId>
flag that runs the dev entry point of the selected plugin.The new script is installed as follows, replacing the existing
yarn start
script:In order to help users migrate in existing projects, it is recommended to add the following scripts to the root
package.json
:For more information, run
yarn start --help
once the new command is installed.918c883
: Included a reference to the JSX transform guide in the warning about using the default React import.Updated dependencies
v0.31.1
Compare Source
v0.31.0
Compare Source
Minor Changes
5b70679
: BREAKING: ESLint warnings no longer trigger system exit codes like errors do.Set the max number of warnings to
-1
during linting to enable the gradual adoption of new ESLint rules. To restore the previous behavior, include the--max-warnings 0
flag in thebackstage-cli <repo|package> lint
command.Patch Changes
0586d4c
: Internal change to move themigrate
andversion:*
commands into a new migrate module.e0b226b
: build(deps): bumpesbuild
from 0.24.2 to 0.25.04d45498
: Fixed the package prepack command so that it no longer produces unnecessaryindex
entries in thetypesVersions
map, which could cause/index
to be added when automatically adding imports.485b3ba
: Internal update to movetest
commands to a separate module.a76c482
: Internal change to migratelint
to the new module system.8df78bf
: Internal update to move build commands to a CLI module.d0fc357
: Internal update to moveinfo
commands to a separate module.f8bd342
: Fix a bug in the translation of the deprecated--scope
option for thenew
command that could cause plugins to havebackstage-backstage-plugin
in their name.backstage/backstage (@backstage/core-app-api)
v1.16.1
Compare Source
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
Updated dependencies
v1.16.0
Compare Source
Minor Changes
9262001
: The default auth injection middleware for theFetchApi
will now also take configuration underdiscovery.endpoints
into consideration when deciding whether to include credentials or not.12f8e01
: Thediscovery.endpoints
configuration no longer requires bothinternal
andexternal
target when using the object form, instead falling back to the default.Patch Changes
backstage/backstage (@backstage/core-components)
v0.17.1
Compare Source
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
5d7bad4
: Fixed the messaging in theAlertDisplay
where it was claiming that there were older messages available rather than newer.Updated dependencies
v0.17.0
Compare Source
Minor Changes
25300cb
:SimpleStepper
back button now works withactiveStep
property set higher than 09545af2
: Declared CancelIcon explicitly on Chip component inside Select.tsx to disable onMouseDown event by default that creates the flaw of re-opening select component when user tries to remove a selected filter.Patch Changes
fffe3c0
: AddedclassNames
prop to thePage
componentdf3b9f0
: Fixed a bug in the SidebarSubmenuItem within the core-components package that caused the dropdown button to be misaligned in the sidebar and the button text to appear in uppercase due to the default behavior. Also added an example dropdown menu to the app for reference.48aab13
: Add i18n support for scaffolder-react plugin0a0ced6
: Avoid Layout Shift forDismissableBanner
when using astorageApi
with latency (e.g.user-settings-backend
)Properly handle the
unknown
state of thestorageApi
. There's a trade-off: this may lead to some Layout Shift if the banner has not been dismissed, but once it has been dismissed, you won't have any.Updated dependencies
backstage/backstage (@backstage/core-plugin-api)
v1.10.6
Compare Source
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
Updated dependencies
v1.10.5
Compare Source
Patch Changes
327d21e
: Failure to lazy load an extension will now always result in an error being thrown to be forwarded to error boundaries, rather than being rendered using theBootErrorPage
app component.backstage/backstage (@backstage/dev-utils)
v1.1.9
Compare Source
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
Updated dependencies
v1.1.8
Compare Source
Patch Changes
backstage/backstage (@backstage/integration-react)
v1.2.6
Compare Source
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
5d10f99
: Added scopeproject
for Bitbucket Cloud.Updated dependencies
v1.2.5
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-api-docs)
v0.12.6
Compare Source
Patch Changes
317bc3d
: api-docs plugin support i18na47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
Updated dependencies
v0.12.5
Compare Source
Patch Changes
74871cc
: Use consistent Typography in Entity HasApisCardbackstage/backstage (@backstage/plugin-app-backend)
v0.5.1
Compare Source
Patch Changes
v0.5.0
Compare Source
Minor Changes
32be48c
: BREAKING: Removed support for the old backend system.As part of this change the plugin export from
/alpha
as been removed. If you are currently importing@backstage/plugin-app-backend/alpha
, please update your import to@backstage/plugin-app-backend
.Patch Changes
backstage/backstage (@backstage/plugin-auth-backend)
v0.24.5
Compare Source
Patch Changes
25d05f9
: Slight update to the config schemav0.24.4
Compare Source
Patch Changes
7956beb
: Marked the remaining exports related tocreateRouter
and the old backend system as deprecated.For more information about migrating to the new backend system, see the migration guide.
Support for the old backend system will be removed in the next release of this plugin.
b6702ea
: DeprecatedgetDefaultOwnershipEntityRefs
in favor of the new.resolveOwnershipEntityRefs(...)
method in theAuthResolverContext
.The following code in a custom sign-in resolver:
Can be replaced with the following:
Updated dependencies
backstage/backstage (@backstage/plugin-catalog)
v1.29.0
Compare Source
Minor Changes
9454ef9
: Added support of filtering based on system columns in catalog table61d350f
: BREAKING ALPHA:CatalogFilterBlueprint
, used in the new frontend system, is now exported under plugin-catalog-react instead of plugin-catalog.09afd67
: AddsEntityContextMenuItemBlueprint
to enable extending the entity page's context menu with user defined items.For example:
Patch Changes
3f7e4f1
: Fixed the layout of summary cards in the new frontend system, ensuring that the horizontal scroll grid doesn't grow too large as well as tweaked its scrolling parameters.e655f62
: UpdatedREADME.md
to useyarn start
instead ofyarn dev
.a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
3f7e4f1
: The about, links, and labels card now all have theinfo
card type by default in the new frontend system.3f7e4f1
: The overview content is now part of the overview group by default in the new frontend system.Updated dependencies
v1.28.0
Compare Source
Minor Changes
247a40b
: Now a custom entity page header can be passed as input to the default entity page.a3d93ca
: The default layout of the entity page can now optionally be customized with 3 card types: info, peek and full.info
are rendered in a fixed area on the right;peek
are rendered on top of the main content area;full
and cards with undefined type are rendered as they were before, in the main content area, below the peek cards.If you want to keep the layout as it was before, you don't need to do anything. But if you want to experiment with the card types and see how they render, here is an example setting the about card to be rendered as an
info
card:Entity page cards
If you wish to place a normal tab before a group, you must add the tab to a group and place the group in the order you wish it to appear on the entity page (groups that contains only one tab are rendered as normal tabs).
06d1226
: Allow providingkind
parameters to replace the defaultComponent
kind forSubComponents
cardPatch Changes
31731b0
: Internal refactor to avoidexpiry-map
dependency.ba9649a
: Update the default entity page extension component to support grouping multiple entity content items in the same tab.Disable all default groups:
backstage/backstage (@backstage/plugin-catalog-backend)
v1.32.1
Compare Source
Patch Changes
7cc4995
: Fix for duplicate results inqueryEntities
when providing anorderField
parameterv1.32.0
Compare Source
Minor Changes
ca9c51b
: Added opt-in ability to evict entities from the catalog whose provider is no longer configured. See Catalog configuration documentationPatch Changes
4306303
: Added a fix in@backstage/plugin-catalog-backend
to prevent duplicate path keys in entity search if only casing is different.5243aa4
: Fixed an issue occurred when authorizing permissions using custom rules passed via thePermissionsRegistryService
.fbc1666
: Correctly use thecatalog.useUrlReadersSearch
config.75cadc1
: Minor internal tweak torefreshByRefreshKeys
backstage/backstage (@backstage/plugin-catalog-backend-module-github)
v0.8.0
Compare Source
Minor Changes
f0c22eb
: BREAKING: Explicitly rejects branch names containing a slash character.The module now rejects any configuration that contains slashes in branch names. The reason for this is that the ingestion will run into downstream problems if they were let through. If you had configuration with a slash in the branch name in
filters.branch
, your application may fail to start up.If you are affected by this, please move over to using branches that do not have slashes in them.
Patch Changes
16648ef
: AddedvalidateLocationsExist
to the config definition where it was missing.v0.7.11
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-catalog-graph)
v0.4.18
Compare Source
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
Updated dependencies
v0.4.17
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-catalog-import)
v0.12.13
Compare Source
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
5b9514f
: Expose theUnpackNestedValue
type as it's been removed fromreact-hook-form
f1d9a64
: adding translation forRegister an existing component
textUpdated dependencies
v0.12.12
Compare Source
Patch Changes
5b9514f
: Expose theUnpackNestedValue
type as it's been removed fromreact-hook-form
f1d9a64
: adding translation forRegister an existing component
textv0.12.11
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-catalog-react)
v1.17.0
Compare Source
Minor Changes
0f37fa8
:entityRouteParams
now also accepts entity refs, and can help with encoding the resulting parameters.61d350f
: BREAKING ALPHA:CatalogFilterBlueprint
, used in the new frontend system, is now exported under plugin-catalog-react instead of plugin-catalog.09afd67
: AddsEntityContextMenuItemBlueprint
to enable extending the entity page's context menu with user defined items.For example:
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
3f7e4f1
: Added a newoverview
entity content group for the new frontend system.186d016
: Addoperation
to alphadefaultEntityContentGroups
.221ddba
: Fix offset pagination to reset when updating filters inuseEntityList
Updated dependencies
v1.16.0
Compare Source
Minor Changes
7f57365
: Add support for a new entity predicate syntax when definingfilter
s related to the blueprints exported via/alpha
for the new frontend system. For more information, see the entity filters documentation.ba9649a
: Add a newdefaultGroup
parameter to theEntityContentBlueprint
, here are usage examples:Set a default group while creating the extension:
Disassociate an entity content from a default group:
backstage/backstage (@backstage/plugin-org)
v0.6.38
Compare Source
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
Updated dependencies
v0.6.37
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-permission-node)
v0.9.1
Compare Source
Patch Changes
v0.9.0
Compare Source
Minor Changes
22ace13
: BREAKING TheServerPermissionClient
can no longer be instantiated with atokenManager
and must instead be instantiated with anauth
service. If you are still on the legacy backend system, usecreateLegacyAuthAdapters()
from@backstage/backend-common
to create a compatibleauth
service.Patch Changes
728e3e1
: Improved type inference when passing aPermissionResourceRef
tocreatePermissionRule
.876f2e1
: DeprecatedcreatePermissionIntegrationRouter
and related types, which has been replaced byPermissionRegistryService
. For more information, including how to migrate existing plugins, see the service docs.backstage/backstage (@backstage/plugin-permission-react)
v0.4.33
Compare Source
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
Updated dependencies
v0.4.32
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-proxy-backend)
v0.6.1
Compare Source
Patch Changes
9b5b744
: Fixed handling of proxied SSE connections when the upstream server closes the connectionv0.6.0
Compare Source
Minor Changes
2d8b0e4
: BREAKING: Removed support for the old backend system.As part of this change the plugin export from
/alpha
as been removed. If you are currently importing@backstage/plugin-proxy-backend/alpha
, please update your import to@backstage/plugin-proxy-backend
.Patch Changes
backstage/backstage (@backstage/plugin-scaffolder)
v1.30.1
Compare Source
This release fixes an issue in techdocs where the cache sync would fail because of missing service token, and
auth.externalAccess
being mistakenly required in the config schema.v1.30.0
Compare Source
Minor Changes
76681a5
: BREAKING ALPHA: Extract out schema rendering components into their own Component. This means that the translation keys have changed foractionsPage.content.tableCell.*
. They have moved to their own root keyrenderSchema.*
instead.5890016
: add api to retrieve template extensions info from scaffolder-backendPatch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
407eba1
: Tweaked template editor tooltip to mention HTTPS requirement.Updated dependencies
v1.29.0
Compare Source
Minor Changes
9d864ff
: Allowed passingui:disabled
for disabling the input field of all the pickers.Patch Changes
3db64ba
: Disable the submit button on creating6a3fa48
: Fixes DryRunContext not forwarding the correct Scaffolder Secrets to the DryRun APIb3b7c9c
: Updated the alphapage:scaffolder
extension to acceptformFields
input, matching the updatedFormFieldBlueprint
.backstage/backstage (@backstage/plugin-search)
v1.4.25
Compare Source
Patch Changes
e655f62
: UpdatedREADME.md
to useyarn start
instead ofyarn dev
.a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
Updated dependencies
v1.4.24
Compare Source
Patch Changes
49684fe
: Expand the default kind filter to include all kinds from the System Model.backstage/backstage (@backstage/plugin-search-backend)
v2.0.1
Compare Source
Patch Changes
v2.0.0
Compare Source
Major Changes
d5c4a9d
: BREAKING Removed support for the legacy backend system and references to@backstage/backend-common
, please migrate to the new backend system.Patch Changes
backstage/backstage (@backstage/plugin-search-backend-module-pg)
v0.5.43
Compare Source
Patch Changes
v0.5.42
Compare Source
Patch Changes
8155b04
: Enable normalization in postgres query to change the behavior of the search.backstage/backstage (@backstage/plugin-search-backend-node)
v1.3.10
Compare Source
Patch Changes
v1.3.9
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-search-react)
v1.8.8
Compare Source
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
Updated dependencies
v1.8.7
Compare Source
Patch Changes
c37e480
: Capture the number of search results in the search analytics event that correspond to the term entered.backstage/backstage (@backstage/plugin-techdocs)
v1.12.5
Compare Source
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
Updated dependencies
v1.12.4
Compare Source
Patch Changes
fffe3c0
: Fixed double scrollbar issue that would appear on the Entity TechDocs view page that would stop the page from full scrolling to the top when navigating to a new page065e6b9
: Excludes SVG styling from sanitizationb5a8208
: AddedTechDocsAddonsBlueprint
extension to allow adding of techdocs addons.ed1cb3e
: Adds the page name of techdocs to the document's title.fe4abb8
: Updates logic to check for SVG sources when inlining them.backstage/backstage (@backstage/plugin-techdocs-backend)
v2.0.1
Compare Source
Patch Changes
v2.0.0
Compare Source
Major Changes
d5c4a9d
: BREAKING Removed support for the legacy backend, please migrate to the new backend system. Also removed deprecatedDefaultTechDocsCollatorFactory
. Use the@backstage/plugin-search-backend-module-techdocs
for this instead. Finally, deprecatedDocsBuildStrategy
andTechDocsDocument
were removed, use the versions in@backstage/plugin-techdocs-node
instead.Patch Changes
7828186
: Minor type fix8f03776
: Properly clean up temporary files on build failuresbackstage/backstage (@backstage/plugin-techdocs-module-addons-contrib)
v1.1.23
Compare Source
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
9c12a76
: Fixed rendering issues inReportIssue
addon for unsupported repository types and improved shadow DOM event handling. The addon now properly prevents initialization when encountering unsupported repository types and correctly handles selection events within the shadow DOM.Updated dependencies
v1.1.22
Compare Source
Patch Changes
b5a8208
: AddedTechDocsAddonsBlueprint
extension to allow adding of techdocs addons.backstage/backstage (@backstage/plugin-techdocs-react)
v1.2.16
Compare Source
Patch Changes
0e9f7fe
: Fix catalog entity docs page not loading due to multiple addons data attachment in the New Frontend System.a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
Updated dependencies
v1.2.15
Compare Source
Patch Changes
b5a8208
: AddedTechDocsAddonsBlueprint
extension to allow adding of techdocs addons.backstage/backstage (@backstage/plugin-user-settings)
v0.8.21
Compare Source
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
Updated dependencies
v0.8.20
Compare Source
Patch Changes
backstage/backstage (@backstage/test-utils)
v1.7.7
Compare Source
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
Updated dependencies
v1.7.6
Compare Source
Patch Changes
37c6510
: Moved@types/jest
todevDependencies
.backstage/backstage (@backstage/theme)
v0.6.5
Compare Source
Patch Changes
a47fd39
: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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 has been generated by Renovate Bot.
e08caeae7e
to22ca21e44b
22ca21e44b
to0ad432ba1c
0ad432ba1c
tob27af21919
Checkout
From your project repository, check out a new branch and test the changes.