# Release v1.47.0
Upgrade Helper: [https://backstage.github.io/upgrade-helper/?to=1.47.0](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 `ActionsService` now supports filtering actions based on configuration. This allows controlling which actions are exposed to consumers like the MCP backend.
Configuration example:
```yaml
backend:
actions:
pluginSources:
- catalog
- scaffolder
filter:
include:
- id: 'catalog:*'
attributes:
destructive: false
- id: 'scaffolder:*'
exclude:
- id: '*:delete-*'
- attributes:
readOnly: false
```
Filtering logic:
- `include`: Rules for actions to include. Each rule can specify an `id` glob pattern and/or `attributes` constraints. 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 `id` and `attributes` with AND logic (both must match if specified).
- 27f9061: **BREAKING**: The constructor for `FetchUrlReader` is now private. If you have to construct an instance of it, please use `FetchUrlReader.fromConfig` instead.
- 27f9061: **BREAKING**: `coreServices.urlReader` now validates that redirect chains are subject to the allow list in `reading.allow` of 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:
```diff
backend:
reading:
allow:
- host: example.com
+ - host: storage-api.example.com
```
### Patch Changes
- 3afeab4: Implementing `readTree` for `GoogleGcsReader`
- c641c14: Wrap some of the action logic with `resolveSafeChildPath` and 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-schema` to 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 `app` plugin, this must be done with an `app` module 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 `useTable` hook API.
- The `Table` component (React Aria wrapper) is renamed to `TableRoot`
- New high-level `Table` component that handles data display, pagination, sorting, and selection
- The `useTable` hook 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:**
1. Update imports and use the new `useTable` hook:
```diff
-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,
+});
```
2. Define columns and render with the new Table API:
```diff
-
-
+const columns: ColumnConfig- [] = [
+ { id: 'name', label: 'Name', isRowHeader: true, cell: item => },
+ { id: 'type', label: 'Type', cell: item => },
+];
+
+
```
Affected components: Table, TableRoot, TablePagination
- 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-tint` can be replaced by `--bui-bg-neutral-on-surface-0`
- `--bui-bg-tint-hover` can be replaced by `--bui-bg-neutral-on-surface-0-hover`
- `--bui-bg-tint-pressed` can be replaced by `--bui-bg-neutral-on-surface-0-pressed`
- `--bui-bg-tint-disabled` can be replaced by `--bui-bg-neutral-on-surface-0-disabled`
- ea0c6d8: Introduce new `ToggleButton` & `ToggleButtonGroup` components in Backstage UI
- 4ea1d15: **BREAKING**: Renamed CSS variable `--bui-bg` to `--bui-bg-surface-0` for 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-label` attributes to `SearchField` components in `Select`, `MenuAutocomplete`, and `MenuAutocompleteListbox` to 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 `storybook` from 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-shadow` token 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`, and `maxWidth` props for responsive layout control.
Affected components: Table, Column
- b4a4911: Fixed SearchField `startCollapsed` prop 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 `Link` component 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 `useTable` hook and `Table` component. You can now configure `pageSizeOptions` to customize the page size dropdown, and hook into pagination events via `onPageSizeChange`, `onNextPage`, and `onPreviousPage` callbacks. When `pageSize` doesn'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 `className` and `style` props to the `Table` component.
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`:
- `AppRootWrapperBlueprint`
- `IconBundleBlueprint`
- `NavContentBlueprint`
- `RouterBlueprint`
- `SignInPageBlueprint`
- `SwappableComponentBlueprint`
- `ThemeBlueprint`
- `TranslationBlueprint`
- Updated dependencies
- @backstage/frontend-plugin-api@0.13.3
## @backstage/plugin-auth-backend@0.26.0
### Minor Changes
- 7ffc873: Fix `user_created_at` migration causing `SQLiteError` regarding 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-entities` and other tabs to `devtools` when 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`) and `autoCommit`
### 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.awsS3` config to authenticate with AWS S3. The new priority is:
1. `aws.accounts`
2. `techdocs.publisher.awsS3.credentials`
3. `integrations.awsS3`
4. Default credential chain
In case of multiple `integrations.awsS3` are present, the target integration is determined by the `accessKeyId` in `techdocs.publisher.awsS3.credentials` if 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 `defaultDockerImage` to 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-schema` to 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/core` to support `ES2023` and `ES2024`
- c0d7bf6: Added `--include` and `--format` options to `backstage-cli info` command 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-utils` to backend package templates.
- 4eeba9e: Upgrade `zod-validation-error` to version 4
- 9ee5996: Bump minimum required `@swc/core` to 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 `createApiRef` to 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-react` package and have been deprecated:
- `AppRootWrapperBlueprint`
- `IconBundleBlueprint`
- `NavContentBlueprint`
- `RouterBlueprint`
- `SignInPageBlueprint`
- `SwappableComponentBlueprint`
- `ThemeBlueprint`
- `TranslationBlueprint`
- 4554a4e: Added an alpha `PluginWrapperBlueprint` exported from `@backstage/frontend-plugin-api/alpha`, which can install components that will wrap all plugin elements.
- 872eb91: Upgrade `zod-to-json-schema` to 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 `ScmIntegration` for `GoogleGcs`
- 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 generate` command.
- 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-react` to `^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 `PluginWrapperBlueprint` from `@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:
- `AppRootWrapperBlueprint`
- `IconBundleBlueprint`
- `NavContentBlueprint`
- `RouterBlueprint`
- `SignInPageBlueprint`
- `SwappableComponentBlueprint`
- `ThemeBlueprint`
- `TranslationBlueprint`
- 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 `startUrlSearchParams` config 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-error` to version 4
- 872eb91: Upgrade `zod-to-json-schema` to 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 `GithubOrgEntityProvider` membership 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 uses `addEntitiesOperation` instead of `replaceEntitiesOperation` to 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_status` is 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 `qs` library 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-entities` and other tabs to `devtools` when 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-entities` and other tabs to `devtools` when 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-entities` and other tabs to `devtools` when 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-entities` and other tabs to `devtools` when 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/sdk` from 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-bg` to `--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 `useGetEntities` fallback 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-schema` to latest version
## @backstage/plugin-permission-node@0.10.8
### Patch Changes
- 872eb91: Upgrade `zod-to-json-schema` to 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-schema` to 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 `resolveSafeChildPath` and improve symlink handling when fetching remote and local files
- 27f9061: REwrite]
- 872eb91: Upgrade `zod-to-json-schema` to 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][access-level] for repositories to `github:repo:create`
This is useful when creating repositories for GitHub Actions to manage access
to the workflows during creation.
```diff
- action: github:repo:create
id: create-repo
input:
repoUrl: github.com?owner=owner&repo=repo
visibility: private
+ workflowAccess: organization
```
[access-level]: https://docs.github.com/en/rest/actions/permissions?apiVersion=2022-11-28#set-the-level-of-access-for-workflows-outside-of-the-repository
- 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 `resolveSafeChildPath` and improve symlink handling when fetching remote and local files
- 27f9061: REwrite]
- 872eb91: Upgrade `zod-to-json-schema` to 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-schema` to 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 `qs` library 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 `publisher` config options such as `region`, `endpoint`, `accountId` are now marked as `@visibility backend` instead of `secret`.
- 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