- be9c4228073: Modified the regex for DNS label validation to support IDN domains
- Updated dependencies
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- 3156b0d85dc: Introduced the new
@backstage/cli-node
package, which provides utilities for use across Backstage CLIs.
- Updated dependencies
- @backstage/cli-common@0.1.12
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- c15e0cedbe1: The
AuthConnector
interface now supports specifying a set of scopes when refreshing a session. TheDefaultAuthConnector
implementation passes thescope
query parameter to the auth-backend plugin appropriately. TheRefreshingAuthSessionManager
passes any scopes in itsGetSessionRequest
appropriately.
- 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
-
01cd4e25754: BREAKING: Removing
Tabs
component fromcore-components
as 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 UITabs
component like the following:- <Tabs - tabs={[{ - icon: <AccessAlarmIcon />, - content: <div>Label</div>, - }]} - /> + <Tabs> + <Tab + label = "Label" + icon = { <AccessAlarmIcon /> } + /> + </Tabs>
- 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
- a876e69b20e: Adding two new commands to support OpenAPI spec writing,
schema:openapi:generate
to generate the Typescript file that@backstage/backend-openapi-utils
needs for typing andschema:openapi:verify
to verify that this file exists and matches yoursrc/schema/openapi.yaml
file.
- Updated dependencies
- @backstage/cli-common@0.1.12
- @backstage/errors@1.1.5
- 92a4590fc3a: Add monorepo support to CodeOwnersProccesor.
- be5aca50114: Updates and moves OpenAPI spec to
src/schema/openapi.yaml
and usesApiRouter
type from@backstage/backend-openapi-utils
to 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
-
a49fb39df5a: Attempt to load entity owner names in the EntityOwnerPicker through the
by-refs
endpoint. Ifspec.profile.displayName
ormetadata.title
are populated, we now attempt to show those before showing thehumanizeEntityRef
'd version.BREAKING:
EntityOwnerFilter
now uses the full entity ref instead of thehumanizeEntityRef
. If you rely onEntityOwnerFilter.values
or thequeryParameters.owners
ofuseEntityList
, 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))) ...
- d1f5324dff7: Reverted the check if the selected options list is different than the query parameters list before invoking
setSelectedOptions
method. 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
-
754be7c5106: refactor kubernetes error detection to make way for proposed solutions
BREAKING:
DetectedError
now appears once per Kubernetes resource per error instead of for all resources which have that error,namespace
andname
fields are now insourceRef
objectmessage
is now astring
instead of astring[]
.ErrorDetectableKind
has been removed.
- 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:
KubernetesBackendClient
now requires akubernetesAuthProvidersApi
value to be provided.KubernetesApi
interface 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
-
7a89555e73d: Lighthouse backend plugin can now use an authenticated catalog backend API.
- Breaking * You must now pass the
tokenManager
to the lighthousecreateScheduler
.
- Breaking * You must now pass the
- 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
- d7c8c222e25: Allow for a commit message to differ from the PR title when publishing a GitHub pull request.
- 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
- 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
- 62fe726fdc5: New plugin! Primary focus is to support types on
Router
s in backend packages. Developers can use theApiRouter
from this package in their packages to support a typed experience based on their OpenAPI specs. TheApiRouter
supports 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)
.
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/errors@1.1.5
- 3156b0d85dc: Internal refactor to move many internal utilities to the new
@backstage/cli-node
package. - 9bbb00d5b49: Updated dependency
@swc/helpers
to^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
- Bumped create-app version.
- Updated dependencies
- @backstage/cli-common@0.1.12
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- Updated dependencies
- @backstage/core-components@0.13.0-next.3
- @backstage/core-plugin-api@1.5.1-next.1
- 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
- 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
-
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/handler
endpoint 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/refresh
endpoint is called with thescope
query parameter strictly containing scopes for resources besides Microsoft Graph.Furthermore, the
offline_access
scope 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
oidc
auth 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- d3645a62b74: Bump
xml2js
from 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
-
3538d9ad2c4: Export
DefaultEventBroker
to allow decoupling of the catalog and events backends in theexample-backend
.Please look at
plugins/events-backend/README.md
for 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
- f9ea944422e: Extracted generic
CatalogKindExploreContent
component 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- Updated dependencies
- @backstage/backend-common@0.18.4-next.2
- @backstage/config@1.0.7
- @backstage/plugin-catalog-graphql@0.3.20-next.2
- 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
- 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
- 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
- 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-jenkins-common@0.1.15-next.1
- 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-auth-node@0.2.13-next.2
- @backstage/plugin-jenkins-common@0.1.15-next.1
- @backstage/plugin-permission-common@0.7.5-next.0
- Updated dependencies
- @backstage/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-permission-common@0.7.5-next.0
- 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
- 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/config@1.0.7
- @backstage/errors@1.1.5
- 56a28b559e5: Updated kubernetes config schema to match available options
- 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/plugin-auth-node@0.2.13-next.2
- @backstage/plugin-catalog-node@1.3.5-next.3
- @backstage/plugin-kubernetes-common@0.6.2-next.2
- @backstage/plugin-permission-common@0.7.5-next.0
- @backstage/plugin-permission-node@0.7.7-next.2
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/plugin-permission-common@0.7.5-next.0
- 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-lighthouse-common@0.1.1
- 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-linguist-common@0.1.0
- 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/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-auth-node@0.2.13-next.2
- @backstage/plugin-linguist-common@0.1.0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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-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-playlist-common@0.1.6-next.0
- @backstage/plugin-search-react@1.5.2-next.3
- 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-auth-node@0.2.13-next.2
- @backstage/plugin-permission-common@0.7.5-next.0
- @backstage/plugin-permission-node@0.7.7-next.2
- @backstage/plugin-playlist-common@0.1.6-next.0
- 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
- 7917cfccfc7: Fix some hard-coded white font colors in scaffolder
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/plugin-scaffolder-react@1.3.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/theme@0.2.19-next.0
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-permission-react@0.4.12-next.1
- @backstage/plugin-scaffolder-common@1.2.7-next.2
- Updated dependencies
- @backstage/plugin-scaffolder-backend@1.13.0-next.3
- @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-scaffolder-node@0.1.2-next.3
- Updated dependencies
- @backstage/plugin-scaffolder-backend@1.13.0-next.3
- @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-scaffolder-node@0.1.2-next.3
- Updated dependencies
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/integration@1.4.4-next.0
- @backstage/plugin-scaffolder-node@0.1.2-next.3
- Updated dependencies
- @backstage/plugin-scaffolder-backend@1.13.0-next.3
- @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-scaffolder-node@0.1.2-next.3
- Updated dependencies
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-scaffolder-node@0.1.2-next.3
- Updated dependencies
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- @backstage/plugin-scaffolder-node@0.1.2-next.3
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/types@1.0.2
- @backstage/plugin-permission-common@0.7.5-next.0
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/backend-plugin-api@0.5.1-next.2
- @backstage/types@1.0.2
- @backstage/plugin-scaffolder-common@1.2.7-next.2
- d2488f5e54c: Add indication that the validators are running
- 8c40997df44: Updated dependency
@rjsf/core-v5
tonpm:@rjsf/core@5.5.2
. - 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/types@1.0.2
- @backstage/version-bridge@1.0.4-next.0
- @backstage/plugin-scaffolder-common@1.2.7-next.2
- 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/types@1.0.2
- @backstage/version-bridge@1.0.4-next.0
- @backstage/plugin-search-common@1.2.3-next.0
- @backstage/plugin-search-react@1.5.2-next.3
- 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/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-permission-common@0.7.5-next.0
- @backstage/plugin-search-backend-node@1.2.0-next.2
- @backstage/plugin-search-common@1.2.3-next.0
- 104b6b19487: fix ElasticSearch throwing error when index is missing
- 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-search-backend-node@1.2.0-next.2
- @backstage/plugin-search-common@1.2.3-next.0
- 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/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-permission-common@0.7.5-next.0
- @backstage/plugin-search-backend-node@1.2.0-next.2
- @backstage/plugin-search-common@1.2.3-next.0
- @backstage/plugin-techdocs-node@1.6.1-next.3
- 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/types@1.0.2
- @backstage/version-bridge@1.0.4-next.0
- @backstage/plugin-search-common@1.2.3-next.0
- 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
- 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/types@1.0.2
- 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-sonarqube-react@0.1.5-next.2
- Updated dependencies
- @backstage/catalog-model@1.3.0-next.0
- @backstage/core-plugin-api@1.5.1-next.1
- 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
- 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-home@0.4.33-next.3
- @backstage/plugin-search-common@1.2.3-next.0
- @backstage/plugin-search-react@1.5.2-next.3
- 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
- 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/types@1.0.2
- @backstage/plugin-tech-insights-common@0.2.10
- 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/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-tech-insights-common@0.2.10
- @backstage/plugin-tech-insights-node@0.4.2-next.2
- 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
- 2e493480626: Fix a bug in sub-path navigation due to double addition of a sub-path if one was set up in
app.baseUrl
. - 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/integration@1.4.4-next.0
- @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-techdocs-react@1.1.5-next.3
- Updated dependencies
- @backstage/core-app-api@1.7.0-next.3
- @backstage/plugin-techdocs@1.6.1-next.3
- @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/test-utils@1.3.0-next.3
- @backstage/theme@0.2.19-next.0
- @backstage/plugin-catalog@1.10.0-next.3
- @backstage/plugin-search-react@1.5.2-next.3
- @backstage/plugin-techdocs-react@1.1.5-next.3
- 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/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-permission-common@0.7.5-next.0
- @backstage/plugin-search-backend-module-techdocs@0.1.0-next.2
- @backstage/plugin-search-common@1.2.3-next.0
- @backstage/plugin-techdocs-node@1.6.1-next.3
- 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/integration-react@1.1.12-next.3
- @backstage/theme@0.2.19-next.0
- @backstage/plugin-techdocs-react@1.1.5-next.3
- 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/integration-aws-node@0.1.2
- @backstage/plugin-search-common@1.2.3-next.0
- Updated dependencies
- @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/version-bridge@1.0.4-next.0
- 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
- 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/plugin-catalog-node@1.3.5-next.3
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @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/errors@1.1.5
- @backstage/theme@0.2.19-next.0
- @backstage/types@1.0.2
- 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/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-auth-node@0.2.13-next.2
- 7c7f8d38a51: Use
fetchApi
instead of rawfetch
in order to pass auth header if necessary. - 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
- 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
- Updated dependencies
- @backstage/plugin-kubernetes@0.8.0-next.3
- @backstage/plugin-scaffolder@1.13.0-next.3
- @backstage/cli@0.22.6-next.3
- @backstage/plugin-explore@0.4.2-next.3
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/plugin-scaffolder-react@1.3.0-next.3
- @backstage/core-app-api@1.7.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/plugin-techdocs@1.6.1-next.3
- @backstage/core-components@0.13.0-next.3
- @backstage/app-defaults@1.3.0-next.3
- @backstage/config@1.0.7
- @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-airbrake@0.3.17-next.3
- @backstage/plugin-apache-airflow@0.2.10-next.3
- @backstage/plugin-api-docs@0.9.2-next.3
- @backstage/plugin-azure-devops@0.2.8-next.3
- @backstage/plugin-azure-sites@0.1.6-next.3
- @backstage/plugin-badges@0.2.41-next.3
- @backstage/plugin-catalog-common@1.0.13-next.1
- @backstage/plugin-catalog-graph@0.2.29-next.3
- @backstage/plugin-catalog-import@0.9.7-next.3
- @backstage/plugin-circleci@0.3.17-next.3
- @backstage/plugin-cloudbuild@0.3.17-next.3
- @backstage/plugin-code-coverage@0.2.10-next.3
- @backstage/plugin-cost-insights@0.12.6-next.3
- @backstage/plugin-dynatrace@4.0.0-next.3
- @backstage/plugin-entity-feedback@0.2.0-next.3
- @backstage/plugin-gcalendar@0.3.13-next.3
- @backstage/plugin-gcp-projects@0.3.36-next.3
- @backstage/plugin-github-actions@0.5.17-next.3
- @backstage/plugin-gocd@0.1.23-next.3
- @backstage/plugin-graphiql@0.2.49-next.3
- @backstage/plugin-home@0.4.33-next.3
- @backstage/plugin-jenkins@0.7.16-next.3
- @backstage/plugin-kafka@0.3.17-next.3
- @backstage/plugin-lighthouse@0.4.2-next.3
- @backstage/plugin-linguist@0.1.2-next.3
- @backstage/plugin-linguist-common@0.1.0
- @backstage/plugin-microsoft-calendar@0.1.2-next.3
- @backstage/plugin-newrelic@0.3.35-next.3
- @backstage/plugin-newrelic-dashboard@0.2.10-next.3
- @backstage/plugin-org@0.6.7-next.3
- @backstage/plugin-pagerduty@0.5.10-next.3
- @backstage/plugin-permission-react@0.4.12-next.1
- @backstage/plugin-playlist@0.1.8-next.3
- @backstage/plugin-rollbar@0.4.17-next.3
- @backstage/plugin-search@1.2.0-next.3
- @backstage/plugin-search-common@1.2.3-next.0
- @backstage/plugin-search-react@1.5.2-next.3
- @backstage/plugin-sentry@0.5.2-next.3
- @backstage/plugin-shortcuts@0.3.9-next.3
- @backstage/plugin-stack-overflow@0.1.13-next.3
- @backstage/plugin-stackstorm@0.1.1-next.3
- @backstage/plugin-tech-insights@0.3.9-next.3
- @backstage/plugin-tech-radar@0.6.3-next.3
- @backstage/plugin-techdocs-module-addons-contrib@1.0.12-next.3
- @backstage/plugin-techdocs-react@1.1.5-next.3
- @backstage/plugin-todo@0.2.19-next.3
- @backstage/plugin-user-settings@0.7.2-next.3
- @internal/plugin-catalog-customized@0.0.9-next.3
- Updated dependencies
- @backstage/plugin-kubernetes-backend@0.10.0-next.3
- @backstage/plugin-catalog-backend@1.9.0-next.3
- @backstage/plugin-code-coverage-backend@0.2.10-next.3
- @backstage/plugin-lighthouse-backend@0.2.0-next.3
- @backstage/plugin-auth-backend@0.18.2-next.3
- @backstage/plugin-scaffolder-backend@1.13.0-next.3
- @backstage/plugin-search-backend-module-elasticsearch@1.2.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/plugin-events-backend@0.2.5-next.3
- example-app@0.2.82-next.3
- @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/integration@1.4.4-next.0
- @backstage/plugin-adr-backend@0.3.2-next.3
- @backstage/plugin-app-backend@0.3.44-next.2
- @backstage/plugin-auth-node@0.2.13-next.2
- @backstage/plugin-azure-devops-backend@0.3.23-next.2
- @backstage/plugin-azure-sites-backend@0.1.6-next.2
- @backstage/plugin-badges-backend@0.1.38-next.3
- @backstage/plugin-catalog-node@1.3.5-next.3
- @backstage/plugin-entity-feedback-backend@0.1.2-next.3
- @backstage/plugin-events-node@0.2.5-next.2
- @backstage/plugin-explore-backend@0.0.6-next.2
- @backstage/plugin-graphql-backend@0.1.34-next.3
- @backstage/plugin-jenkins-backend@0.1.34-next.3
- @backstage/plugin-kafka-backend@0.2.37-next.3
- @backstage/plugin-linguist-backend@0.2.1-next.3
- @backstage/plugin-permission-backend@0.5.19-next.2
- @backstage/plugin-permission-common@0.7.5-next.0
- @backstage/plugin-permission-node@0.7.7-next.2
- @backstage/plugin-playlist-backend@0.2.7-next.3
- @backstage/plugin-proxy-backend@0.2.38-next.2
- @backstage/plugin-rollbar-backend@0.1.41-next.2
- @backstage/plugin-scaffolder-backend-module-rails@0.4.12-next.3
- @backstage/plugin-search-backend@1.3.0-next.2
- @backstage/plugin-search-backend-module-pg@0.5.5-next.2
- @backstage/plugin-search-backend-node@1.2.0-next.2
- @backstage/plugin-search-common@1.2.3-next.0
- @backstage/plugin-tech-insights-backend@0.5.10-next.3
- @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.28-next.2
- @backstage/plugin-tech-insights-node@0.4.2-next.2
- @backstage/plugin-techdocs-backend@1.6.1-next.3
- @backstage/plugin-todo-backend@0.1.41-next.3
- Updated dependencies
- @backstage/plugin-kubernetes-backend@0.10.0-next.3
- @backstage/plugin-catalog-backend@1.9.0-next.3
- @backstage/plugin-scaffolder-backend@1.13.0-next.3
- @backstage/backend-defaults@0.1.9-next.2
- @backstage/plugin-app-backend@0.3.44-next.2
- @backstage/plugin-auth-node@0.2.13-next.2
- @backstage/plugin-permission-backend@0.5.19-next.2
- @backstage/plugin-permission-common@0.7.5-next.0
- @backstage/plugin-permission-node@0.7.7-next.2
- @backstage/plugin-search-backend@1.3.0-next.2
- @backstage/plugin-search-backend-module-catalog@0.1.0-next.2
- @backstage/plugin-search-backend-module-explore@0.1.0-next.1
- @backstage/plugin-search-backend-module-techdocs@0.1.0-next.2
- @backstage/plugin-search-backend-node@1.2.0-next.2
- @backstage/plugin-techdocs-backend@1.6.1-next.3
- @backstage/plugin-todo-backend@0.1.41-next.3
- Updated dependencies
- @backstage/create-app@0.4.39-next.3
- @backstage/cli-common@0.1.12
- @backstage/errors@1.1.5
- Updated dependencies
- @backstage/cli@0.22.6-next.3
- @backstage/core-app-api@1.7.0-next.3
- @backstage/catalog-model@1.3.0-next.0
- @backstage/plugin-techdocs@1.6.1-next.3
- @backstage/core-components@0.13.0-next.3
- @backstage/app-defaults@1.3.0-next.3
- @backstage/config@1.0.7
- @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/plugin-catalog@1.10.0-next.3
- @backstage/plugin-techdocs-react@1.1.5-next.3
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0-next.3
- @backstage/plugin-catalog@1.10.0-next.3
- 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