Release v1.23.0-next.2
@backstage/app-defaults@1.5.0-next.2
Minor Changes
- f919be9: Added a utility API for VMware Cloud auth; the API ref is available in the
@backstage/core-plugin-api
and@backstage/frontend-plugin-api
packages, the implementation is in@backstage/core-app-api
and a factory has been added to@backstage/app-defaults
. - 7f11009: Added stack trace display to
ErrorPage
and updated existing refs
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 214f2da: Fix invalid HTTP status code 501 in Error Page
- Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-app-api@1.12.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-permission-react@0.4.20-next.1
- @backstage/theme@0.5.1-next.0
@backstage/core-app-api@1.12.0-next.1
Minor Changes
- f919be9: Added a utility API for VMware Cloud auth; the API ref is available in the
@backstage/core-plugin-api
and@backstage/frontend-plugin-api
packages, the implementation is in@backstage/core-app-api
and a factory has been added to@backstage/app-defaults
.
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/config@1.1.1
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.7
@backstage/core-plugin-api@1.9.0-next.1
Minor Changes
- f919be9: Added a utility API for VMware Cloud auth; the API ref is available in the
@backstage/core-plugin-api
and@backstage/frontend-plugin-api
packages, the implementation is in@backstage/core-app-api
and a factory has been added to@backstage/app-defaults
.
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.7
@backstage/repo-tools@0.6.0-next.2
Minor Changes
-
4c62935: BREAKING: The
schema openapi *
commands are now renamed intopackage schema openapi *
andrepo schema openapi *
. The aim is to make it more clear what the command is operating on, the entire repo or just a single package.The following commands now live under the
package
namespace,schema openapi generate
is nowpackage schema openapi generate --server
schema openapi generate-client
is nowpackage schema openapi generate --client-package
schema openapi init
is nowpackage schema openapi init
And these commands live under the new
repo
namespace,schema openapi lint
is nowrepo schema openapi lint
schema openapi test
is nowrepo schema openapi test
schema openapi verify
is nowrepo schema openapi verify
The
package schema openapi generate
now supports defining both--server
and--client-package
to generate both at once.This update also reworks the--client-package
flag to accept only an output directory as the input directory can now be inferred.
Patch Changes
- aa91cd6: Resolved an issue with generate-catalog-info where it was replacing upper case characters with -.
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/cli-common@0.1.13
- @backstage/cli-node@0.2.2
- @backstage/errors@1.2.3
@backstage/plugin-auth-backend@0.21.0-next.2
Minor Changes
-
7dd8463: BREAKING: The
saml
provider has been migrated frompassport-saml
to@node-saml/passport-saml
.This comes with breaking changes to config options:
audience
is now mandatorywantAuthnResponseSigned
is now exposed and defaults totrue
wantAssertionsSigned
is now exposed and defaults totrue
Patch Changes
- 97f8724: Support additional algorithms in the
/.well-known/openid-configuration
endpoint. - a9e0107: The auth backend will now refuse to issue user tokens are excessively large.
- d4cc552: The helper function
makeProfileInfo
andPassportHelpers.transformProfile
were refactored to use thejose
library. - 8e8a25d: Ability for user to configure backstage token expiration
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.0-next.1
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-auth-backend-module-atlassian-provider@0.1.2-next.2
- @backstage/plugin-auth-backend-module-github-provider@0.1.7-next.2
- @backstage/plugin-auth-backend-module-gitlab-provider@0.1.7-next.2
- @backstage/plugin-auth-backend-module-google-provider@0.1.7-next.2
- @backstage/plugin-auth-backend-module-microsoft-provider@0.1.5-next.2
- @backstage/plugin-auth-backend-module-oauth2-provider@0.1.7-next.2
- @backstage/plugin-auth-backend-module-oidc-provider@0.1.0-next.2
- @backstage/plugin-auth-backend-module-okta-provider@0.0.3-next.2
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.4-next.2
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.2-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/plugin-catalog-graph@0.4.0-next.2
Minor Changes
- 3dc64e9: Migrate plugin to the new frontend system, it is experimental and available via alpha subpath.
Patch Changes
-
3e1c6e2: Added possibility to show arrow heads for graph edges for better understandability.
In order to show arrow heads in the catalog graph page, add
showArrowHeads
attribute toCatalogGraphPage
component (typically inpackages/app/src/App.tsx
):- <CatalogGraphPage />
+ <CatalogGraphPage showArrowHeads />In order to show arrow heads in entity graphs, add
showArrowHeads
attribute toEntityCatalogGraphCard
components (typically multiple occurrences inpackages/app/src/components/catalog/EntityPage.tsx
):- <EntityCatalogGraphCard variant="gridItem" height={400} />
+ <EntityCatalogGraphCard variant="gridItem" height={400} showArrowHeads /> -
9aac2b0: Use
--cwd
as the firstyarn
argument -
8fe56a8: Widen
@types/react
dependency range to include version 18. -
Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/core-compat-api@0.2.0-next.2
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/types@1.1.1
@backstage/plugin-catalog-react@1.10.0-next.2
Minor Changes
- 3dc64e9: Add support to
configSchema
option on thecreateEntityCardExtension
factory function.
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-permission-react@0.4.20-next.1
- @backstage/integration-react@1.1.24-next.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.7
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-kubernetes-backend@0.15.0-next.2
Minor Changes
- 666eff5: BREAKING The backend will fail to start if two clusters in the app-config have the same name. The requirement for unique names has been declared in the docs for some time, but is now enforced.
Patch Changes
- 1c3cb3b: Backstage will log a warning whenever duplicate cluster names are detected -- even if clusters sharing the same name come from separate locators.
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-kubernetes-node@0.1.4-next.2
- @backstage/plugin-permission-node@0.7.21-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/integration-aws-node@0.1.8
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-kubernetes-common@0.7.4-next.1
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-scaffolder@1.18.0-next.2
Minor Changes
- 7f11009: Added stack trace display to
ErrorPage
and updated existing refs
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/plugin-permission-react@0.4.20-next.1
- @backstage/plugin-scaffolder-react@1.8.0-next.2
- @backstage/integration-react@1.1.24-next.1
- @backstage/core-compat-api@0.2.0-next.2
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-scaffolder-common@1.5.0-next.1
@backstage/plugin-scaffolder-backend-module-bitbucket@0.2.0-next.2
Minor Changes
-
5eb6882: Split
@backstage/plugin-scaffolder-backend-module-bitbucket
into@backstage/plugin-scaffolder-backend-module-bitbucket-cloud
and@backstage/plugin-scaffolder-backend-module-bitbucket-server
.@backstage/plugin-scaffolder-backend-module-bitbucket
was deprecated in favor of these two replacements.Please use any of the two replacements depending on your needs.
- backend.add(import('@backstage/plugin-scaffolder-backend-module-bitbucket'));
+ backend.add(import('@backstage/plugin-scaffolder-backend-module-bitbucket-cloud'));
+ backend.add(import('@backstage/plugin-scaffolder-backend-module-bitbucket-server'));
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.1.0-next.0
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.1.0-next.0
- @backstage/plugin-scaffolder-node@0.3.0-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.1.0-next.0
Minor Changes
-
5eb6882: New scaffolder module
@backstage/plugin-scaffolder-backend-module-bitbucket-cloud
.Extracted from
@backstage/plugin-scaffolder-backend-module-bitbucket
and replaces its actions related to Bitbucket Cloud.publish:bitbucketCloud
bitbucket:pipelines:run
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-scaffolder-node@0.3.0-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
@backstage/plugin-scaffolder-backend-module-bitbucket-server@0.1.0-next.0
Minor Changes
-
5eb6882: New scaffolder module
@backstage/plugin-scaffolder-backend-module-bitbucket-server
.Extracted from
@backstage/plugin-scaffolder-backend-module-bitbucket
and replaces its actions related to Bitbucket Server.publish:bitbucketServer
publish:bitbucketServer:pull-request
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-scaffolder-node@0.3.0-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
@backstage/backend-app-api@0.5.11-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-permission-node@0.7.21-next.2
- @backstage/config@1.1.1
- @backstage/cli-common@0.1.13
- @backstage/cli-node@0.2.2
- @backstage/config-loader@1.6.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/backend-common@0.21.0-next.2
Patch Changes
- 3489d05:
FetchUrlReader#readUrl()
now supports passing an optionaltoken
to authenticate requests. - 9aac2b0: Use
--cwd
as the firstyarn
argument - 7fb7a79: Add a config declaration for
workingDirectory
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-dev-utils@0.1.4-next.0
- @backstage/backend-app-api@0.5.11-next.2
- @backstage/config@1.1.1
- @backstage/integration-aws-node@0.1.8
- @backstage/cli-common@0.1.13
- @backstage/config-loader@1.6.1
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
- @backstage/types@1.1.1
@backstage/backend-defaults@0.2.10-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-app-api@0.5.11-next.2
@backstage/backend-dev-utils@0.1.4-next.0
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument
@backstage/backend-dynamic-feature-service@0.1.1-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-catalog-backend@1.17.0-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-events-backend@0.2.19-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-permission-node@0.7.21-next.2
- @backstage/plugin-scaffolder-node@0.3.0-next.2
- @backstage/plugin-search-backend-node@1.2.14-next.2
- @backstage/plugin-events-node@0.2.19-next.2
- @backstage/config@1.1.1
- @backstage/cli-common@0.1.13
- @backstage/cli-node@0.2.2
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-search-common@1.2.10
@backstage/backend-openapi-utils@0.1.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/errors@1.2.3
@backstage/backend-plugin-api@0.6.10-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/config@1.1.1
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.12
@backstage/backend-tasks@0.5.15-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/backend-test-utils@0.3.0-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-app-api@0.5.11-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/cli@0.25.2-next.2
Patch Changes
- 52ae6b9: Updated dependency
esbuild
to^0.20.0
. - 5c05f8a: Harmonize the package naming and allow custom prefix
- Updated dependencies
- @backstage/config@1.1.1
- @backstage/release-manifests@0.0.11
- @backstage/catalog-model@1.4.4-next.0
- @backstage/cli-common@0.1.13
- @backstage/cli-node@0.2.2
- @backstage/config-loader@1.6.1
- @backstage/errors@1.2.3
- @backstage/eslint-plugin@0.1.5-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/types@1.1.1
@backstage/core-compat-api@0.2.0-next.2
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.12.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/version-bridge@1.0.7
@backstage/core-components@0.14.0-next.1
Patch Changes
-
3e1c6e2: Added possibility to show arrow heads for graph edges for better understandability.
In order to show arrow heads in the catalog graph page, add
showArrowHeads
attribute toCatalogGraphPage
component (typically inpackages/app/src/App.tsx
):- <CatalogGraphPage />
+ <CatalogGraphPage showArrowHeads />In order to show arrow heads in entity graphs, add
showArrowHeads
attribute toEntityCatalogGraphCard
components (typically multiple occurrences inpackages/app/src/components/catalog/EntityPage.tsx
):- <EntityCatalogGraphCard variant="gridItem" height={400} />
+ <EntityCatalogGraphCard variant="gridItem" height={400} showArrowHeads /> -
8fe56a8: Widen
@types/react
dependency range to include version 18. -
7f11009: Added stack trace display to
ErrorPage
and updated existing refs -
214f2da: Fix invalid HTTP status code 501 in Error Page
-
Updated dependencies
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/theme@0.5.1-next.0
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/version-bridge@1.0.7
@backstage/create-app@0.5.11-next.2
Patch Changes
- c420081: Add a seed file for
yarn.lock
in newly created apps. This file is downloaded directly fromhttps://github.com/backstage/backstage
at the time of creating a new project, ensuring that users always receive the latest version. The purpose of the seed file is to initialize the lock file with known good versions of individual dependencies that have had bad new releases published. The seed file will have no effect if the dependency is not present, it can not be used to install additional packages. - f71352c: Bumped TypeScript to version
5.3
. - Updated dependencies
- @backstage/cli-common@0.1.13
@backstage/dev-utils@1.0.27-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/app-defaults@1.5.0-next.2
- @backstage/core-app-api@1.12.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/theme@0.5.1-next.0
- @backstage/integration-react@1.1.24-next.1
- @backstage/catalog-model@1.4.4-next.0
@backstage/frontend-app-api@0.6.0-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-app-api@1.12.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/theme@0.5.1-next.0
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.7
@backstage/frontend-plugin-api@0.6.0-next.2
Patch Changes
- f919be9: Added a utility API for VMware Cloud auth; the API ref is available in the
@backstage/core-plugin-api
and@backstage/frontend-plugin-api
packages, the implementation is in@backstage/core-app-api
and a factory has been added to@backstage/app-defaults
. - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.7
@backstage/frontend-test-utils@0.1.2-next.2
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/frontend-app-api@0.6.0-next.2
- @backstage/test-utils@1.5.0-next.2
- @backstage/types@1.1.1
@backstage/integration-react@1.1.24-next.1
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/config@1.1.1
- @backstage/integration@1.9.0-next.0
@techdocs/cli@1.8.2-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/plugin-techdocs-node@1.11.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/cli-common@0.1.13
@backstage/test-utils@1.5.0-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-app-api@1.12.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-permission-react@0.4.20-next.1
- @backstage/theme@0.5.1-next.0
- @backstage/config@1.1.1
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.12
@backstage/theme@0.5.1-next.0
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18.
@backstage/plugin-adr@0.6.13-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/plugin-search-react@1.7.6-next.2
- @backstage/integration-react@1.1.24-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-adr-common@0.2.20-next.0
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-adr-backend@0.4.7-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-adr-common@0.2.20-next.0
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-airbrake@0.3.30-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/dev-utils@1.0.27-next.2
- @backstage/test-utils@1.5.0-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-airbrake-backend@0.3.7-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/config@1.1.1
@backstage/plugin-allure@0.1.46-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-analytics-module-ga@0.2.0-next.1
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/config@1.1.1
@backstage/plugin-analytics-module-ga4@0.2.0-next.1
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/config@1.1.1
@backstage/plugin-analytics-module-newrelic-browser@0.1.0-next.1
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/config@1.1.1
@backstage/plugin-apache-airflow@0.2.20-next.1
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
@backstage/plugin-api-docs@0.10.4-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/plugin-catalog@1.17.0-next.2
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/plugin-permission-react@0.4.20-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-catalog-common@1.0.21-next.0
@backstage/plugin-api-docs-module-protoc-gen-doc@0.1.6-next.0
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18.
@backstage/plugin-apollo-explorer@0.1.20-next.1
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
@backstage/plugin-app-backend@0.3.58-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 998ccf6: Support injecting config multiple times in a single bundle
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-app-node@0.1.10-next.2
- @backstage/config@1.1.1
- @backstage/config-loader@1.6.1
- @backstage/types@1.1.1
@backstage/plugin-app-node@0.1.10-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
@backstage/plugin-app-visualizer@0.1.1-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
@backstage/plugin-auth-backend-module-atlassian-provider@0.1.2-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
@backstage/plugin-auth-backend-module-aws-alb-provider@0.1.0-next.1
Patch Changes
- d309cad: Refactored to use the
jose
library for JWT handling. - Updated dependencies
- @backstage/plugin-auth-backend@0.21.0-next.2
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/errors@1.2.3
@backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.4-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/plugin-auth-backend-module-github-provider@0.1.7-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
@backstage/plugin-auth-backend-module-gitlab-provider@0.1.7-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
@backstage/plugin-auth-backend-module-google-provider@0.1.7-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
@backstage/plugin-auth-backend-module-microsoft-provider@0.1.5-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
@backstage/plugin-auth-backend-module-oauth2-provider@0.1.7-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.2-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/errors@1.2.3
@backstage/plugin-auth-backend-module-oidc-provider@0.1.0-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend@0.21.0-next.2
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
@backstage/plugin-auth-backend-module-okta-provider@0.0.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
@backstage/plugin-auth-backend-module-pinniped-provider@0.1.4-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/config@1.1.1
@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.1.2-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-auth-node@0.4.4-next.2
Patch Changes
- d4cc552: The helper function
makeProfileInfo
andPassportHelpers.transformProfile
were refactored to use thejose
library. - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/plugin-azure-devops@0.3.12-next.2
Patch Changes
- e2083df: Added alpha support for the New Frontend System (Declarative Integration)
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/core-compat-api@0.2.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/plugin-azure-devops-common@0.3.2
@backstage/plugin-azure-devops-backend@0.5.2-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-azure-devops-common@0.3.2
- @backstage/plugin-catalog-common@1.0.21-next.0
@backstage/plugin-azure-sites@0.1.19-next.2
Patch Changes
- 09a9c95: Updated README
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/plugin-permission-react@0.4.20-next.1
- @backstage/theme@0.5.1-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-azure-sites-common@0.1.2-next.0
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-azure-sites-backend@0.2.0-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 4376655: Added
permissionIntegrationRouter
for azure-sites-backend routes - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-permission-node@0.7.21-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/plugin-azure-sites-common@0.1.2-next.0
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-badges@0.2.54-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/plugin-badges-backend@0.3.7-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/plugin-bazaar@0.2.22-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/plugin-bazaar-backend@0.3.8-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/config@1.1.1
@backstage/plugin-bitrise@0.1.57-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-catalog@1.17.0-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/plugin-permission-react@0.4.20-next.1
- @backstage/plugin-search-react@1.7.6-next.2
- @backstage/integration-react@1.1.24-next.1
- @backstage/core-compat-api@0.2.0-next.2
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-scaffolder-common@1.5.0-next.1
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-catalog-backend@1.17.0-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/repo-tools@0.6.0-next.2
- @backstage/backend-common@0.21.0-next.2
- @backstage/plugin-search-backend-module-catalog@0.1.14-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-permission-node@0.7.21-next.2
- @backstage/backend-openapi-utils@0.1.3-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/plugin-events-node@0.2.19-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-catalog-backend-module-aws@0.3.4-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/integration-aws-node@0.1.8
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-kubernetes-common@0.7.4-next.1
@backstage/plugin-catalog-backend-module-azure@0.1.29-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-catalog-common@1.0.21-next.0
@backstage/plugin-catalog-backend-module-backstage-openapi@0.1.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/backend-openapi-utils@0.1.3-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/plugin-catalog-backend-module-bitbucket@0.2.25-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-bitbucket-cloud-common@0.2.16-next.1
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.1.25-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/plugin-events-node@0.2.19-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-bitbucket-cloud-common@0.2.16-next.1
- @backstage/plugin-catalog-common@1.0.21-next.0
@backstage/plugin-catalog-backend-module-bitbucket-server@0.1.23-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
@backstage/plugin-catalog-backend-module-gcp@0.1.10-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-kubernetes-common@0.7.4-next.1
@backstage/plugin-catalog-backend-module-gerrit@0.1.26-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
@backstage/plugin-catalog-backend-module-github@0.5.0-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-catalog-backend@1.17.0-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/plugin-events-node@0.2.19-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-catalog-common@1.0.21-next.0
@backstage/plugin-catalog-backend-module-github-org@0.1.4-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-catalog-backend-module-github@0.5.0-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
@backstage/plugin-catalog-backend-module-gitlab@0.3.7-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/integration@1.9.0-next.0
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.4.14-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-catalog-backend@1.17.0-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/plugin-events-node@0.2.19-next.2
- @backstage/config@1.1.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-catalog-backend-module-ldap@0.5.25-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.21-next.0
@backstage/plugin-catalog-backend-module-msgraph@0.5.17-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-catalog-common@1.0.21-next.0
@backstage/plugin-catalog-backend-module-openapi@0.1.27-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-catalog-backend@1.17.0-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.21-next.0
@backstage/plugin-catalog-backend-module-puppetdb@0.1.15-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - bc644fb: Added
latest_report_status
parameter from the PuppetDB node api and added it as a tag to the nodes. The status is valuable information as it displays which nodes are compliant to your configuration and which ones are failing are making changes. - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.7-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-scaffolder-common@1.5.0-next.1
@backstage/plugin-catalog-backend-module-unprocessed@0.3.7-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-catalog-import@0.10.6-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/integration-react@1.1.24-next.1
- @backstage/core-compat-api@0.2.0-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-catalog-common@1.0.21-next.0
@backstage/plugin-catalog-node@1.6.2-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-permission-node@0.7.21-next.2
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-catalog-unprocessed-entities@0.1.8-next.1
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/plugin-cicd-statistics@0.1.32-next.2
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-cicd-statistics-module-gitlab@0.1.26-next.2
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-cicd-statistics@0.1.32-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-circleci@0.3.30-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-cloudbuild@0.4.0-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-code-climate@0.1.30-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-code-coverage@0.2.23-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/plugin-code-coverage-backend@0.2.24-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
@backstage/plugin-codescene@0.1.22-next.1
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-config-schema@0.1.50-next.1
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/plugin-cost-insights@0.12.19-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/theme@0.5.1-next.0
- @backstage/config@1.1.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-cost-insights-common@0.1.2
@backstage/plugin-devtools@0.1.9-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-permission-react@0.4.20-next.1
- @backstage/core-compat-api@0.2.0-next.2
- @backstage/errors@1.2.3
- @backstage/plugin-devtools-common@0.1.8
@backstage/plugin-devtools-backend@0.2.7-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-permission-node@0.7.21-next.2
- @backstage/config@1.1.1
- @backstage/cli-common@0.1.13
- @backstage/config-loader@1.6.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-devtools-common@0.1.8
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-dynatrace@9.0.0-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-entity-feedback@0.2.13-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/plugin-entity-feedback-common@0.1.3
@backstage/plugin-entity-feedback-backend@0.2.7-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-entity-feedback-common@0.1.3
@backstage/plugin-entity-validation@0.1.15-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/plugin-catalog-common@1.0.21-next.0
@backstage/plugin-events-backend@0.2.19-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-events-node@0.2.19-next.2
- @backstage/config@1.1.1
@backstage/plugin-events-backend-module-aws-sqs@0.2.13-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-events-node@0.2.19-next.2
- @backstage/config@1.1.1
- @backstage/types@1.1.1
@backstage/plugin-events-backend-module-azure@0.1.20-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-events-node@0.2.19-next.2
@backstage/plugin-events-backend-module-bitbucket-cloud@0.1.20-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-events-node@0.2.19-next.2
@backstage/plugin-events-backend-module-gerrit@0.1.20-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-events-node@0.2.19-next.2
@backstage/plugin-events-backend-module-github@0.1.20-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-events-node@0.2.19-next.2
- @backstage/config@1.1.1
@backstage/plugin-events-backend-module-gitlab@0.1.20-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-events-node@0.2.19-next.2
- @backstage/config@1.1.1
@backstage/plugin-events-backend-test-utils@0.1.20-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.2.19-next.2
@backstage/plugin-events-node@0.2.19-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
@backstage/plugin-explore@0.4.16-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - 796d427: Use the EntityDisplayName component for rendering Group nodes
- Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/plugin-search-react@1.7.6-next.2
- @backstage/plugin-explore-react@0.0.36-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/plugin-explore-common@0.0.2
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-explore-backend@0.0.20-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/plugin-search-backend-module-explore@0.1.14-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/config@1.1.1
- @backstage/types@1.1.1
- @backstage/plugin-explore-common@0.0.2
@backstage/plugin-explore-react@0.0.36-next.1
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-explore-common@0.0.2
@backstage/plugin-firehydrant@0.2.14-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-fossa@0.2.62-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/plugin-gcalendar@0.3.23-next.1
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/errors@1.2.3
@backstage/plugin-gcp-projects@0.3.46-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
@backstage/plugin-git-release-manager@0.3.42-next.1
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/integration@1.9.0-next.0
@backstage/plugin-github-actions@0.6.11-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/integration-react@1.1.24-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/integration@1.9.0-next.0
@backstage/plugin-github-deployments@0.1.61-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/integration-react@1.1.24-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
@backstage/plugin-github-issues@0.2.19-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
@backstage/plugin-github-pull-requests-board@0.1.24-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/integration@1.9.0-next.0
@backstage/plugin-gitops-profiles@0.3.45-next.1
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
@backstage/plugin-gocd@0.1.36-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/plugin-graphiql@0.3.3-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/core-compat-api@0.2.0-next.2
@backstage/plugin-graphql-voyager@0.1.12-next.1
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
@backstage/plugin-home@0.6.2-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - dc7ae8b: Use EntityDisplayName JSX element entity information directly for FeaturedDocsCard.
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-app-api@1.12.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/theme@0.5.1-next.0
- @backstage/plugin-home-react@0.1.8-next.2
- @backstage/core-compat-api@0.2.0-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-home-react@0.1.8-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
@backstage/plugin-ilert@0.2.19-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/plugin-jenkins@0.9.5-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/plugin-jenkins-common@0.1.24-next.0
@backstage/plugin-jenkins-backend@0.3.4-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-permission-node@0.7.21-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/plugin-jenkins-common@0.1.24-next.0
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-kafka@0.3.30-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-kafka-backend@0.3.8-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-kubernetes@0.11.5-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/plugin-kubernetes-react@0.3.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-kubernetes-common@0.7.4-next.1
@backstage/plugin-kubernetes-cluster@0.0.6-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/plugin-kubernetes-react@0.3.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-kubernetes-common@0.7.4-next.1
@backstage/plugin-kubernetes-node@0.1.4-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/types@1.1.1
- @backstage/plugin-kubernetes-common@0.7.4-next.1
@backstage/plugin-kubernetes-react@0.3.0-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-kubernetes-common@0.7.4-next.1
@backstage/plugin-lighthouse@0.4.15-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-lighthouse-common@0.1.4
@backstage/plugin-lighthouse-backend@0.4.2-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/types@1.1.1
- @backstage/plugin-lighthouse-common@0.1.4
@backstage/plugin-linguist@0.1.15-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/core-compat-api@0.2.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/plugin-linguist-common@0.1.2
@backstage/plugin-linguist-backend@0.5.7-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-linguist-common@0.1.2
@backstage/plugin-microsoft-calendar@0.1.12-next.1
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/errors@1.2.3
@backstage/plugin-newrelic@0.3.45-next.1
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
@backstage/plugin-newrelic-dashboard@0.3.5-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/plugin-nomad@0.1.11-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-nomad-backend@0.1.12-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-notifications@0.0.1-next.0
Patch Changes
- fb8fc24: Initial notifications system for backstage
- Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/plugin-signals-react@0.0.1-next.2
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/theme@0.5.1-next.0
- @backstage/plugin-notifications-common@0.0.1-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/plugin-notifications-backend@0.0.1-next.0
Patch Changes
- fb8fc24: Initial notifications system for backstage
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/plugin-signals-node@0.0.1-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-notifications-common@0.0.1-next.0
- @backstage/plugin-notifications-node@0.0.1-next.0
- @backstage/plugin-events-node@0.2.19-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/plugin-notifications-common@0.0.1-next.0
Patch Changes
- fb8fc24: Initial notifications system for backstage
@backstage/plugin-notifications-node@0.0.1-next.0
Patch Changes
- fb8fc24: Initial notifications system for backstage
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/plugin-signals-node@0.0.1-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-notifications-common@0.0.1-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-octopus-deploy@0.2.12-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-opencost@0.2.5-next.1
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - 03c5bbe: Updated dependency
date-fns
to^3.0.0
. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
@backstage/plugin-org@0.6.20-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - 6e1bf50: Added basic support for the new frontend system, exported from the
/alpha
subpath. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/core-compat-api@0.2.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-catalog-common@1.0.21-next.0
@backstage/plugin-org-react@0.1.19-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-pagerduty@0.7.2-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/plugin-home-react@0.1.8-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/plugin-periskop@0.1.28-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/plugin-periskop-backend@0.2.8-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/config@1.1.1
@backstage/plugin-permission-backend@0.5.33-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-permission-node@0.7.21-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-permission-backend-module-allow-all-policy@0.1.7-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-permission-node@0.7.21-next.2
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-permission-node@0.7.21-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-permission-react@0.4.20-next.1
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/config@1.1.1
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-playlist@0.2.4-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - 7f11009: Added stack trace display to
ErrorPage
and updated existing refs - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/plugin-permission-react@0.4.20-next.1
- @backstage/plugin-search-react@1.7.6-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-playlist-common@0.1.14
@backstage/plugin-playlist-backend@0.3.14-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-permission-node@0.7.21-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-playlist-common@0.1.14
@backstage/plugin-proxy-backend@0.4.8-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/config@1.1.1
@backstage/plugin-puppetdb@0.1.13-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/plugin-rollbar@0.4.30-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-rollbar-backend@0.1.55-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/config@1.1.1
@backstage/plugin-scaffolder-backend@1.21.0-next.2
Patch Changes
-
5eb6882: New scaffolder module
@backstage/plugin-scaffolder-backend-module-bitbucket-server
.Extracted from
@backstage/plugin-scaffolder-backend-module-bitbucket
and replaces its actions related to Bitbucket Server.publish:bitbucketServer
publish:bitbucketServer:pull-request
-
9aac2b0: Use
--cwd
as the firstyarn
argument -
52ae6b9: Updated dependency
esbuild
to^0.20.0
. -
5eb6882: New scaffolder module
@backstage/plugin-scaffolder-backend-module-bitbucket-cloud
.Extracted from
@backstage/plugin-scaffolder-backend-module-bitbucket
and replaces its actions related to Bitbucket Cloud.publish:bitbucketCloud
bitbucket:pipelines:run
-
Updated dependencies
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.1.0-next.0
- @backstage/backend-common@0.21.0-next.2
- @backstage/plugin-scaffolder-backend-module-bitbucket@0.2.0-next.2
- @backstage/plugin-scaffolder-backend-module-gitlab@0.2.13-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.1.0-next.0
- @backstage/plugin-scaffolder-backend-module-gerrit@0.1.2-next.2
- @backstage/plugin-permission-node@0.7.21-next.2
- @backstage/plugin-scaffolder-backend-module-azure@0.1.2-next.2
- @backstage/plugin-scaffolder-backend-module-github@0.2.0-next.2
- @backstage/plugin-scaffolder-node@0.3.0-next.2
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.7-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-scaffolder-common@1.5.0-next.1
@backstage/plugin-scaffolder-backend-module-azure@0.1.2-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-scaffolder-node@0.3.0-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.11-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-scaffolder-node@0.3.0-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.2.34-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-scaffolder-node@0.3.0-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
- @backstage/types@1.1.1
@backstage/plugin-scaffolder-backend-module-gerrit@0.1.2-next.2
Patch Changes
- 8b269e1: Provide default branch when creating repositories.
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-scaffolder-node@0.3.0-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
@backstage/plugin-scaffolder-backend-module-github@0.2.0-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-scaffolder-node@0.3.0-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
@backstage/plugin-scaffolder-backend-module-gitlab@0.2.13-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-scaffolder-node@0.3.0-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
@backstage/plugin-scaffolder-backend-module-rails@0.4.27-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-scaffolder-node@0.3.0-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
- @backstage/types@1.1.1
@backstage/plugin-scaffolder-backend-module-sentry@0.1.18-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-scaffolder-node@0.3.0-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-scaffolder-backend-module-yeoman@0.2.31-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-scaffolder-node@0.3.0-next.2
- @backstage/types@1.1.1
@backstage/plugin-scaffolder-node@0.3.0-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
- @backstage/types@1.1.1
- @backstage/plugin-scaffolder-common@1.5.0-next.1
@backstage/plugin-scaffolder-react@1.8.0-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - 2985186: Fix bug that erroneously caused a separator or a 0 to render in the TemplateCard for Templates with empty links
- Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/theme@0.5.1-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.7
- @backstage/plugin-scaffolder-common@1.5.0-next.1
@backstage/plugin-search@1.4.6-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/plugin-search-react@1.7.6-next.2
- @backstage/core-compat-api@0.2.0-next.2
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.7
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-backend@1.5.0-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-permission-node@0.7.21-next.2
- @backstage/plugin-search-backend-node@1.2.14-next.2
- @backstage/backend-openapi-utils@0.1.3-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-backend-module-catalog@0.1.14-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-search-backend-node@1.2.14-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-backend-module-elasticsearch@1.3.13-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-search-backend-node@1.2.14-next.2
- @backstage/config@1.1.1
- @backstage/integration-aws-node@0.1.8
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-backend-module-explore@0.1.14-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-search-backend-node@1.2.14-next.2
- @backstage/config@1.1.1
- @backstage/plugin-explore-common@0.0.2
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-backend-module-pg@0.5.19-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-search-backend-node@1.2.14-next.2
- @backstage/config@1.1.1
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-backend-module-stack-overflow-collator@0.1.3-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-search-backend-node@1.2.14-next.2
- @backstage/config@1.1.1
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-backend-module-techdocs@0.1.14-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-search-backend-node@1.2.14-next.2
- @backstage/plugin-techdocs-node@1.11.2-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-backend-node@1.2.14-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-react@1.7.6-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/theme@0.5.1-next.0
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.7
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-sentry@0.5.15-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-shortcuts@0.3.19-next.1
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/theme@0.5.1-next.0
- @backstage/types@1.1.1
@backstage/plugin-signals@0.0.1-next.2
Patch Changes
- 447d210: Fix disconnect loop on server start
- Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/plugin-signals-react@0.0.1-next.2
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/theme@0.5.1-next.0
- @backstage/types@1.1.1
@backstage/plugin-signals-backend@0.0.1-next.2
Patch Changes
- 447d210: Fix disconnect loop on server start
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/plugin-signals-node@0.0.1-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-events-node@0.2.19-next.2
- @backstage/config@1.1.1
- @backstage/types@1.1.1
@backstage/plugin-signals-node@0.0.1-next.2
Patch Changes
- 447d210: Fix disconnect loop on server start
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-events-node@0.2.19-next.2
- @backstage/config@1.1.1
- @backstage/types@1.1.1
@backstage/plugin-signals-react@0.0.1-next.2
Patch Changes
- 447d210: Fix disconnect loop on server start
- Updated dependencies
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/types@1.1.1
@backstage/plugin-sonarqube@0.7.12-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/plugin-sonarqube-react@0.1.13-next.1
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-sonarqube-backend@0.2.12-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-sonarqube-react@0.1.13-next.1
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-splunk-on-call@0.4.19-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
@backstage/plugin-stack-overflow@0.1.25-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-search-react@1.7.6-next.2
- @backstage/plugin-home-react@0.1.8-next.2
- @backstage/config@1.1.1
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-stack-overflow-backend@0.2.14-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-search-backend-module-stack-overflow-collator@0.1.3-next.2
@backstage/plugin-stackstorm@0.1.11-next.1
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/errors@1.2.3
@backstage/plugin-tech-insights@0.3.22-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-tech-insights-common@0.2.12
@backstage/plugin-tech-insights-backend@0.5.24-next.2
Patch Changes
-
7201af3: Add support for the new backend system.
A new backend plugin for the tech-insights backend was added and exported as
default
.You can use it with the new backend system like
packages/backend/src/index.tsbackend.add(import('@backstage/plugin-tech-insights-backend'));
-
9aac2b0: Use
--cwd
as the firstyarn
argument -
341c2a2: Move
FactRetrieverRegistry
andPersistenceContext
to@backstage/plugin-tech-insights-node
.Original exports are marked as deprecated and re-export the moved types.
Please replace uses like
import {
FactRetrieverRegistry,
PersistenceContext,
} from '@backstage/plugin-tech-insights-backend';with
import {
FactRetrieverRegistry,
PersistenceContext,
} from '@backstage/plugin-tech-insights-node'; -
Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/plugin-tech-insights-node@0.4.16-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-tech-insights-common@0.2.12
@backstage/plugin-tech-insights-backend-module-jsonfc@0.1.42-next.2
Patch Changes
-
25cfb76: Add support for the new backend system.
A new backend module for the tech-insights backend was added and exported as
default
.The module will register the
JsonRulesEngineFactCheckerFactory
asFactCheckerFactory
, loading checks from the config.You can use it with the new backend system like
packages/backend/src/index.tsbackend.add(import('@backstage/plugin-tech-insights-backend-module-jsonfc'));
-
bc72782: Support loading
TechInsightsJsonRuleCheck
instances from config.Uses the check
id
as key.Example:
app-config.yamltechInsights:
factChecker:
checks:
groupOwnerCheck:
type: json-rules-engine
name: Group Owner Check
description: Verifies that a group has been set as the spec.owner for this entity
factIds:
- entityOwnershipFactRetriever
rule:
conditions:
all:
- fact: hasGroupOwner
operator: equal
value: true -
9aac2b0: Use
--cwd
as the firstyarn
argument -
Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/plugin-tech-insights-node@0.4.16-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-tech-insights-common@0.2.12
@backstage/plugin-tech-insights-node@0.4.16-next.2
Patch Changes
-
7201af3: Add support for the new backend system.
A new backend plugin for the tech-insights backend was added and exported as
default
.You can use it with the new backend system like
packages/backend/src/index.tsbackend.add(import('@backstage/plugin-tech-insights-backend'));
-
341c2a2: Move
FactRetrieverRegistry
andPersistenceContext
to@backstage/plugin-tech-insights-node
.Original exports are marked as deprecated and re-export the moved types.
Please replace uses like
import {
FactRetrieverRegistry,
PersistenceContext,
} from '@backstage/plugin-tech-insights-backend';with
import {
FactRetrieverRegistry,
PersistenceContext,
} from '@backstage/plugin-tech-insights-node'; -
Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/config@1.1.1
- @backstage/types@1.1.1
- @backstage/plugin-tech-insights-common@0.2.12
@backstage/plugin-tech-radar@0.6.13-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/core-compat-api@0.2.0-next.2
@backstage/plugin-techdocs@1.10.0-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/plugin-techdocs-react@1.1.16-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/plugin-search-react@1.7.6-next.2
- @backstage/theme@0.5.1-next.0
- @backstage/integration-react@1.1.24-next.1
- @backstage/core-compat-api@0.2.0-next.2
- @backstage/config@1.1.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-techdocs-addons-test-utils@1.0.27-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/plugin-techdocs-react@1.1.16-next.1
- @backstage/core-app-api@1.12.0-next.1
- @backstage/plugin-catalog@1.17.0-next.2
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/plugin-search-react@1.7.6-next.2
- @backstage/plugin-techdocs@1.10.0-next.2
- @backstage/test-utils@1.5.0-next.2
- @backstage/integration-react@1.1.24-next.1
@backstage/plugin-techdocs-backend@1.9.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/plugin-search-backend-module-techdocs@0.1.14-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-techdocs-node@1.11.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-techdocs-module-addons-contrib@1.1.5-next.2
Patch Changes
- ab9c9eb: Fixed the value label text color in dark mode for the TextSize addon.
- Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/plugin-techdocs-react@1.1.16-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/integration-react@1.1.24-next.1
- @backstage/integration@1.9.0-next.0
@backstage/plugin-techdocs-node@1.11.2-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/config@1.1.1
- @backstage/integration-aws-node@0.1.8
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-techdocs-react@1.1.16-next.1
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/config@1.1.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/version-bridge@1.0.7
@backstage/plugin-todo@0.2.34-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/plugin-todo-backend@0.3.8-next.2
Patch Changes
- Updated dependencies
- @backstage/repo-tools@0.6.0-next.2
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-openapi-utils@0.1.3-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
- @backstage/integration@1.9.0-next.0
@backstage/plugin-user-settings@0.8.1-next.2
Patch Changes
- 8fe56a8: Widen
@types/react
dependency range to include version 18. - d5b14a0: conditionally rendering the user name and email in user settings page
- Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-app-api@1.12.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/theme@0.5.1-next.0
- @backstage/core-compat-api@0.2.0-next.2
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/plugin-user-settings-backend@0.2.9-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/plugin-vault@0.1.25-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/plugin-vault-backend@0.4.3-next.2
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-vault-node@0.1.3-next.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-vault-node@0.1.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.2
@backstage/plugin-xcmetrics@0.2.48-next.1
Patch Changes
- 9aac2b0: Use
--cwd
as the firstyarn
argument - 8fe56a8: Widen
@types/react
dependency range to include version 18. - Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/errors@1.2.3
example-app@0.2.92-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-azure-devops@0.3.12-next.2
- @backstage/plugin-azure-sites@0.1.19-next.2
- @backstage/core-components@0.14.0-next.1
- @backstage/plugin-catalog-graph@0.4.0-next.2
- @backstage/plugin-techdocs-module-addons-contrib@1.1.5-next.2
- @backstage/plugin-signals@0.0.1-next.2
- @backstage/plugin-catalog-unprocessed-entities@0.1.8-next.1
- @backstage/plugin-microsoft-calendar@0.1.12-next.1
- @backstage/plugin-catalog-import@0.10.6-next.2
- @backstage/plugin-github-actions@0.6.11-next.2
- @backstage/plugin-octopus-deploy@0.2.12-next.2
- @backstage/plugin-techdocs-react@1.1.16-next.1
- @backstage/app-defaults@1.5.0-next.2
- @backstage/core-app-api@1.12.0-next.1
- @backstage/plugin-code-coverage@0.2.23-next.2
- @backstage/plugin-cost-insights@0.12.19-next.2
- @backstage/plugin-tech-insights@0.3.22-next.2
- @backstage/plugin-lighthouse@0.4.15-next.2
- @backstage/plugin-scaffolder@1.18.0-next.2
- @backstage/plugin-tech-radar@0.6.13-next.2
- @backstage/plugin-dynatrace@9.0.0-next.2
- @backstage/plugin-shortcuts@0.3.19-next.1
- @backstage/plugin-airbrake@0.3.30-next.2
- @backstage/plugin-api-docs@0.10.4-next.2
- @backstage/plugin-devtools@0.1.9-next.2
- @backstage/plugin-graphiql@0.3.3-next.2
- @backstage/plugin-linguist@0.1.15-next.2
- @backstage/plugin-newrelic@0.3.45-next.1
- @backstage/plugin-catalog@1.17.0-next.2
- @backstage/plugin-jenkins@0.9.5-next.2
- @backstage/plugin-rollbar@0.4.30-next.2
- @backstage/plugin-badges@0.2.54-next.2
- @backstage/plugin-sentry@0.5.15-next.2
- @backstage/plugin-nomad@0.1.11-next.2
- @backstage/plugin-home@0.6.2-next.2
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/frontend-app-api@0.6.0-next.2
- @backstage/plugin-adr@0.6.13-next.2
- @backstage/plugin-apache-airflow@0.2.20-next.1
- @backstage/plugin-cloudbuild@0.4.0-next.2
- @backstage/plugin-entity-feedback@0.2.13-next.2
- @backstage/plugin-explore@0.4.16-next.2
- @backstage/plugin-gcalendar@0.3.23-next.1
- @backstage/plugin-kafka@0.3.30-next.2
- @backstage/plugin-kubernetes-cluster@0.0.6-next.2
- @backstage/plugin-kubernetes@0.11.5-next.2
- @backstage/plugin-newrelic-dashboard@0.3.5-next.2
- @backstage/plugin-org@0.6.20-next.2
- @backstage/plugin-pagerduty@0.7.2-next.2
- @backstage/plugin-permission-react@0.4.20-next.1
- @backstage/plugin-playlist@0.2.4-next.2
- @backstage/plugin-puppetdb@0.1.13-next.2
- @backstage/plugin-scaffolder-react@1.8.0-next.2
- @backstage/plugin-search-react@1.7.6-next.2
- @backstage/plugin-search@1.4.6-next.2
- @backstage/plugin-stack-overflow@0.1.25-next.2
- @backstage/plugin-stackstorm@0.1.11-next.1
- @backstage/plugin-techdocs@1.10.0-next.2
- @backstage/plugin-user-settings@0.8.1-next.2
- @backstage/theme@0.5.1-next.0
- @backstage/cli@0.25.2-next.2
- @backstage/plugin-notifications@0.0.1-next.0
- @backstage/integration-react@1.1.24-next.1
- @backstage/plugin-gcp-projects@0.3.46-next.1
- @backstage/plugin-gocd@0.1.36-next.2
- @backstage/plugin-todo@0.2.34-next.2
- @backstage/config@1.1.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-linguist-common@0.1.2
- @backstage/plugin-search-common@1.2.10
example-app-next@0.0.6-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-azure-devops@0.3.12-next.2
- @backstage/plugin-azure-sites@0.1.19-next.2
- @backstage/core-components@0.14.0-next.1
- @backstage/plugin-catalog-graph@0.4.0-next.2
- @backstage/plugin-techdocs-module-addons-contrib@1.1.5-next.2
- @backstage/plugin-catalog-unprocessed-entities@0.1.8-next.1
- @backstage/plugin-microsoft-calendar@0.1.12-next.1
- @backstage/plugin-catalog-import@0.10.6-next.2
- @backstage/plugin-github-actions@0.6.11-next.2
- @backstage/plugin-octopus-deploy@0.2.12-next.2
- @backstage/plugin-techdocs-react@1.1.16-next.1
- @backstage/app-defaults@1.5.0-next.2
- @backstage/core-app-api@1.12.0-next.1
- @backstage/plugin-code-coverage@0.2.23-next.2
- @backstage/plugin-cost-insights@0.12.19-next.2
- @backstage/plugin-tech-insights@0.3.22-next.2
- @backstage/plugin-lighthouse@0.4.15-next.2
- @backstage/plugin-scaffolder@1.18.0-next.2
- @backstage/plugin-tech-radar@0.6.13-next.2
- @backstage/plugin-dynatrace@9.0.0-next.2
- @backstage/plugin-shortcuts@0.3.19-next.1
- @backstage/plugin-airbrake@0.3.30-next.2
- @backstage/plugin-api-docs@0.10.4-next.2
- @backstage/plugin-devtools@0.1.9-next.2
- @backstage/plugin-graphiql@0.3.3-next.2
- @backstage/plugin-linguist@0.1.15-next.2
- @backstage/plugin-newrelic@0.3.45-next.1
- @backstage/plugin-catalog@1.17.0-next.2
- @backstage/plugin-jenkins@0.9.5-next.2
- @backstage/plugin-rollbar@0.4.30-next.2
- @backstage/plugin-badges@0.2.54-next.2
- @backstage/plugin-sentry@0.5.15-next.2
- @backstage/plugin-home@0.6.2-next.2
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
- @backstage/plugin-catalog-react@1.10.0-next.2
- @backstage/frontend-app-api@0.6.0-next.2
- @backstage/plugin-adr@0.6.13-next.2
- @backstage/plugin-apache-airflow@0.2.20-next.1
- @backstage/plugin-cloudbuild@0.4.0-next.2
- @backstage/plugin-entity-feedback@0.2.13-next.2
- @backstage/plugin-explore@0.4.16-next.2
- @backstage/plugin-gcalendar@0.3.23-next.1
- @backstage/plugin-kafka@0.3.30-next.2
- @backstage/plugin-kubernetes@0.11.5-next.2
- @backstage/plugin-newrelic-dashboard@0.3.5-next.2
- @backstage/plugin-org@0.6.20-next.2
- @backstage/plugin-pagerduty@0.7.2-next.2
- @backstage/plugin-permission-react@0.4.20-next.1
- @backstage/plugin-playlist@0.2.4-next.2
- @backstage/plugin-puppetdb@0.1.13-next.2
- @backstage/plugin-scaffolder-react@1.8.0-next.2
- @backstage/plugin-search-react@1.7.6-next.2
- @backstage/plugin-search@1.4.6-next.2
- @backstage/plugin-stackstorm@0.1.11-next.1
- @backstage/plugin-techdocs@1.10.0-next.2
- @backstage/plugin-user-settings@0.8.1-next.2
- @backstage/theme@0.5.1-next.0
- @backstage/cli@0.25.2-next.2
- app-next-example-plugin@0.0.6-next.2
- @backstage/integration-react@1.1.24-next.1
- @backstage/plugin-app-visualizer@0.1.1-next.2
- @backstage/plugin-gcp-projects@0.3.46-next.1
- @backstage/plugin-gocd@0.1.36-next.2
- @backstage/plugin-todo@0.2.34-next.2
- @backstage/core-compat-api@0.2.0-next.2
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-linguist-common@0.1.2
- @backstage/plugin-search-common@1.2.10
app-next-example-plugin@0.0.6-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/frontend-plugin-api@0.6.0-next.2
example-backend@0.2.92-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-backend@1.21.0-next.2
- @backstage/plugin-auth-backend@0.21.0-next.2
- @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.42-next.2
- @backstage/backend-common@0.21.0-next.2
- @backstage/plugin-signals-backend@0.0.1-next.2
- @backstage/plugin-signals-node@0.0.1-next.2
- @backstage/plugin-kubernetes-backend@0.15.0-next.2
- @backstage/plugin-tech-insights-backend@0.5.24-next.2
- @backstage/plugin-tech-insights-node@0.4.16-next.2
- @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.11-next.2
- @backstage/plugin-catalog-backend-module-unprocessed@0.3.7-next.2
- @backstage/plugin-scaffolder-backend-module-rails@0.4.27-next.2
- @backstage/plugin-search-backend-module-techdocs@0.1.14-next.2
- @backstage/plugin-search-backend-module-catalog@0.1.14-next.2
- @backstage/plugin-search-backend-module-explore@0.1.14-next.2
- @backstage/plugin-entity-feedback-backend@0.2.7-next.2
- @backstage/plugin-code-coverage-backend@0.2.24-next.2
- @backstage/plugin-azure-devops-backend@0.5.2-next.2
- @backstage/plugin-lighthouse-backend@0.4.2-next.2
- @backstage/plugin-devtools-backend@0.2.7-next.2
- @backstage/plugin-linguist-backend@0.5.7-next.2
- @backstage/plugin-playlist-backend@0.3.14-next.2
- @backstage/plugin-catalog-backend@1.17.0-next.2
- @backstage/plugin-explore-backend@0.0.20-next.2
- @backstage/plugin-jenkins-backend@0.3.4-next.2
- @backstage/plugin-rollbar-backend@0.1.55-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-badges-backend@0.3.7-next.2
- @backstage/plugin-events-backend@0.2.19-next.2
- @backstage/plugin-nomad-backend@0.1.12-next.2
- @backstage/plugin-adr-backend@0.4.7-next.2
- @backstage/plugin-app-backend@0.3.58-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- example-app@0.2.92-next.2
- @backstage/plugin-todo-backend@0.3.8-next.2
- @backstage/plugin-kafka-backend@0.3.8-next.2
- @backstage/plugin-permission-backend@0.5.33-next.2
- @backstage/plugin-permission-node@0.7.21-next.2
- @backstage/plugin-proxy-backend@0.4.8-next.2
- @backstage/plugin-search-backend@1.5.0-next.2
- @backstage/plugin-search-backend-module-elasticsearch@1.3.13-next.2
- @backstage/plugin-search-backend-module-pg@0.5.19-next.2
- @backstage/plugin-search-backend-node@1.2.14-next.2
- @backstage/plugin-techdocs-backend@1.9.3-next.2
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.7-next.2
- @backstage/plugin-catalog-node@1.6.2-next.2
- @backstage/plugin-events-node@0.2.19-next.2
- @backstage/config@1.1.1
- @backstage/catalog-client@1.6.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-azure-sites-common@0.1.2-next.0
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-search-common@1.2.10
example-backend-next@0.0.20-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-backend@1.21.0-next.2
- @backstage/plugin-signals-backend@0.0.1-next.2
- @backstage/plugin-kubernetes-backend@0.15.0-next.2
- @backstage/plugin-catalog-backend-module-unprocessed@0.3.7-next.2
- @backstage/plugin-catalog-backend-module-openapi@0.1.27-next.2
- @backstage/plugin-search-backend-module-techdocs@0.1.14-next.2
- @backstage/plugin-search-backend-module-catalog@0.1.14-next.2
- @backstage/plugin-search-backend-module-explore@0.1.14-next.2
- @backstage/plugin-entity-feedback-backend@0.2.7-next.2
- @backstage/plugin-azure-devops-backend@0.5.2-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-lighthouse-backend@0.4.2-next.2
- @backstage/backend-defaults@0.2.10-next.2
- @backstage/plugin-sonarqube-backend@0.2.12-next.2
- @backstage/plugin-devtools-backend@0.2.7-next.2
- @backstage/plugin-linguist-backend@0.5.7-next.2
- @backstage/plugin-playlist-backend@0.3.14-next.2
- @backstage/plugin-catalog-backend@1.17.0-next.2
- @backstage/plugin-jenkins-backend@0.3.4-next.2
- @backstage/backend-tasks@0.5.15-next.2
- @backstage/plugin-badges-backend@0.3.7-next.2
- @backstage/plugin-nomad-backend@0.1.12-next.2
- @backstage/plugin-adr-backend@0.4.7-next.2
- @backstage/plugin-app-backend@0.3.58-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/plugin-notifications-backend@0.0.1-next.0
- @backstage/plugin-todo-backend@0.3.8-next.2
- @backstage/plugin-catalog-backend-module-backstage-openapi@0.1.3-next.2
- @backstage/plugin-permission-backend@0.5.33-next.2
- @backstage/plugin-permission-node@0.7.21-next.2
- @backstage/plugin-proxy-backend@0.4.8-next.2
- @backstage/plugin-search-backend@1.5.0-next.2
- @backstage/plugin-search-backend-node@1.2.14-next.2
- @backstage/plugin-techdocs-backend@1.9.3-next.2
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.7-next.2
- @backstage/plugin-permission-backend-module-allow-all-policy@0.1.7-next.2
- @backstage/plugin-permission-common@0.7.12
e2e-test@0.2.12-next.2
Patch Changes
- Updated dependencies
- @backstage/create-app@0.5.11-next.2
- @backstage/cli-common@0.1.13
- @backstage/errors@1.2.3
techdocs-cli-embedded-app@0.2.91-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/plugin-techdocs-react@1.1.16-next.1
- @backstage/app-defaults@1.5.0-next.2
- @backstage/core-app-api@1.12.0-next.1
- @backstage/plugin-catalog@1.17.0-next.2
- @backstage/core-plugin-api@1.9.0-next.1
- @backstage/plugin-techdocs@1.10.0-next.2
- @backstage/test-utils@1.5.0-next.2
- @backstage/theme@0.5.1-next.0
- @backstage/cli@0.25.2-next.2
- @backstage/integration-react@1.1.24-next.1
- @backstage/config@1.1.1
- @backstage/catalog-model@1.4.4-next.0
@internal/plugin-todo-list@1.0.22-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.1
- @backstage/core-plugin-api@1.9.0-next.1
@internal/plugin-todo-list-backend@1.0.22-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.2
- @backstage/backend-plugin-api@0.6.10-next.2
- @backstage/plugin-auth-node@0.4.4-next.2
- @backstage/errors@1.2.3