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-apiand@backstage/frontend-plugin-apipackages, the implementation is in@backstage/core-app-apiand a factory has been added to@backstage/app-defaults. - 7f11009: Added stack trace display to
ErrorPageand updated existing refs
Patch Changes
- 9aac2b0: Use
--cwdas the firstyarnargument - 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-apiand@backstage/frontend-plugin-apipackages, the implementation is in@backstage/core-app-apiand a factory has been added to@backstage/app-defaults.
Patch Changes
- 9aac2b0: Use
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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-apiand@backstage/frontend-plugin-apipackages, the implementation is in@backstage/core-app-apiand a factory has been added to@backstage/app-defaults.
Patch Changes
- 8fe56a8: Widen
@types/reactdependency 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
packagenamespace,schema openapi generateis nowpackage schema openapi generate --serverschema openapi generate-clientis nowpackage schema openapi generate --client-packageschema openapi initis nowpackage schema openapi init
And these commands live under the new
reponamespace,schema openapi lintis nowrepo schema openapi lintschema openapi testis nowrepo schema openapi testschema openapi verifyis nowrepo schema openapi verify
The
package schema openapi generatenow supports defining both--serverand--client-packageto generate both at once.This update also reworks the--client-packageflag 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
samlprovider has been migrated frompassport-samlto@node-saml/passport-saml.This comes with breaking changes to config options:
audienceis now mandatorywantAuthnResponseSignedis now exposed and defaults totruewantAssertionsSignedis now exposed and defaults totrue
Patch Changes
- 97f8724: Support additional algorithms in the
/.well-known/openid-configurationendpoint. - a9e0107: The auth backend will now refuse to issue user tokens are excessively large.
- d4cc552: The helper function
makeProfileInfoandPassportHelpers.transformProfilewere refactored to use thejoselibrary. - 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
showArrowHeadsattribute toCatalogGraphPagecomponent (typically inpackages/app/src/App.tsx):- <CatalogGraphPage />
+ <CatalogGraphPage showArrowHeads />In order to show arrow heads in entity graphs, add
showArrowHeadsattribute toEntityCatalogGraphCardcomponents (typically multiple occurrences inpackages/app/src/components/catalog/EntityPage.tsx):- <EntityCatalogGraphCard variant="gridItem" height={400} />
+ <EntityCatalogGraphCard variant="gridItem" height={400} showArrowHeads /> -
9aac2b0: Use
--cwdas the firstyarnargument -
8fe56a8: Widen
@types/reactdependency 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
configSchemaoption on thecreateEntityCardExtensionfactory function.
Patch Changes
- 8fe56a8: Widen
@types/reactdependency 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
ErrorPageand updated existing refs
Patch Changes
- 9aac2b0: Use
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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-bitbucketinto@backstage/plugin-scaffolder-backend-module-bitbucket-cloudand@backstage/plugin-scaffolder-backend-module-bitbucket-server.@backstage/plugin-scaffolder-backend-module-bitbucketwas 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-bitbucketand replaces its actions related to Bitbucket Cloud.publish:bitbucketCloudbitbucket: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-bitbucketand replaces its actions related to Bitbucket Server.publish:bitbucketServerpublish: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
--cwdas the firstyarnargument - 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 optionaltokento authenticate requests. - 9aac2b0: Use
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument
@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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 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
esbuildto^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
showArrowHeadsattribute toCatalogGraphPagecomponent (typically inpackages/app/src/App.tsx):- <CatalogGraphPage />
+ <CatalogGraphPage showArrowHeads />In order to show arrow heads in entity graphs, add
showArrowHeadsattribute toEntityCatalogGraphCardcomponents (typically multiple occurrences inpackages/app/src/components/catalog/EntityPage.tsx):- <EntityCatalogGraphCard variant="gridItem" height={400} />
+ <EntityCatalogGraphCard variant="gridItem" height={400} showArrowHeads /> -
8fe56a8: Widen
@types/reactdependency range to include version 18. -
7f11009: Added stack trace display to
ErrorPageand 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.lockin newly created apps. This file is downloaded directly fromhttps://github.com/backstage/backstageat 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/reactdependency 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/reactdependency 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-apiand@backstage/frontend-plugin-apipackages, the implementation is in@backstage/core-app-apiand a factory has been added to@backstage/app-defaults. - 8fe56a8: Widen
@types/reactdependency 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/reactdependency 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/reactdependency range to include version 18.
@backstage/plugin-adr@0.6.13-next.2
Patch Changes
- 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 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/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency range to include version 18.
@backstage/plugin-apollo-explorer@0.1.20-next.1
Patch Changes
- 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 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
joselibrary 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
makeProfileInfoandPassportHelpers.transformProfilewere refactored to use thejoselibrary. - 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 4376655: Added
permissionIntegrationRouterfor 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - bc644fb: Added
latest_report_statusparameter 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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/reactdependency 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 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/reactdependency 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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/reactdependency 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/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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/reactdependency 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/reactdependency 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/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - dc7ae8b: Use EntityDisplayName JSX element entity information directly for FeaturedDocsCard.
- 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 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/reactdependency 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/reactdependency 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/reactdependency 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/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency range to include version 18. - 03c5bbe: Updated dependency
date-fnsto^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/reactdependency range to include version 18. - 6e1bf50: Added basic support for the new frontend system, exported from the
/alphasubpath. - 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/reactdependency 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/reactdependency 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
--cwdas the firstyarnargument - 8fe56a8: Widen
@types/reactdependency 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