Skip to main content

Release v1.50.0-next.0

Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.50.0-next.0

@backstage/ui@0.14.0-next.0

Minor Changes

  • 8659f33: BREAKING: The Header component's tabs prop now uses HeaderNavTabItem[] instead of HeaderTab[]. Tabs render as a <nav> element with links and optional dropdown menus instead of role="tablist". A new activeTabId prop controls which tab is highlighted.

    Migration:

    - import { Header, type HeaderTab } from '@backstage/ui';
    + import { Header, type HeaderNavTabItem } from '@backstage/ui';

    // Tabs no longer support matchStrategy — active state is controlled via activeTabId
    - const tabs: HeaderTab[] = [
    - { id: 'overview', label: 'Overview', href: '/overview', matchStrategy: 'prefix' },
    + const tabs: HeaderNavTabItem[] = [
    + { id: 'overview', label: 'Overview', href: '/overview' },
    ];

    - <Header title="My Page" tabs={tabs} />
    + <Header title="My Page" tabs={tabs} activeTabId="overview" />

    Affected components: Header

  • bed3307: BREAKING: Dropped support for React 17. The minimum supported React version is now 18.

  • 49ffe8a: BREAKING: Removed the toolbarWrapper element from PluginHeader and dropped toolbarWrapper from PluginHeaderDefinition.classNames. Toolbar layout styles now live on toolbar (.bui-PluginHeaderToolbar).

    Migration: Update custom CSS that targeted .bui-PluginHeaderToolbarWrapper to use .bui-PluginHeaderToolbar instead.

    Affected components: PluginHeader

Patch Changes

  • bcbb6eb: Made SearchAutocomplete background-aware. The input now adapts its background color based on its parent container's background level.

    Affected components: SearchAutocomplete

  • 8c2e24e: Added aria-hidden to the PluginHeader icon to prevent screen readers from announcing decorative plugin icons.

    Affected components: PluginHeader

  • 3d67aeb: Added prefers-reduced-motion support to Tab indicator animations. Users with reduced motion preferences will no longer see sliding transitions on the active and hover indicators.

    Affected components: Tabs

  • cc4a682: Fixed the ButtonIcon's loading spinner animation

    Affected components: ButtonIcon

  • adcdd2f: Simplified the Menu component's item structure by removing the inner wrapper element and applying styles directly to the menu item, improving DOM clarity.

    Affected components: Menu

  • 0257ada: Added react-aria, react-stately, @react-aria/interactions, @react-stately/layout, and @react-stately/overlays as dependencies.

  • Updated dependencies

    • @backstage/version-bridge@1.0.12

@backstage/plugin-auth-backend@0.28.0-next.0

Minor Changes

  • d7c67cd: BREAKING: The setting auth.omitIdentityTokenOwnershipClaim has had its default value switched to true.

    With this setting Backstage user tokens issued by the auth backend will no longer contain an ent claim - the one with the user's ownership entity refs. This means that tokens issued in large orgs no longer risk hitting HTTP header size limits.

    To get ownership info for the current user, code should use the userInfo core service. In practice code will typically already conform to this since the ent claim has not been readily exposed in any other way for quite some time. But code which explicitly decodes Backstage tokens - which is strongly discouraged - may be affected by this change.

    The setting will remain for some time to allow it to be set back to false if need be, but it will be removed entirely in a future release.

Patch Changes

  • dc87ac1: Fixed CIMD redirect URI matching to allow any port for localhost addresses per RFC 8252 Section 7.3. Native CLI clients use ephemeral ports for OAuth callbacks, which are now accepted when the registered redirect URI uses a localhost address.
  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

@backstage/app-defaults@1.7.7-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.9-next.0
    • @backstage/core-app-api@1.19.7-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/theme@0.7.2
    • @backstage/plugin-permission-react@0.4.42-next.0

@backstage/backend-app-api@1.6.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

@backstage/backend-defaults@0.16.1-next.0

Patch Changes

  • 79453c0: Updated dependency wait-for-expect to ^4.0.0.
  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/cli-node@0.3.1-next.0
    • @backstage/config-loader@1.10.10-next.0
    • @backstage/backend-app-api@1.6.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/plugin-permission-node@0.10.12-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/backend-dev-utils@0.1.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/integration-aws-node@0.1.20
    • @backstage/types@1.2.2
    • @backstage/plugin-permission-common@0.9.7

@backstage/backend-dynamic-feature-service@0.8.1-next.0

Patch Changes

  • 79453c0: Updated dependency wait-for-expect to ^4.0.0.
  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/plugin-catalog-backend@3.5.1-next.0
    • @backstage/backend-defaults@0.16.1-next.0
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/cli-node@0.3.1-next.0
    • @backstage/config-loader@1.10.10-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/plugin-events-backend@0.6.1-next.0
    • @backstage/plugin-permission-node@0.10.12-next.0
    • @backstage/plugin-search-backend-node@1.4.3-next.0
    • @backstage/backend-openapi-utils@0.6.8-next.0
    • @backstage/plugin-app-node@0.1.44-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-permission-common@0.9.7
    • @backstage/plugin-search-common@1.2.22

@backstage/backend-openapi-utils@0.6.8-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

@backstage/backend-plugin-api@1.8.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/plugin-permission-node@0.10.12-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-permission-common@0.9.7

@backstage/backend-test-utils@1.11.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.16.1-next.0
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/backend-app-api@1.6.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-permission-common@0.9.7

@backstage/cli@0.36.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/cli-module-build@0.1.1-next.0
    • @backstage/cli-module-test-jest@0.1.1-next.0
    • @backstage/cli-node@0.3.1-next.0
    • @backstage/cli-defaults@0.1.1-next.0
    • @backstage/errors@1.2.7
    • @backstage/eslint-plugin@0.2.2

@backstage/cli-common@0.2.1-next.0

Patch Changes

  • e928e73: chore(deps): bump undici from 7.22.0 to 7.24.0
  • Updated dependencies
    • @backstage/errors@1.2.7

@backstage/cli-defaults@0.1.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-module-build@0.1.1-next.0
    • @backstage/cli-module-config@0.1.1-next.0
    • @backstage/cli-module-github@0.1.1-next.0
    • @backstage/cli-module-info@0.1.1-next.0
    • @backstage/cli-module-lint@0.1.1-next.0
    • @backstage/cli-module-maintenance@0.1.1-next.0
    • @backstage/cli-module-migrate@0.1.1-next.0
    • @backstage/cli-module-new@0.1.1-next.0
    • @backstage/cli-module-test-jest@0.1.1-next.0
    • @backstage/cli-module-translations@0.1.1-next.0
    • @backstage/cli-module-actions@0.0.2-next.0
    • @backstage/cli-module-auth@0.1.1-next.0

@backstage/cli-module-actions@0.0.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-node@0.3.1-next.0
    • @backstage/errors@1.2.7

@backstage/cli-module-auth@0.1.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-node@0.3.1-next.0
    • @backstage/errors@1.2.7

@backstage/cli-module-build@0.1.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/cli-node@0.3.1-next.0
    • @backstage/config-loader@1.10.10-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/module-federation-common@0.1.2

@backstage/cli-module-config@0.1.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/cli-node@0.3.1-next.0
    • @backstage/config-loader@1.10.10-next.0
    • @backstage/config@1.3.6
    • @backstage/types@1.2.2

@backstage/cli-module-github@0.1.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/cli-node@0.3.1-next.0

@backstage/cli-module-info@0.1.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/cli-node@0.3.1-next.0

@backstage/cli-module-lint@0.1.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/cli-node@0.3.1-next.0

@backstage/cli-module-maintenance@0.1.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/cli-node@0.3.1-next.0

@backstage/cli-module-migrate@0.1.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/cli-node@0.3.1-next.0
    • @backstage/errors@1.2.7
    • @backstage/release-manifests@0.0.13

@backstage/cli-module-new@0.1.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/cli-node@0.3.1-next.0
    • @backstage/errors@1.2.7

@backstage/cli-module-test-jest@0.1.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/cli-node@0.3.1-next.0

@backstage/cli-module-translations@0.1.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/cli-node@0.3.1-next.0

@backstage/cli-node@0.3.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

@backstage/codemods@0.1.56-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0

@backstage/config-loader@1.10.10-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

@backstage/core-app-api@1.19.7-next.0

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/config@1.3.6
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.12

@backstage/core-compat-api@0.5.10-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/plugin-app-react@0.2.2-next.0
    • @backstage/errors@1.2.7
    • @backstage/filter-predicates@0.1.1
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.12

@backstage/core-components@0.18.9-next.0

Patch Changes

  • 320eed3: Resolved DOM nesting warning in OAuthRequestDialog by rendering secondary text as block-level spans.
  • Updated dependencies
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/theme@0.7.2
    • @backstage/version-bridge@1.0.12

@backstage/core-plugin-api@1.12.5-next.0

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.12

@backstage/create-app@0.8.2-next.0

Patch Changes

  • e8ffac1: Various fixes for the create-app template: reorganizing sidebar items, removing redundant config and code, and adding a documentation example.
  • 4cf9f3a: Removed the unnecessary @backstage/cli-module-new dependency from the next-app template, since it is already included through @backstage/cli-defaults.
  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0

@backstage/dev-utils@1.1.22-next.0

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/core-app-api@1.19.7-next.0
    • @backstage/app-defaults@1.7.7-next.0
    • @backstage/integration-react@1.2.17-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/theme@0.7.2

@backstage/frontend-app-api@0.16.2-next.0

Patch Changes

  • 364d4fe: Added apis to BootstrapSpecializedApp and FinalizedSpecializedApp types.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-app-api@1.19.7-next.0
    • @backstage/frontend-defaults@0.5.1-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/filter-predicates@0.1.1
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.12

@backstage/frontend-defaults@0.5.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-app@0.4.3-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/frontend-app-api@0.16.2-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

@backstage/frontend-dev-utils@0.1.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/plugin-app@0.4.3-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/frontend-defaults@0.5.1-next.0

@backstage/frontend-dynamic-feature-loader@0.1.11-next.0

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/config@1.3.6
    • @backstage/module-federation-common@0.1.2

@backstage/frontend-plugin-api@0.15.2-next.0

Patch Changes

  • d66a3ec: Added titleLink prop to PageLayoutProps so the plugin header title can link back to the plugin root.
  • e220589: Removed the unnecessary need to use defineParams callback from PluginHeaderActionBlueprint. It still works, but is no longer required.
  • Updated dependencies
    • @backstage/errors@1.2.7
    • @backstage/filter-predicates@0.1.1
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.12

@backstage/frontend-test-utils@0.5.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-app@0.4.3-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/frontend-app-api@0.16.2-next.0
    • @backstage/core-app-api@1.19.7-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/plugin-app-react@0.2.2-next.0
    • @backstage/test-utils@1.7.17-next.0
    • @backstage/config@1.3.6
    • @backstage/filter-predicates@0.1.1
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.12
    • @backstage/plugin-permission-common@0.9.7
    • @backstage/plugin-permission-react@0.4.42-next.0

@backstage/integration-react@1.2.17-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/config@1.3.6
    • @backstage/integration@2.0.0

@backstage/repo-tools@0.17.1-next.0

Patch Changes

  • 270efef: Added support for packages that only support React 18+ in the peer-deps command.
  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/cli-node@0.3.1-next.0
    • @backstage/config-loader@1.10.10-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/errors@1.2.7

@techdocs/cli@1.10.7-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/backend-defaults@0.16.1-next.0
    • @backstage/plugin-techdocs-node@1.14.5-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6

@backstage/test-utils@1.7.17-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-app-api@1.19.7-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/config@1.3.6
    • @backstage/theme@0.7.2
    • @backstage/types@1.2.2
    • @backstage/plugin-permission-common@0.9.7
    • @backstage/plugin-permission-react@0.4.42-next.0

@backstage/plugin-api-docs@0.13.6-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog@2.0.2-next.0
    • @backstage/ui@0.14.0-next.0
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/plugin-catalog-common@1.1.8
    • @backstage/plugin-permission-react@0.4.42-next.0

@backstage/plugin-app@0.4.3-next.0

Patch Changes

  • d66a3ec: Updated the PageLayout swap to pass a clickable titleLink on the PluginHeader, resolved from the plugin's root route ref.
  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/integration-react@1.2.17-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/plugin-app-react@0.2.2-next.0
    • @backstage/filter-predicates@0.1.1
    • @backstage/theme@0.7.2
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.12
    • @backstage/plugin-permission-react@0.4.42-next.0

@backstage/plugin-app-backend@0.5.13-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/config-loader@1.10.10-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/plugin-app-node@0.1.44-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

@backstage/plugin-app-node@0.1.44-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/config-loader@1.10.10-next.0

@backstage/plugin-app-react@0.2.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-plugin-api@1.12.5-next.0

@backstage/plugin-app-visualizer@0.2.2-next.0

Patch Changes

  • e220589: Updated PluginHeaderActionBlueprint usage to pass params as a plain object.
  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-plugin-api@1.12.5-next.0

@backstage/plugin-auth@0.1.7-next.0

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/errors@1.2.7
    • @backstage/theme@0.7.2

@backstage/plugin-auth-backend-module-atlassian-provider@0.4.14-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0

@backstage/plugin-auth-backend-module-auth0-provider@0.3.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/errors@1.2.7

@backstage/plugin-auth-backend-module-aws-alb-provider@0.4.15-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend@0.28.0-next.0
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/errors@1.2.7

@backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.19-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/errors@1.2.7

@backstage/plugin-auth-backend-module-bitbucket-provider@0.3.14-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0

@backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.14-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0

@backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.14-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

@backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.14-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

@backstage/plugin-auth-backend-module-github-provider@0.5.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0

@backstage/plugin-auth-backend-module-gitlab-provider@0.4.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0

@backstage/plugin-auth-backend-module-google-provider@0.3.14-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0

@backstage/plugin-auth-backend-module-guest-provider@0.2.18-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/errors@1.2.7

@backstage/plugin-auth-backend-module-microsoft-provider@0.3.14-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0

@backstage/plugin-auth-backend-module-oauth2-provider@0.4.14-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0

@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.19-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/errors@1.2.7

@backstage/plugin-auth-backend-module-oidc-provider@0.4.15-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend@0.28.0-next.0
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/config@1.3.6
    • @backstage/types@1.2.2

@backstage/plugin-auth-backend-module-okta-provider@0.2.14-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0

@backstage/plugin-auth-backend-module-onelogin-provider@0.3.14-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0

@backstage/plugin-auth-backend-module-openshift-provider@0.1.6-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/types@1.2.2

@backstage/plugin-auth-backend-module-pinniped-provider@0.3.13-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/config@1.3.6
    • @backstage/types@1.2.2

@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.5.13-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/catalog-model@1.7.7

@backstage/plugin-auth-node@0.6.15-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

@backstage/plugin-auth-react@0.1.26-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.9-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/errors@1.2.7

@backstage/plugin-catalog@2.0.2-next.0

Patch Changes

  • d7b6077: Disabled the default page layout header for the catalog entity page in the new frontend system. The entity page already renders its own header through the EntityHeader extension, so the page layout header was redundant.
  • 744f904: Fixed the catalog table briefly showing an empty loading state when changing filters. The table now keeps displaying stale results until new data arrives.
  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-compat-api@0.5.10-next.0
    • @backstage/integration-react@1.2.17-next.0
    • @backstage/plugin-search-react@1.11.1-next.0
    • @backstage/plugin-techdocs-react@1.3.10-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.12
    • @backstage/plugin-catalog-common@1.1.8
    • @backstage/plugin-permission-react@0.4.42-next.0
    • @backstage/plugin-scaffolder-common@2.0.0
    • @backstage/plugin-search-common@1.2.22
    • @backstage/plugin-techdocs-common@0.1.1

@backstage/plugin-catalog-backend@3.5.1-next.0

Patch Changes

  • 375b546: Fixed a deadlock in the catalog processing loop that occurred when running multiple replicas. The getProcessableEntities method used SELECT ... FOR UPDATE SKIP LOCKED to prevent concurrent processors from claiming the same rows, but the call was not wrapped in a transaction, so the row locks were released before the subsequent UPDATE executed. This allowed multiple replicas to select and update overlapping rows, causing PostgreSQL deadlock errors (code 40P01).
  • 79453c0: Updated dependency wait-for-expect to ^4.0.0.
  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-permission-node@0.10.12-next.0
    • @backstage/backend-openapi-utils@0.6.8-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/filter-predicates@0.1.1
    • @backstage/integration@2.0.0
    • @backstage/types@1.2.2
    • @backstage/plugin-catalog-common@1.1.8
    • @backstage/plugin-permission-common@0.9.7

@backstage/plugin-catalog-backend-module-aws@0.4.22-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.16.1-next.0
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/integration-aws-node@0.1.20
    • @backstage/plugin-catalog-common@1.1.8
    • @backstage/plugin-kubernetes-common@0.9.10

@backstage/plugin-catalog-backend-module-azure@0.3.16-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/config@1.3.6
    • @backstage/integration@2.0.0
    • @backstage/plugin-catalog-common@1.1.8

@backstage/plugin-catalog-backend-module-backstage-openapi@0.5.13-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/backend-openapi-utils@0.6.8-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.5.10-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/integration@2.0.0
    • @backstage/plugin-bitbucket-cloud-common@0.3.8
    • @backstage/plugin-catalog-common@1.1.8

@backstage/plugin-catalog-backend-module-bitbucket-server@0.5.10-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/plugin-catalog-common@1.1.8

@backstage/plugin-catalog-backend-module-gcp@0.3.18-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/plugin-kubernetes-common@0.9.10

@backstage/plugin-catalog-backend-module-gerrit@0.3.13-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/plugin-catalog-common@1.1.8

@backstage/plugin-catalog-backend-module-gitea@0.1.11-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/plugin-catalog-common@1.1.8

@backstage/plugin-catalog-backend-module-github@0.13.1-next.0

Patch Changes

  • edf465f: Removed the type-fest dev dependency, replacing its PartialDeep import with a local helper type in tests.
  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/types@1.2.2
    • @backstage/plugin-catalog-common@1.1.8

@backstage/plugin-catalog-backend-module-github-org@0.3.21-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend-module-github@0.13.1-next.0
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/config@1.3.6

@backstage/plugin-catalog-backend-module-gitlab@0.8.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.16.1-next.0
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/integration@2.0.0
    • @backstage/plugin-catalog-common@1.1.8

@backstage/plugin-catalog-backend-module-gitlab-org@0.2.20-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-backend-module-gitlab@0.8.2-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0

@backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.11-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend@3.5.1-next.0
    • @backstage/backend-defaults@0.16.1-next.0
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-permission-common@0.9.7

@backstage/plugin-catalog-backend-module-ldap@0.12.4-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-catalog-common@1.1.8

@backstage/plugin-catalog-backend-module-logs@0.1.21-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend@3.5.1-next.0
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0

@backstage/plugin-catalog-backend-module-msgraph@0.9.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/plugin-catalog-common@1.1.8

@backstage/plugin-catalog-backend-module-openapi@0.2.21-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/integration@2.0.0
    • @backstage/types@1.2.2
    • @backstage/plugin-catalog-common@1.1.8

@backstage/plugin-catalog-backend-module-puppetdb@0.2.21-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.19-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/plugin-catalog-common@1.1.8
    • @backstage/plugin-scaffolder-common@2.0.0

@backstage/plugin-catalog-backend-module-unprocessed@0.6.10-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/errors@1.2.7
    • @backstage/plugin-catalog-unprocessed-entities-common@0.0.13
    • @backstage/plugin-permission-common@0.9.7

@backstage/plugin-catalog-graph@0.6.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/types@1.2.2

@backstage/plugin-catalog-import@0.13.12-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/integration-react@1.2.17-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/plugin-catalog-common@1.1.8
    • @backstage/plugin-permission-react@0.4.42-next.0

@backstage/plugin-catalog-node@2.1.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/backend-test-utils@1.11.2-next.0
    • @backstage/plugin-permission-node@0.10.12-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-catalog-common@1.1.8
    • @backstage/plugin-permission-common@0.9.7

@backstage/plugin-catalog-react@2.1.1-next.0

Patch Changes

  • 51aacae: Fixed a UI flicker in the catalog entity list where changing a filter would briefly flash stale data before showing the new results.
  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-compat-api@0.5.10-next.0
    • @backstage/frontend-test-utils@0.5.2-next.0
    • @backstage/integration-react@1.2.17-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/errors@1.2.7
    • @backstage/filter-predicates@0.1.1
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.12
    • @backstage/plugin-catalog-common@1.1.8
    • @backstage/plugin-permission-common@0.9.7
    • @backstage/plugin-permission-react@0.4.42-next.0

@backstage/plugin-catalog-unprocessed-entities@0.2.29-next.0

Patch Changes

  • b6f1fae: The unprocessed entities view is now primarily intended for use as a tab within the DevTools plugin. The standalone page is still available but disabled by default. To re-enable it, add the following to your app-config.yaml:

    app:
    extensions:
    - page:catalog-unprocessed-entities
  • Updated dependencies

    • @backstage/ui@0.14.0-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-compat-api@0.5.10-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/errors@1.2.7
    • @backstage/plugin-catalog-unprocessed-entities-common@0.0.13

@backstage/plugin-config-schema@0.1.79-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.9-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

@backstage/plugin-devtools@0.1.38-next.0

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-compat-api@0.5.10-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/errors@1.2.7
    • @backstage/plugin-devtools-common@0.1.23
    • @backstage/plugin-permission-react@0.4.42-next.0

@backstage/plugin-devtools-backend@0.5.16-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/config-loader@1.10.10-next.0
    • @backstage/plugin-permission-node@0.10.12-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-devtools-common@0.1.23
    • @backstage/plugin-permission-common@0.9.7

@backstage/plugin-devtools-react@0.2.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-plugin-api@1.12.5-next.0

@backstage/plugin-events-backend@0.6.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/backend-openapi-utils@0.6.8-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

@backstage/plugin-events-backend-module-aws-sqs@0.4.21-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/config@1.3.6
    • @backstage/types@1.2.2

@backstage/plugin-events-backend-module-azure@0.2.30-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0

@backstage/plugin-events-backend-module-bitbucket-cloud@0.2.30-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0

@backstage/plugin-events-backend-module-bitbucket-server@0.1.11-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0

@backstage/plugin-events-backend-module-gerrit@0.2.30-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0

@backstage/plugin-events-backend-module-github@0.4.11-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/config@1.3.6
    • @backstage/integration@2.0.0
    • @backstage/types@1.2.2

@backstage/plugin-events-backend-module-gitlab@0.3.11-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/config@1.3.6

@backstage/plugin-events-backend-module-google-pubsub@0.2.2-next.0

Patch Changes

  • 79453c0: Updated dependency wait-for-expect to ^4.0.0.
  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/filter-predicates@0.1.1
    • @backstage/types@1.2.2

@backstage/plugin-events-backend-module-kafka@0.3.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/config@1.3.6
    • @backstage/types@1.2.2

@backstage/plugin-events-backend-test-utils@0.1.54-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-events-node@0.4.21-next.0

@backstage/plugin-events-node@0.4.21-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

@backstage/plugin-gateway-backend@1.1.4-next.0

Patch Changes

  • 79453c0: Updated dependency wait-for-expect to ^4.0.0.
  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0

@backstage/plugin-home@0.9.4-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-compat-api@0.5.10-next.0
    • @backstage/core-app-api@1.19.7-next.0
    • @backstage/plugin-home-react@0.1.37-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/theme@0.7.2

@backstage/plugin-home-react@0.1.37-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-compat-api@0.5.10-next.0
    • @backstage/core-plugin-api@1.12.5-next.0

@backstage/plugin-kubernetes@0.12.18-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/plugin-kubernetes-react@0.5.18-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/plugin-kubernetes-common@0.9.10
    • @backstage/plugin-permission-react@0.4.42-next.0

@backstage/plugin-kubernetes-backend@0.21.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-kubernetes-node@0.4.3-next.0
    • @backstage/plugin-permission-node@0.10.12-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration-aws-node@0.1.20
    • @backstage/types@1.2.2
    • @backstage/plugin-kubernetes-common@0.9.10
    • @backstage/plugin-permission-common@0.9.7

@backstage/plugin-kubernetes-cluster@0.0.36-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/plugin-kubernetes-react@0.5.18-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/plugin-kubernetes-common@0.9.10
    • @backstage/plugin-permission-react@0.4.42-next.0

@backstage/plugin-kubernetes-node@0.4.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/types@1.2.2
    • @backstage/plugin-kubernetes-common@0.9.10

@backstage/plugin-kubernetes-react@0.5.18-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.9-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-kubernetes-common@0.9.10

@backstage/plugin-mcp-actions-backend@0.1.11-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

@backstage/plugin-mui-to-bui@0.2.6-next.0

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/theme@0.7.2

@backstage/plugin-notifications@0.5.16-next.0

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/errors@1.2.7
    • @backstage/theme@0.7.2
    • @backstage/plugin-notifications-common@0.2.1
    • @backstage/plugin-signals-react@0.0.21-next.0

@backstage/plugin-notifications-backend@0.6.4-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/plugin-notifications-node@0.2.25-next.0
    • @backstage/plugin-signals-node@0.1.30-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-notifications-common@0.2.1

@backstage/plugin-notifications-backend-module-email@0.3.20-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/plugin-notifications-node@0.2.25-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/integration-aws-node@0.1.20
    • @backstage/types@1.2.2
    • @backstage/plugin-notifications-common@0.2.1

@backstage/plugin-notifications-backend-module-slack@0.4.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/plugin-notifications-node@0.2.25-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-notifications-common@0.2.1

@backstage/plugin-notifications-node@0.2.25-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-signals-node@0.1.30-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/plugin-notifications-common@0.2.1

@backstage/plugin-org@0.7.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/plugin-catalog-common@1.1.8

@backstage/plugin-org-react@0.1.49-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7

@backstage/plugin-permission-backend@0.7.11-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/plugin-permission-node@0.10.12-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/plugin-permission-common@0.9.7

@backstage/plugin-permission-backend-module-allow-all-policy@0.2.18-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/plugin-permission-node@0.10.12-next.0
    • @backstage/plugin-permission-common@0.9.7

@backstage/plugin-permission-node@0.10.12-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/plugin-permission-common@0.9.7

@backstage/plugin-permission-react@0.4.42-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/config@1.3.6
    • @backstage/plugin-permission-common@0.9.7

@backstage/plugin-proxy-backend@0.6.12-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-proxy-node@0.1.14-next.0
    • @backstage/types@1.2.2

@backstage/plugin-proxy-node@0.1.14-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0

@backstage/plugin-scaffolder@1.36.2-next.0

Patch Changes

  • 4cc9af2: Fixed the layout of the scaffolder plugin in the new frontend system to use the new page layout.
  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/plugin-scaffolder-react@1.20.1-next.0
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/integration-react@1.2.17-next.0
    • @backstage/plugin-techdocs-react@1.3.10-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/types@1.2.2
    • @backstage/plugin-catalog-common@1.1.8
    • @backstage/plugin-permission-react@0.4.42-next.0
    • @backstage/plugin-scaffolder-common@2.0.0
    • @backstage/plugin-techdocs-common@0.1.1

@backstage/plugin-scaffolder-backend@3.2.1-next.0

Patch Changes

  • 79453c0: Updated dependency wait-for-expect to ^4.0.0.
  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-permission-node@0.10.12-next.0
    • @backstage/backend-openapi-utils@0.6.8-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/types@1.2.2
    • @backstage/plugin-permission-common@0.9.7
    • @backstage/plugin-scaffolder-common@2.0.0

@backstage/plugin-scaffolder-backend-module-azure@0.2.20-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0

@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.3.5-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/plugin-bitbucket-cloud-common@0.3.8

@backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.20-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0

@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.20-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0

@backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.22-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.16.1-next.0
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/types@1.2.2

@backstage/plugin-scaffolder-backend-module-gcp@0.2.20-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0

@backstage/plugin-scaffolder-backend-module-gerrit@0.2.20-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0

@backstage/plugin-scaffolder-backend-module-gitea@0.2.20-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0

@backstage/plugin-scaffolder-backend-module-github@0.9.8-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/types@1.2.2

@backstage/plugin-scaffolder-backend-module-gitlab@0.11.5-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0

@backstage/plugin-scaffolder-backend-module-notifications@0.1.21-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-notifications-node@0.2.25-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/plugin-notifications-common@0.2.1

@backstage/plugin-scaffolder-backend-module-rails@0.5.20-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/types@1.2.2

@backstage/plugin-scaffolder-backend-module-sentry@0.3.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

@backstage/plugin-scaffolder-backend-module-yeoman@0.4.21-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/plugin-scaffolder-node-test-utils@0.3.10-next.0
    • @backstage/types@1.2.2

@backstage/plugin-scaffolder-node@0.13.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/backend-test-utils@1.11.2-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/types@1.2.2
    • @backstage/plugin-permission-common@0.9.7
    • @backstage/plugin-scaffolder-common@2.0.0

@backstage/plugin-scaffolder-node-test-utils@0.3.10-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/backend-test-utils@1.11.2-next.0
    • @backstage/plugin-scaffolder-node@0.13.1-next.0
    • @backstage/types@1.2.2

@backstage/plugin-scaffolder-react@1.20.1-next.0

Patch Changes

  • bdbbf00: build(deps): bump flatted from 3.4.1 to 3.4.2
  • Updated dependencies
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/frontend-test-utils@0.5.2-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/theme@0.7.2
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.12
    • @backstage/plugin-permission-react@0.4.42-next.0
    • @backstage/plugin-scaffolder-common@2.0.0

@backstage/plugin-search@1.7.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/plugin-search-react@1.11.1-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.12
    • @backstage/plugin-search-common@1.2.22

@backstage/plugin-search-backend@2.1.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-permission-node@0.10.12-next.0
    • @backstage/plugin-search-backend-node@1.4.3-next.0
    • @backstage/backend-openapi-utils@0.6.8-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-permission-common@0.9.7
    • @backstage/plugin-search-common@1.2.22

@backstage/plugin-search-backend-module-catalog@0.3.14-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-search-backend-node@1.4.3-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/plugin-catalog-common@1.1.8
    • @backstage/plugin-permission-common@0.9.7
    • @backstage/plugin-search-common@1.2.22

@backstage/plugin-search-backend-module-elasticsearch@1.8.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-search-backend-node@1.4.3-next.0
    • @backstage/config@1.3.6
    • @backstage/integration-aws-node@0.1.20
    • @backstage/plugin-search-common@1.2.22

@backstage/plugin-search-backend-module-explore@0.3.13-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-search-backend-node@1.4.3-next.0
    • @backstage/config@1.3.6
    • @backstage/plugin-search-common@1.2.22

@backstage/plugin-search-backend-module-pg@0.5.54-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-search-backend-node@1.4.3-next.0
    • @backstage/config@1.3.6
    • @backstage/plugin-search-common@1.2.22

@backstage/plugin-search-backend-module-stack-overflow-collator@0.3.19-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-search-backend-node@1.4.3-next.0
    • @backstage/config@1.3.6
    • @backstage/plugin-search-common@1.2.22

@backstage/plugin-search-backend-module-techdocs@0.4.13-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-search-backend-node@1.4.3-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/plugin-techdocs-node@1.14.5-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/plugin-catalog-common@1.1.8
    • @backstage/plugin-permission-common@0.9.7
    • @backstage/plugin-search-common@1.2.22

@backstage/plugin-search-backend-node@1.4.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/plugin-permission-common@0.9.7
    • @backstage/plugin-search-common@1.2.22

@backstage/plugin-search-react@1.11.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/theme@0.7.2
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.12
    • @backstage/plugin-search-common@1.2.22

@backstage/plugin-signals@0.0.30-next.0

Patch Changes

  • 79453c0: Updated dependency wait-for-expect to ^4.0.0.
  • Updated dependencies
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/theme@0.7.2
    • @backstage/types@1.2.2
    • @backstage/plugin-signals-react@0.0.21-next.0

@backstage/plugin-signals-backend@0.3.14-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/plugin-signals-node@0.1.30-next.0
    • @backstage/config@1.3.6
    • @backstage/types@1.2.2

@backstage/plugin-signals-node@0.1.30-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/plugin-events-node@0.4.21-next.0
    • @backstage/config@1.3.6
    • @backstage/types@1.2.2

@backstage/plugin-signals-react@0.0.21-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/types@1.2.2

@backstage/plugin-techdocs@1.17.3-next.0

Patch Changes

  • dc3cc87: Migrated the TechDocs alpha plugin pages to use BUI components. The index page and reader page now use BUI Header and Container instead of legacy Page/Content/ContentHeader wrappers. Added a SupportButton as a plugin header action. Changed plugin title to "Documentation" and icon to RiArticleLine.
  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/integration-react@1.2.17-next.0
    • @backstage/plugin-auth-react@0.1.26-next.0
    • @backstage/plugin-search-react@1.11.1-next.0
    • @backstage/plugin-techdocs-react@1.3.10-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/theme@0.7.2
    • @backstage/plugin-search-common@1.2.22
    • @backstage/plugin-techdocs-common@0.1.1

@backstage/plugin-techdocs-addons-test-utils@2.0.4-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog@2.0.2-next.0
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/plugin-techdocs@1.17.3-next.0
    • @backstage/core-app-api@1.19.7-next.0
    • @backstage/integration-react@1.2.17-next.0
    • @backstage/plugin-search-react@1.11.1-next.0
    • @backstage/plugin-techdocs-react@1.3.10-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/test-utils@1.7.17-next.0

@backstage/plugin-techdocs-backend@2.1.7-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-catalog-node@2.1.1-next.0
    • @backstage/plugin-techdocs-node@1.14.5-next.0
    • @backstage/catalog-client@1.14.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/types@1.2.2

@backstage/plugin-techdocs-module-addons-contrib@1.1.35-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/integration-react@1.2.17-next.0
    • @backstage/plugin-techdocs-react@1.3.10-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/integration@2.0.0

@backstage/plugin-techdocs-node@1.14.5-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration@2.0.0
    • @backstage/integration-aws-node@0.1.20
    • @backstage/plugin-search-common@1.2.22
    • @backstage/plugin-techdocs-common@0.1.1

@backstage/plugin-techdocs-react@1.3.10-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/version-bridge@1.0.12
    • @backstage/plugin-techdocs-common@0.1.1

@backstage/plugin-user-settings@0.9.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.14.0-next.0
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-app-api@1.19.7-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/errors@1.2.7
    • @backstage/theme@0.7.2
    • @backstage/types@1.2.2
    • @backstage/plugin-signals-react@0.0.21-next.0
    • @backstage/plugin-user-settings-common@0.1.0

@backstage/plugin-user-settings-backend@0.4.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/plugin-signals-node@0.1.30-next.0
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-user-settings-common@0.1.0

example-app@0.0.34-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog@2.0.2-next.0
    • @backstage/ui@0.14.0-next.0
    • @backstage/plugin-scaffolder-react@1.20.1-next.0
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/plugin-techdocs@1.17.3-next.0
    • @backstage/plugin-app@0.4.3-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/plugin-signals@0.0.30-next.0
    • @backstage/plugin-scaffolder@1.36.2-next.0
    • @backstage/frontend-app-api@0.16.2-next.0
    • @backstage/plugin-catalog-unprocessed-entities@0.2.29-next.0
    • @backstage/plugin-app-visualizer@0.2.2-next.0
    • @backstage/core-compat-api@0.5.10-next.0
    • @backstage/plugin-api-docs@0.13.6-next.0
    • @backstage/plugin-catalog-graph@0.6.1-next.0
    • @backstage/plugin-catalog-import@0.13.12-next.0
    • @backstage/plugin-home@0.9.4-next.0
    • @backstage/plugin-org@0.7.1-next.0
    • @backstage/plugin-user-settings@0.9.2-next.0
    • @backstage/core-app-api@1.19.7-next.0
    • @backstage/plugin-auth@0.1.7-next.0
    • @backstage/plugin-devtools@0.1.38-next.0
    • @backstage/plugin-notifications@0.5.16-next.0
    • @backstage/plugin-search@1.7.1-next.0
    • @backstage/cli@0.36.1-next.0
    • @backstage/plugin-kubernetes@0.12.18-next.0
    • @backstage/plugin-kubernetes-cluster@0.0.36-next.0
    • @backstage/plugin-techdocs-module-addons-contrib@1.1.35-next.0
    • @backstage/frontend-defaults@0.5.1-next.0
    • @backstage/app-defaults@1.7.7-next.0
    • @backstage/integration-react@1.2.17-next.0
    • @backstage/plugin-auth-react@0.1.26-next.0
    • @backstage/plugin-home-react@0.1.37-next.0
    • @backstage/plugin-search-react@1.11.1-next.0
    • @backstage/plugin-techdocs-react@1.3.10-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/plugin-app-react@0.2.2-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/theme@0.7.2
    • @backstage/plugin-catalog-common@1.1.8
    • @backstage/plugin-permission-react@0.4.42-next.0
    • @backstage/plugin-search-common@1.2.22

app-example-plugin@0.0.34-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0

example-app-legacy@0.2.120-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog@2.0.2-next.0
    • @backstage/ui@0.14.0-next.0
    • @backstage/plugin-scaffolder-react@1.20.1-next.0
    • @backstage/plugin-catalog-react@2.1.1-next.0
    • @backstage/plugin-techdocs@1.17.3-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/plugin-signals@0.0.30-next.0
    • @backstage/plugin-scaffolder@1.36.2-next.0
    • @backstage/frontend-app-api@0.16.2-next.0
    • @backstage/plugin-catalog-unprocessed-entities@0.2.29-next.0
    • @backstage/plugin-api-docs@0.13.6-next.0
    • @backstage/plugin-catalog-graph@0.6.1-next.0
    • @backstage/plugin-catalog-import@0.13.12-next.0
    • @backstage/plugin-home@0.9.4-next.0
    • @backstage/plugin-org@0.7.1-next.0
    • @backstage/plugin-user-settings@0.9.2-next.0
    • @backstage/core-app-api@1.19.7-next.0
    • @backstage/plugin-devtools@0.1.38-next.0
    • @backstage/plugin-mui-to-bui@0.2.6-next.0
    • @backstage/plugin-notifications@0.5.16-next.0
    • @backstage/plugin-search@1.7.1-next.0
    • @backstage/cli@0.36.1-next.0
    • @backstage/plugin-kubernetes@0.12.18-next.0
    • @backstage/plugin-kubernetes-cluster@0.0.36-next.0
    • @backstage/plugin-techdocs-module-addons-contrib@1.1.35-next.0
    • @backstage/app-defaults@1.7.7-next.0
    • @backstage/integration-react@1.2.17-next.0
    • @backstage/plugin-auth-react@0.1.26-next.0
    • @backstage/plugin-home-react@0.1.37-next.0
    • @backstage/plugin-search-react@1.11.1-next.0
    • @backstage/plugin-techdocs-react@1.3.10-next.0
    • @backstage/core-plugin-api@1.12.5-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/theme@0.7.2
    • @backstage/plugin-catalog-common@1.1.8
    • @backstage/plugin-permission-react@0.4.42-next.0
    • @backstage/plugin-search-common@1.2.22

example-backend@0.0.49-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend@3.5.1-next.0
    • @backstage/plugin-auth-backend@0.28.0-next.0
    • @backstage/backend-defaults@0.16.1-next.0
    • @backstage/plugin-events-backend-module-google-pubsub@0.2.2-next.0
    • @backstage/plugin-scaffolder-backend@3.2.1-next.0
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/plugin-devtools-backend@0.5.16-next.0
    • @backstage/plugin-catalog-backend-module-logs@0.1.21-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.5.2-next.0
    • @backstage/plugin-auth-backend-module-openshift-provider@0.1.6-next.0
    • @backstage/plugin-notifications-backend@0.6.4-next.0
    • @backstage/plugin-signals-backend@0.3.14-next.0
    • @backstage/plugin-app-backend@0.5.13-next.0
    • @backstage/plugin-auth-node@0.6.15-next.0
    • @backstage/plugin-events-backend@0.6.1-next.0
    • @backstage/plugin-kubernetes-backend@0.21.3-next.0
    • @backstage/plugin-mcp-actions-backend@0.1.11-next.0
    • @backstage/plugin-permission-backend@0.7.11-next.0
    • @backstage/plugin-permission-node@0.10.12-next.0
    • @backstage/plugin-proxy-backend@0.6.12-next.0
    • @backstage/plugin-search-backend@2.1.1-next.0
    • @backstage/plugin-search-backend-node@1.4.3-next.0
    • @backstage/plugin-techdocs-backend@2.1.7-next.0
    • @backstage/plugin-auth-backend-module-guest-provider@0.2.18-next.0
    • @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.13-next.0
    • @backstage/plugin-catalog-backend-module-openapi@0.2.21-next.0
    • @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.19-next.0
    • @backstage/plugin-catalog-backend-module-unprocessed@0.6.10-next.0
    • @backstage/plugin-permission-backend-module-allow-all-policy@0.2.18-next.0
    • @backstage/plugin-scaffolder-backend-module-github@0.9.8-next.0
    • @backstage/plugin-scaffolder-backend-module-notifications@0.1.21-next.0
    • @backstage/plugin-search-backend-module-catalog@0.3.14-next.0
    • @backstage/plugin-search-backend-module-elasticsearch@1.8.2-next.0
    • @backstage/plugin-search-backend-module-explore@0.3.13-next.0
    • @backstage/plugin-search-backend-module-techdocs@0.4.13-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/plugin-permission-common@0.9.7

@internal/cli@0.0.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-node@0.3.1-next.0

e2e-test@0.2.39-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/create-app@0.8.2-next.0
    • @backstage/errors@1.2.7

@internal/frontend@0.0.19-next.0

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/filter-predicates@0.1.1
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.12

@internal/scaffolder@0.0.20-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-react@1.20.1-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0

techdocs-cli-embedded-app@0.2.119-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog@2.0.2-next.0
    • @backstage/ui@0.14.0-next.0
    • @backstage/plugin-techdocs@1.17.3-next.0
    • @backstage/core-components@0.18.9-next.0
    • @backstage/frontend-plugin-api@0.15.2-next.0
    • @backstage/core-app-api@1.19.7-next.0
    • @backstage/cli@0.36.1-next.0
    • @backstage/frontend-defaults@0.5.1-next.0
    • @backstage/integration-react@1.2.17-next.0
    • @backstage/plugin-techdocs-react@1.3.10-next.0
    • @backstage/plugin-app-react@0.2.2-next.0
    • @backstage/test-utils@1.7.17-next.0
    • @backstage/catalog-model@1.7.7
    • @backstage/config@1.3.6
    • @backstage/theme@0.7.2

yarn-plugin-backstage@0.0.11-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli-common@0.2.1-next.0
    • @backstage/errors@1.2.7
    • @backstage/release-manifests@0.0.13

@internal/plugin-todo-list@1.0.50-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.9-next.0
    • @backstage/core-plugin-api@1.12.5-next.0

@internal/plugin-todo-list-backend@1.0.49-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.8.1-next.0
    • @backstage/errors@1.2.7