Skip to main content
Version: Next

Release v1.48.0-next.0

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

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

Minor Changes

  • f1d29b4: Added support for extension point factories, along with the ability to report module startup failures via the extension point factory context.

Patch Changes

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

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

Minor Changes

  • f1d29b4: Added support for extension point factories. This makes it possible to call registerExtensionPoint with a single options argument and provide a factory for the extension point rather than a direct implementation. The factory is passed a context with a reportModuleStartupFailure method that makes it possible for plugins to report and attribute startup errors to the module that consumed the extension point.

Patch Changes

  • 7455dae: Use node prefix on native imports
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/cli-common@0.1.18-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/plugin-permission-node@0.10.9-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Minor Changes

  • c38b74d: BREAKING: The following blueprints have been removed and are now only available from @backstage/plugin-app-react:

    • IconBundleBlueprint
    • NavContentBlueprint
    • RouterBlueprint
    • SignInPageBlueprint
    • SwappableComponentBlueprint
    • ThemeBlueprint
    • TranslationBlueprint

Patch Changes

  • 7edb810: Added a new internal option to createExtensionInput that marks the input as only allowing attachments from the same plugin.

  • 9554c36: DEPRECATED: Multiple attachment points for extensions have been deprecated. The functionality continues to work for backward compatibility, but will log a deprecation warning and be removed in a future release.

    Extensions using array attachment points should migrate to using Utility APIs instead. See the Sharing Extensions Across Multiple Locations guide for the recommended pattern.

  • 53b6549: Plugins in the new frontend system now have a pluginId field rather than id to better align with naming conventions used throughout the frontend and backend systems. The old field is still present but marked as deprecated. All internal code has been updated to prefer pluginId while maintaining backward compatibility by falling back to id when needed.

  • 69d880e: Bump to latest zod to ensure it has the latest features

  • Updated dependencies

    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.11

@backstage/ui@0.12.0-next.0

Minor Changes

  • b1f723b: BREAKING: Changed CSS selectors for ButtonIcon and ButtonLink components. Custom styles targeting .bui-Button to style these components must be updated to use .bui-ButtonIcon or .bui-ButtonLink respectively.

    -/* This no longer styles ButtonIcon or ButtonLink */
    -.bui-Button[data-variant="primary"] { ... }
    +/* Use component-specific selectors */
    +.bui-ButtonIcon[data-variant="primary"] { ... }
    +.bui-ButtonLink[data-variant="primary"] { ... }

    Affected components: ButtonIcon, ButtonLink

  • caeb9ad: BREAKING: The cell and header properties in ColumnConfig now return ReactElement instead of ReactNode.

    This fixes an issue where React Aria's Collection component would inject an id prop into Fragment wrappers, causing "Invalid prop id supplied to React.Fragment" errors on render.

    Migration:

    const columns: ColumnConfig<MyItem>[] = [
    {
    id: 'name',
    label: 'Name',
    - cell: (item) => item.name,
    + cell: (item) => <CellText title={item.name} />,
    - header: () => 'Name',
    + header: () => <Column>Name</Column>,
    },
    ];

Patch Changes

  • 350c948: Fixed Box component to forward HTML attributes to the underlying div element.

    Affected components: Box

  • 7455dae: Use node prefix on native imports

  • 508bd1a: Added new Alert component with support for status variants (info, success, warning, danger), icons, loading states, and custom actions.

    Updated status color tokens for improved contrast and consistency across light and dark themes:

    • Added new --bui-bg-info and --bui-fg-info tokens for info status
    • Updated --bui-bg-danger, --bui-fg-danger tokens
    • Updated --bui-bg-warning, --bui-fg-warning tokens
    • Updated --bui-bg-success, --bui-fg-success tokens

    Affected components: Alert

  • da30862: Fixed client-side navigation for container components by wrapping the container (not individual items) in RouterProvider. Components now conditionally provide routing context only when children have internal links, removing the Router context requirement when not needed. This also removes the need to wrap these components in MemoryRouter during tests when they are not using the href prop.

    Additionally, when multiple tabs match the current URL via prefix matching, the tab with the most specific path (highest segment count) is now selected. For example, with URL /catalog/users/john, a tab with path /catalog/users is now selected over a tab with path /catalog.

    Affected components: Tabs, Tab, TagGroup, Tag, Menu, MenuItem, MenuAutocomplete

  • 092c453: Fixed an infinite render loop in Tabs when navigating to a URL that doesn't match any tab href.

  • 5320aa8: Fixed components to not require a Router context when rendering without internal links.

    Affected components: Link, ButtonLink, Row

  • cb090b4: Bump react-aria-components to v1.14.0

  • c429101: Fixed React 17 compatibility by using useId from react-aria instead of the built-in React hook which is only available in React 18+.

  • Updated dependencies

    • @backstage/version-bridge@1.0.11

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

Minor Changes

  • 7edb810: BREAKING: Extensions created with the following blueprints must now be provided via an override or a module for the app plugin. Extensions from other plugins will now trigger a warning in the app and be ignored.

    • IconBundleBlueprint
    • NavContentBlueprint
    • RouterBlueprint
    • SignInPageBlueprint
    • SwappableComponentBlueprint
    • ThemeBlueprint
    • TranslationBlueprint

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/core-components@0.18.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/plugin-app-react@0.1.1-next.0
    • @backstage/integration-react@1.2.15-next.0
    • @backstage/theme@0.7.1
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.11
    • @backstage/plugin-permission-react@0.4.40-next.0

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

Minor Changes

  • 36804fe: feat: Added organization option to authorization params of the strategy

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0

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

Minor Changes

  • ff07934: Added the userIdMatchingUserEntityAnnotation sign-in resolver that matches users by their GitHub user ID.

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0

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

Minor Changes

  • ff07934: Added the {gitlab-integration-host}/user-id annotation to store GitLab's user ID (immutable) in user entities. Also includes addition of the userIdMatchingUserEntityAnnotation sign-in resolver that matches users by the new ID.

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0

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

Minor Changes

  • f1d29b4: Failures to connect catalog providers are now attributed to the module that provided the failing provider. This means that such failures will be reported as module startup failures rather than a failure to start the catalog plugin, and will therefore respect onPluginModuleBootFailure configuration instead.

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • 7455dae: Use node prefix on native imports
  • 1e669cc: Migrate audit events reference docs to http://backstage.io/docs.
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-openapi-utils@0.6.6-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/plugin-permission-node@0.10.9-next.0
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-catalog-common@1.1.8-next.0

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

Minor Changes

  • ff07934: Added the {gitlab-integration-host}/user-id annotation to store GitLab's user ID (immutable) in user entities. Also includes addition of the userIdMatchingUserEntityAnnotation sign-in resolver that matches users by the new ID.

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/backend-defaults@0.15.1-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/plugin-catalog-common@1.1.8-next.0

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

Minor Changes

  • cfd8103: Promoted stable catalog extension points from alpha to main export. The following extension points are now exported from @backstage/plugin-catalog-node instead of @backstage/plugin-catalog-node/alpha:

    • catalogLocationsExtensionPoint and CatalogLocationsExtensionPoint
    • catalogProcessingExtensionPoint and CatalogProcessingExtensionPoint
    • catalogAnalysisExtensionPoint and CatalogAnalysisExtensionPoint

    The old alpha exports for these extension points are now deprecated with @deprecated markers pointing to the new stable exports. Please update your imports from @backstage/plugin-catalog-node/alpha to @backstage/plugin-catalog-node.

    Note: The catalogModelExtensionPoint, catalogPermissionExtensionPoint, and related types remain in alpha.

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/plugin-permission-node@0.10.9-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-catalog-common@1.1.8-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.6-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/core-app-api@1.19.4-next.0
    • @backstage/theme@0.7.1
    • @backstage/plugin-permission-react@0.4.40-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • 44f5d04: Minor internal restructure of the postgres config loading code
  • 4fc7bf0: Bump to tar v7
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/integration-aws-node@0.1.20-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/backend-dev-utils@0.1.7-next.0
    • @backstage/config-loader@1.10.8-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/cli-node@0.2.17-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/backend-app-api@1.5.0-next.0
    • @backstage/plugin-permission-node@0.10.9-next.0
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

@backstage/backend-dev-utils@0.1.7-next.0

Patch Changes

  • 7455dae: Use node prefix on native imports

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-catalog-backend@3.4.0-next.0
    • @backstage/backend-openapi-utils@0.6.6-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-search-backend-node@1.4.1-next.0
    • @backstage/backend-defaults@0.15.1-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/config-loader@1.10.8-next.0
    • @backstage/plugin-events-backend@0.5.11-next.0
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/cli-common@0.1.18-next.0
    • @backstage/cli-node@0.2.17-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/plugin-app-node@0.1.42-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/plugin-permission-node@0.10.9-next.0
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

  • f1d29b4: Updated startTestBackend to support factory-based extension points (v1.1 format) in addition to the existing direct implementation format.
  • 7455dae: Use node prefix on native imports
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/backend-defaults@0.15.1-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/backend-app-api@1.5.0-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

@backstage/cli@0.35.3-next.0

Patch Changes

  • cfd8103: Updated catalog provider module template to use stable catalog extension points from @backstage/plugin-catalog-node instead of alpha exports.
  • 7455dae: Use node prefix on native imports
  • 4fc7bf0: Bump to tar v7
  • 122d39c: Completely removed support for the deprecated app.experimental.packages configuration. Replace existing usage directly with app.packages.
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/config-loader@1.10.8-next.0
    • @backstage/eslint-plugin@0.2.1-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/cli-common@0.1.18-next.0
    • @backstage/cli-node@0.2.17-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/release-manifests@0.0.13
    • @backstage/types@1.2.2

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/errors@1.2.7

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/cli-common@0.1.18-next.0
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

@backstage/codemods@0.1.54-next.0

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/cli-common@0.1.18-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/cli-common@0.1.18-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/config@1.3.6
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.11

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

Patch Changes

  • c38b74d: Internal updates for blueprint moves to @backstage/plugin-app-react.
  • 53b6549: Plugins in the new frontend system now have a pluginId field rather than id to better align with naming conventions used throughout the frontend and backend systems. The old field is still present but marked as deprecated. All internal code has been updated to prefer pluginId while maintaining backward compatibility by falling back to id when needed.
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/plugin-app-react@0.1.1-next.0
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.11

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • cebfea7: Removed link styles from LinkButton to avoid styling inconsistencies related to import order.
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/theme@0.7.1
    • @backstage/version-bridge@1.0.11

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

Patch Changes

  • 53b6549: Plugins in the new frontend system now have a pluginId field rather than id to better align with naming conventions used throughout the frontend and backend systems. The old field is still present but marked as deprecated. All internal code has been updated to prefer pluginId while maintaining backward compatibility by falling back to id when needed.
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.11

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • c38b74d: Switched next-app template to use blueprint from @backstage/plugin-app-react.
  • Updated dependencies
    • @backstage/cli-common@0.1.18-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/ui@0.12.0-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/core-app-api@1.19.4-next.0
    • @backstage/app-defaults@1.7.5-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/integration-react@1.2.15-next.0
    • @backstage/theme@0.7.1

@backstage/e2e-test-utils@0.1.2-next.0

Patch Changes

  • 7455dae: Use node prefix on native imports

@backstage/eslint-plugin@0.2.1-next.0

Patch Changes

  • 7455dae: Use node prefix on native imports

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

Patch Changes

  • 17e0eb3: Updated the behavior of the new API override logic to log a deprecation warning instead of rejecting the override and blocking app startup, as was originally intended.

  • 7edb810: Implemented support for the internal extension input option.

  • 492503a: Updated error reporting and app tree resolution logic to attribute errors to the correct extension and allow app startup to proceed more optimistically:

    • If an attachment fails to provide the required input data, the error is now attributed to the attachment rather than the parent extension.
    • Singleton extension inputs will now only forward attachment errors if the input is required.
    • Array extension inputs will now filter out failed attachments instead of failing the entire app tree resolution.
  • 122d39c: Completely removed support for the deprecated app.experimental.packages configuration. Replace existing usage directly with app.packages.

  • 9554c36: DEPRECATED: Deprecated support for multiple attachment points.

  • 53b6549: Plugins in the new frontend system now have a pluginId field rather than id to better align with naming conventions used throughout the frontend and backend systems. The old field is still present but marked as deprecated. All internal code has been updated to prefer pluginId while maintaining backward compatibility by falling back to id when needed.

  • 69d880e: Bump to latest zod to ensure it has the latest features

  • Updated dependencies

    • @backstage/frontend-defaults@0.3.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/core-app-api@1.19.4-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.11

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

Patch Changes

  • 17e0eb3: The API_FACTORY_CONFLICT error is now treated as a warning and will not prevent the app from starting.
  • 122d39c: Completely removed support for the deprecated app.experimental.packages configuration. Replace existing usage directly with app.packages.
  • c38b74d: Dependency update for tests.
  • 53b6549: Plugins in the new frontend system now have a pluginId field rather than id to better align with naming conventions used throughout the frontend and backend systems. The old field is still present but marked as deprecated. All internal code has been updated to prefer pluginId while maintaining backward compatibility by falling back to id when needed.
  • Updated dependencies
    • @backstage/frontend-app-api@0.14.1-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/plugin-app@0.4.0-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

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

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/config@1.3.6

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

Patch Changes

  • d7dd5bd: Fixed Router deprecation warning and switched to using new RouterBlueprint from @backstage/plugin-app-api.
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/frontend-app-api@0.14.1-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/plugin-app@0.4.0-next.0
    • @backstage/plugin-app-react@0.1.1-next.0
    • @backstage/config@1.3.6
    • @backstage/test-utils@1.7.15-next.0
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.11

@backstage/integration@1.19.3-next.0

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

@backstage/integration-aws-node@0.1.20-next.0

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

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

Patch Changes

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

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

Patch Changes

  • cd75ed0: Add newline to OpenAPI license template files.
  • 7455dae: Use node prefix on native imports
  • 4fc7bf0: Bump to tar v7
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/config-loader@1.10.8-next.0
    • @backstage/cli-common@0.1.18-next.0
    • @backstage/cli-node@0.2.17-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/errors@1.2.7

@techdocs/cli@1.10.5-next.0

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-defaults@0.15.1-next.0
    • @backstage/plugin-techdocs-node@1.14.1-next.0
    • @backstage/cli-common@0.1.18-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6

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

Patch Changes

  • Updated dependencies
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/core-app-api@1.19.4-next.0
    • @backstage/config@1.3.6
    • @backstage/theme@0.7.1
    • @backstage/types@1.2.2
    • @backstage/plugin-permission-react@0.4.40-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/plugin-catalog@1.32.3-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/plugin-catalog-common@1.1.8-next.0
    • @backstage/plugin-permission-react@0.4.40-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/config-loader@1.10.8-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/plugin-app-node@0.1.42-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/config-loader@1.10.8-next.0

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

Patch Changes

  • 409af72: Internal refactor to move implementation of blueprints from @backstage/frontend-plugin-api to this package.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0

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

Patch Changes

  • cb090b4: Bump react-aria-components to v1.14.0
  • c38b74d: Internal updates for blueprint moves to @backstage/plugin-app-react.
  • 4d50e1f: Improved rendering performance of the details page.
  • Updated dependencies
    • @backstage/ui@0.12.0-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/errors@1.2.7
    • @backstage/theme@0.7.1

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-backend@0.26.1-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/errors@1.2.7

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/errors@1.2.7

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

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0

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

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0

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

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

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

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/errors@1.2.7

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

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0

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

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/errors@1.2.7

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-backend@0.26.1-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/config@1.3.6
    • @backstage/types@1.2.2

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

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0

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

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/types@1.2.2

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/config@1.3.6
    • @backstage/types@1.2.2

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/catalog-model@1.7.6

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

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

@backstage/plugin-bitbucket-cloud-common@0.3.7-next.0

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/integration@1.19.3-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/core-compat-api@0.5.7-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/plugin-techdocs-react@1.3.8-next.0
    • @backstage/plugin-search-react@1.10.3-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/errors@1.2.7
    • @backstage/integration-react@1.2.15-next.0
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.11
    • @backstage/plugin-catalog-common@1.1.8-next.0
    • @backstage/plugin-permission-react@0.4.40-next.0
    • @backstage/plugin-scaffolder-common@1.7.6-next.0
    • @backstage/plugin-techdocs-common@0.1.1

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

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/integration-aws-node@0.1.20-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/backend-defaults@0.15.1-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/plugin-catalog-common@1.1.8-next.0
    • @backstage/plugin-kubernetes-common@0.9.10-next.0

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

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/config@1.3.6
    • @backstage/plugin-catalog-common@1.1.8-next.0

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

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-openapi-utils@0.6.6-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

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

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/plugin-bitbucket-cloud-common@0.3.7-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/plugin-catalog-common@1.1.8-next.0

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

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/plugin-catalog-common@1.1.8-next.0

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

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/plugin-kubernetes-common@0.9.10-next.0

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

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/plugin-catalog-common@1.1.8-next.0

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

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/plugin-catalog-common@1.1.8-next.0

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

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/plugin-catalog-common@1.1.8-next.0

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

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • Updated dependencies
    • @backstage/plugin-catalog-backend-module-github@0.12.2-next.0
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/config@1.3.6

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

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • Updated dependencies
    • @backstage/plugin-catalog-backend-module-gitlab@0.8.0-next.0
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-events-node@0.4.19-next.0

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

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-catalog-backend@3.4.0-next.0
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/backend-defaults@0.15.1-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-catalog-common@1.1.8-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend@3.4.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-events-node@0.4.19-next.0

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

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/plugin-catalog-common@1.1.8-next.0

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

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/types@1.2.2
    • @backstage/plugin-catalog-common@1.1.8-next.0

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

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/catalog-model@1.7.6
    • @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.17-next.0

Patch Changes

  • cfd8103: Updated imports to use stable catalog extension points from @backstage/plugin-catalog-node instead of the deprecated alpha exports.
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/plugin-catalog-common@1.1.8-next.0
    • @backstage/plugin-scaffolder-common@1.7.6-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/errors@1.2.7
    • @backstage/plugin-catalog-unprocessed-entities-common@0.0.13-next.0

@backstage/plugin-catalog-common@1.1.8-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/catalog-model@1.7.6

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/types@1.2.2

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration-react@1.2.15-next.0
    • @backstage/plugin-catalog-common@1.1.8-next.0
    • @backstage/plugin-permission-react@0.4.40-next.0

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

Patch Changes

  • f523983: Fixes a bug where the EntityListProvider would not correctly hydrate query parameters if more than 20 were provided for the same key.
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/core-components@0.18.6-next.0
    • @backstage/core-compat-api@0.5.7-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/frontend-test-utils@0.4.5-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/errors@1.2.7
    • @backstage/integration-react@1.2.15-next.0
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.11
    • @backstage/plugin-catalog-common@1.1.8-next.0
    • @backstage/plugin-permission-react@0.4.40-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.6-next.0
    • @backstage/core-compat-api@0.5.7-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/errors@1.2.7
    • @backstage/plugin-catalog-unprocessed-entities-common@0.0.13-next.0
    • @backstage/plugin-devtools-react@0.1.1-next.0

@backstage/plugin-catalog-unprocessed-entities-common@0.0.13-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/errors@1.2.7

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

Patch Changes

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

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

Patch Changes

  • f2612c2: Fixes an issue where a user lacking permission to schedule tasks can now easily see the issue through a custom icon + tooltip.
  • Updated dependencies
    • @backstage/core-components@0.18.6-next.0
    • @backstage/core-compat-api@0.5.7-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/errors@1.2.7
    • @backstage/plugin-devtools-common@0.1.22-next.0
    • @backstage/plugin-devtools-react@0.1.1-next.0
    • @backstage/plugin-permission-react@0.4.40-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/backend-defaults@0.15.1-next.0
    • @backstage/config-loader@1.10.8-next.0
    • @backstage/cli-common@0.1.18-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/plugin-permission-node@0.10.9-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-devtools-common@0.1.22-next.0

@backstage/plugin-devtools-common@0.1.22-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/types@1.2.2

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

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-openapi-utils@0.6.6-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-events-node@0.4.19-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.19-next.0

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-events-node@0.4.19-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-events-node@0.4.19-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-events-node@0.4.19-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-events-node@0.4.19-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/config@1.3.6
    • @backstage/types@1.2.2

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

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/core-app-api@1.19.4-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/theme@0.7.1
    • @backstage/plugin-home-react@0.1.35-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/plugin-kubernetes-react@0.5.16-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/plugin-kubernetes-common@0.9.10-next.0
    • @backstage/plugin-permission-react@0.4.40-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/integration-aws-node@0.1.20-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-kubernetes-node@0.4.1-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/plugin-permission-node@0.10.9-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-kubernetes-common@0.9.10-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/plugin-kubernetes-react@0.5.16-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/plugin-kubernetes-common@0.9.10-next.0
    • @backstage/plugin-permission-react@0.4.40-next.0

@backstage/plugin-kubernetes-common@0.9.10-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/types@1.2.2

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/types@1.2.2
    • @backstage/plugin-kubernetes-common@0.9.10-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/core-components@0.18.6-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-kubernetes-common@0.9.10-next.0

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

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/backend-defaults@0.15.1-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.12.0-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/theme@0.7.1

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/errors@1.2.7
    • @backstage/theme@0.7.1
    • @backstage/plugin-notifications-common@0.2.0
    • @backstage/plugin-signals-react@0.0.19-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-notifications-node@0.2.23-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-notifications-common@0.2.0
    • @backstage/plugin-signals-node@0.1.28-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/integration-aws-node@0.1.20-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-notifications-node@0.2.23-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/types@1.2.2
    • @backstage/plugin-notifications-common@0.2.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-notifications-node@0.2.23-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-notifications-common@0.2.0

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/plugin-notifications-common@0.2.0
    • @backstage/plugin-signals-node@0.1.28-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/plugin-catalog-common@1.1.8-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/plugin-permission-node@0.10.9-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/plugin-permission-node@0.10.9-next.0

@backstage/plugin-permission-common@0.9.5-next.0

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

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

Patch Changes

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

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-proxy-node@0.1.12-next.0
    • @backstage/types@1.2.2

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

Patch Changes

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

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

Patch Changes

  • 7455dae: Use node prefix on native imports

  • 2eeca03: Scaffolder form fields in the new frontend system now use a Utility API pattern instead of multiple attachment points. The FormFieldBlueprint now uses this new approach, and while form fields created with older versions still work, they will produce a deprecation warning and will stop working in a future release.

    As part of this change, the following alpha exports were removed:

    • formFieldsApiRef
    • ScaffolderFormFieldsApi
  • 69d880e: Bump to latest zod to ensure it has the latest features

  • Updated dependencies

    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/plugin-scaffolder-react@1.19.6-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/plugin-techdocs-react@1.3.8-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/errors@1.2.7
    • @backstage/integration-react@1.2.15-next.0
    • @backstage/types@1.2.2
    • @backstage/plugin-catalog-common@1.1.8-next.0
    • @backstage/plugin-permission-react@0.4.40-next.0
    • @backstage/plugin-scaffolder-common@1.7.6-next.0
    • @backstage/plugin-techdocs-common@0.1.1

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • 4fc7bf0: Removed unused dependency
  • 1e669cc: Migrate audit events reference docs to http://backstage.io/docs.
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.17-next.0
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.3.2-next.0
    • @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.19-next.0
    • @backstage/plugin-scaffolder-backend-module-gerrit@0.2.18-next.0
    • @backstage/plugin-scaffolder-backend-module-github@0.9.5-next.0
    • @backstage/plugin-scaffolder-backend-module-gitlab@0.11.2-next.0
    • @backstage/plugin-scaffolder-backend-module-gitea@0.2.18-next.0
    • @backstage/backend-openapi-utils@0.6.6-next.0
    • @backstage/plugin-bitbucket-cloud-common@0.3.7-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/backend-defaults@0.15.1-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/plugin-permission-node@0.10.9-next.0
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.18-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-scaffolder-backend-module-azure@0.2.18-next.0
    • @backstage/plugin-scaffolder-common@1.7.6-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.3.2-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.18-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • 14741e2: Fully enable API token functionality for Bitbucket-Cloud.
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/plugin-bitbucket-cloud-common@0.3.7-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/backend-defaults@0.15.1-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • 82ca951: cleaned up repo creation to make the unique portions explicit
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/plugin-notifications-node@0.2.23-next.0
    • @backstage/plugin-notifications-common@0.2.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-scaffolder-node-test-utils@0.3.8-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/types@1.2.2

@backstage/plugin-scaffolder-common@1.7.6-next.0

Patch Changes

  • Updated dependencies
    • @backstage/integration@1.19.3-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • 4fc7bf0: Bump to tar v7
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-scaffolder-common@1.7.6-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-test-utils@1.10.4-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-scaffolder-node@0.12.4-next.0
    • @backstage/types@1.2.2

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

Patch Changes

  • 2eeca03: Scaffolder form fields in the new frontend system now use a Utility API pattern instead of multiple attachment points. The FormFieldBlueprint now uses this new approach, and while form fields created with older versions still work, they will produce a deprecation warning and will stop working in a future release.

    As part of this change, the following alpha exports were removed:

    • formFieldsApi
    • formFieldsApiRef
    • ScaffolderFormFieldsApi
  • 69d880e: Bump to latest zod to ensure it has the latest features

  • Updated dependencies

    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/theme@0.7.1
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.11
    • @backstage/plugin-permission-react@0.4.40-next.0
    • @backstage/plugin-scaffolder-common@1.7.6-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/plugin-search-react@1.10.3-next.0
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.11

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @backstage/backend-openapi-utils@0.6.6-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-search-backend-node@1.4.1-next.0
    • @backstage/backend-defaults@0.15.1-next.0
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/plugin-permission-node@0.10.9-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-search-backend-node@1.4.1-next.0
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/plugin-catalog-common@1.1.8-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/integration-aws-node@0.1.20-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-search-backend-node@1.4.1-next.0
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/config@1.3.6

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-search-backend-node@1.4.1-next.0
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/config@1.3.6

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-search-backend-node@1.4.1-next.0
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/config@1.3.6

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-search-backend-node@1.4.1-next.0
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/config@1.3.6

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-search-backend-node@1.4.1-next.0
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/plugin-techdocs-node@1.14.1-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/plugin-catalog-common@1.1.8-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7

@backstage/plugin-search-common@1.2.22-next.0

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/types@1.2.2

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.6-next.0
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/theme@0.7.1
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.11

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/theme@0.7.1
    • @backstage/types@1.2.2
    • @backstage/plugin-signals-react@0.0.19-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/config@1.3.6
    • @backstage/types@1.2.2
    • @backstage/plugin-signals-node@0.1.28-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/config@1.3.6
    • @backstage/types@1.2.2

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

Patch Changes

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

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

Patch Changes

  • 9e29545: Improve sidebars (nav/TOC) layout and scrolling
  • 22dce2b: TechDocs addons in the new frontend system now use a Utility API pattern instead of multiple attachment points. The AddonBlueprint now uses this new approach, and while addons created with older versions still work, they will produce a deprecation warning and will stop working in a future release.
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/plugin-techdocs-react@1.3.8-next.0
    • @backstage/plugin-search-react@1.10.3-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/integration-react@1.2.15-next.0
    • @backstage/theme@0.7.1
    • @backstage/plugin-auth-react@0.1.24-next.0
    • @backstage/plugin-techdocs-common@0.1.1

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/plugin-techdocs@1.16.3-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/plugin-techdocs-react@1.3.8-next.0
    • @backstage/core-app-api@1.19.4-next.0
    • @backstage/plugin-search-react@1.10.3-next.0
    • @backstage/plugin-catalog@1.32.3-next.0
    • @backstage/integration-react@1.2.15-next.0
    • @backstage/test-utils@1.7.15-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.21.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/backend-defaults@0.15.1-next.0
    • @backstage/plugin-techdocs-node@1.14.1-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/catalog-client@1.12.1
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.6-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/plugin-techdocs-react@1.3.8-next.0
    • @backstage/integration-react@1.2.15-next.0

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

Patch Changes

  • 7455dae: Use node prefix on native imports
  • Updated dependencies
    • @backstage/integration-aws-node@0.1.20-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/integration@1.19.3-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/errors@1.2.7
    • @backstage/plugin-techdocs-common@0.1.1

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

Patch Changes

  • 22dce2b: TechDocs addons in the new frontend system now use a Utility API pattern instead of multiple attachment points. The AddonBlueprint now uses this new approach, and while addons created with older versions still work, they will produce a deprecation warning and will stop working in a future release.

    As part of this change, the techDocsAddonDataRef alpha export was removed.

  • Updated dependencies

    • @backstage/core-components@0.18.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/version-bridge@1.0.11
    • @backstage/plugin-techdocs-common@0.1.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/core-app-api@1.19.4-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/errors@1.2.7
    • @backstage/theme@0.7.1
    • @backstage/types@1.2.2
    • @backstage/plugin-signals-react@0.0.19-next.0
    • @backstage/plugin-user-settings-common@0.0.1

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/backend-defaults@0.15.1-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.2
    • @backstage/plugin-signals-node@0.1.28-next.0
    • @backstage/plugin-user-settings-common@0.0.1

example-app@0.2.118-next.0

Patch Changes

  • Updated dependencies
    • @backstage/frontend-app-api@0.14.1-next.0
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/cli@0.35.3-next.0
    • @backstage/ui@0.12.0-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/plugin-scaffolder@1.35.2-next.0
    • @backstage/plugin-api-docs@0.13.4-next.0
    • @backstage/plugin-scaffolder-react@1.19.6-next.0
    • @backstage/plugin-techdocs@1.16.3-next.0
    • @backstage/plugin-devtools@0.1.36-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/plugin-techdocs-react@1.3.8-next.0
    • @backstage/core-app-api@1.19.4-next.0
    • @backstage/plugin-home@0.9.1-next.0
    • @backstage/plugin-search-react@1.10.3-next.0
    • @backstage/plugin-catalog@1.32.3-next.0
    • @backstage/plugin-catalog-graph@0.5.7-next.0
    • @backstage/plugin-catalog-import@0.13.10-next.0
    • @backstage/plugin-kubernetes@0.12.16-next.0
    • @backstage/plugin-kubernetes-cluster@0.0.34-next.0
    • @backstage/plugin-org@0.6.49-next.0
    • @backstage/plugin-search@1.5.4-next.0
    • @backstage/plugin-techdocs-module-addons-contrib@1.1.33-next.0
    • @backstage/plugin-user-settings@0.8.32-next.0
    • @backstage/app-defaults@1.7.5-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/integration-react@1.2.15-next.0
    • @backstage/theme@0.7.1
    • @backstage/plugin-auth-react@0.1.24-next.0
    • @backstage/plugin-catalog-common@1.1.8-next.0
    • @backstage/plugin-catalog-unprocessed-entities@0.2.26-next.0
    • @backstage/plugin-mui-to-bui@0.2.4-next.0
    • @backstage/plugin-notifications@0.5.14-next.0
    • @backstage/plugin-permission-react@0.4.40-next.0
    • @backstage/plugin-signals@0.0.28-next.0

example-app-next@0.0.32-next.0

Patch Changes

  • Updated dependencies
    • @backstage/frontend-defaults@0.3.6-next.0
    • @backstage/frontend-app-api@0.14.1-next.0
    • @backstage/plugin-catalog-react@1.21.6-next.0
    • @backstage/plugin-app-visualizer@0.1.28-next.0
    • @backstage/cli@0.35.3-next.0
    • @backstage/ui@0.12.0-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/plugin-search-common@1.2.22-next.0
    • @backstage/plugin-scaffolder@1.35.2-next.0
    • @backstage/plugin-api-docs@0.13.4-next.0
    • @backstage/core-compat-api@0.5.7-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/plugin-app@0.4.0-next.0
    • @backstage/plugin-scaffolder-react@1.19.6-next.0
    • @backstage/plugin-techdocs@1.16.3-next.0
    • @backstage/plugin-devtools@0.1.36-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/plugin-techdocs-react@1.3.8-next.0
    • @backstage/plugin-app-react@0.1.1-next.0
    • @backstage/core-app-api@1.19.4-next.0
    • @backstage/plugin-home@0.9.1-next.0
    • @backstage/plugin-auth@0.1.5-next.0
    • @backstage/plugin-search-react@1.10.3-next.0
    • @backstage/plugin-catalog@1.32.3-next.0
    • @backstage/plugin-catalog-graph@0.5.7-next.0
    • @backstage/plugin-catalog-import@0.13.10-next.0
    • @backstage/plugin-kubernetes@0.12.16-next.0
    • @backstage/plugin-kubernetes-cluster@0.0.34-next.0
    • @backstage/plugin-org@0.6.49-next.0
    • @backstage/plugin-search@1.5.4-next.0
    • @backstage/plugin-techdocs-module-addons-contrib@1.1.33-next.0
    • @backstage/plugin-user-settings@0.8.32-next.0
    • @backstage/app-defaults@1.7.5-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/integration-react@1.2.15-next.0
    • @backstage/theme@0.7.1
    • @backstage/plugin-auth-react@0.1.24-next.0
    • @backstage/plugin-catalog-common@1.1.8-next.0
    • @backstage/plugin-catalog-unprocessed-entities@0.2.26-next.0
    • @backstage/plugin-notifications@0.5.14-next.0
    • @backstage/plugin-permission-react@0.4.40-next.0
    • @backstage/plugin-signals@0.0.28-next.0

app-next-example-plugin@0.0.32-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.6-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.0

example-backend@0.0.47-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend@3.4.0-next.0
    • @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.11-next.0
    • @backstage/plugin-catalog-backend-module-openapi@0.2.19-next.0
    • @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.17-next.0
    • @backstage/plugin-search-backend-module-elasticsearch@1.7.10-next.0
    • @backstage/plugin-scaffolder-backend-module-github@0.9.5-next.0
    • @backstage/plugin-search-backend-module-techdocs@0.4.11-next.0
    • @backstage/plugin-search-backend-module-catalog@0.3.12-next.0
    • @backstage/plugin-search-backend-module-explore@0.3.11-next.0
    • @backstage/plugin-notifications-backend@0.6.2-next.0
    • @backstage/backend-plugin-api@1.7.0-next.0
    • @backstage/plugin-search-backend-node@1.4.1-next.0
    • @backstage/plugin-kubernetes-backend@0.21.1-next.0
    • @backstage/plugin-permission-backend@0.7.8-next.0
    • @backstage/plugin-scaffolder-backend@3.1.2-next.0
    • @backstage/backend-defaults@0.15.1-next.0
    • @backstage/plugin-devtools-backend@0.5.14-next.0
    • @backstage/plugin-techdocs-backend@2.1.5-next.0
    • @backstage/plugin-signals-backend@0.3.12-next.0
    • @backstage/plugin-events-backend@0.5.11-next.0
    • @backstage/plugin-search-backend@2.0.11-next.0
    • @backstage/plugin-proxy-backend@0.6.10-next.0
    • @backstage/plugin-auth-backend@0.26.1-next.0
    • @backstage/plugin-app-backend@0.5.11-next.0
    • @backstage/plugin-auth-node@0.6.12-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.5.0-next.0
    • @backstage/plugin-mcp-actions-backend@0.1.8-next.0
    • @backstage/plugin-permission-common@0.9.5-next.0
    • @backstage/plugin-permission-node@0.10.9-next.0
    • @backstage/plugin-auth-backend-module-guest-provider@0.2.16-next.0
    • @backstage/plugin-auth-backend-module-openshift-provider@0.1.4-next.0
    • @backstage/plugin-events-backend-module-google-pubsub@0.1.8-next.0
    • @backstage/plugin-permission-backend-module-allow-all-policy@0.2.16-next.0
    • @backstage/plugin-catalog-backend-module-unprocessed@0.6.8-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/plugin-scaffolder-backend-module-notifications@0.1.19-next.0

e2e-test@0.2.37-next.0

Patch Changes

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

@internal/frontend@0.0.17-next.0

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/types@1.2.2
    • @backstage/version-bridge@1.0.11

@internal/scaffolder@0.0.18-next.0

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.0
    • @backstage/plugin-scaffolder-react@1.19.6-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/cli@0.35.3-next.0
    • @backstage/ui@0.12.0-next.0
    • @backstage/core-components@0.18.6-next.0
    • @backstage/plugin-techdocs@1.16.3-next.0
    • @backstage/core-plugin-api@1.12.2-next.0
    • @backstage/plugin-techdocs-react@1.3.8-next.0
    • @backstage/core-app-api@1.19.4-next.0
    • @backstage/plugin-catalog@1.32.3-next.0
    • @backstage/app-defaults@1.7.5-next.0
    • @backstage/catalog-model@1.7.6
    • @backstage/config@1.3.6
    • @backstage/integration-react@1.2.15-next.0
    • @backstage/test-utils@1.7.15-next.0
    • @backstage/theme@0.7.1

yarn-plugin-backstage@0.0.9-next.0

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.6-next.0
    • @backstage/core-plugin-api@1.12.2-next.0

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

Patch Changes

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

@internal/plugin-todo-list-common@1.0.29-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.9.5-next.0