Skip to content

Latest commit

 

History

History
2199 lines (1717 loc) · 72.9 KB

v1.30.0-next.3-changelog.md

File metadata and controls

2199 lines (1717 loc) · 72.9 KB

Release v1.30.0-next.3

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

@backstage/backend-plugin-api@0.8.0-next.2

Minor Changes

  • 7c5f3b0: The createServiceRef function now accepts a new boolean multiple option. The multiple option defaults to false and when set to true, it enables that multiple implementation are installed for the created service ref.

    We're looking for ways to make it possible to augment services without the need to replace the entire service.

    Typical example of that being the ability to install support for additional targets for the UrlReader service without replacing the service itself. This achieves that by allowing us to define services that can have multiple simultaneous implementation, allowing the UrlReader implementation to depend on such a service to collect all possible implementation of support for external targets:

    // @backstage/backend-defaults
    
    + export const urlReaderFactoriesServiceRef = createServiceRef<ReaderFactory>({
    +   id: 'core.urlReader.factories',
    +   scope: 'plugin',
    +   multiton: true,
    + });
    
    ...
    
    export const urlReaderServiceFactory = createServiceFactory({
      service: coreServices.urlReader,
      deps: {
        config: coreServices.rootConfig,
        logger: coreServices.logger,
    +   factories: urlReaderFactoriesServiceRef,
      },
    -  async factory({ config, logger }) {
    +  async factory({ config, logger, factories }) {
        return UrlReaders.default({
          config,
          logger,
    +     factories,
        });
      },
    });

    With that, you can then add more custom UrlReader factories by installing more implementations of the urlReaderFactoriesServiceRef in your backend instance. Something like:

    // packages/backend/index.ts
    import { createServiceFactory } from '@backstage/backend-plugin-api';
    import { urlReaderFactoriesServiceRef } from '@backstage/backend-defaults';
    ...
    
    backend.add(createServiceFactory({
      service: urlReaderFactoriesServiceRef,
      deps: {},
      async factory() {
        return CustomUrlReader.factory;
      },
    }));
    
    ...

Patch Changes

  • 6061061: Added createBackendFeatureLoader, which can be used to create an installable backend feature that can in turn load in additional backend features in a dynamic way.

  • ba9abf4: The SchedulerService now allows tasks with frequency: { trigger: 'manual' }. This means that the task will not be scheduled, but rather run only when manually triggered with SchedulerService.triggerTask.

  • 8b13183: Added createBackendFeatureLoader, which can be used to programmatically select and install backend features.

    A feature loader can return an list of features to be installed, for example in the form on an Array or other for of iterable, which allows for the loader to be defined as a generator function. Both synchronous and asynchronous loaders are supported.

    Additionally, a loader can depend on services in its implementation, with the restriction that it can only depend on root-scoped services, and it may not override services that have already been instantiated.

    const searchLoader = createBackendFeatureLoader({
      deps: {
        config: coreServices.rootConfig,
      },
      *loader({ config }) {
        // Example of a custom config flag to enable search
        if (config.getOptionalString('customFeatureToggle.search')) {
          yield import('@backstage/plugin-search-backend/alpha');
          yield import('@backstage/plugin-search-backend-module-catalog/alpha');
          yield import('@backstage/plugin-search-backend-module-explore/alpha');
          yield import('@backstage/plugin-search-backend-module-techdocs/alpha');
        }
      },
    });
  • Updated dependencies

    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/cli-common@0.1.14
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

@backstage/frontend-plugin-api@0.7.0-next.2

Minor Changes

  • 72754db: BREAKING: All types of route refs are always considered optional by useRouteRef, which means the caller must always handle a potential undefined return value. Related to this change, the optional option from createExternalRouteRef has been removed, since it is no longer necessary.

    This is released as an immediate breaking change as we expect the usage of the new route refs to be extremely low or zero, since plugins that support the new system will still use route refs and useRouteRef from @backstage/core-plugin-api in combination with convertLegacyRouteRef from @backstage/core-compat-api.

Patch Changes

  • 210d066: Added support for using the params in other properties of the createExtensionBlueprint options by providing a callback.
  • 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/plugin-auth-node@0.5.0-next.2

Minor Changes

  • 579afd0: BREAKING: Sign-in resolvers configured via .signIn.resolvers now take precedence over sign-in resolvers passed to signInResolver option of createOAuthProviderFactory. This effectively makes sign-in resolvers passed via the signInResolver the default one, which you can then override through configuration.

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @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.22.0-next.2

Minor Changes

  • 6925dcb: Introduces the HasSubdomainsCard component that displays the subdomains of a given domain

Patch Changes

  • 604a504: The entity relation cards available for the new frontend system via /alpha now have more accurate and granular default filters.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/core-compat-api@0.2.8-next.2
    • @backstage/plugin-search-common@1.2.14-next.1
    • @backstage/plugin-search-react@1.7.14-next.2
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @backstage/plugin-permission-react@0.4.25-next.1
    • @backstage/plugin-scaffolder-common@1.5.5-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/errors@1.2.4
    • @backstage/integration-react@1.1.30-next.0
    • @backstage/types@1.1.1

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

Minor Changes

  • 3fca643: Added field extension RepoBranchPicker that supports autocompletion for Bitbucket

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-react@1.11.0-next.2
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/core-compat-api@0.2.8-next.2
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @backstage/plugin-permission-react@0.4.25-next.1
    • @backstage/plugin-scaffolder-common@1.5.5-next.1
    • @backstage/integration@1.14.0-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/app-defaults@1.5.10-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-react@0.4.25-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/theme@0.5.6

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

Patch Changes

  • 8b13183: Added support for the latest version of BackendFeatures from @backstage/backend-plugin-api, including feature loaders.
  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • 7c5f3b0: Update the ServiceRegister implementation to enable registering multiple service implementations for a given service ref.
  • 80a0737: Added configuration for the packages options to config schema
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/config-loader@1.9.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/plugin-permission-node@0.8.1-next.2
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/cli-node@0.2.7
    • @backstage/cli-common@0.1.14
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/config-loader@1.9.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @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/backend-defaults@0.4.2-next.2

Patch Changes

  • 0d16b52: Add access restrictions to the JWKS external access method config schema
  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • ba9abf4: The SchedulerService now allows tasks with frequency: { trigger: 'manual' }. This means that the task will not be scheduled, but rather run only when manually triggered with SchedulerService.triggerTask.
  • 7c5f3b0: Update the UrlReader service to depends on multiple instances of UrlReaderFactoryProvider service.
  • 1d5f298: Avoid excessive numbers of error listeners on cache clients
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-app-api@0.8.1-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/config-loader@1.9.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/plugin-permission-node@0.8.1-next.2
    • @backstage/plugin-events-node@0.3.9-next.2
    • @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/backend-dynamic-feature-service@0.2.16-next.2

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/errors@1.2.4

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

Patch Changes

  • ba9abf4: The PluginTaskScheduler now allows tasks with frequency: { trigger: 'manual' }. This means that the task will not be scheduled, but rather run only when manually triggered with PluginTaskScheduler.triggerTask.
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

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

Patch Changes

  • 8b13183: Internal updates to support latest version of BackendFeautures from @backstage/backend-plugin-api.
  • 7c5f3b0: Update the ServiceFactoryTester to be able to test services that enables multi implementation installation.
  • Updated dependencies
    • @backstage/backend-defaults@0.4.2-next.2
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-app-api@0.8.1-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/plugin-events-node@0.3.9-next.2
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

@backstage/cli@0.27.0-next.3

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/config-loader@1.9.0-next.2
    • @backstage/cli-node@0.2.7
    • @backstage/integration@1.14.0-next.0
    • @backstage/catalog-model@1.5.0
    • @backstage/cli-common@0.1.14
    • @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/config-loader@1.9.0-next.2

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/cli-common@0.1.14
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

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

Patch Changes

  • 72754db: Updated usage of useRouteRef, which can now always return undefined.
  • 16cf96c: Both compatWrapper and convertLegacyRouteRef now support converting from the new system to the old.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/core-plugin-api@1.9.3
    • @backstage/version-bridge@1.0.8

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/cli-common@0.1.14

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @backstage/app-defaults@1.5.10-next.2
    • @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.2

Patch Changes

  • 72754db: Updated usage of useRouteRef, which can now always return undefined.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @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-test-utils@0.1.12-next.2

Patch Changes

  • 8209449: Added new APIs for testing extensions
  • 72754db: Updated usage of useRouteRef, which can now always return undefined.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/frontend-app-api@0.7.5-next.2
    • @backstage/test-utils@1.5.10-next.2
    • @backstage/config@1.2.0
    • @backstage/types@1.1.1

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

Patch Changes

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

@techdocs/cli@1.8.17-next.2

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/plugin-permission-react@0.4.25-next.1
    • @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.2

Patch Changes

  • 4b6d2cb: Updated dependency @graphiql/react to ^0.23.0.
  • Updated dependencies
    • @backstage/plugin-catalog@1.22.0-next.2
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/core-compat-api@0.2.8-next.2
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @backstage/plugin-permission-react@0.4.25-next.1
    • @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.2

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/config-loader@1.9.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/plugin-app-node@0.1.23-next.2
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/config-loader@1.9.0-next.2

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

Patch Changes

  • 72754db: Updated usage of useRouteRef, which can now always return undefined.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/core-components@0.14.10-next.0
    • @backstage/core-plugin-api@1.9.3

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.6-next.2
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.18-next.2
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.15-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.2.4-next.2
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.6-next.2
    • @backstage/plugin-auth-backend-module-github-provider@0.1.20-next.2
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.20-next.2
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.2.4-next.2
    • @backstage/plugin-auth-backend-module-oidc-provider@0.2.4-next.2
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.16-next.2
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.1.4-next.2
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.6-next.2
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.18-next.2
    • @backstage/plugin-auth-backend-module-google-provider@0.1.20-next.2
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.16-next.2
    • @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-atlassian-provider@0.2.4-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-auth-backend@0.22.10-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/errors@1.2.4

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/catalog-model@1.5.0
    • @backstage/errors@1.2.4

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/catalog-model@1.5.0
    • @backstage/errors@1.2.4

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/errors@1.2.4

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-auth-backend@0.22.10-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/config@1.2.0

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/catalog-model@1.5.0

@backstage/plugin-bitbucket-cloud-common@0.2.22-next.1

Patch Changes

  • 3fca643: Added method listBranchesByRepository to BitbucketCloudClient
  • Updated dependencies
    • @backstage/integration@1.14.0-next.0

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-permission-node@0.8.1-next.2
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/backend-openapi-utils@0.1.16-next.2
    • @backstage/plugin-events-node@0.3.9-next.2
    • @backstage/plugin-search-backend-module-catalog@0.1.29-next.2
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @backstage/integration@1.14.0-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-catalog-backend-module-aws@0.3.18-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @backstage/plugin-kubernetes-common@0.8.2-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/integration-aws-node@0.1.12
    • @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.2

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/backend-openapi-utils@0.1.16-next.2
    • @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.2

Patch Changes

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

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/integration@1.14.0-next.0
    • @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.2

Patch Changes

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

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-catalog-backend@1.24.1-next.2
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/plugin-events-node@0.3.9-next.2
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0

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

Patch Changes

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

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/plugin-events-node@0.3.9-next.2
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/plugin-catalog-common@1.0.26-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.2

Patch Changes

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

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-catalog-backend@1.24.1-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @backstage/integration@1.14.0-next.0
    • @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.2

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @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.2

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/core-compat-api@0.2.8-next.2
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @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.2

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/core-compat-api@0.2.8-next.2
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @backstage/integration@1.14.0-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.2

Patch Changes

  • 7c5f3b0: Explicit declare if the service ref accepts single or multiple implementations.
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/plugin-permission-node@0.8.1-next.2
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @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.2

Patch Changes

  • 012e3eb: Entity page extensions created for the new frontend system via the /alpha exports will now be enabled by default.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @backstage/plugin-permission-react@0.4.25-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/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.1

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/core-compat-api@0.2.8-next.2
    • @backstage/plugin-devtools-common@0.1.12-next.1
    • @backstage/plugin-permission-react@0.4.25-next.1
    • @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.2

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/config-loader@1.9.0-next.2
    • @backstage/plugin-permission-node@0.8.1-next.2
    • @backstage/plugin-devtools-common@0.1.12-next.1
    • @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.1

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-events-node@0.3.9-next.2

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-events-node@0.3.9-next.2

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-events-node@0.3.9-next.2

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2

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

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/core-compat-api@0.2.8-next.2
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @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.2

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/core-compat-api@0.2.8-next.2
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @backstage/plugin-kubernetes-common@0.8.2-next.1
    • @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.2

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • 8c1aa06: Add kubernetes.clusterLocatorMethods[].clusters[].customResources to the configuration schema. This was already documented and supported by the plugin.
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-kubernetes-node@0.1.17-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/plugin-permission-node@0.8.1-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/plugin-kubernetes-common@0.8.2-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/errors@1.2.4
    • @backstage/types@1.1.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @backstage/plugin-kubernetes-common@0.8.2-next.1
    • @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.2

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

Patch Changes

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

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-kubernetes-common@0.8.2-next.1
    • @backstage/catalog-model@1.5.0
    • @backstage/types@1.1.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-kubernetes-common@0.8.2-next.1
    • @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.2

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-notifications-node@0.2.4-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/plugin-events-node@0.3.9-next.2
    • @backstage/plugin-signals-node@0.1.9-next.2
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-notifications-common@0.0.5

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

Patch Changes

  • cdb630d: Add support for stream transport for debugging purposes
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-notifications-node@0.2.4-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @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.2

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-signals-node@0.1.9-next.2
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/plugin-notifications-common@0.0.5

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

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/core-compat-api@0.2.8-next.2
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @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.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @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.2

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/plugin-permission-node@0.8.1-next.2
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/plugin-permission-node@0.8.1-next.2

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

Patch Changes

  • df784fe: Add the MetadataResponse 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.2

Patch Changes

  • df784fe: The MetadataResponse type has been moved to @backstage/plugin-permission-common to match the recent move of MetadataResponseSerializedRule, 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/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

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

Patch Changes

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

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/config@1.2.0
    • @backstage/types@1.1.1

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

Patch Changes

  • c544f81: Add support for status filtering in scaffolder tasks endpoint
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-scaffolder-node@0.4.9-next.2
    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.1.13-next.2
    • @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.1.13-next.2
    • @backstage/plugin-scaffolder-backend-module-bitbucket@0.2.13-next.2
    • @backstage/plugin-scaffolder-backend-module-gerrit@0.1.15-next.2
    • @backstage/plugin-scaffolder-backend-module-gitea@0.1.13-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/plugin-permission-node@0.8.1-next.2
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/plugin-bitbucket-cloud-common@0.2.22-next.1
    • @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.21-next.2
    • @backstage/plugin-scaffolder-backend-module-azure@0.1.15-next.2
    • @backstage/plugin-scaffolder-backend-module-github@0.4.1-next.2
    • @backstage/plugin-scaffolder-backend-module-gitlab@0.4.5-next.2
    • @backstage/plugin-scaffolder-common@1.5.5-next.1
    • @backstage/integration@1.14.0-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-scaffolder-backend-module-azure@0.1.15-next.2

Patch Changes

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

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-scaffolder-node@0.4.9-next.2
    • @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.1.13-next.2
    • @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.1.13-next.2
    • @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.2

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • 3fca643: Added autocompletion support for resource branches
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-scaffolder-node@0.4.9-next.2
    • @backstage/plugin-bitbucket-cloud-common@0.2.22-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-server@0.1.13-next.2

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-scaffolder-node@0.4.9-next.2
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-scaffolder-node@0.4.9-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-scaffolder-node@0.4.9-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @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-backend-module-gcp@0.1.1-next.2

Patch Changes

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

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-scaffolder-node@0.4.9-next.2
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-scaffolder-node@0.4.9-next.2
    • @backstage/integration@1.14.0-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-scaffolder-node@0.4.9-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @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-backend-module-sentry@0.1.31-next.2

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • 382e868: Added test cases for sentry:project:create examples
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-scaffolder-node@0.4.9-next.2
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

  • c544f81: Add support for status filtering in scaffolder tasks endpoint
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-scaffolder-common@1.5.5-next.1
    • @backstage/integration@1.14.0-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.2

Patch Changes

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

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

Patch Changes

  • 072c00c: Fixed a bug in DefaultTableOutputs where output elements overlapped on smaller screen sizes
  • 04759f2: Fix null check in isJsonObject utility function for scaffolder review state component
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @backstage/plugin-permission-react@0.4.25-next.1
    • @backstage/plugin-scaffolder-common@1.5.5-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/theme@0.5.6
    • @backstage/types@1.1.1
    • @backstage/version-bridge@1.0.8

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

Patch Changes

  • 3123c16: Fix package metadata
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/core-compat-api@0.2.8-next.2
    • @backstage/plugin-search-common@1.2.14-next.1
    • @backstage/plugin-search-react@1.7.14-next.2
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @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.2

Patch Changes

  • 3123c16: Fix package metadata
  • Updated dependencies
    • @backstage/backend-defaults@0.4.2-next.2
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-permission-node@0.8.1-next.2
    • @backstage/plugin-search-backend-node@1.2.28-next.2
    • @backstage/plugin-search-common@1.2.14-next.1
    • @backstage/backend-openapi-utils@0.1.16-next.2
    • @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.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-search-backend-node@1.2.28-next.2
    • @backstage/plugin-search-common@1.2.14-next.1
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/plugin-catalog-common@1.0.26-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.2

Patch Changes

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

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-search-backend-node@1.2.28-next.2
    • @backstage/plugin-search-common@1.2.14-next.1
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/config@1.2.0

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

Patch Changes

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

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-search-backend-node@1.2.28-next.2
    • @backstage/plugin-search-common@1.2.14-next.1
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/config@1.2.0

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

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-search-backend-node@1.2.28-next.2
    • @backstage/plugin-search-common@1.2.14-next.1
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/plugin-techdocs-node@1.12.9-next.2
    • @backstage/plugin-catalog-common@1.0.26-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.2

Patch Changes

  • 3123c16: Fix package metadata
  • 7c5f3b0: Explicit declare if the service ref accepts single or multiple implementations.
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-search-common@1.2.14-next.1
    • @backstage/backend-tasks@0.5.28-next.2
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

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

Patch Changes

  • 3123c16: Fix package metadata
  • Updated dependencies
    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/types@1.1.1

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

Patch Changes

  • 3123c16: Fix package metadata
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/plugin-search-common@1.2.14-next.1
    • @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.2

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/plugin-events-node@0.3.9-next.2
    • @backstage/plugin-signals-node@0.1.9-next.2
    • @backstage/config@1.2.0
    • @backstage/types@1.1.1

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/plugin-events-node@0.3.9-next.2
    • @backstage/config@1.2.0
    • @backstage/types@1.1.1

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

Patch Changes

  • 67e76f2: TechDocs now supports the mkdocs-redirects plugin. Redirects defined using the mkdocs-redirect plugin will be handled automatically in TechDocs. Redirecting to external urls is not supported. In the case that an external redirect url is provided, TechDocs will redirect to the current documentation site home.
  • bdc5471: Fixed issue where header styles were incorrectly generated when themes used CSS variables to define font size.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/core-compat-api@0.2.8-next.2
    • @backstage/plugin-search-common@1.2.14-next.1
    • @backstage/plugin-search-react@1.7.14-next.2
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @backstage/integration@1.14.0-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-common@0.1.0-next.0
    • @backstage/plugin-techdocs-react@1.2.7-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog@1.22.0-next.2
    • @backstage/plugin-search-react@1.7.14-next.2
    • @backstage/plugin-techdocs@1.10.8-next.2
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @backstage/test-utils@1.5.10-next.2
    • @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.2

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-permission-common@0.8.1-next.1
    • @backstage/plugin-search-backend-module-techdocs@0.1.28-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-techdocs-node@1.12.9-next.2
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @backstage/integration@1.14.0-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-common@0.1.0-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-search-common@1.2.14-next.1
    • @backstage/integration@1.14.0-next.0
    • @backstage/integration-aws-node@0.1.12
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-techdocs-common@0.1.0-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/core-compat-api@0.2.8-next.2
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @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.2

Patch Changes

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

example-app@0.2.100-next.3

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-react@1.11.0-next.2
    • @backstage/plugin-catalog@1.22.0-next.2
    • @backstage/cli@0.27.0-next.3
    • @backstage/frontend-app-api@0.7.5-next.2
    • @backstage/plugin-search-common@1.2.14-next.1
    • @backstage/plugin-search-react@1.7.14-next.2
    • @backstage/plugin-search@1.4.15-next.2
    • @backstage/plugin-api-docs@0.11.8-next.2
    • @backstage/plugin-techdocs@1.10.8-next.2
    • @backstage/plugin-scaffolder@1.24.0-next.2
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @backstage/plugin-catalog-graph@0.4.8-next.3
    • @backstage/plugin-catalog-import@0.12.2-next.2
    • @backstage/plugin-org@0.6.28-next.2
    • @backstage/plugin-user-settings@0.8.11-next.2
    • @backstage/plugin-devtools@0.1.17-next.2
    • @backstage/plugin-home@0.7.9-next.2
    • @backstage/plugin-kubernetes@0.11.13-next.2
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @backstage/plugin-permission-react@0.4.25-next.1
    • @backstage/app-defaults@1.5.10-next.2
    • @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-kubernetes-cluster@0.0.14-next.2
    • @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.3

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-react@1.11.0-next.2
    • @backstage/plugin-catalog@1.22.0-next.2
    • @backstage/frontend-plugin-api@0.7.0-next.2
    • @backstage/cli@0.27.0-next.3
    • @backstage/frontend-app-api@0.7.5-next.2
    • @backstage/core-compat-api@0.2.8-next.2
    • @backstage/plugin-app-visualizer@0.1.9-next.2
    • @backstage/plugin-search-common@1.2.14-next.1
    • @backstage/plugin-search-react@1.7.14-next.2
    • @backstage/plugin-search@1.4.15-next.2
    • @backstage/plugin-api-docs@0.11.8-next.2
    • @backstage/plugin-techdocs@1.10.8-next.2
    • @backstage/plugin-scaffolder@1.24.0-next.2
    • @backstage/plugin-catalog-react@1.12.3-next.2
    • @backstage/plugin-catalog-graph@0.4.8-next.3
    • @backstage/plugin-catalog-import@0.12.2-next.2
    • @backstage/plugin-org@0.6.28-next.2
    • @backstage/plugin-user-settings@0.8.11-next.2
    • @backstage/plugin-home@0.7.9-next.2
    • @backstage/plugin-kubernetes@0.11.13-next.2
    • @backstage/plugin-catalog-common@1.0.26-next.1
    • @backstage/plugin-permission-react@0.4.25-next.1
    • @backstage/app-defaults@1.5.10-next.2
    • @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-kubernetes-cluster@0.0.14-next.2
    • @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.2

Patch Changes

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

example-backend@0.0.29-next.2

Patch Changes

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

example-backend-legacy@0.2.101-next.2

Patch Changes

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

e2e-test@0.2.19-next.3

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog@1.22.0-next.2
    • @backstage/cli@0.27.0-next.3
    • @backstage/plugin-techdocs@1.10.8-next.2
    • @backstage/test-utils@1.5.10-next.2
    • @backstage/app-defaults@1.5.10-next.2
    • @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.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/errors@1.2.4

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

Patch Changes

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