Skip to main content

Release v1.40.0-next.2

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

@backstage/plugin-scaffolder-backend@2.0.0-next.2

Major Changes

  • 5863b04: BREAKING CHANGES

    • The createBuiltinActions method has been removed, as this should no longer be needed with the new backend system route, and was only useful when passing the default list of actions again in the old backend system. You should be able to rely on the default behaviour of the new backend system which is to merge the actions.

    • The createCatalogRegisterAction and createFetchCatalogEntityAction actions no longer require an AuthService, and now accepts a CatalogService instead of CatalogClient.

    Unless you're providing your own override action to the default, this should be a non-breaking change.

    You can migrate using the following if you're getting typescript errors:

    import { catalogServiceRef } from '@backstage/plugin-catalog-node';
    import { scaffolderActionsExtensionPoint } from '@backstage/plugin-scaffolder-node/alpha';

    export const myModule = createBackendModule({
    pluginId: 'scaffolder',
    moduleId: 'test',
    register({ registerInit }) {
    registerInit({
    deps: {
    scaffolder: scaffolderActionsExtensionPoint,
    catalog: catalogServiceRef,
    },
    async init({ scaffolder, catalog }) {
    scaffolder.addActions(
    createCatalogRegisterAction({
    catalog,
    }),
    createFetchCatalogEntityAction({
    catalog,
    integrations,
    }),
    );
    },
    });
    },
    });

Patch Changes

  • 89a941d: Migrating to latest action format

  • 023629e: Enable usage of secrets within 'each' step of software templates. For example, you can now structure your each step like this:

    each:
    [
    { name: "Service1", token: "${{ secrets.token1 }}" },
    { name: "Service2", token: "${{ secrets.token2 }}" },
    ]
  • e92e481: Add tests for Scaffolder

  • Updated dependencies

    • @backstage/plugin-scaffolder-backend-module-gitlab@0.9.2-next.2
    • @backstage/plugin-scaffolder-backend-module-github@0.8.0-next.2
    • @backstage/backend-defaults@0.11.0-next.2
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-node@0.6.4-next.1
    • @backstage/plugin-bitbucket-cloud-common@0.3.0
    • @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.9-next.1
    • @backstage/plugin-catalog-node@1.17.1-next.1
    • @backstage/plugin-events-node@0.4.12-next.1
    • @backstage/plugin-permission-common@0.9.0
    • @backstage/plugin-permission-node@0.10.1-next.1
    • @backstage/plugin-scaffolder-backend-module-azure@0.2.10-next.2
    • @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.11-next.2
    • @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.10-next.2
    • @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.10-next.2
    • @backstage/plugin-scaffolder-backend-module-gerrit@0.2.10-next.2
    • @backstage/plugin-scaffolder-backend-module-gitea@0.2.10-next.2
    • @backstage/plugin-scaffolder-common@1.5.11

@backstage/backend-defaults@0.11.0-next.2

Minor Changes

  • 3ccb7fc: Enhanced error handling in the auditor service factory to pass errors as objects. Aligned WinstonRootAuditorService with the default service factory's error handling.

Patch Changes

  • Updated dependencies
    • @backstage/backend-app-api@1.2.4-next.2
    • @backstage/backend-dev-utils@0.1.5
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/cli-node@0.2.13
    • @backstage/config@1.3.2
    • @backstage/config-loader@1.10.1
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0
    • @backstage/integration-aws-node@0.1.16
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-node@0.6.4-next.1
    • @backstage/plugin-events-node@0.4.12-next.1
    • @backstage/plugin-permission-node@0.10.1-next.1

@backstage/cli@0.33.0-next.1

Minor Changes

  • eef0e83: Internal update to promote the modular CLI entrypoint to stable.

Patch Changes

  • d07fe35: Added user feedback when opening config docs in browser. The command now clearly indicates what it's doing and provides fallback instructions if the browser fails to open.
  • d6d63c7: Updating the scaffolder action boilerplate to use new zod schema
  • e36e855: Added backstage.pluginId field in package.json to all default plugin package templates for the new command.
  • Updated dependencies
    • @backstage/catalog-model@1.7.4
    • @backstage/cli-common@0.1.15
    • @backstage/cli-node@0.2.13
    • @backstage/config@1.3.2
    • @backstage/config-loader@1.10.1
    • @backstage/errors@1.2.7
    • @backstage/eslint-plugin@0.1.10
    • @backstage/integration@1.17.0
    • @backstage/release-manifests@0.0.13
    • @backstage/types@1.2.1

@backstage/plugin-catalog@1.31.0-next.2

Minor Changes

  • 406acb6: Add support to customize the about card icon links via EntityIconLinkBlueprint and provide a default catalog view catalog source, launch scaffolder template and read techdocs docs icon links extensions.

    BREAKING ALPHA

    The Scaffolder launch template and TechDocs read documentation icons have been extracted from the default Catalog about card links and are now provided respectively by the Scaffolder and TechDocs plugins in the new frontend system. It means that they will not be available unless you install the TechDocs and Scaffolder plugins. Also If you are using translation for these icon link titles other than the default, you should now translate them using the scaffolder translation reference or the TechDocs translation reference (the translation keys are still the same, aboutCard.viewTechdocs and aboutCard.launchTemplate).

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/plugin-search-react@1.9.1-next.1
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/integration-react@1.2.7
    • @backstage/plugin-techdocs-react@1.3.0-next.1
    • @backstage/catalog-client@1.10.1-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/core-compat-api@0.4.3-next.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/version-bridge@1.0.11
    • @backstage/plugin-catalog-common@1.1.4
    • @backstage/plugin-permission-react@0.4.34
    • @backstage/plugin-scaffolder-common@1.5.11
    • @backstage/plugin-search-common@1.2.18
    • @backstage/plugin-techdocs-common@0.1.1-next.0

@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.5.0-next.2

Minor Changes

  • 8a150bf: BREAKING: BitbucketCloudEntityProvider now accepts a CatalogService instead of a CatalogApi.

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/catalog-client@1.10.1-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/integration@1.17.0
    • @backstage/plugin-bitbucket-cloud-common@0.3.0
    • @backstage/plugin-catalog-common@1.1.4
    • @backstage/plugin-catalog-node@1.17.1-next.1
    • @backstage/plugin-events-node@0.4.12-next.1

@backstage/plugin-catalog-backend-module-gitlab@0.7.0-next.2

Minor Changes

  • 42bb3b8: BREAKING CHANGE: User and Group discovery will default to ingesting all users in sub groups that belong to the specified root group in config. Disable by setting restrictUsersToGroup: true in app-config under your module settings.

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.11.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/integration@1.17.0
    • @backstage/plugin-catalog-common@1.1.4
    • @backstage/plugin-catalog-node@1.17.1-next.1
    • @backstage/plugin-events-node@0.4.12-next.1

@backstage/plugin-catalog-react@1.19.0-next.2

Minor Changes

  • 406acb6: Introduces a new EntityIconLinkBlueprint that customizes the About card icon links on the Catalog entity page.

    The blueprint currently accepts a useProps hook as param and this function returns the following props that will be passed to the icon link component:

    NameDescriptionTypeDefault Value
    iconThe icon to display.JSX.ElementN/A
    labelThe label for the element.stringN/A
    titleThe title for the element.stringN/A
    disabledWhether the element is disabled.booleanfalse
    hrefThe URL to navigate to when the element is clicked.stringN/A
    onClickA function to call when the element is clicked.() => voidN/A

    Here is an usage example:

    import { EntityIconLinkBlueprint } from '@backstage/plugin-catalog-react/alpha';
    //...

    EntityIconLinkBlueprint.make({
    name: 'my-icon-link',
    params: {
    useProps() {
    const { t } = useTranslationRef(myIconLinkTranslationRef);
    return {
    label: t('myIconLink.label'),
    icon: <MyIconLinkIcon />,
    href: '/my-plugin',
    };
    },
    },
    });

    Additionally, the app-config.yaml file allows you to override some of the default icon link parameters, including label and title values. Here's how to set them:

    app:
    extensions:
    - entity-icon-link:my-plugin/my-icon-link:
    config:
    label: 'My Custom Icon Link label'

    Finally, you can disable all links if you want to hide the About card header completely (useful, for example, when links are displayed on separate cards). The header is hidden when no icon links extensions are enabled.

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/integration-react@1.2.7
    • @backstage/catalog-client@1.10.1-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/core-compat-api@0.4.3-next.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/errors@1.2.7
    • @backstage/frontend-test-utils@0.3.3-next.1
    • @backstage/types@1.2.1
    • @backstage/version-bridge@1.0.11
    • @backstage/plugin-catalog-common@1.1.4
    • @backstage/plugin-permission-common@0.9.0
    • @backstage/plugin-permission-react@0.4.34

@backstage/plugin-scaffolder@1.32.0-next.2

Minor Changes

  • 3c59ece: New Frontend System Only: The Scaffolder plugin is now responsible for providing an entity icon link extension to launch templates from the catalog entity page.

Patch Changes

  • b00c160: Remove React import form notification and scaffolder plugin
  • 95a1d72: Added appropriate message when global templating function metadata is absent.
  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/integration-react@1.2.7
    • @backstage/plugin-scaffolder-react@1.16.1-next.2
    • @backstage/catalog-client@1.10.1-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/core-compat-api@0.4.3-next.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0
    • @backstage/types@1.2.1
    • @backstage/plugin-catalog-common@1.1.4
    • @backstage/plugin-permission-react@0.4.34
    • @backstage/plugin-scaffolder-common@1.5.11

@backstage/plugin-scaffolder-backend-module-github@0.8.0-next.2

Minor Changes

  • 5863b04: BREAKING CHANGES

    The createGithubEnvironmentAction action no longer requires an AuthService, and now accepts a CatalogService instead of CatalogClient.

    Unless you're providing your own override action to the default, this should be a non-breaking change.

    You can migrate using the following if you're getting typescript errors:

    import { catalogServiceRef } from '@backstage/plugin-catalog-node';
    import { scaffolderActionsExtensionPoint } from '@backstage/plugin-scaffolder-node/alpha';

    export const myModule = createBackendModule({
    pluginId: 'scaffolder',
    moduleId: 'test',
    register({ registerInit }) {
    registerInit({
    deps: {
    scaffolder: scaffolderActionsExtensionPoint,
    catalog: catalogServiceRef,
    },
    async init({ scaffolder, catalog }) {
    scaffolder.addActions(
    createGithubEnvironmentAction({
    catalog,
    }),
    );
    },
    });
    },
    });

Patch Changes

  • 575c76b: Migrate to using new actions
  • Updated dependencies
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0
    • @backstage/types@1.2.1
    • @backstage/plugin-catalog-node@1.17.1-next.1

@backstage/plugin-scaffolder-node@0.9.0-next.2

Minor Changes

  • 5863b04: BREAKING CHANGES

    The legacy methods to define createTemplateActions have been replaced with the new native zod approaches for defining input and output schemas.

    You can migrate actions that look like the following with the below examples:

    // really old legacy json schema
    createTemplateAction<{ repoUrl: string }, { repoOutput: string }>({
    id: 'test',
    schema: {
    input: {
    type: 'object'
    required: ['repoUrl']
    properties: {
    repoUrl: {
    type: 'string',
    description: 'repository url description'
    }
    }
    }
    }
    });

    // old zod method
    createTemplateAction({
    id: 'test'
    schema: {
    input: {
    repoUrl: z.string({ description: 'repository url description' })
    }
    }
    })

    // new method:
    createTemplateAction({
    id: 'test',
    schema: {
    input: {
    repoUrl: z => z.string({ description: 'repository url description' })
    }
    }
    })

    // or for more complex zod types like unions
    createTemplateAction({
    id: 'test',
    schema: {
    input: z => z.object({
    repoUrl: z.string({ description: 'repository url description' })
    })
    }
    })

    This breaking change also means that logStream has been removed entirely from ActionsContext, and that the logger is now just a LoggerService implementation instead. There is no replacement for the logStream, if you wish to still keep using a logStream we recommend that you create your own stream that writes to ctx.logger instead.

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/catalog-model@1.7.4
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0
    • @backstage/types@1.2.1
    • @backstage/plugin-scaffolder-common@1.5.11

@backstage/plugin-scaffolder-node-test-utils@0.3.0-next.2

Minor Changes

  • 3cea7ee: BREAKING CHANGES

    Because of the removal of the logStream property to the ActionsContext this has been removed from the createMockActionContext method.

    You can remove this as it's no longer supported in the scaffolder actions.

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-test-utils@1.6.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/types@1.2.1

@backstage/plugin-techdocs@1.13.0-next.2

Minor Changes

  • 3c59ece: New Frontend System Only: The TechDocs plugin is now responsible for providing an entity icon link extension to read documentation from the catalog entity page.

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/plugin-search-react@1.9.1-next.1
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/integration-react@1.2.7
    • @backstage/plugin-auth-react@0.1.16-next.0
    • @backstage/plugin-techdocs-react@1.3.0-next.1
    • @backstage/catalog-client@1.10.1-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/core-compat-api@0.4.3-next.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0
    • @backstage/theme@0.6.6
    • @backstage/plugin-search-common@1.2.18
    • @backstage/plugin-techdocs-common@0.1.1-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/core-app-api@1.17.0
    • @backstage/core-plugin-api@1.10.7
    • @backstage/theme@0.6.6
    • @backstage/plugin-permission-react@0.4.34

@backstage/backend-app-api@1.2.4-next.2

Patch Changes

  • bb9a501: Fixed a bug where occasionally the initialization order of multiple modules consuming a single extension point could happen in the wrong order.
  • Updated dependencies
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7

@backstage/backend-dynamic-feature-service@0.7.1-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.11.0-next.2
    • @backstage/plugin-catalog-backend@2.0.1-next.2
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-openapi-utils@0.5.4-next.1
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/cli-common@0.1.15
    • @backstage/cli-node@0.2.13
    • @backstage/config@1.3.2
    • @backstage/config-loader@1.10.1
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-app-node@0.1.34-next.1
    • @backstage/plugin-auth-node@0.6.4-next.1
    • @backstage/plugin-events-backend@0.5.3-next.1
    • @backstage/plugin-events-node@0.4.12-next.1
    • @backstage/plugin-permission-common@0.9.0
    • @backstage/plugin-permission-node@0.10.1-next.1
    • @backstage/plugin-search-backend-node@1.3.12-next.1
    • @backstage/plugin-search-common@1.2.18

@backstage/backend-test-utils@1.6.0-next.2

Patch Changes

  • 12c1fd4: Make the user credentials mock behave more like production
  • Updated dependencies
    • @backstage/backend-defaults@0.11.0-next.2
    • @backstage/backend-app-api@1.2.4-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-node@0.6.4-next.1
    • @backstage/plugin-events-node@0.4.12-next.1

@backstage/canon@0.5.0-next.2

Patch Changes

  • 44df879: Add min-width: 0; by default on every Flex components in Canon to help support truncated texts inside flex elements.
  • ee6ffe6: Fix styling for the title4 prop on the Heading component in Canon.
  • f2f814a: Added a render prop to the Button component in Canon to use it as a link.

@backstage/core-compat-api@0.4.3-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/core-plugin-api@1.10.7
    • @backstage/version-bridge@1.0.11

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

Patch Changes

  • 6232160: table actions header support i18n
  • Updated dependencies
    • @backstage/config@1.3.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/errors@1.2.7
    • @backstage/theme@0.6.6
    • @backstage/version-bridge@1.0.11

@backstage/create-app@0.7.0-next.2

Patch Changes

  • Bumped create-app version.
  • Updated dependencies
    • @backstage/cli-common@0.1.15

@backstage/dev-utils@1.1.11-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/app-defaults@1.6.3-next.0
    • @backstage/integration-react@1.2.7
    • @backstage/catalog-model@1.7.4
    • @backstage/core-app-api@1.17.0
    • @backstage/core-plugin-api@1.10.7
    • @backstage/theme@0.6.6

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

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/config@1.3.2
    • @backstage/core-app-api@1.17.0
    • @backstage/core-plugin-api@1.10.7
    • @backstage/errors@1.2.7
    • @backstage/frontend-defaults@0.2.3-next.1
    • @backstage/types@1.2.1
    • @backstage/version-bridge@1.0.11

@backstage/frontend-defaults@0.2.3-next.1

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/plugin-app@0.1.10-next.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/frontend-app-api@0.11.3-next.1

@backstage/frontend-dynamic-feature-loader@0.1.2-next.1

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/config@1.3.2

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/core-plugin-api@1.10.7
    • @backstage/types@1.2.1
    • @backstage/version-bridge@1.0.11

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

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/plugin-app@0.1.10-next.1
    • @backstage/config@1.3.2
    • @backstage/frontend-app-api@0.11.3-next.1
    • @backstage/test-utils@1.7.8
    • @backstage/types@1.2.1
    • @backstage/version-bridge@1.0.11

@backstage/repo-tools@0.14.0-next.2

Patch Changes

  • 4bff5d0: Fixed a bug where linting would fail with the generated clients when defining top-level enum schema values.
  • Updated dependencies
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/catalog-model@1.7.4
    • @backstage/cli-common@0.1.15
    • @backstage/cli-node@0.2.13
    • @backstage/config-loader@1.10.1
    • @backstage/errors@1.2.7

@techdocs/cli@1.9.4-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.11.0-next.2
    • @backstage/catalog-model@1.7.4
    • @backstage/cli-common@0.1.15
    • @backstage/config@1.3.2
    • @backstage/plugin-techdocs-node@1.13.4-next.1

@backstage/plugin-api-docs@0.12.8-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/plugin-catalog@1.31.0-next.2
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/catalog-model@1.7.4
    • @backstage/core-compat-api@0.4.3-next.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/plugin-catalog-common@1.1.4
    • @backstage/plugin-permission-react@0.4.34

@backstage/plugin-app@0.1.10-next.1

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/integration-react@1.2.7
    • @backstage/core-plugin-api@1.10.7
    • @backstage/theme@0.6.6
    • @backstage/types@1.2.1
    • @backstage/plugin-permission-react@0.4.34

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/core-plugin-api@1.10.7

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

Patch Changes

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

@backstage/plugin-catalog-backend@2.0.1-next.2

Patch Changes

  • 2cac8b0: You can now specify an optional value when applying the HAS_LABEL permission rule, similar to the HAS_ANNOTATION permission rule.
  • Updated dependencies
    • @backstage/backend-openapi-utils@0.5.4-next.1
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/catalog-client@1.10.1-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0
    • @backstage/types@1.2.1
    • @backstage/plugin-catalog-common@1.1.4
    • @backstage/plugin-catalog-node@1.17.1-next.1
    • @backstage/plugin-events-node@0.4.12-next.1
    • @backstage/plugin-permission-common@0.9.0
    • @backstage/plugin-permission-node@0.10.1-next.1

@backstage/plugin-catalog-backend-module-aws@0.4.12-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.11.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0
    • @backstage/integration-aws-node@0.1.16
    • @backstage/plugin-catalog-common@1.1.4
    • @backstage/plugin-catalog-node@1.17.1-next.1
    • @backstage/plugin-kubernetes-common@0.9.5

@backstage/plugin-catalog-backend-module-github@0.9.1-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend@2.0.1-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/catalog-client@1.10.1-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/integration@1.17.0
    • @backstage/plugin-catalog-common@1.1.4
    • @backstage/plugin-catalog-node@1.17.1-next.1
    • @backstage/plugin-events-node@0.4.12-next.1

@backstage/plugin-catalog-backend-module-github-org@0.3.11-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/config@1.3.2
    • @backstage/plugin-catalog-backend-module-github@0.9.1-next.2
    • @backstage/plugin-catalog-node@1.17.1-next.1
    • @backstage/plugin-events-node@0.4.12-next.1

@backstage/plugin-catalog-backend-module-gitlab-org@0.2.10-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend-module-gitlab@0.7.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/plugin-catalog-node@1.17.1-next.1
    • @backstage/plugin-events-node@0.4.12-next.1

@backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.1-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.11.0-next.2
    • @backstage/plugin-catalog-backend@2.0.1-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-catalog-node@1.17.1-next.1
    • @backstage/plugin-events-node@0.4.12-next.1
    • @backstage/plugin-permission-common@0.9.0

@backstage/plugin-catalog-backend-module-logs@0.1.11-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend@2.0.1-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/plugin-events-node@0.4.12-next.1

@backstage/plugin-catalog-graph@0.4.20-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/catalog-client@1.10.1-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/core-compat-api@0.4.3-next.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/types@1.2.1

@backstage/plugin-catalog-import@0.13.1-next.2

Patch Changes

  • 5d7c539: Catalog import plugin full support i18n
  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/integration-react@1.2.7
    • @backstage/catalog-client@1.10.1-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/core-compat-api@0.4.3-next.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0
    • @backstage/plugin-catalog-common@1.1.4

@backstage/plugin-catalog-unprocessed-entities@0.2.18-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/catalog-model@1.7.4
    • @backstage/core-compat-api@0.4.3-next.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/errors@1.2.7

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/core-plugin-api@1.10.7
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1

@backstage/plugin-devtools@0.1.28-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/core-compat-api@0.4.3-next.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/errors@1.2.7
    • @backstage/plugin-devtools-common@0.1.16
    • @backstage/plugin-permission-react@0.4.34

@backstage/plugin-devtools-backend@0.5.6-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.11.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/cli-common@0.1.15
    • @backstage/config@1.3.2
    • @backstage/config-loader@1.10.1
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-devtools-common@0.1.16
    • @backstage/plugin-permission-common@0.9.0
    • @backstage/plugin-permission-node@0.10.1-next.1

@backstage/plugin-home@0.8.9-next.2

Patch Changes

  • 0ebad54: Fixed the WelcomeTitle to properly default to the previous value of inherit
  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/plugin-home-react@0.1.27-next.0
    • @backstage/catalog-client@1.10.1-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/core-app-api@1.17.0
    • @backstage/core-compat-api@0.4.3-next.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/theme@0.6.6

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/core-plugin-api@1.10.7

@backstage/plugin-kubernetes@0.12.8-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/plugin-kubernetes-react@0.5.8-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/core-compat-api@0.4.3-next.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/plugin-kubernetes-common@0.9.5
    • @backstage/plugin-permission-react@0.4.34

@backstage/plugin-kubernetes-cluster@0.0.26-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/plugin-kubernetes-react@0.5.8-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/core-plugin-api@1.10.7
    • @backstage/plugin-kubernetes-common@0.9.5
    • @backstage/plugin-permission-react@0.4.34

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/core-plugin-api@1.10.7
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-kubernetes-common@0.9.5

@backstage/plugin-notifications@0.5.6-next.2

Patch Changes

  • b00c160: Remove React import form notification and scaffolder plugin
  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/core-compat-api@0.4.3-next.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/errors@1.2.7
    • @backstage/theme@0.6.6
    • @backstage/types@1.2.1
    • @backstage/plugin-notifications-common@0.0.9-next.0
    • @backstage/plugin-signals-react@0.0.13

@backstage/plugin-notifications-backend@0.5.7-next.2

Patch Changes

  • 8a150bf: Internal changes to switch to the non-alpha catalogServiceRef
  • Updated dependencies
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-node@0.6.4-next.1
    • @backstage/plugin-catalog-node@1.17.1-next.1
    • @backstage/plugin-events-node@0.4.12-next.1
    • @backstage/plugin-notifications-common@0.0.9-next.0
    • @backstage/plugin-notifications-node@0.2.16-next.1
    • @backstage/plugin-signals-node@0.1.21-next.1

@backstage/plugin-notifications-backend-module-email@0.3.10-next.2

Patch Changes

  • 8a150bf: Internal changes to switch to the non-alpha catalogServiceRef
  • Updated dependencies
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/catalog-client@1.10.1-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/integration-aws-node@0.1.16
    • @backstage/types@1.2.1
    • @backstage/plugin-catalog-node@1.17.1-next.1
    • @backstage/plugin-notifications-common@0.0.9-next.0
    • @backstage/plugin-notifications-node@0.2.16-next.1

@backstage/plugin-org@0.6.40-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/catalog-model@1.7.4
    • @backstage/core-compat-api@0.4.3-next.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/plugin-catalog-common@1.1.4

@backstage/plugin-org-react@0.1.39-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/catalog-client@1.10.1-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/core-plugin-api@1.10.7

@backstage/plugin-scaffolder-backend-module-azure@0.2.10-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0

@backstage/plugin-scaffolder-backend-module-bitbucket@0.3.11-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0
    • @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.10-next.2
    • @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.10-next.2

@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.10-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0
    • @backstage/plugin-bitbucket-cloud-common@0.3.0

@backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.10-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0

@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.10-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0

@backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.11-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.11.0-next.2
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0
    • @backstage/types@1.2.1

@backstage/plugin-scaffolder-backend-module-gcp@0.2.10-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0

@backstage/plugin-scaffolder-backend-module-gerrit@0.2.10-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0

@backstage/plugin-scaffolder-backend-module-gitea@0.2.10-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0

@backstage/plugin-scaffolder-backend-module-gitlab@0.9.2-next.2

Patch Changes

  • a296637: Migrate to new action format
  • Updated dependencies
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0

@backstage/plugin-scaffolder-backend-module-notifications@0.1.11-next.2

Patch Changes

  • 3f56115: Removed octokit dependency as it was not being used
  • Updated dependencies
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/plugin-notifications-common@0.0.9-next.0
    • @backstage/plugin-notifications-node@0.2.16-next.1

@backstage/plugin-scaffolder-backend-module-rails@0.5.10-next.2

Patch Changes

  • a579693: Migrate to new actions format
  • Updated dependencies
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0
    • @backstage/types@1.2.1

@backstage/plugin-scaffolder-backend-module-sentry@0.2.10-next.2

Patch Changes

  • 6c6fb4a: Migrate to new actions format
  • Updated dependencies
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7

@backstage/plugin-scaffolder-backend-module-yeoman@0.4.11-next.2

Patch Changes

  • b392a34: Migrate to new actions format
  • Updated dependencies
    • @backstage/plugin-scaffolder-node-test-utils@0.3.0-next.2
    • @backstage/plugin-scaffolder-node@0.9.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/types@1.2.1

@backstage/plugin-scaffolder-react@1.16.1-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/catalog-client@1.10.1-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/core-plugin-api@1.10.7
    • @backstage/theme@0.6.6
    • @backstage/types@1.2.1
    • @backstage/version-bridge@1.0.11
    • @backstage/plugin-permission-react@0.4.34
    • @backstage/plugin-scaffolder-common@1.5.11

@backstage/plugin-search@1.4.27-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/plugin-search-react@1.9.1-next.1
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/core-compat-api@0.4.3-next.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/version-bridge@1.0.11
    • @backstage/plugin-search-common@1.2.18

@backstage/plugin-search-backend@2.0.3-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.11.0-next.2
    • @backstage/backend-openapi-utils@0.5.4-next.1
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-permission-common@0.9.0
    • @backstage/plugin-permission-node@0.10.1-next.1
    • @backstage/plugin-search-backend-node@1.3.12-next.1
    • @backstage/plugin-search-common@1.2.18

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

Patch Changes

  • 869fa46: SearchBar clear button support i18n
  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/core-plugin-api@1.10.7
    • @backstage/theme@0.6.6
    • @backstage/types@1.2.1
    • @backstage/version-bridge@1.0.11
    • @backstage/plugin-search-common@1.2.18

@backstage/plugin-signals@0.0.20-next.1

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/core-plugin-api@1.10.7
    • @backstage/theme@0.6.6
    • @backstage/types@1.2.1
    • @backstage/plugin-signals-react@0.0.13

@backstage/plugin-techdocs-addons-test-utils@1.0.49-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog@1.31.0-next.2
    • @backstage/plugin-techdocs@1.13.0-next.2
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/plugin-search-react@1.9.1-next.1
    • @backstage/integration-react@1.2.7
    • @backstage/plugin-techdocs-react@1.3.0-next.1
    • @backstage/core-app-api@1.17.0
    • @backstage/core-plugin-api@1.10.7
    • @backstage/test-utils@1.7.8

@backstage/plugin-techdocs-backend@2.0.3-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.11.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/catalog-client@1.10.1-next.0
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/integration@1.17.0
    • @backstage/plugin-catalog-common@1.1.4
    • @backstage/plugin-catalog-node@1.17.1-next.1
    • @backstage/plugin-permission-common@0.9.0
    • @backstage/plugin-search-backend-module-techdocs@0.4.3-next.1
    • @backstage/plugin-techdocs-common@0.1.1-next.0
    • @backstage/plugin-techdocs-node@1.13.4-next.1

@backstage/plugin-techdocs-module-addons-contrib@1.1.25-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/integration-react@1.2.7
    • @backstage/plugin-techdocs-react@1.3.0-next.1
    • @backstage/core-plugin-api@1.10.7
    • @backstage/integration@1.17.0

@backstage/plugin-techdocs-react@1.3.0-next.1

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/version-bridge@1.0.11
    • @backstage/plugin-techdocs-common@0.1.1-next.0

@backstage/plugin-user-settings@0.8.23-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/catalog-model@1.7.4
    • @backstage/core-app-api@1.17.0
    • @backstage/core-compat-api@0.4.3-next.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/errors@1.2.7
    • @backstage/theme@0.6.6
    • @backstage/types@1.2.1
    • @backstage/plugin-signals-react@0.0.13
    • @backstage/plugin-user-settings-common@0.0.1

@backstage/plugin-user-settings-backend@0.3.3-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.11.0-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-node@0.6.4-next.1
    • @backstage/plugin-signals-node@0.1.21-next.1
    • @backstage/plugin-user-settings-common@0.0.1

example-app@0.2.110-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/cli@0.33.0-next.1
    • @backstage/canon@0.5.0-next.2
    • @backstage/plugin-notifications@0.5.6-next.2
    • @backstage/plugin-scaffolder@1.32.0-next.2
    • @backstage/plugin-catalog@1.31.0-next.2
    • @backstage/plugin-techdocs@1.13.0-next.2
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/plugin-catalog-import@0.13.1-next.2
    • @backstage/plugin-home@0.8.9-next.2
    • @backstage/plugin-search-react@1.9.1-next.1
    • @backstage/app-defaults@1.6.3-next.0
    • @backstage/integration-react@1.2.7
    • @backstage/plugin-api-docs@0.12.8-next.2
    • @backstage/plugin-auth-react@0.1.16-next.0
    • @backstage/plugin-catalog-graph@0.4.20-next.2
    • @backstage/plugin-catalog-unprocessed-entities@0.2.18-next.2
    • @backstage/plugin-devtools@0.1.28-next.2
    • @backstage/plugin-kubernetes@0.12.8-next.2
    • @backstage/plugin-kubernetes-cluster@0.0.26-next.2
    • @backstage/plugin-org@0.6.40-next.2
    • @backstage/plugin-scaffolder-react@1.16.1-next.2
    • @backstage/plugin-search@1.4.27-next.2
    • @backstage/plugin-signals@0.0.20-next.1
    • @backstage/plugin-techdocs-module-addons-contrib@1.1.25-next.2
    • @backstage/plugin-techdocs-react@1.3.0-next.1
    • @backstage/plugin-user-settings@0.8.23-next.2
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/core-app-api@1.17.0
    • @backstage/core-plugin-api@1.10.7
    • @backstage/frontend-app-api@0.11.3-next.1
    • @backstage/theme@0.6.6
    • @backstage/plugin-catalog-common@1.1.4
    • @backstage/plugin-permission-react@0.4.34
    • @backstage/plugin-search-common@1.2.18

example-app-next@0.0.24-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/cli@0.33.0-next.1
    • @backstage/canon@0.5.0-next.2
    • @backstage/plugin-notifications@0.5.6-next.2
    • @backstage/plugin-scaffolder@1.32.0-next.2
    • @backstage/plugin-catalog@1.31.0-next.2
    • @backstage/plugin-techdocs@1.13.0-next.2
    • @backstage/plugin-catalog-react@1.19.0-next.2
    • @backstage/plugin-catalog-import@0.13.1-next.2
    • @backstage/plugin-home@0.8.9-next.2
    • @backstage/plugin-search-react@1.9.1-next.1
    • @backstage/app-defaults@1.6.3-next.0
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/integration-react@1.2.7
    • @backstage/plugin-api-docs@0.12.8-next.2
    • @backstage/plugin-app@0.1.10-next.1
    • @backstage/plugin-app-visualizer@0.1.20-next.1
    • @backstage/plugin-auth-react@0.1.16-next.0
    • @backstage/plugin-catalog-graph@0.4.20-next.2
    • @backstage/plugin-catalog-unprocessed-entities@0.2.18-next.2
    • @backstage/plugin-kubernetes@0.12.8-next.2
    • @backstage/plugin-kubernetes-cluster@0.0.26-next.2
    • @backstage/plugin-org@0.6.40-next.2
    • @backstage/plugin-scaffolder-react@1.16.1-next.2
    • @backstage/plugin-search@1.4.27-next.2
    • @backstage/plugin-signals@0.0.20-next.1
    • @backstage/plugin-techdocs-module-addons-contrib@1.1.25-next.2
    • @backstage/plugin-techdocs-react@1.3.0-next.1
    • @backstage/plugin-user-settings@0.8.23-next.2
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/core-app-api@1.17.0
    • @backstage/core-compat-api@0.4.3-next.2
    • @backstage/core-plugin-api@1.10.7
    • @backstage/frontend-app-api@0.11.3-next.1
    • @backstage/frontend-defaults@0.2.3-next.1
    • @backstage/theme@0.6.6
    • @backstage/plugin-catalog-common@1.1.4
    • @backstage/plugin-permission-react@0.4.34
    • @backstage/plugin-search-common@1.2.18

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

Patch Changes

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

example-backend@0.0.39-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-backend-module-github@0.8.0-next.2
    • @backstage/backend-defaults@0.11.0-next.2
    • @backstage/plugin-scaffolder-backend@2.0.0-next.2
    • @backstage/plugin-notifications-backend@0.5.7-next.2
    • @backstage/plugin-catalog-backend@2.0.1-next.2
    • @backstage/plugin-scaffolder-backend-module-notifications@0.1.11-next.2
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/catalog-model@1.7.4
    • @backstage/plugin-app-backend@0.5.3-next.1
    • @backstage/plugin-auth-backend@0.25.1-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.3.4-next.1
    • @backstage/plugin-auth-backend-module-guest-provider@0.2.9-next.1
    • @backstage/plugin-auth-node@0.6.4-next.1
    • @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.3-next.1
    • @backstage/plugin-catalog-backend-module-openapi@0.2.11-next.1
    • @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.9-next.1
    • @backstage/plugin-catalog-backend-module-unprocessed@0.6.1-next.1
    • @backstage/plugin-devtools-backend@0.5.6-next.2
    • @backstage/plugin-events-backend@0.5.3-next.1
    • @backstage/plugin-events-backend-module-google-pubsub@0.1.1-next.1
    • @backstage/plugin-kubernetes-backend@0.19.7-next.1
    • @backstage/plugin-permission-backend@0.7.1-next.1
    • @backstage/plugin-permission-backend-module-allow-all-policy@0.2.9-next.1
    • @backstage/plugin-permission-common@0.9.0
    • @backstage/plugin-permission-node@0.10.1-next.1
    • @backstage/plugin-proxy-backend@0.6.3-next.1
    • @backstage/plugin-search-backend@2.0.3-next.2
    • @backstage/plugin-search-backend-module-catalog@0.3.5-next.1
    • @backstage/plugin-search-backend-module-explore@0.3.3-next.1
    • @backstage/plugin-search-backend-module-techdocs@0.4.3-next.1
    • @backstage/plugin-search-backend-node@1.3.12-next.1
    • @backstage/plugin-signals-backend@0.3.5-next.1
    • @backstage/plugin-techdocs-backend@2.0.3-next.2

e2e-test@0.2.29-next.2

Patch Changes

  • Updated dependencies
    • @backstage/create-app@0.7.0-next.2
    • @backstage/cli-common@0.1.15
    • @backstage/errors@1.2.7

@internal/frontend@0.0.10-next.1

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/types@1.2.1
    • @backstage/version-bridge@1.0.11

@internal/scaffolder@0.0.10-next.2

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.10.3-next.1
    • @backstage/plugin-scaffolder-react@1.16.1-next.2

techdocs-cli-embedded-app@0.2.109-next.2

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/cli@0.33.0-next.1
    • @backstage/plugin-catalog@1.31.0-next.2
    • @backstage/plugin-techdocs@1.13.0-next.2
    • @backstage/app-defaults@1.6.3-next.0
    • @backstage/integration-react@1.2.7
    • @backstage/plugin-techdocs-react@1.3.0-next.1
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/core-app-api@1.17.0
    • @backstage/core-plugin-api@1.10.7
    • @backstage/test-utils@1.7.8
    • @backstage/theme@0.6.6

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.17.3-next.0
    • @backstage/core-plugin-api@1.10.7