Skip to main content
Version: Next

Release v1.30.0-next.1

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

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

Patch Changes

  • 9a46a81: The request to delete the session cookie when running the app in protected mode is now done with a plain fetch rather than FetchApi. This fixes a bug where the app would immediately try to sign-in again when removing the cookie during logout.
  • Updated dependencies
    • @backstage/config@1.2.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/types@1.1.1
    • @backstage/version-bridge@1.0.8

@backstage/config-loader@1.9.0-next.1

Minor Changes

  • 274428f: Add configuration key to File and Remote ConfigSources that enables configuration of parsing logic. Previously limited to yaml, these ConfigSources now allow for a multitude of parsing options (e.g. JSON).

Patch Changes

  • 1edd6c2: The env option of ConfigSources.default now correctly allows undefined members.
  • Updated dependencies
    • @backstage/cli-common@0.1.14
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

@backstage/plugin-notifications-backend-module-email@0.2.0-next.1

Minor Changes

  • def53a7: BREAKING Following NotificationTemplateRenderer methods now return a Promise and must be awaited: getSubject, getText and getHtml.

    Required changes and example usage:

    import { notificationsEmailTemplateExtensionPoint } from '@backstage/plugin-notifications-backend-module-email';
    import { Notification } from '@backstage/plugin-notifications-common';
    +import { getNotificationSubject, getNotificationTextContent, getNotificationHtmlContent } from 'my-notification-processing-library`
    export const notificationsModuleEmailDecorator = createBackendModule({
    pluginId: 'notifications',
    moduleId: 'email.templates',
    register(reg) {
    reg.registerInit({
    deps: {
    emailTemplates: notificationsEmailTemplateExtensionPoint,
    },
    async init({ emailTemplates }) {
    emailTemplates.setTemplateRenderer({
    - getSubject(notification) {
    + async getSubject(notification) {
    - return `New notification from ${notification.source}`;
    + const subject = await getNotificationSubject(notification);
    + return `New notification from ${subject}`;
    },
    - getText(notification) {
    + async getText(notification) {
    - return notification.content;
    + const text = await getNotificationTextContent(notification);
    + return text;
    },
    - getHtml(notification) {
    + async getHtml(notification) {
    - return `<p>${notification.content}</p>`;
    + const html = await getNotificationHtmlContent(notification);
    + return html;
    },
    });
    },
    });
    },
    });

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration-aws-node@0.1.12
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/types@1.1.1
    • @backstage/plugin-notifications-common@0.0.5
    • @backstage/plugin-notifications-node@0.2.4-next.1

@backstage/plugin-techdocs-common@0.1.0-next.0

Minor Changes

  • 4698e1f: Initial release of the techdocs-common package.

@backstage/app-defaults@1.5.10-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-react@0.4.25-next.0
    • @backstage/core-app-api@1.14.2-next.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/theme@0.5.6

@backstage/backend-app-api@0.8.1-next.1

Patch Changes

  • Updated dependencies
    • @backstage/config-loader@1.9.0-next.1
    • @backstage/plugin-permission-node@0.8.1-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/cli-common@0.1.14
    • @backstage/cli-node@0.2.7
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/backend-common@0.23.4-next.1

Patch Changes

  • Updated dependencies
    • @backstage/config-loader@1.9.0-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/integration-aws-node@0.1.12
    • @backstage/backend-dev-utils@0.1.4
    • @backstage/cli-common@0.1.14
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/backend-defaults@0.4.2-next.1

Patch Changes

  • Updated dependencies
    • @backstage/config-loader@1.9.0-next.1
    • @backstage/plugin-permission-node@0.8.1-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-app-api@0.8.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/integration-aws-node@0.1.12
    • @backstage/backend-dev-utils@0.1.4
    • @backstage/cli-common@0.1.14
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-node@0.4.18-next.1
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/backend-dynamic-feature-service@0.2.16-next.1

Patch Changes

  • Updated dependencies
    • @backstage/config-loader@1.9.0-next.1
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/plugin-catalog-backend@1.24.1-next.1
    • @backstage/plugin-permission-node@0.8.1-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-app-api@0.8.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-app-node@0.1.23-next.1
    • @backstage/plugin-search-backend-node@1.2.28-next.1
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/cli-common@0.1.14
    • @backstage/cli-node@0.2.7
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-node@0.4.18-next.1
    • @backstage/plugin-events-backend@0.3.10-next.1
    • @backstage/plugin-events-node@0.3.9-next.1
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/backend-openapi-utils@0.1.16-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/errors@1.2.4

@backstage/backend-plugin-api@0.7.1-next.1

Patch Changes

  • f011d1b: fix typo in getPluginRequestToken comments
  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/cli-common@0.1.14
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/backend-tasks@0.5.28-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

@backstage/backend-test-utils@0.4.5-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-app-api@0.8.1-next.1
    • @backstage/backend-defaults@0.4.2-next.1
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-node@0.4.18-next.1
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/cli@0.27.0-next.1

Patch Changes

  • e6e7d86: Switched the target from 'ES2022' to 'es2022' for better compatibility with older versions of swc.
  • Updated dependencies
    • @backstage/config-loader@1.9.0-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/catalog-model@1.5.0
    • @backstage/cli-common@0.1.14
    • @backstage/cli-node@0.2.7
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/eslint-plugin@0.1.8
    • @backstage/release-manifests@0.0.11
    • @backstage/types@1.1.1

@backstage/core-compat-api@0.2.8-next.1

Patch Changes

  • 6349099: Added config input type to the extensions
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/core-plugin-api@1.9.3
    • @backstage/version-bridge@1.0.8

@backstage/create-app@0.5.18-next.1

Patch Changes

  • 6c1081c: Updated dockerfile and app-config.production.yaml to make it easier to get started with example data
  • Updated dependencies
    • @backstage/cli-common@0.1.14

@backstage/dev-utils@1.0.37-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/app-defaults@1.5.10-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/core-app-api@1.14.2-next.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/integration-react@1.1.30-next.0
    • @backstage/theme@0.5.6

@backstage/frontend-app-api@0.7.5-next.1

Patch Changes

  • 3be9aeb: Added support for v2 extensions, which declare their inputs and outputs without using a data map.
  • 6349099: Added config input type to the extensions
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/config@1.2.0
    • @backstage/core-app-api@1.14.2-next.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/errors@1.2.4
    • @backstage/theme@0.5.6
    • @backstage/types@1.1.1
    • @backstage/version-bridge@1.0.8

@backstage/frontend-plugin-api@0.6.8-next.1

Patch Changes

  • 3be9aeb: Extensions have been changed to be declared with an array of inputs and outputs, rather than a map of named data refs. This change was made to reduce confusion around the role of the input and output names, as well as enable more powerful APIs for overriding extensions.

    An extension that was previously declared like this:

    const exampleExtension = createExtension({
    name: 'example',
    inputs: {
    items: createExtensionInput({
    element: coreExtensionData.reactElement,
    }),
    },
    output: {
    element: coreExtensionData.reactElement,
    },
    factory({ inputs }) {
    return {
    element: (
    <div>
    Example
    {inputs.items.map(item => {
    return <div>{item.output.element}</div>;
    })}
    </div>
    ),
    };
    },
    });

    Should be migrated to the following:

    const exampleExtension = createExtension({
    name: 'example',
    inputs: {
    items: createExtensionInput([coreExtensionData.reactElement]),
    },
    output: [coreExtensionData.reactElement],
    factory({ inputs }) {
    return [
    coreExtensionData.reactElement(
    <div>
    Example
    {inputs.items.map(item => {
    return <div>{item.get(coreExtensionData.reactElement)}</div>;
    })}
    </div>,
    ),
    ];
    },
    });
  • 3fb421d: Added support to be able to define zod config schema in Blueprints, with built in schema merging from the Blueprint and the extension instances.

  • 6349099: Added config input type to the extensions

  • Updated dependencies

    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/types@1.1.1
    • @backstage/version-bridge@1.0.8

@backstage/frontend-test-utils@0.1.12-next.1

Patch Changes

  • 3be9aeb: Added support for v2 extensions, which declare their inputs and outputs without using a data map.
  • 6349099: Added config input type to the extensions
  • Updated dependencies
    • @backstage/frontend-app-api@0.7.5-next.1
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/test-utils@1.5.10-next.1
    • @backstage/types@1.1.1

@backstage/repo-tools@0.9.5-next.1

Patch Changes

  • Updated dependencies
    • @backstage/config-loader@1.9.0-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/cli-common@0.1.14
    • @backstage/cli-node@0.2.7
    • @backstage/errors@1.2.4

@techdocs/cli@1.8.17-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-techdocs-node@1.12.9-next.1
    • @backstage/backend-defaults@0.4.2-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/cli-common@0.1.14
    • @backstage/config@1.2.0

@backstage/test-utils@1.5.10-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/plugin-permission-react@0.4.25-next.0
    • @backstage/config@1.2.0
    • @backstage/core-app-api@1.14.2-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/theme@0.5.6
    • @backstage/types@1.1.1

@backstage/plugin-api-docs@0.11.8-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/core-compat-api@0.2.8-next.1
    • @backstage/plugin-catalog@1.21.2-next.1
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-permission-react@0.4.25-next.0
    • @backstage/catalog-model@1.5.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3

@backstage/plugin-app-backend@0.3.72-next.1

Patch Changes

  • Updated dependencies
    • @backstage/config-loader@1.9.0-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-app-node@0.1.23-next.1
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-app-node@0.1.23-next.1

Patch Changes

  • Updated dependencies
    • @backstage/config-loader@1.9.0-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1

@backstage/plugin-app-visualizer@0.1.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3

@backstage/plugin-auth-backend@0.22.10-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.6-next.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.2.4-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.6-next.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.18-next.1
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.1.4-next.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.15-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.18-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.1.20-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.20-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.1.20-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.2.4-next.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.2.4-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.16-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.6-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.16-next.1
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-atlassian-provider@0.2.4-next.1

Patch Changes

  • c8f1cae: Add signIn to authentication provider configuration schema
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-aws-alb-provider@0.1.15-next.1

Patch Changes

  • c8f1cae: Add signIn to authentication provider configuration schema
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-auth-backend@0.22.10-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/errors@1.2.4
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.6-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-bitbucket-provider@0.1.6-next.1

Patch Changes

  • c8f1cae: Add signIn to authentication provider configuration schema
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.6-next.1

Patch Changes

  • c8f1cae: Add signIn to authentication provider configuration schema
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.18-next.1

Patch Changes

  • c8f1cae: Add signIn to authentication provider configuration schema
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-github-provider@0.1.20-next.1

Patch Changes

  • c8f1cae: Add signIn to authentication provider configuration schema
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-gitlab-provider@0.1.20-next.1

Patch Changes

  • c8f1cae: Add signIn to authentication provider configuration schema
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-google-provider@0.1.20-next.1

Patch Changes

  • c8f1cae: Add signIn to authentication provider configuration schema
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-guest-provider@0.1.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-microsoft-provider@0.1.18-next.1

Patch Changes

  • c8f1cae: Add signIn to authentication provider configuration schema
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-oauth2-provider@0.2.4-next.1

Patch Changes

  • c8f1cae: Add signIn to authentication provider configuration schema
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.16-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/errors@1.2.4
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-oidc-provider@0.2.4-next.1

Patch Changes

  • c8f1cae: Add signIn to authentication provider configuration schema
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-auth-backend@0.22.10-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-okta-provider@0.0.16-next.1

Patch Changes

  • c8f1cae: Add signIn to authentication provider configuration schema
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-onelogin-provider@0.1.4-next.1

Patch Changes

  • c8f1cae: Add signIn to authentication provider configuration schema
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-pinniped-provider@0.1.17-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/config@1.2.0
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.2.4-next.1

Patch Changes

  • c8f1cae: Add signIn to authentication provider configuration schema
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-auth-node@0.4.18-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

@backstage/plugin-catalog@1.21.2-next.1

Patch Changes

  • 6349099: Added config input type to the extensions
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/core-compat-api@0.2.8-next.1
    • @backstage/plugin-search-react@1.7.14-next.1
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-permission-react@0.4.25-next.0
    • @backstage/plugin-scaffolder-common@1.5.5-next.0
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/errors@1.2.4
    • @backstage/integration-react@1.1.30-next.0
    • @backstage/types@1.1.1

@backstage/plugin-catalog-backend@1.24.1-next.1

Patch Changes

  • 51240ee: Preserve default allowedLocationTypes when setAllowedLocationTypes() of CatalogLocationsExtensionPoint is not called.
  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/plugin-permission-node@0.8.1-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/plugin-search-backend-module-catalog@0.1.29-next.1
    • @backstage/backend-openapi-utils@0.1.16-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-catalog-backend-module-aws@0.3.18-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/integration-aws-node@0.1.12
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/plugin-kubernetes-common@0.8.2-next.0
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

@backstage/plugin-catalog-backend-module-azure@0.1.43-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/config@1.2.0

@backstage/plugin-catalog-backend-module-backstage-openapi@0.2.6-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/backend-openapi-utils@0.1.16-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.2.10-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/plugin-bitbucket-cloud-common@0.2.22-next.0
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-catalog-backend-module-bitbucket-server@0.1.37-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

@backstage/plugin-catalog-backend-module-gcp@0.1.24-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/plugin-kubernetes-common@0.8.2-next.0
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0

@backstage/plugin-catalog-backend-module-gerrit@0.1.40-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

@backstage/plugin-catalog-backend-module-github@0.6.6-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend@1.24.1-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-catalog-backend-module-github-org@0.1.18-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/plugin-catalog-backend-module-github@0.6.6-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/config@1.2.0
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-catalog-backend-module-gitlab@0.3.22-next.1

Patch Changes

  • c7b14ed: Adds new optional excludeRepos configuration option to the Gitlab catalog provider.
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-catalog-backend-module-gitlab-org@0.0.6-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend-module-gitlab@0.3.22-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-catalog-backend-module-incremental-ingestion@0.4.28-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/plugin-catalog-backend@1.24.1-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-catalog-backend-module-ldap@0.7.1-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

@backstage/plugin-catalog-backend-module-logs@0.0.2-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend@1.24.1-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-catalog-backend-module-msgraph@0.5.31-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0

@backstage/plugin-catalog-backend-module-openapi@0.1.41-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend@1.24.1-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/types@1.1.1

@backstage/plugin-catalog-backend-module-puppetdb@0.1.29-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.21-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/plugin-scaffolder-common@1.5.5-next.0
    • @backstage/catalog-model@1.5.0

@backstage/plugin-catalog-backend-module-unprocessed@0.4.10-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/plugin-catalog-unprocessed-entities-common@0.0.4-next.0
    • @backstage/catalog-model@1.5.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-auth-node@0.4.18-next.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/catalog-model@1.5.0

@backstage/plugin-catalog-graph@0.4.8-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/core-compat-api@0.2.8-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/types@1.1.1

@backstage/plugin-catalog-import@0.12.2-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/core-compat-api@0.2.8-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/errors@1.2.4
    • @backstage/integration-react@1.1.30-next.0

@backstage/plugin-catalog-node@1.12.5-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/plugin-permission-node@0.8.1-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

@backstage/plugin-catalog-react@1.12.3-next.1

Patch Changes

  • 7ca331c: Correct EntityDisplayName's icon alignment with the text.
  • 6349099: Added config input type to the extensions
  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-permission-react@0.4.25-next.0
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/errors@1.2.4
    • @backstage/integration-react@1.1.30-next.0
    • @backstage/types@1.1.1
    • @backstage/version-bridge@1.0.8

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

Patch Changes

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

@backstage/plugin-devtools@0.1.17-next.1

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/core-compat-api@0.2.8-next.1
    • @backstage/plugin-devtools-common@0.1.12-next.0
    • @backstage/plugin-permission-react@0.4.25-next.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/errors@1.2.4

@backstage/plugin-devtools-backend@0.3.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/config-loader@1.9.0-next.1
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/plugin-permission-node@0.8.1-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-devtools-common@0.1.12-next.0
    • @backstage/cli-common@0.1.14
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/types@1.1.1

@backstage/plugin-events-backend@0.3.10-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/config@1.2.0
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-events-backend-module-aws-sqs@0.3.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/config@1.2.0
    • @backstage/types@1.1.1
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-events-backend-module-azure@0.2.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-events-backend-module-bitbucket-cloud@0.2.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-events-backend-module-gerrit@0.2.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-events-backend-module-github@0.2.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/config@1.2.0
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-events-backend-module-gitlab@0.2.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/config@1.2.0
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-events-backend-test-utils@0.1.33-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-events-node@0.3.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1

@backstage/plugin-home@0.7.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/core-compat-api@0.2.8-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/core-app-api@1.14.2-next.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/theme@0.5.6
    • @backstage/plugin-home-react@0.1.16-next.0

@backstage/plugin-kubernetes@0.11.13-next.1

Patch Changes

  • e6c15cc: Adds support for Backstage's new frontend system, available via the /alpha sub-path export.
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/core-compat-api@0.2.8-next.1
    • @backstage/plugin-kubernetes-common@0.8.2-next.0
    • @backstage/catalog-model@1.5.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/plugin-kubernetes-react@0.4.2-next.1

@backstage/plugin-kubernetes-backend@0.18.4-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/plugin-permission-node@0.8.1-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration-aws-node@0.1.12
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/plugin-kubernetes-common@0.8.2-next.0
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-node@0.4.18-next.1
    • @backstage/plugin-kubernetes-node@0.1.17-next.1

@backstage/plugin-kubernetes-cluster@0.0.14-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/plugin-kubernetes-common@0.8.2-next.0
    • @backstage/catalog-model@1.5.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/plugin-kubernetes-react@0.4.2-next.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/catalog-model@1.5.0
    • @backstage/types@1.1.1

@backstage/plugin-kubernetes-node@0.1.17-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-kubernetes-common@0.8.2-next.0
    • @backstage/catalog-model@1.5.0
    • @backstage/types@1.1.1

@backstage/plugin-kubernetes-react@0.4.2-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-kubernetes-common@0.8.2-next.0
    • @backstage/catalog-model@1.5.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

@backstage/plugin-notifications-backend@0.3.4-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-auth-node@0.4.18-next.1
    • @backstage/plugin-events-node@0.3.9-next.1
    • @backstage/plugin-notifications-common@0.0.5
    • @backstage/plugin-notifications-node@0.2.4-next.1
    • @backstage/plugin-signals-node@0.1.9-next.1

@backstage/plugin-notifications-node@0.2.4-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/plugin-notifications-common@0.0.5
    • @backstage/plugin-signals-node@0.1.9-next.1

@backstage/plugin-org@0.6.28-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/core-compat-api@0.2.8-next.1
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/catalog-model@1.5.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3

@backstage/plugin-org-react@0.1.27-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3

@backstage/plugin-permission-backend@0.5.47-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/plugin-permission-node@0.8.1-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-auth-node@0.4.18-next.1

@backstage/plugin-permission-backend-module-allow-all-policy@0.1.20-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/plugin-permission-node@0.8.1-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-auth-node@0.4.18-next.1

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

Patch Changes

  • 137fa34: Add the MetadataResponseSerializedRule type from @backstage/plugin-permission-node, since this type might be used in frontend code.
  • Updated dependencies
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

@backstage/plugin-permission-node@0.8.1-next.1

Patch Changes

  • 5cd9878: The MetadataResponseSerializedRule type has been moved to @backstage/plugin-permission-common, and should be imported from there going forward. To avoid an immediate breaking change, this type is still re-exported from this package, but is marked as deprecated and will be removed in a future release.
  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-auth-node@0.4.18-next.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/config@1.2.0
    • @backstage/core-plugin-api@1.9.3

@backstage/plugin-proxy-backend@0.5.4-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/config@1.2.0
    • @backstage/types@1.1.1

@backstage/plugin-scaffolder@1.23.1-next.1

Patch Changes

  • 896a22d: Fix helper text margin for scaffolder EntityNamePicker and EntityTagsPicker when using outlined text field
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/core-compat-api@0.2.8-next.1
    • @backstage/plugin-scaffolder-react@1.11.0-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-permission-react@0.4.25-next.0
    • @backstage/plugin-scaffolder-common@1.5.5-next.0
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/errors@1.2.4
    • @backstage/integration-react@1.1.30-next.0
    • @backstage/types@1.1.1

@backstage/plugin-scaffolder-backend@1.23.1-next.1

Patch Changes

  • ef87e06: Fix scaffolder action catalog:write to write to directories that don't already exist
  • Updated dependencies
    • @backstage/plugin-scaffolder-backend-module-github@0.4.1-next.1
    • @backstage/plugin-scaffolder-backend-module-gitea@0.1.13-next.1
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/plugin-permission-node@0.8.1-next.1
    • @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.1.13-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/plugin-scaffolder-common@1.5.5-next.0
    • @backstage/plugin-scaffolder-backend-module-bitbucket@0.2.13-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-node@0.4.18-next.1
    • @backstage/plugin-bitbucket-cloud-common@0.2.22-next.0
    • @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.21-next.1
    • @backstage/plugin-scaffolder-backend-module-azure@0.1.15-next.1
    • @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.1.13-next.1
    • @backstage/plugin-scaffolder-backend-module-gerrit@0.1.15-next.1
    • @backstage/plugin-scaffolder-backend-module-gitlab@0.4.5-next.1
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/plugin-scaffolder-backend-module-azure@0.1.15-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/plugin-scaffolder-backend-module-bitbucket@0.2.13-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.1.13-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.1.13-next.1
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.1.13-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-bitbucket-cloud-common@0.2.22-next.0
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/plugin-scaffolder-backend-module-bitbucket-server@0.1.13-next.1

Patch Changes

  • e3b64be: Added examples for publish:bitbucketServer action and improve its test cases
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.24-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/plugin-scaffolder-backend-module-cookiecutter@0.2.47-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/plugin-scaffolder-backend-module-gcp@0.1.1-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/plugin-scaffolder-backend-module-gerrit@0.1.15-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/plugin-scaffolder-backend-module-gitea@0.1.13-next.1

Patch Changes

  • 24de005: Added test cases for publish:gitea examples
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/plugin-scaffolder-backend-module-github@0.4.1-next.1

Patch Changes

  • d21d307: Added examples for github:environment:create action and improve its test cases
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/plugin-scaffolder-backend-module-gitlab@0.4.5-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/plugin-scaffolder-backend-module-notifications@0.0.6-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-notifications-common@0.0.5
    • @backstage/plugin-notifications-node@0.2.4-next.1
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/plugin-scaffolder-backend-module-rails@0.4.40-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/plugin-scaffolder-backend-module-sentry@0.1.31-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/plugin-scaffolder-backend-module-yeoman@0.3.7-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/types@1.1.1
    • @backstage/plugin-scaffolder-node@0.4.9-next.1
    • @backstage/plugin-scaffolder-node-test-utils@0.1.10-next.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/catalog-model@1.5.0
    • @backstage/types@1.1.1

@backstage/plugin-scaffolder-node@0.4.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/plugin-scaffolder-common@1.5.5-next.0
    • @backstage/catalog-model@1.5.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

@backstage/plugin-scaffolder-node-test-utils@0.1.10-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/backend-test-utils@0.4.5-next.1
    • @backstage/types@1.1.1
    • @backstage/plugin-scaffolder-node@0.4.9-next.1

@backstage/plugin-scaffolder-react@1.11.0-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/plugin-permission-react@0.4.25-next.0
    • @backstage/plugin-scaffolder-common@1.5.5-next.0
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/theme@0.5.6
    • @backstage/types@1.1.1
    • @backstage/version-bridge@1.0.8

@backstage/plugin-search@1.4.15-next.1

Patch Changes

  • 6349099: Added config input type to the extensions
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/core-compat-api@0.2.8-next.1
    • @backstage/plugin-search-react@1.7.14-next.1
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/version-bridge@1.0.8

@backstage/plugin-search-backend@1.5.15-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/plugin-permission-node@0.8.1-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/backend-defaults@0.4.2-next.1
    • @backstage/plugin-search-backend-node@1.2.28-next.1
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/backend-openapi-utils@0.1.16-next.1
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

@backstage/plugin-search-backend-module-catalog@0.1.29-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/plugin-search-backend-node@1.2.28-next.1
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

@backstage/plugin-search-backend-module-elasticsearch@1.5.4-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration-aws-node@0.1.12
    • @backstage/plugin-search-backend-node@1.2.28-next.1
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/config@1.2.0

@backstage/plugin-search-backend-module-explore@0.1.29-next.1

Patch Changes

  • 93fc1a0: Updated dependency @backstage-community/plugin-explore-common to ^0.0.4.
  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-search-backend-node@1.2.28-next.1
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/config@1.2.0

@backstage/plugin-search-backend-module-pg@0.5.33-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-search-backend-node@1.2.28-next.1
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/config@1.2.0

@backstage/plugin-search-backend-module-stack-overflow-collator@0.1.16-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-search-backend-node@1.2.28-next.1
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/config@1.2.0

@backstage/plugin-search-backend-module-techdocs@0.1.28-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-techdocs-node@1.12.9-next.1
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/plugin-search-backend-node@1.2.28-next.1
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0

@backstage/plugin-search-backend-node@1.2.28-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/types@1.1.1

@backstage/plugin-search-react@1.7.14-next.1

Patch Changes

  • 6349099: Added config input type to the extensions
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/theme@0.5.6
    • @backstage/types@1.1.1
    • @backstage/version-bridge@1.0.8

@backstage/plugin-signals-backend@0.1.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/config@1.2.0
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-node@0.4.18-next.1
    • @backstage/plugin-events-node@0.3.9-next.1
    • @backstage/plugin-signals-node@0.1.9-next.1

@backstage/plugin-signals-node@0.1.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/config@1.2.0
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-node@0.4.18-next.1
    • @backstage/plugin-events-node@0.3.9-next.1

@backstage/plugin-techdocs@1.10.8-next.1

Patch Changes

  • 69bd940: Use annotation constants from new techdocs-common package.
  • 6349099: Added config input type to the extensions
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/plugin-techdocs-common@0.1.0-next.0
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/core-compat-api@0.2.8-next.1
    • @backstage/plugin-search-react@1.7.14-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/errors@1.2.4
    • @backstage/integration-react@1.1.30-next.0
    • @backstage/theme@0.5.6
    • @backstage/plugin-auth-react@0.1.5-next.0
    • @backstage/plugin-techdocs-react@1.2.7-next.0

@backstage/plugin-techdocs-addons-test-utils@1.0.37-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-techdocs@1.10.8-next.1
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/plugin-search-react@1.7.14-next.1
    • @backstage/plugin-catalog@1.21.2-next.1
    • @backstage/test-utils@1.5.10-next.1
    • @backstage/core-app-api@1.14.2-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/integration-react@1.1.30-next.0
    • @backstage/plugin-techdocs-react@1.2.7-next.0

@backstage/plugin-techdocs-backend@1.10.10-next.1

Patch Changes

  • 69bd940: Use annotation constants from new techdocs-common package.
  • Updated dependencies
    • @backstage/plugin-techdocs-node@1.12.9-next.1
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/plugin-techdocs-common@0.1.0-next.0
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-search-backend-module-techdocs@0.1.28-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

@backstage/plugin-techdocs-node@1.12.9-next.1

Patch Changes

  • 69bd940: Use annotation constants from new techdocs-common package.
  • 949083d: Update patchMkdocsYmlPrebuild to modify repo_url and edit_uri independently.
  • Updated dependencies
    • @backstage/plugin-techdocs-common@0.1.0-next.0
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/integration-aws-node@0.1.12
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

@backstage/plugin-user-settings@0.8.11-next.1

Patch Changes

  • 6349099: Added config input type to the extensions
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/core-compat-api@0.2.8-next.1
    • @backstage/core-app-api@1.14.2-next.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/errors@1.2.4
    • @backstage/theme@0.5.6
    • @backstage/types@1.1.1
    • @backstage/plugin-signals-react@0.0.4
    • @backstage/plugin-user-settings-common@0.0.1

@backstage/plugin-user-settings-backend@0.2.22-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-node@0.4.18-next.1
    • @backstage/plugin-signals-node@0.1.9-next.1
    • @backstage/plugin-user-settings-common@0.0.1

example-app@0.2.100-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-techdocs@1.10.8-next.1
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/frontend-app-api@0.7.5-next.1
    • @backstage/plugin-kubernetes@0.11.13-next.1
    • @backstage/cli@0.27.0-next.1
    • @backstage/plugin-scaffolder@1.23.1-next.1
    • @backstage/plugin-user-settings@0.8.11-next.1
    • @backstage/plugin-search-react@1.7.14-next.1
    • @backstage/plugin-catalog@1.21.2-next.1
    • @backstage/plugin-search@1.4.15-next.1
    • @backstage/plugin-api-docs@0.11.8-next.1
    • @backstage/plugin-catalog-graph@0.4.8-next.1
    • @backstage/plugin-catalog-import@0.12.2-next.1
    • @backstage/plugin-home@0.7.9-next.1
    • @backstage/plugin-kubernetes-cluster@0.0.14-next.1
    • @backstage/plugin-org@0.6.28-next.1
    • @backstage/plugin-scaffolder-react@1.11.0-next.1
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-permission-react@0.4.25-next.0
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/plugin-devtools@0.1.17-next.1
    • @backstage/app-defaults@1.5.10-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/core-app-api@1.14.2-next.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/integration-react@1.1.30-next.0
    • @backstage/theme@0.5.6
    • @backstage/plugin-auth-react@0.1.5-next.0
    • @backstage/plugin-catalog-unprocessed-entities@0.2.7-next.0
    • @backstage/plugin-notifications@0.2.4-next.0
    • @backstage/plugin-signals@0.0.9-next.0
    • @backstage/plugin-techdocs-module-addons-contrib@1.1.13-next.0
    • @backstage/plugin-techdocs-react@1.2.7-next.0

example-app-next@0.0.14-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-techdocs@1.10.8-next.1
    • @backstage/plugin-catalog-react@1.12.3-next.1
    • @backstage/frontend-app-api@0.7.5-next.1
    • @backstage/plugin-kubernetes@0.11.13-next.1
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/cli@0.27.0-next.1
    • @backstage/plugin-scaffolder@1.23.1-next.1
    • @backstage/core-compat-api@0.2.8-next.1
    • @backstage/plugin-user-settings@0.8.11-next.1
    • @backstage/plugin-search-react@1.7.14-next.1
    • @backstage/plugin-catalog@1.21.2-next.1
    • @backstage/plugin-search@1.4.15-next.1
    • @backstage/plugin-api-docs@0.11.8-next.1
    • @backstage/plugin-catalog-graph@0.4.8-next.1
    • @backstage/plugin-catalog-import@0.12.2-next.1
    • @backstage/plugin-home@0.7.9-next.1
    • @backstage/plugin-kubernetes-cluster@0.0.14-next.1
    • @backstage/plugin-org@0.6.28-next.1
    • @backstage/plugin-scaffolder-react@1.11.0-next.1
    • @backstage/plugin-catalog-common@1.0.26-next.0
    • @backstage/plugin-permission-react@0.4.25-next.0
    • @backstage/plugin-search-common@1.2.14-next.0
    • @backstage/plugin-app-visualizer@0.1.9-next.1
    • @backstage/app-defaults@1.5.10-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/core-app-api@1.14.2-next.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/integration-react@1.1.30-next.0
    • @backstage/theme@0.5.6
    • @backstage/plugin-auth-react@0.1.5-next.0
    • @backstage/plugin-catalog-unprocessed-entities@0.2.7-next.0
    • @backstage/plugin-notifications@0.2.4-next.0
    • @backstage/plugin-signals@0.0.9-next.0
    • @backstage/plugin-techdocs-module-addons-contrib@1.1.13-next.0
    • @backstage/plugin-techdocs-react@1.2.7-next.0

app-next-example-plugin@0.0.14-next.1

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.6.8-next.1
    • @backstage/core-components@0.14.10-next.0

example-backend@0.0.29-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-backend-module-github@0.4.1-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.1.20-next.1
    • @backstage/plugin-techdocs-backend@1.10.10-next.1
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/plugin-catalog-backend@1.24.1-next.1
    • @backstage/plugin-permission-node@0.8.1-next.1
    • @backstage/plugin-search-backend-module-explore@0.1.29-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/plugin-scaffolder-backend@1.23.1-next.1
    • @backstage/plugin-auth-backend@0.22.10-next.1
    • @backstage/plugin-search-backend-module-techdocs@0.1.28-next.1
    • @backstage/backend-defaults@0.4.2-next.1
    • @backstage/plugin-app-backend@0.3.72-next.1
    • @backstage/plugin-devtools-backend@0.3.9-next.1
    • @backstage/plugin-proxy-backend@0.5.4-next.1
    • @backstage/plugin-catalog-backend-module-unprocessed@0.4.10-next.1
    • @backstage/plugin-kubernetes-backend@0.18.4-next.1
    • @backstage/plugin-permission-backend@0.5.47-next.1
    • @backstage/plugin-permission-backend-module-allow-all-policy@0.1.20-next.1
    • @backstage/plugin-search-backend@1.5.15-next.1
    • @backstage/plugin-search-backend-module-catalog@0.1.29-next.1
    • @backstage/plugin-search-backend-node@1.2.28-next.1
    • @backstage/plugin-catalog-backend-module-openapi@0.1.41-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/plugin-auth-backend-module-guest-provider@0.1.9-next.1
    • @backstage/plugin-auth-node@0.4.18-next.1
    • @backstage/plugin-catalog-backend-module-backstage-openapi@0.2.6-next.1
    • @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.21-next.1
    • @backstage/plugin-notifications-backend@0.3.4-next.1
    • @backstage/plugin-signals-backend@0.1.9-next.1

example-backend-legacy@0.2.101-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-techdocs-backend@1.10.10-next.1
    • @backstage/plugin-permission-common@0.8.1-next.0
    • @backstage/plugin-catalog-backend@1.24.1-next.1
    • @backstage/plugin-permission-node@0.8.1-next.1
    • @backstage/plugin-search-backend-module-explore@0.1.29-next.1
    • @backstage/plugin-scaffolder-backend@1.23.1-next.1
    • @backstage/plugin-auth-backend@0.22.10-next.1
    • @backstage/plugin-search-backend-module-techdocs@0.1.28-next.1
    • example-app@0.2.100-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/plugin-app-backend@0.3.72-next.1
    • @backstage/plugin-devtools-backend@0.3.9-next.1
    • @backstage/plugin-proxy-backend@0.5.4-next.1
    • @backstage/plugin-catalog-backend-module-unprocessed@0.4.10-next.1
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/plugin-kubernetes-backend@0.18.4-next.1
    • @backstage/plugin-permission-backend@0.5.47-next.1
    • @backstage/plugin-search-backend@1.5.15-next.1
    • @backstage/plugin-search-backend-module-catalog@0.1.29-next.1
    • @backstage/plugin-search-backend-node@1.2.28-next.1
    • @backstage/backend-tasks@0.5.28-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/plugin-auth-node@0.4.18-next.1
    • @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.21-next.1
    • @backstage/plugin-events-backend@0.3.10-next.1
    • @backstage/plugin-events-node@0.3.9-next.1
    • @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.24-next.1
    • @backstage/plugin-scaffolder-backend-module-gitlab@0.4.5-next.1
    • @backstage/plugin-scaffolder-backend-module-rails@0.4.40-next.1
    • @backstage/plugin-search-backend-module-elasticsearch@1.5.4-next.1
    • @backstage/plugin-search-backend-module-pg@0.5.33-next.1
    • @backstage/plugin-signals-backend@0.1.9-next.1
    • @backstage/plugin-signals-node@0.1.9-next.1

e2e-test@0.2.19-next.1

Patch Changes

  • Updated dependencies
    • @backstage/create-app@0.5.18-next.1
    • @backstage/cli-common@0.1.14
    • @backstage/errors@1.2.4

techdocs-cli-embedded-app@0.2.99-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-techdocs@1.10.8-next.1
    • @backstage/cli@0.27.0-next.1
    • @backstage/plugin-catalog@1.21.2-next.1
    • @backstage/test-utils@1.5.10-next.1
    • @backstage/app-defaults@1.5.10-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/core-app-api@1.14.2-next.0
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3
    • @backstage/integration-react@1.1.30-next.0
    • @backstage/theme@0.5.6
    • @backstage/plugin-techdocs-react@1.2.7-next.0

@internal/plugin-todo-list-backend@1.0.30-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/errors@1.2.4
    • @backstage/plugin-auth-node@0.4.18-next.1

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

Patch Changes

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