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
createServiceReffunction now accepts a new booleanmultipleoption. Themultipleoption defaults tofalseand when set totrue, 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
UrlReaderservice without replacing the service itself. This achieves that by allowing us to define services that can have multiple simultaneous implementation, allowing theUrlReaderimplementation 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
UrlReaderfactories by installing more implementations of theurlReaderFactoriesServiceRefin 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
SchedulerServicenow allows tasks withfrequency: { trigger: 'manual' }. This means that the task will not be scheduled, but rather run only when manually triggered withSchedulerService.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
Arrayor 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 potentialundefinedreturn value. Related to this change, theoptionaloption fromcreateExternalRouteRefhas 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
useRouteReffrom@backstage/core-plugin-apiin combination withconvertLegacyRouteReffrom@backstage/core-compat-api.
Patch Changes
- 210d066: Added support for using the
paramsin other properties of thecreateExtensionBlueprintoptions 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.resolversnow take precedence over sign-in resolvers passed tosignInResolveroption ofcreateOAuthProviderFactory. This effectively makes sign-in resolvers passed via thesignInResolverthe 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
/alphanow 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
RepoBranchPickerthat 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
ServiceRegisterimplementation to enable registering multiple service implementations for a given service ref. - 80a0737: Added configuration for the
packagesoptions 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
SchedulerServicenow allows tasks withfrequency: { trigger: 'manual' }. This means that the task will not be scheduled, but rather run only when manually triggered withSchedulerService.triggerTask. - 7c5f3b0: Update the
UrlReaderservice to depends on multiple instances ofUrlReaderFactoryProviderservice. - 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
PluginTaskSchedulernow allows tasks withfrequency: { trigger: 'manual' }. This means that the task will not be scheduled, but rather run only when manually triggered withPluginTaskScheduler.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
ServiceFactoryTesterto 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 returnundefined. - 16cf96c: Both
compatWrapperandconvertLegacyRouteRefnow 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 returnundefined. - 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 returnundefined. - 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/reactto^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 returnundefined. - 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
listBranchesByRepositorytoBitbucketCloudClient - 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
singleormultipleimplementations. - 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
/alphaexports 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