Release v1.47.0
Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.47.0
@backstage/backend-defaults@0.15.0
Minor Changes
-
6fc00e6: Added action filtering support with glob patterns and attribute constraints.
The
ActionsServicenow supports filtering actions based on configuration. This allows controlling which actions are exposed to consumers like the MCP backend.Configuration example:
backend:
actions:
pluginSources:
- catalog
- scaffolder
filter:
include:
- id: 'catalog:*'
attributes:
destructive: false
- id: 'scaffolder:*'
exclude:
- id: '*:delete-*'
- attributes:
readOnly: falseFiltering logic:
include: Rules for actions to include. Each rule can specify anidglob pattern and/orattributesconstraints. An action must match at least one rule to be included. If no include rules are specified, all actions are included by default.exclude: Rules for actions to exclude. Takes precedence over include rules.- Each rule combines
idandattributeswith AND logic (both must match if specified).
-
27f9061: BREAKING: The constructor for
FetchUrlReaderis now private. If you have to construct an instance of it, please useFetchUrlReader.fromConfiginstead. -
27f9061: BREAKING:
coreServices.urlReadernow validates that redirect chains are subject to the allow list inreading.allowof your app config. If you were relying on redirects that pointed to URLs that were not allowlisted, you will now have to add those to your config as well.Example:
backend:
reading:
allow:
- host: example.com
+ - host: storage-api.example.com
Patch Changes
- 3afeab4: Implementing
readTreeforGoogleGcsReader - c641c14: Wrap some of the action logic with
resolveSafeChildPathand improve symlink handling when fetching remote and local files - 7126bf2: Fixed a spelling mistake in root health service shutdown response.
- 872eb91: Upgrade
zod-to-json-schemato latest version - Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/backend-app-api@1.4.1
- @backstage/integration@1.19.2
- @backstage/plugin-auth-node@0.6.11
- @backstage/plugin-permission-node@0.10.8
@backstage/frontend-app-api@0.14.0
Minor Changes
- 3bd2a1a: BREAKING: The ability for plugins to override APIs has been restricted to only allow overrides of APIs within the same plugin. For example, a plugin can no longer override any of the core APIs provided by the
appplugin, this must be done with anappmodule instead.
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/frontend-defaults@0.3.5
@backstage/ui@0.11.0
Minor Changes
-
243e5e7: BREAKING: Redesigned Table component with new
useTablehook API.- The
Tablecomponent (React Aria wrapper) is renamed toTableRoot - New high-level
Tablecomponent that handles data display, pagination, sorting, and selection - The
useTablehook is completely redesigned with a new API supporting three pagination modes (complete, offset, cursor) - New types:
ColumnConfig,TableProps,TableItem,UseTableOptions,UseTableResult
New features include unified pagination modes, debounced query changes, stale data preservation during reloads, and row selection with toggle/replace behaviors.
Migration guide:
- Update imports and use the new
useTablehook:
-import { Table, useTable } from '@backstage/ui';
-const { data, paginationProps } = useTable({ data: items, pagination: {...} });
+import { Table, useTable, type ColumnConfig } from '@backstage/ui';
+const { tableProps } = useTable({
+ mode: 'complete',
+ getData: () => items,
+});- Define columns and render with the new Table API:
-<Table aria-label="My table">
- <TableHeader>...</TableHeader>
- <TableBody items={data}>...</TableBody>
-</Table>
-<TablePagination {...paginationProps} />
+const columns: ColumnConfig<Item>[] = [
+ { id: 'name', label: 'Name', isRowHeader: true, cell: item => <CellText title={item.name} /> },
+ { id: 'type', label: 'Type', cell: item => <CellText title={item.type} /> },
+];
+
+<Table columnConfig={columns} {...tableProps} />Affected components: Table, TableRoot, TablePagination
- The
-
95246eb: Breaking Updating color tokens to match the new neutral style on different surfaces.
Migration notes
There's no direct replacement for the old tint tokens but you can use the new neutral set of color tokens on surface 0 or 1 as a replacement.
--bui-bg-tintcan be replaced by--bui-bg-neutral-on-surface-0--bui-bg-tint-hovercan be replaced by--bui-bg-neutral-on-surface-0-hover--bui-bg-tint-pressedcan be replaced by--bui-bg-neutral-on-surface-0-pressed--bui-bg-tint-disabledcan be replaced by--bui-bg-neutral-on-surface-0-disabled
-
ea0c6d8: Introduce new
ToggleButton&ToggleButtonGroupcomponents in Backstage UI -
4ea1d15: BREAKING: Renamed CSS variable
--bui-bgto--bui-bg-surface-0for consistency.
Patch Changes
-
1880402: Fixes app background color on dark mode.
-
d2fdded: Added indeterminate state support to the Checkbox component for handling partial selection scenarios like table header checkboxes.
Affected components: Checkbox
-
4fb15d2: Added missing
aria-labelattributes toSearchFieldcomponents inSelect,MenuAutocomplete, andMenuAutocompleteListboxto fix accessibility warnings.Affected components: Select, MenuAutocomplete, MenuAutocompleteListbox
-
21c87cc: Fixes disabled state in primary and secondary buttons in Backstage UI.
-
9c76682: build(deps-dev): bump
storybookfrom 10.1.9 to 10.1.10 -
de80336: Fixed disabled tertiary buttons incorrectly showing hover effects on surfaces.
-
133d5c6: Added new Popover component for Backstage UI with automatic overflow handling, and full placement support. Also introduced
--bui-shadowtoken for consistent elevation styling across overlay components (Popover, Tooltip, Menu). -
973c839: Fixed Table sorting indicator not being visible when a column is actively sorted.
Affected components: Table, Column
-
df40cfc: Fixed Menu component trigger button not toggling correctly. Removed custom click-outside handler that was interfering with React Aria's built-in state management, allowing the menu to properly open and close when clicking the trigger button.
-
b01ab96: Added support for column width configuration in Table component. Columns now accept
width,defaultWidth,minWidth, andmaxWidthprops for responsive layout control.Affected components: Table, Column
-
b4a4911: Fixed SearchField
startCollapsedprop not working correctly in Backstage UI. The field now properly starts in a collapsed state, expands when clicked and focused, and collapses back when unfocused with no input. Also fixed CSS logic to work correctly in all layout contexts (flex row, flex column, and regular containers).Affected components: SearchField
-
b3253b6: Fixed
Linkcomponent causing hard page refreshes for internal routes. The component now properly uses React Router's navigation instead of full page reloads. -
fe7fe69: Added support for custom pagination options in
useTablehook andTablecomponent. You can now configurepageSizeOptionsto customize the page size dropdown, and hook into pagination events viaonPageSizeChange,onNextPage, andonPreviousPagecallbacks. WhenpageSizedoesn't match any option, the first option is used and a warning is logged.Affected components: Table, TablePagination
-
cfac8a4: Fixed missing border styles on table selection cells in multi-select mode.
Affected components: Table
-
2532d2a: Added
classNameandstyleprops to theTablecomponent.Affected components: Table
@backstage/plugin-app-react@0.1.0
Minor Changes
- 9ccf84e: Initial release of this web library for
@backstage/plugin-app.
Patch Changes
-
9ccf84e: Moved the following blueprints from
@backstage/frontend-plugin-api:AppRootWrapperBlueprintIconBundleBlueprintNavContentBlueprintRouterBlueprintSignInPageBlueprintSwappableComponentBlueprintThemeBlueprintTranslationBlueprint
-
Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
@backstage/plugin-auth-backend@0.26.0
Minor Changes
- 7ffc873: Fix
user_created_atmigration causingSQLiteErrorregarding use of non-constants for defaults
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-auth-node@0.6.11
@backstage/plugin-devtools-react@0.1.0
Minor Changes
- be6cef5: Add support for adding
unprocessed-entitiesand other tabs todevtoolswhen using the New Frontend system
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
@backstage/plugin-events-backend-module-kafka@0.3.0
Minor Changes
- ef5bbd8: Add support for Kafka offset configuration (
fromBeginning) andautoCommit
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
@backstage/plugin-home@0.9.0
Minor Changes
- e091a83: Widget configurations are now only saved to storage when the Save button is explicitly clicked. Added a Cancel button that allows users to discard unsaved changes and revert to the last saved state.
Patch Changes
- bdda543: Updated WidgetOverlay color to use
alpha(theme.palette.background.paper, 0.93)for better theme alignment instead of hardcoded RGBA - Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
- @backstage/plugin-catalog-react@1.21.5
- @backstage/plugin-home-react@0.1.34
@backstage/plugin-scaffolder-backend-module-sentry@0.3.0
Minor Changes
- ab606b2: Add ability to configure the API Base URL
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
@backstage/plugin-techdocs-node@1.14.0
Minor Changes
-
63c459c: BREAKING: It's now possible to use the credentials from the
integrations.awsS3config to authenticate with AWS S3. The new priority is:aws.accountstechdocs.publisher.awsS3.credentialsintegrations.awsS3- Default credential chain
In case of multiple
integrations.awsS3are present, the target integration is determined by theaccessKeyIdintechdocs.publisher.awsS3.credentialsif provided. Otherwise, the default credential chain is used.This means that depending on your setup, this feature may break your existing setup. In general:
- if you are configuring
aws.accounts, no action is required - if you are configuring
techdocs.publisher.awsS3.credentials, no action is required - if you are configuring multiple integrations under
integrations.awsS3, no action is required - if you are configuring a single integration under
integrations.awsS3, make sure that the integration has access to the bucket you are using for TechDocs
Patch Changes
- f0951aa: Updated the
defaultDockerImageto reflect the latest TechDocs Container version of v1.2.8 - Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/integration@1.19.2
@backstage/app-defaults@1.7.4
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.5
@backstage/backend-app-api@1.4.1
Patch Changes
- 04db26b: Clean up process event listeners on backend stop to prevent leaks
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
@backstage/backend-dynamic-feature-service@0.7.8
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.15.0
- @backstage/backend-plugin-api@1.6.1
- @backstage/cli-common@0.1.17
- @backstage/plugin-app-node@0.1.41
- @backstage/plugin-scaffolder-node@0.12.3
- @backstage/backend-openapi-utils@0.6.5
- @backstage/plugin-auth-node@0.6.11
- @backstage/plugin-permission-common@0.9.4
- @backstage/plugin-permission-node@0.10.8
- @backstage/plugin-catalog-backend@3.3.1
- @backstage/plugin-events-backend@0.5.10
@backstage/backend-openapi-utils@0.6.5
Patch Changes
- 6678b78: Internal update to use native feature from our request validation library for handling base path determination.
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
@backstage/backend-plugin-api@1.6.1
Patch Changes
- ae4dd5d: Move some of the symlink resolution to
isChildPath - Updated dependencies
- @backstage/cli-common@0.1.17
- @backstage/plugin-auth-node@0.6.11
- @backstage/plugin-permission-common@0.9.4
- @backstage/plugin-permission-node@0.10.8
@backstage/backend-test-utils@1.10.3
Patch Changes
- 872eb91: Upgrade
zod-to-json-schemato latest version - Updated dependencies
- @backstage/backend-defaults@0.15.0
- @backstage/backend-plugin-api@1.6.1
- @backstage/backend-app-api@1.4.1
- @backstage/plugin-auth-node@0.6.11
- @backstage/plugin-permission-common@0.9.4
@backstage/cli@0.35.2
Patch Changes
- 320c6a9: Bump
@swc/coreto supportES2023andES2024 - c0d7bf6: Added
--includeand--formatoptions tobackstage-cli infocommand for including additional packages via glob patterns and outputting as JSON or Text. - f6a5d2f: Fixed CSS module class name collisions when running multiple versions of packages simultaneously by using content-based hashing for class name generation.
- 140cbc2: Added
@backstage/backend-test-utilsto backend package templates. - 4eeba9e: Upgrade
zod-validation-errorto version 4 - 9ee5996: Bump minimum required
@swc/coreto avoid transpilation bug - Updated dependencies
- @backstage/cli-common@0.1.17
- @backstage/integration@1.19.2
@backstage/cli-common@0.1.17
Patch Changes
- ae4dd5d: Move some of the symlink resolution to
isChildPath
@backstage/core-compat-api@0.5.6
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/plugin-catalog-react@1.21.5
@backstage/core-components@0.18.5
Patch Changes
- a723b8a: The MarkdownContent component now handles HTML content the same way as GitHub when rendering GitHub-flavored Markdown
- c671db9: Fixed bug in Table component where the toolbar layout would break when both a title and filters were present.
- 55a9dc2: Update colour token again in ItemCardHeader to respect theme definition.
@backstage/create-app@0.7.8
Patch Changes
- fea3e39: Bumped create-app version.
- 9f1ee3e: Bumped create-app version.
- 880310b: Bumped create-app version.
- f1fe6fe: Updated Dockerfile to use Node 24 and Debian Trixie
- Updated dependencies
- @backstage/cli-common@0.1.17
@backstage/dev-utils@1.1.19
Patch Changes
- Updated dependencies
- @backstage/ui@0.11.0
- @backstage/core-components@0.18.5
- @backstage/app-defaults@1.7.4
- @backstage/integration-react@1.2.14
- @backstage/plugin-catalog-react@1.21.5
@backstage/frontend-defaults@0.3.5
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
- @backstage/plugin-app@0.3.4
- @backstage/frontend-app-api@0.14.0
@backstage/frontend-plugin-api@0.13.3
Patch Changes
-
3bd2a1a: Updated documentation for
createApiRefto clarify the role of the ID in specifying the owning plugin of an API. -
9ccf84e: The following blueprints are being restricted to only be used in app plugin overrides and modules. They are being moved to the
@backstage/plugin-app-reactpackage and have been deprecated:AppRootWrapperBlueprintIconBundleBlueprintNavContentBlueprintRouterBlueprintSignInPageBlueprintSwappableComponentBlueprintThemeBlueprintTranslationBlueprint
-
4554a4e: Added an alpha
PluginWrapperBlueprintexported from@backstage/frontend-plugin-api/alpha, which can install components that will wrap all plugin elements. -
872eb91: Upgrade
zod-to-json-schemato latest version
@backstage/frontend-test-utils@0.4.3
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/plugin-app@0.3.4
- @backstage/frontend-app-api@0.14.0
@backstage/integration@1.19.2
Patch Changes
- 3afeab4: Implementing
ScmIntegrationforGoogleGcs - 9083273: Rollback the lowercase replacing in GitHub integration config
@backstage/integration-react@1.2.14
Patch Changes
- Updated dependencies
- @backstage/integration@1.19.2
@backstage/repo-tools@0.16.2
Patch Changes
- 498f9dd: Fixed help text for
backstage-repo-tools package schema openapi generatecommand. - Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/cli-common@0.1.17
@techdocs/cli@1.10.4
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.15.0
- @backstage/cli-common@0.1.17
- @backstage/plugin-techdocs-node@1.14.0
@backstage/plugin-api-docs@0.13.3
Patch Changes
- 0216090: Updated dependency
@types/swagger-ui-reactto^5.0.0. - abeba2b: Fix types with new bumped dependency
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/plugin-catalog@1.32.2
- @backstage/core-components@0.18.5
- @backstage/plugin-catalog-react@1.21.5
@backstage/plugin-app@0.3.4
Patch Changes
-
4554a4e: Implemented support for the new
PluginWrapperBlueprintfrom@backstage/frontend-plugin-api/alpha. -
9ccf84e: The following blueprints are being restricted to only be used in app plugin overrides and modules. They will now produce a deprecation warning when used outside of the app plugin:
AppRootWrapperBlueprintIconBundleBlueprintNavContentBlueprintRouterBlueprintSignInPageBlueprintSwappableComponentBlueprintThemeBlueprintTranslationBlueprint
-
Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/plugin-app-react@0.1.0
- @backstage/core-components@0.18.5
- @backstage/integration-react@1.2.14
@backstage/plugin-app-backend@0.5.10
Patch Changes
- 9ccf84e: Updated plugin metadata.
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-app-node@0.1.41
- @backstage/plugin-auth-node@0.6.11
@backstage/plugin-app-node@0.1.41
Patch Changes
- 9ccf84e: Updated plugin metadata.
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
@backstage/plugin-app-visualizer@0.1.27
Patch Changes
- Updated dependencies
- @backstage/ui@0.11.0
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
@backstage/plugin-auth@0.1.4
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
@backstage/plugin-auth-backend-module-aws-alb-provider@0.4.11
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-auth-backend@0.26.0
- @backstage/plugin-auth-node@0.6.11
@backstage/plugin-auth-backend-module-oidc-provider@0.4.11
Patch Changes
- e54fcb2: Added support for custom start URL search parameters (with the new
startUrlSearchParamsconfig property) - Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-auth-backend@0.26.0
- @backstage/plugin-auth-node@0.6.11
@backstage/plugin-auth-node@0.6.11
Patch Changes
- 4eeba9e: Upgrade
zod-validation-errorto version 4 - 872eb91: Upgrade
zod-to-json-schemato latest version - Updated dependencies
- @backstage/backend-plugin-api@1.6.1
@backstage/plugin-auth-react@0.1.23
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.5
@backstage/plugin-bitbucket-cloud-common@0.3.6
Patch Changes
- Updated dependencies
- @backstage/integration@1.19.2
@backstage/plugin-catalog@1.32.2
Patch Changes
- 7ca91e8: Header in EntityLayout should always be shown. Monitoring the loading status caused flickering when the refresh() method of the Async Entity was invoked.
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
- @backstage/core-compat-api@0.5.6
- @backstage/plugin-search-react@1.10.2
- @backstage/integration-react@1.2.14
- @backstage/plugin-catalog-react@1.21.5
- @backstage/plugin-scaffolder-common@1.7.5
- @backstage/plugin-techdocs-react@1.3.7
@backstage/plugin-catalog-backend@3.3.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/integration@1.19.2
- @backstage/backend-openapi-utils@0.6.5
- @backstage/plugin-permission-common@0.9.4
- @backstage/plugin-permission-node@0.10.8
@backstage/plugin-catalog-backend-module-aws@0.4.19
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.15.0
- @backstage/backend-plugin-api@1.6.1
- @backstage/integration@1.19.2
@backstage/plugin-catalog-backend-module-azure@0.3.13
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/integration@1.19.2
@backstage/plugin-catalog-backend-module-backstage-openapi@0.5.10
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/backend-openapi-utils@0.6.5
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.5.7
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/integration@1.19.2
- @backstage/plugin-bitbucket-cloud-common@0.3.6
@backstage/plugin-catalog-backend-module-bitbucket-server@0.5.7
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/integration@1.19.2
@backstage/plugin-catalog-backend-module-gerrit@0.3.10
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/integration@1.19.2
@backstage/plugin-catalog-backend-module-gitea@0.1.8
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/integration@1.19.2
@backstage/plugin-catalog-backend-module-github@0.12.1
Patch Changes
- cb4b907: Improved efficiency of
GithubOrgEntityProvidermembership event handling and edit team. The provider now fetches only the specific user's teams instead of all organization users when processing membership events, and usesaddEntitiesOperationinstead ofreplaceEntitiesOperationto avoid unnecessary entity deletions. - Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/integration@1.19.2
@backstage/plugin-catalog-backend-module-github-org@0.3.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-catalog-backend-module-github@0.12.1
@backstage/plugin-catalog-backend-module-gitlab@0.7.7
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.15.0
- @backstage/backend-plugin-api@1.6.1
- @backstage/integration@1.19.2
@backstage/plugin-catalog-backend-module-gitlab-org@0.2.17
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-catalog-backend-module-gitlab@0.7.7
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.8
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.15.0
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-permission-common@0.9.4
- @backstage/plugin-catalog-backend@3.3.1
@backstage/plugin-catalog-backend-module-logs@0.1.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-catalog-backend@3.3.1
@backstage/plugin-catalog-backend-module-msgraph@0.8.4
Patch Changes
- 115b378: Changed the logger level from 'warning' to 'debug' when we are unable to load the user's photo.
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
@backstage/plugin-catalog-backend-module-openapi@0.2.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/integration@1.19.2
@backstage/plugin-catalog-backend-module-puppetdb@0.2.18
Patch Changes
- a307700: Fixed crash when
latest_report_statusis undefined - Updated dependencies
- @backstage/backend-plugin-api@1.6.1
@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.16
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-common@1.7.5
@backstage/plugin-catalog-graph@0.5.6
Patch Changes
- 5c49a00: Update for the
qslibrary bump: the old array limit setting has changed to be more strict; you can no longer just give a zero to mean unlimited. So we choose an arbitrary high value, to at least go higher than the default 20. - Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
- @backstage/plugin-catalog-react@1.21.5
@backstage/plugin-catalog-import@0.13.9
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
- @backstage/integration@1.19.2
- @backstage/integration-react@1.2.14
- @backstage/plugin-catalog-react@1.21.5
@backstage/plugin-catalog-react@1.21.5
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
- @backstage/plugin-permission-common@0.9.4
- @backstage/core-compat-api@0.5.6
- @backstage/frontend-test-utils@0.4.3
- @backstage/integration-react@1.2.14
@backstage/plugin-catalog-unprocessed-entities@0.2.25
Patch Changes
- be6cef5: Add support for adding
unprocessed-entitiesand other tabs todevtoolswhen using the New Frontend system - Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
- @backstage/plugin-devtools-react@0.1.0
- @backstage/core-compat-api@0.5.6
@backstage/plugin-config-schema@0.1.76
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.5
@backstage/plugin-devtools@0.1.35
Patch Changes
- be6cef5: Add support for adding
unprocessed-entitiesand other tabs todevtoolswhen using the New Frontend system - Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
- @backstage/plugin-devtools-react@0.1.0
- @backstage/plugin-devtools-common@0.1.21
- @backstage/core-compat-api@0.5.6
@backstage/plugin-devtools-backend@0.5.13
Patch Changes
- be6cef5: Add support for adding
unprocessed-entitiesand other tabs todevtoolswhen using the New Frontend system - Updated dependencies
- @backstage/backend-defaults@0.15.0
- @backstage/backend-plugin-api@1.6.1
- @backstage/cli-common@0.1.17
- @backstage/plugin-devtools-common@0.1.21
- @backstage/plugin-permission-common@0.9.4
- @backstage/plugin-permission-node@0.10.8
@backstage/plugin-devtools-common@0.1.21
Patch Changes
- be6cef5: Add support for adding
unprocessed-entitiesand other tabs todevtoolswhen using the New Frontend system - Updated dependencies
- @backstage/plugin-permission-common@0.9.4
@backstage/plugin-events-backend@0.5.10
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/backend-openapi-utils@0.6.5
@backstage/plugin-events-backend-module-github@0.4.8
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/integration@1.19.2
@backstage/plugin-home-react@0.1.34
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
@backstage/plugin-kubernetes@0.12.15
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
- @backstage/plugin-catalog-react@1.21.5
- @backstage/plugin-kubernetes-react@0.5.15
@backstage/plugin-kubernetes-cluster@0.0.33
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.5
- @backstage/plugin-catalog-react@1.21.5
- @backstage/plugin-kubernetes-react@0.5.15
@backstage/plugin-kubernetes-react@0.5.15
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.5
@backstage/plugin-mcp-actions-backend@0.1.7
Patch Changes
- 4d82a35: build(deps): bump
@modelcontextprotocol/sdkfrom 1.24.3 to 1.25.2 - Updated dependencies
- @backstage/backend-defaults@0.15.0
- @backstage/backend-plugin-api@1.6.1
@backstage/plugin-mui-to-bui@0.2.3
Patch Changes
- f157f43: Fix installation command
- e4a1180: Updated tokens from
--bui-bgto--bui-bg-surface-0 - Updated dependencies
- @backstage/ui@0.11.0
- @backstage/frontend-plugin-api@0.13.3
@backstage/plugin-notifications@0.5.13
Patch Changes
- 4452d15: Added i18n support.
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
@backstage/plugin-org@0.6.48
Patch Changes
- db3cfd7: Adds the Resource kind to the
useGetEntitiesfallback so that Resources are included by default when no specific kinds are provided in the group ownership card. - Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
- @backstage/plugin-catalog-react@1.21.5
@backstage/plugin-org-react@0.1.46
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.5
- @backstage/plugin-catalog-react@1.21.5
@backstage/plugin-permission-common@0.9.4
Patch Changes
- 872eb91: Upgrade
zod-to-json-schemato latest version
@backstage/plugin-permission-node@0.10.8
Patch Changes
- 872eb91: Upgrade
zod-to-json-schemato latest version - Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-auth-node@0.6.11
- @backstage/plugin-permission-common@0.9.4
@backstage/plugin-scaffolder@1.35.1
Patch Changes
- 9d75495: Fixed bug in RepoUrlPickerComponent component where repository names were not being autocompleted.
- 872eb91: Upgrade
zod-to-json-schemato latest version - Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
- @backstage/integration@1.19.2
- @backstage/plugin-scaffolder-react@1.19.5
- @backstage/integration-react@1.2.14
- @backstage/plugin-catalog-react@1.21.5
- @backstage/plugin-scaffolder-common@1.7.5
- @backstage/plugin-techdocs-react@1.3.7
@backstage/plugin-scaffolder-backend@3.1.1
Patch Changes
- 5012852: Remove unused abort controller in debug:wait action
- c641c14: Wrap some of the action logic with
resolveSafeChildPathand improve symlink handling when fetching remote and local files - 27f9061: REwrite]
- 872eb91: Upgrade
zod-to-json-schemato latest version - Updated dependencies
- @backstage/backend-defaults@0.15.0
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
- @backstage/integration@1.19.2
- @backstage/backend-openapi-utils@0.6.5
- @backstage/plugin-scaffolder-backend-module-github@0.9.4
- @backstage/plugin-auth-node@0.6.11
- @backstage/plugin-scaffolder-backend-module-azure@0.2.17
- @backstage/plugin-permission-common@0.9.4
- @backstage/plugin-permission-node@0.10.8
- @backstage/plugin-bitbucket-cloud-common@0.3.6
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.16
- @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.18
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.3.1
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.17
- @backstage/plugin-scaffolder-backend-module-gerrit@0.2.17
- @backstage/plugin-scaffolder-backend-module-gitea@0.2.17
- @backstage/plugin-scaffolder-backend-module-gitlab@0.11.1
- @backstage/plugin-scaffolder-common@1.7.5
@backstage/plugin-scaffolder-backend-module-azure@0.2.17
Patch Changes
- 88abcc6: Improved README with clearer setup and usage guidance.
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
- @backstage/integration@1.19.2
@backstage/plugin-scaffolder-backend-module-bitbucket@0.3.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
- @backstage/integration@1.19.2
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.3.1
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.17
@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.3.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
- @backstage/integration@1.19.2
- @backstage/plugin-bitbucket-cloud-common@0.3.6
@backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.17
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
- @backstage/integration@1.19.2
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.17
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
- @backstage/integration@1.19.2
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.19
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.15.0
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
- @backstage/integration@1.19.2
@backstage/plugin-scaffolder-backend-module-gcp@0.2.17
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
- @backstage/integration@1.19.2
@backstage/plugin-scaffolder-backend-module-gerrit@0.2.17
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
- @backstage/integration@1.19.2
@backstage/plugin-scaffolder-backend-module-gitea@0.2.17
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
- @backstage/integration@1.19.2
@backstage/plugin-scaffolder-backend-module-github@0.9.4
Patch Changes
-
bb7088b: Added options to set workflow access level for repositories to
github:repo:createThis is useful when creating repositories for GitHub Actions to manage access to the workflows during creation.
- action: github:repo:create
id: create-repo
input:
repoUrl: github.com?owner=owner&repo=repo
visibility: private
+ workflowAccess: organization -
Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
- @backstage/integration@1.19.2
@backstage/plugin-scaffolder-backend-module-gitlab@0.11.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
- @backstage/integration@1.19.2
@backstage/plugin-scaffolder-backend-module-notifications@0.1.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
@backstage/plugin-scaffolder-backend-module-rails@0.5.17
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
- @backstage/integration@1.19.2
@backstage/plugin-scaffolder-backend-module-yeoman@0.4.18
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
- @backstage/plugin-scaffolder-node-test-utils@0.3.7
@backstage/plugin-scaffolder-common@1.7.5
Patch Changes
- Updated dependencies
- @backstage/integration@1.19.2
- @backstage/plugin-permission-common@0.9.4
@backstage/plugin-scaffolder-node@0.12.3
Patch Changes
- c641c14: Wrap some of the action logic with
resolveSafeChildPathand improve symlink handling when fetching remote and local files - 27f9061: REwrite]
- 872eb91: Upgrade
zod-to-json-schemato latest version - Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/integration@1.19.2
- @backstage/plugin-permission-common@0.9.4
- @backstage/plugin-scaffolder-common@1.7.5
@backstage/plugin-scaffolder-node-test-utils@0.3.7
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-scaffolder-node@0.12.3
- @backstage/backend-test-utils@1.10.3
@backstage/plugin-scaffolder-react@1.19.5
Patch Changes
- 872eb91: Upgrade
zod-to-json-schemato latest version - Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
- @backstage/plugin-catalog-react@1.21.5
- @backstage/plugin-scaffolder-common@1.7.5
@backstage/plugin-search@1.5.3
Patch Changes
- 5c49a00: Update for the
qslibrary bump: the old array limit setting has changed to be more strict; you can no longer just give a zero to mean unlimited. So we choose an arbitrary high value, to at least go higher than the default 20. - Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
- @backstage/plugin-search-react@1.10.2
- @backstage/plugin-catalog-react@1.21.5
@backstage/plugin-search-backend@2.0.10
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.15.0
- @backstage/backend-plugin-api@1.6.1
- @backstage/backend-openapi-utils@0.6.5
- @backstage/plugin-permission-common@0.9.4
- @backstage/plugin-permission-node@0.10.8
@backstage/plugin-search-backend-module-techdocs@0.4.10
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-techdocs-node@1.14.0
- @backstage/plugin-permission-common@0.9.4
@backstage/plugin-search-react@1.10.2
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
@backstage/plugin-signals@0.0.27
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
@backstage/plugin-techdocs@1.16.2
Patch Changes
- 0afb8a6: Corrected color of some elements such as Grid cards and Tables.
- 94ff7ab: Code block "Copy to clipboard" button was not positioned correctly for docs built with
mkdocs-material>=9.7 - Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
- @backstage/integration@1.19.2
- @backstage/plugin-search-react@1.10.2
- @backstage/integration-react@1.2.14
- @backstage/plugin-auth-react@0.1.23
- @backstage/plugin-catalog-react@1.21.5
- @backstage/plugin-techdocs-react@1.3.7
@backstage/plugin-techdocs-addons-test-utils@2.0.1
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.32.2
- @backstage/plugin-techdocs@1.16.2
- @backstage/plugin-search-react@1.10.2
- @backstage/integration-react@1.2.14
- @backstage/plugin-catalog-react@1.21.5
- @backstage/plugin-techdocs-react@1.3.7
@backstage/plugin-techdocs-backend@2.1.4
Patch Changes
- b6ff2a5: Some AWS
publisherconfig options such asregion,endpoint,accountIdare now marked as@visibility backendinstead ofsecret. - Updated dependencies
- @backstage/backend-defaults@0.15.0
- @backstage/backend-plugin-api@1.6.1
- @backstage/integration@1.19.2
- @backstage/plugin-techdocs-node@1.14.0
@backstage/plugin-techdocs-module-addons-contrib@1.1.32
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
- @backstage/integration@1.19.2
- @backstage/integration-react@1.2.14
- @backstage/plugin-techdocs-react@1.3.7
@backstage/plugin-techdocs-react@1.3.7
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
@backstage/plugin-user-settings@0.8.31
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
- @backstage/plugin-catalog-react@1.21.5
@backstage/plugin-user-settings-backend@0.3.10
Patch Changes
- ad01e54: Resolves an issue where user setting keys containing slashes returned 404 not found.
- Updated dependencies
- @backstage/backend-defaults@0.15.0
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-auth-node@0.6.11
example-app@0.2.117
Patch Changes
- Updated dependencies
- @backstage/ui@0.11.0
- @backstage/plugin-catalog@1.32.2
- @backstage/plugin-home@0.9.0
- @backstage/cli@0.35.2
- @backstage/core-components@0.18.5
- @backstage/plugin-org@0.6.48
- @backstage/plugin-mui-to-bui@0.2.3
- @backstage/plugin-notifications@0.5.13
- @backstage/frontend-app-api@0.14.0
- @backstage/plugin-api-docs@0.13.3
- @backstage/plugin-techdocs@1.16.2
- @backstage/plugin-catalog-unprocessed-entities@0.2.25
- @backstage/plugin-devtools@0.1.35
- @backstage/plugin-scaffolder@1.35.1
- @backstage/plugin-catalog-graph@0.5.6
- @backstage/plugin-search@1.5.3
- @backstage/plugin-scaffolder-react@1.19.5
- @backstage/plugin-search-react@1.10.2
- @backstage/app-defaults@1.7.4
- @backstage/integration-react@1.2.14
- @backstage/plugin-auth-react@0.1.23
- @backstage/plugin-catalog-import@0.13.9
- @backstage/plugin-catalog-react@1.21.5
- @backstage/plugin-kubernetes@0.12.15
- @backstage/plugin-kubernetes-cluster@0.0.33
- @backstage/plugin-signals@0.0.27
- @backstage/plugin-techdocs-module-addons-contrib@1.1.32
- @backstage/plugin-techdocs-react@1.3.7
- @backstage/plugin-user-settings@0.8.31
example-app-next@0.0.31
Patch Changes
- Updated dependencies
- @backstage/ui@0.11.0
- @backstage/frontend-plugin-api@0.13.3
- @backstage/plugin-catalog@1.32.2
- @backstage/plugin-home@0.9.0
- @backstage/cli@0.35.2
- @backstage/core-components@0.18.5
- @backstage/plugin-org@0.6.48
- @backstage/plugin-app@0.3.4
- @backstage/plugin-notifications@0.5.13
- @backstage/frontend-app-api@0.14.0
- @backstage/plugin-api-docs@0.13.3
- @backstage/plugin-techdocs@1.16.2
- @backstage/plugin-catalog-unprocessed-entities@0.2.25
- @backstage/plugin-devtools@0.1.35
- @backstage/plugin-scaffolder@1.35.1
- @backstage/plugin-catalog-graph@0.5.6
- @backstage/plugin-search@1.5.3
- @backstage/plugin-scaffolder-react@1.19.5
- @backstage/core-compat-api@0.5.6
- @backstage/frontend-defaults@0.3.5
- @backstage/plugin-search-react@1.10.2
- @backstage/app-defaults@1.7.4
- @backstage/integration-react@1.2.14
- @backstage/plugin-app-visualizer@0.1.27
- @backstage/plugin-auth@0.1.4
- @backstage/plugin-auth-react@0.1.23
- @backstage/plugin-catalog-import@0.13.9
- @backstage/plugin-catalog-react@1.21.5
- @backstage/plugin-kubernetes@0.12.15
- @backstage/plugin-kubernetes-cluster@0.0.33
- @backstage/plugin-signals@0.0.27
- @backstage/plugin-techdocs-module-addons-contrib@1.1.32
- @backstage/plugin-techdocs-react@1.3.7
- @backstage/plugin-user-settings@0.8.31
app-next-example-plugin@0.0.31
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/core-components@0.18.5
example-backend@0.0.46
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.15.0
- @backstage/backend-plugin-api@1.6.1
- @backstage/plugin-app-backend@0.5.10
- @backstage/plugin-techdocs-backend@2.1.4
- @backstage/plugin-scaffolder-backend@3.1.1
- @backstage/plugin-mcp-actions-backend@0.1.7
- @backstage/plugin-auth-backend@0.26.0
- @backstage/plugin-scaffolder-backend-module-github@0.9.4
- @backstage/plugin-devtools-backend@0.5.13
- @backstage/plugin-auth-node@0.6.11
- @backstage/plugin-permission-common@0.9.4
- @backstage/plugin-permission-node@0.10.8
- @backstage/plugin-catalog-backend@3.3.1
- @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.10
- @backstage/plugin-catalog-backend-module-openapi@0.2.18
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.16
- @backstage/plugin-events-backend@0.5.10
- @backstage/plugin-scaffolder-backend-module-notifications@0.1.18
- @backstage/plugin-search-backend@2.0.10
- @backstage/plugin-search-backend-module-techdocs@0.4.10
e2e-test@0.2.36
Patch Changes
- Updated dependencies
- @backstage/cli-common@0.1.17
- @backstage/create-app@0.7.8
@internal/scaffolder@0.0.17
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
- @backstage/plugin-scaffolder-react@1.19.5
techdocs-cli-embedded-app@0.2.116
Patch Changes
- Updated dependencies
- @backstage/ui@0.11.0
- @backstage/plugin-catalog@1.32.2
- @backstage/cli@0.35.2
- @backstage/core-components@0.18.5
- @backstage/plugin-techdocs@1.16.2
- @backstage/app-defaults@1.7.4
- @backstage/integration-react@1.2.14
- @backstage/plugin-techdocs-react@1.3.7
@internal/plugin-todo-list@1.0.47
Patch Changes
- Updated dependencies
- @backstage/core-components@0.18.5