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.0
^0.30.0
->^0.31.0
^0.30.0
->^0.31.0
1.15.5
->1.16.0
1.15.5
->1.16.0
^0.16.0
->^0.17.0
1.10.4
->1.10.5
1.1.7
->1.1.8
1.2.4
->1.2.5
0.12.4
->0.12.5
^0.4.0
->^0.5.0
0.24.3
->0.24.4
1.27.0
->1.28.0
1.31.0
->1.32.0
0.7.10
->0.7.11
0.4.16
->0.4.17
0.12.10
->0.12.11
1.15.2
->1.16.0
0.6.36
->0.6.37
^0.8.0
->^0.9.0
0.4.31
->0.4.32
^0.5.0
->^0.6.0
1.28.0
->1.29.0
1.30.0
->1.31.0
1.4.23
->1.4.24
^1.0.0
->^2.0.0
0.5.41
->0.5.42
1.3.8
->1.3.9
1.8.6
->1.8.7
1.12.3
->1.12.4
^1.1.2
->^2.0.0
1.1.21
->1.1.22
1.2.14
->1.2.15
0.8.19
->0.8.20
1.7.5
->1.7.6
Release Notes
backstage/backstage (@backstage/app-defaults)
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.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.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.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.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.8
Compare Source
Patch Changes
backstage/backstage (@backstage/integration-react)
v1.2.5
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-api-docs)
v0.12.5
Compare Source
Patch Changes
74871cc
: Use consistent Typography in Entity HasApisCardbackstage/backstage (@backstage/plugin-app-backend)
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.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.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.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.7.11
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-catalog-graph)
v0.4.17
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-catalog-import)
v0.12.11
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-catalog-react)
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.37
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-permission-node)
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.32
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-proxy-backend)
v0.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.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-scaffolder-backend)
v1.31.0
Compare Source
Minor Changes
36677bb
: Support newcreateTemplateAction
type, and convertcatalog:fetch
action to new way of defining actions.2b1e50d
: use CreatedTemplate[Filter|Global*] as canonical template extensions in scaffolder pluginPatch Changes
e0b226b
: build(deps): bumpesbuild
from 0.24.2 to 0.25.009cf038
: Got rid of most@backstage/backend-common
usages4f8b5b6
: Allow signing git commits using configured private PGP key in scaffolder59dcf37
: Fixed bug in fs:delete causing no files to be deleted on windows machinesbackstage/backstage (@backstage/plugin-search)
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.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.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.9
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-search-react)
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.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.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.22
Compare Source
Patch Changes
b5a8208
: AddedTechDocsAddonsBlueprint
extension to allow adding of techdocs addons.backstage/backstage (@backstage/plugin-techdocs-react)
v1.2.15
Compare Source
Patch Changes
b5a8208
: AddedTechDocsAddonsBlueprint
extension to allow adding of techdocs addons.backstage/backstage (@backstage/plugin-user-settings)
v0.8.20
Compare Source
Patch Changes
backstage/backstage (@backstage/test-utils)
v1.7.6
Compare Source
Patch Changes
37c6510
: Moved@types/jest
todevDependencies
.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.
Checkout
From your project repository, check out a new branch and test the changes.