Release v1.13.0-next.3
@backstage/catalog-model@1.3.0-next.0
Minor Changes
- be9c4228073: Modified the regex for DNS label validation to support IDN domains
Patch Changes
- Updated dependencies
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/cli-node@0.1.0-next.0
Minor Changes
- 3156b0d85dc: Introduced the new
@backstage/cli-nodepackage, which provides utilities for use across Backstage CLIs.
Patch Changes
- Updated dependencies
- @backstage/cli-common@0.1.12
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/core-app-api@1.7.0-next.3
Minor Changes
- c15e0cedbe1: The
AuthConnectorinterface now supports specifying a set of scopes when refreshing a session. TheDefaultAuthConnectorimplementation passes thescopequery parameter to the auth-backend plugin appropriately. TheRefreshingAuthSessionManagerpasses any scopes in itsGetSessionRequestappropriately.
Patch Changes
- Updated dependencies
- @backstage/config@1.0.7
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/types@1.0.2
- @backstage/version-bridge@1.0.4-next.0
@backstage/core-components@0.13.0-next.3
Minor Changes
-
01cd4e25754: BREAKING: Removing
Tabscomponent fromcore-componentsas it is neither used in the core Backstage app nor in the monorepo plugins. If you are using this component in your instance please consider replacing it with the Material UITabscomponent like the following:- <Tabs
- tabs={[{
- icon: <AccessAlarmIcon />,
- content: <div>Label</div>,
- }]}
- />
+ <Tabs>
+ <Tab
+ label = "Label"
+ icon = { <AccessAlarmIcon /> }
+ />
+ </Tabs>
Patch Changes
- Updated dependencies
- @backstage/config@1.0.7
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19-next.0
- @backstage/version-bridge@1.0.4-next.0
@backstage/repo-tools@0.2.0-next.2
Minor Changes
- a876e69b20e: Adding two new commands to support OpenAPI spec writing,
schema:openapi:generateto generate the Typescript file that@backstage/backend-openapi-utilsneeds for typing andschema:openapi:verifyto verify that this file exists and matches yoursrc/schema/openapi.yamlfile.
Patch Changes
- Updated dependencies
- @backstage/cli-common@0.1.12
- @backstage/errors@1.1.5
@backstage/plugin-catalog-backend@1.9.0-next.3
Minor Changes
- 92a4590fc3a: Add monorepo support to CodeOwnersProccesor.
Patch Changes
- be5aca50114: Updates and moves OpenAPI spec to
src/schema/openapi.yamland usesApiRoutertype from@backstage/backend-openapi-utilsto handle automatic types from the OpenAPI spec file. - Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/backend-plugin-api@0.5.1-next.2
- @backstage/catalog-client@1.4.1-next.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/integration@1.4.4-next.0
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-catalog-node@1.3.5-next.3
- @backstage/plugin-permission-common@0.7.5-next.0
- @backstage/plugin-permission-node@0.7.7-next.2
- @backstage/plugin-scaffolder-common@1.2.7-next.2
- @backstage/plugin-search-backend-module-catalog@0.1.0-next.2
- @backstage/plugin-search-common@1.2.3-next.0
@backstage/plugin-catalog-react@1.5.0-next.3
Minor Changes
-
a49fb39df5a: Attempt to load entity owner names in the EntityOwnerPicker through the
by-refsendpoint. Ifspec.profile.displayNameormetadata.titleare populated, we now attempt to show those before showing thehumanizeEntityRef'd version.BREAKING:
EntityOwnerFilternow uses the full entity ref instead of thehumanizeEntityRef. If you rely onEntityOwnerFilter.valuesor thequeryParameters.ownersofuseEntityList, you will need to adjust your code like the following.const { queryParameters: { owners } } = useEntityList();
// or
const { filter: { owners } } = useEntityList();
// Instead of,
if (owners.some(ref => ref === humanizeEntityRef(myEntity))) ...
// You'll need to use,
if (owners.some(ref => ref === stringifyEntityRef(myEntity))) ...
Patch Changes
- d1f5324dff7: Reverted the check if the selected options list is different than the query parameters list before invoking
setSelectedOptionsmethod. This was preventing updating list items when a query string was already present in the URL when loading the page. - Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/catalog-client@1.4.1-next.1
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/integration@1.4.4-next.0
- @backstage/theme@0.2.19-next.0
- @backstage/types@1.0.2
- @backstage/version-bridge@1.0.4-next.0
- @backstage/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-permission-common@0.7.5-next.0
- @backstage/plugin-permission-react@0.4.12-next.1
@backstage/plugin-kubernetes@0.8.0-next.3
Minor Changes
-
754be7c5106: refactor kubernetes error detection to make way for proposed solutions
BREAKING:
DetectedErrornow appears once per Kubernetes resource per error instead of for all resources which have that error,namespaceandnamefields are now insourceRefobjectmessageis now astringinstead of astring[].ErrorDetectableKindhas been removed.
Patch Changes
- e7fb0117485: fixes a bug where an empty authorization header was provided to the proxy endpoint when a cluster had a server-side auth provider
- c159ab64a60:
KubernetesBackendClientnow requires akubernetesAuthProvidersApivalue to be provided.KubernetesApiinterface now has a proxy method requirement. - Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/config@1.0.7
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19-next.0
- @backstage/plugin-kubernetes-common@0.6.2-next.2
@backstage/plugin-lighthouse-backend@0.2.0-next.3
Minor Changes
-
7a89555e73d: Lighthouse backend plugin can now use an authenticated catalog backend API.
- Breaking * You must now pass the
tokenManagerto the lighthousecreateScheduler.
- Breaking * You must now pass the
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/backend-tasks@0.5.1-next.2
- @backstage/catalog-client@1.4.1-next.1
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- @backstage/plugin-lighthouse-common@0.1.1
@backstage/plugin-scaffolder-backend@1.13.0-next.3
Minor Changes
- d7c8c222e25: Allow for a commit message to differ from the PR title when publishing a GitHub pull request.
Patch Changes
- f37a95adcd8: Stripped entity types and namespace before passing to GitHub API
- Updated dependencies
- @backstage/plugin-catalog-backend@1.9.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/backend-plugin-api@0.5.1-next.2
- @backstage/backend-tasks@0.5.1-next.2
- @backstage/catalog-client@1.4.1-next.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/integration@1.4.4-next.0
- @backstage/types@1.0.2
- @backstage/plugin-auth-node@0.2.13-next.2
- @backstage/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-catalog-node@1.3.5-next.3
- @backstage/plugin-permission-common@0.7.5-next.0
- @backstage/plugin-permission-node@0.7.7-next.2
- @backstage/plugin-scaffolder-common@1.2.7-next.2
- @backstage/plugin-scaffolder-node@0.1.2-next.3
@backstage/app-defaults@1.3.0-next.3
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.7.0-next.3
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
- @backstage/plugin-permission-react@0.4.12-next.1
@backstage/backend-openapi-utils@0.0.1-next.0
Patch Changes
- 62fe726fdc5: New plugin! Primary focus is to support types on
Routers in backend packages. Developers can use theApiRouterfrom this package in their packages to support a typed experience based on their OpenAPI specs. TheApiRoutersupports request bodies, response bodies, query parameters and path parameters, as well as full path-based context of the above. This means no more guessing on an endpoint likereq.post('/not-my-route', (req, res)=>{res.send(req.body.badparam)}). Typescript would catch/not-my-route,req.body.badparam,res.send(req.body.badparam).
@backstage/catalog-client@1.4.1-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/errors@1.1.5
@backstage/cli@0.22.6-next.3
Patch Changes
- 3156b0d85dc: Internal refactor to move many internal utilities to the new
@backstage/cli-nodepackage. - 9bbb00d5b49: Updated dependency
@swc/helpersto^0.5.0. - Updated dependencies
- @backstage/cli-node@0.1.0-next.0
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.7
- @backstage/config-loader@1.1.9
- @backstage/errors@1.1.5
- @backstage/eslint-plugin@0.1.3-next.0
- @backstage/release-manifests@0.0.9
- @backstage/types@1.0.2
@backstage/create-app@0.4.39-next.3
Patch Changes
- Bumped create-app version.
- Updated dependencies
- @backstage/cli-common@0.1.12
@backstage/dev-utils@1.0.14-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/core-app-api@1.7.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/app-defaults@1.3.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/integration-react@1.1.12-next.3
- @backstage/test-utils@1.3.0-next.3
- @backstage/theme@0.2.19-next.0
@backstage/integration-react@1.1.12-next.3
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0-next.3
- @backstage/config@1.0.7
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/integration@1.4.4-next.0
- @backstage/theme@0.2.19-next.0
@techdocs/cli@1.4.1-next.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.7
- @backstage/plugin-techdocs-node@1.6.1-next.3
@backstage/test-utils@1.3.0-next.3
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.7.0-next.3
- @backstage/config@1.0.7
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
- @backstage/types@1.0.2
- @backstage/plugin-permission-common@0.7.5-next.0
- @backstage/plugin-permission-react@0.4.12-next.1
@backstage/plugin-adr@0.4.2-next.3
Patch Changes
- 77aa3a4d47e: use path attribute to fetch files instead of name and update the UI to navigate over subdirectories
- Updated dependencies
- @backstage/plugin-adr-common@0.2.8-next.1
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/integration-react@1.1.12-next.3
- @backstage/theme@0.2.19-next.0
- @backstage/plugin-search-common@1.2.3-next.0
- @backstage/plugin-search-react@1.5.2-next.3
@backstage/plugin-adr-backend@0.3.2-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-adr-common@0.2.8-next.1
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/catalog-client@1.4.1-next.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/integration@1.4.4-next.0
- @backstage/plugin-search-common@1.2.3-next.0
@backstage/plugin-adr-common@0.2.8-next.1
Patch Changes
- 77aa3a4d47e: use path attribute to fetch files instead of name and update the UI to navigate over subdirectories
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/integration@1.4.4-next.0
- @backstage/plugin-search-common@1.2.3-next.0
@backstage/plugin-airbrake@0.3.17-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/dev-utils@1.0.14-next.3
- @backstage/test-utils@1.3.0-next.3
- @backstage/theme@0.2.19-next.0
@backstage/plugin-allure@0.1.33-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
@backstage/plugin-analytics-module-ga@0.1.28-next.3
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0-next.3
- @backstage/config@1.0.7
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
@backstage/plugin-apache-airflow@0.2.10-next.3
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
@backstage/plugin-api-docs@0.9.2-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
- @backstage/plugin-catalog@1.10.0-next.3
@backstage/plugin-apollo-explorer@0.1.10-next.3
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
@backstage/plugin-auth-backend@0.18.2-next.3
Patch Changes
-
475abd1dc3f: The
microsoft(i.e. Azure) auth provider now supports negotiating tokens for Azure resources besides Microsoft Graph (e.g. AKS, Virtual Machines, Machine Learning Services, etc.). When the/frame/handlerendpoint is called with an authorization code for a non-Microsoft Graph scope, the user profile will not be fetched. Similarly no user profile or photo data will be fetched by the backend if the/refreshendpoint is called with thescopequery parameter strictly containing scopes for resources besides Microsoft Graph.Furthermore, the
offline_accessscope will be requested by default, even when it is not mentioned in the argument togetAccessToken. This means that any Azure access token can be automatically refreshed, even if the user has not signed in via Azure. -
6a900951336: Add common identify resolvers for
oidcauth provider. -
a0ef1ec7349: Export Azure Easy Auth provider so it can actually be used.
-
Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/catalog-client@1.4.1-next.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-auth-node@0.2.13-next.2
@backstage/plugin-azure-devops@0.2.8-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19-next.0
- @backstage/plugin-azure-devops-common@0.3.0
@backstage/plugin-azure-sites@0.1.6-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
- @backstage/plugin-azure-sites-common@0.1.0
@backstage/plugin-badges@0.2.41-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19-next.0
@backstage/plugin-badges-backend@0.1.38-next.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/catalog-client@1.4.1-next.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-bazaar@0.2.7-next.3
Patch Changes
- Updated dependencies
- @backstage/cli@0.22.6-next.3
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/catalog-client@1.4.1-next.1
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19-next.0
- @backstage/plugin-catalog@1.10.0-next.3
@backstage/plugin-bitrise@0.1.44-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
@backstage/plugin-catalog@1.10.0-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/catalog-client@1.4.1-next.1
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/integration-react@1.1.12-next.3
- @backstage/theme@0.2.19-next.0
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-search-common@1.2.3-next.0
- @backstage/plugin-search-react@1.5.2-next.3
@backstage/plugin-catalog-backend-module-aws@0.1.18-next.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/backend-plugin-api@0.5.1-next.2
- @backstage/backend-tasks@0.5.1-next.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/integration@1.4.4-next.0
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-catalog-node@1.3.5-next.3
- @backstage/plugin-kubernetes-common@0.6.2-next.2
@backstage/plugin-catalog-backend-module-azure@0.1.15-next.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/backend-plugin-api@0.5.1-next.2
- @backstage/backend-tasks@0.5.1-next.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/integration@1.4.4-next.0
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-catalog-node@1.3.5-next.3
@backstage/plugin-catalog-backend-module-bitbucket@0.2.11-next.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/integration@1.4.4-next.0
- @backstage/types@1.0.2
- @backstage/plugin-bitbucket-cloud-common@0.2.5-next.0
- @backstage/plugin-catalog-node@1.3.5-next.3
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.1.11-next.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/backend-plugin-api@0.5.1-next.2
- @backstage/backend-tasks@0.5.1-next.2
- @backstage/catalog-client@1.4.1-next.1
- @backstage/config@1.0.7
- @backstage/integration@1.4.4-next.0
- @backstage/plugin-bitbucket-cloud-common@0.2.5-next.0
- @backstage/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-catalog-node@1.3.5-next.3
- @backstage/plugin-events-node@0.2.5-next.2
@backstage/plugin-catalog-backend-module-bitbucket-server@0.1.9-next.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/backend-plugin-api@0.5.1-next.2
- @backstage/backend-tasks@0.5.1-next.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/integration@1.4.4-next.0
- @backstage/plugin-catalog-node@1.3.5-next.3
@backstage/plugin-catalog-backend-module-gerrit@0.1.12-next.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/backend-plugin-api@0.5.1-next.2
- @backstage/backend-tasks@0.5.1-next.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/integration@1.4.4-next.0
- @backstage/plugin-catalog-node@1.3.5-next.3
@backstage/plugin-catalog-backend-module-github@0.2.7-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.9.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/backend-plugin-api@0.5.1-next.2
- @backstage/backend-tasks@0.5.1-next.2
- @backstage/catalog-client@1.4.1-next.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/integration@1.4.4-next.0
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-catalog-node@1.3.5-next.3
- @backstage/plugin-events-node@0.2.5-next.2
@backstage/plugin-catalog-backend-module-gitlab@0.2.0-next.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/backend-plugin-api@0.5.1-next.2
- @backstage/backend-tasks@0.5.1-next.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/integration@1.4.4-next.0
- @backstage/types@1.0.2
- @backstage/plugin-catalog-node@1.3.5-next.3
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.3.1-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.9.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/backend-plugin-api@0.5.1-next.2
- @backstage/backend-tasks@0.5.1-next.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-catalog-node@1.3.5-next.3
- @backstage/plugin-events-node@0.2.5-next.2
- @backstage/plugin-permission-common@0.7.5-next.0
@backstage/plugin-catalog-backend-module-ldap@0.5.11-next.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-tasks@0.5.1-next.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-catalog-node@1.3.5-next.3
@backstage/plugin-catalog-backend-module-msgraph@0.5.3-next.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/backend-plugin-api@0.5.1-next.2
- @backstage/backend-tasks@0.5.1-next.2
- @backstage/config@1.0.7
- @backstage/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-catalog-node@1.3.5-next.3
@backstage/plugin-catalog-backend-module-openapi@0.1.10-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.9.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/config@1.0.7
- @backstage/integration@1.4.4-next.0
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-catalog-node@1.3.5-next.3
@backstage/plugin-catalog-backend-module-puppetdb@0.1.1-next.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/backend-plugin-api@0.5.1-next.2
- @backstage/backend-tasks@0.5.1-next.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-node@1.3.5-next.3
@backstage/plugin-catalog-common@1.0.13-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/plugin-permission-common@0.7.5-next.0
- @backstage/plugin-search-common@1.2.3-next.0
@backstage/plugin-catalog-graph@0.2.29-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/catalog-client@1.4.1-next.1
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
@backstage/plugin-catalog-graphql@0.3.20-next.2
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/config@1.0.7
- @backstage/types@1.0.2
@backstage/plugin-catalog-import@0.9.7-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/catalog-client@1.4.1-next.1
- @backstage/config@1.0.7
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/integration@1.4.4-next.0
- @backstage/integration-react@1.1.12-next.3
- @backstage/plugin-catalog-common@1.0.13-next.1
@backstage/plugin-catalog-node@1.3.5-next.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-plugin-api@0.5.1-next.2
- @backstage/catalog-client@1.4.1-next.1
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13-next.1
@backstage/plugin-cicd-statistics@0.1.19-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-plugin-api@1.5.1-next.1
@backstage/plugin-cicd-statistics-module-gitlab@0.1.13-next.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/plugin-cicd-statistics@0.1.19-next.3
@backstage/plugin-circleci@0.3.17-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
@backstage/plugin-cloudbuild@0.3.17-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
@backstage/plugin-code-climate@0.1.17-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
@backstage/plugin-code-coverage@0.2.10-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/config@1.0.7
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19-next.0
@backstage/plugin-code-coverage-backend@0.2.10-next.3
Patch Changes
- d3645a62b74: Bump
xml2jsfrom 0.4.23 to 0.5.0 - Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/catalog-client@1.4.1-next.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/integration@1.4.4-next.0
@backstage/plugin-codescene@0.1.12-next.3
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0-next.3
- @backstage/config@1.0.7
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19-next.0
@backstage/plugin-config-schema@0.1.40-next.3
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0-next.3
- @backstage/config@1.0.7
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19-next.0
- @backstage/types@1.0.2
@backstage/plugin-cost-insights@0.12.6-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/config@1.0.7
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
- @backstage/plugin-cost-insights-common@0.1.1
@backstage/plugin-dynatrace@4.0.0-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
@backstage/plugin-entity-feedback@0.2.0-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19-next.0
- @backstage/plugin-entity-feedback-common@0.1.1-next.0
@backstage/plugin-entity-feedback-backend@0.1.2-next.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-common@0.18.4-next.2
- @backstage/catalog-client@1.4.1-next.1
- @backstage/config@1.0.7
- @backstage/plugin-auth-node@0.2.13-next.2
- @backstage/plugin-entity-feedback-common@0.1.1-next.0
@backstage/plugin-entity-validation@0.1.2-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/catalog-client@1.4.1-next.1
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19-next.0
- @backstage/plugin-catalog-common@1.0.13-next.1
@backstage/plugin-events-backend@0.2.5-next.3
Patch Changes
-
3538d9ad2c4: Export
DefaultEventBrokerto allow decoupling of the catalog and events backends in theexample-backend.Please look at
plugins/events-backend/README.mdfor the currently advised way to set up the event backend and catalog providers. -
Updated dependencies
- @backstage/backend-common@0.18.4-next.2
- @backstage/backend-plugin-api@0.5.1-next.2
- @backstage/config@1.0.7
- @backstage/plugin-events-node@0.2.5-next.2
@backstage/plugin-explore@0.4.2-next.3
Patch Changes
- f9ea944422e: Extracted generic
CatalogKindExploreContentcomponent so that it is easy to show any component kinds in their own tab in the explore page. - Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19-next.0
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-explore-react@0.0.28-next.1
- @backstage/plugin-search-common@1.2.3-next.0
- @backstage/plugin-search-react@1.5.2-next.3
@backstage/plugin-firehydrant@0.2.1-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
@backstage/plugin-fossa@0.2.49-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19-next.0
@backstage/plugin-gcalendar@0.3.13-next.3
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19-next.0
@backstage/plugin-gcp-projects@0.3.36-next.3
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
@backstage/plugin-git-release-manager@0.3.30-next.3
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/integration@1.4.4-next.0
- @backstage/theme@0.2.19-next.0
@backstage/plugin-github-actions@0.5.17-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/integration@1.4.4-next.0
- @backstage/theme@0.2.19-next.0
@backstage/plugin-github-deployments@0.1.48-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/integration@1.4.4-next.0
- @backstage/integration-react@1.1.12-next.3
- @backstage/theme@0.2.19-next.0
@backstage/plugin-github-issues@0.2.6-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/integration@1.4.4-next.0
- @backstage/theme@0.2.19-next.0
@backstage/plugin-github-pull-requests-board@0.1.11-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/integration@1.4.4-next.0
- @backstage/theme@0.2.19-next.0
@backstage/plugin-gitops-profiles@0.3.35-next.3
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0-next.3
- @backstage/config@1.0.7
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/theme@0.2.19-next.0
@backstage/plugin-gocd@0.1.23-next.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19-next.0