# Release v1.28.0-next.0 Upgrade Helper: [https://backstage.github.io/upgrade-helper/?to=1.28.0-next.0](https://backstage.github.io/upgrade-helper/?to=1.28.0-next.0) ## @backstage/plugin-catalog-backend@1.23.0-next.0 ### Minor Changes - c7528b0: Pass through `EventsService` too in the new backend system ### Patch Changes - 8869b8e: Updated local development setup. - 1779188: Start using the `isDatabaseConflictError` helper from the `@backstage/backend-plugin-api` package in order to avoid dependency with the soon to deprecate `@backstage/backend-common` package. - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-search-backend-module-catalog@0.1.25-next.0 - @backstage/plugin-permission-node@0.7.30-next.0 - @backstage/backend-openapi-utils@0.1.12-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 - @backstage/types@1.1.1 - @backstage/plugin-catalog-common@1.0.23 - @backstage/plugin-permission-common@0.7.13 ## @backstage/plugin-proxy-backend@0.5.0-next.0 ### Minor Changes - 88480e4: **BREAKING**: The proxy backend plugin is now protected by Backstage auth, by default. Unless specifically configured (see below), all proxy endpoints will reject requests immediately unless a valid Backstage user or service token is passed along with the request. This aligns the proxy with how other Backstage backends behave out of the box, and serves to protect your upstreams from unauthorized access. A proxy configuration section can now look as follows: ```yaml proxy: endpoints: '/pagerduty': target: https://api.pagerduty.com credentials: require # NEW! headers: Authorization: Token token=${PAGERDUTY_TOKEN} ``` There are three possible `credentials` settings at this point: - `require`: Callers must provide Backstage user or service credentials with each request. The credentials are not forwarded to the proxy target. - `forward`: Callers must provide Backstage user or service credentials with each request, and those credentials are forwarded to the proxy target. - `dangerously-allow-unauthenticated`: No Backstage credentials are required to access this proxy target. The target can still apply its own credentials checks, but the proxy will not help block non-Backstage-blessed callers. If you also add `allowedHeaders: ['Authorization']` to an endpoint configuration, then the Backstage token (if provided) WILL be forwarded. The value `dangerously-allow-unauthenticated` was the old default. The value `require` is the new default, so requests that were previously permitted may now start resulting in `401 Unauthorized` responses. If you have `backend.auth.dangerouslyDisableDefaultAuthPolicy` set to `true`, this does not apply; the proxy will behave as if all endpoints were set to `dangerously-allow-unauthenticated`. If you have proxy endpoints that require unauthenticated access still, please add `credentials: dangerously-allow-unauthenticated` to their declarations in your app-config. ### Patch Changes - 8869b8e: Updated local development setup. - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/config@1.2.0 - @backstage/types@1.1.1 ## @backstage/app-defaults@1.5.6-next.0 ### Patch Changes - Updated dependencies - @backstage/theme@0.5.6-next.0 - @backstage/core-components@0.14.8-next.0 - @backstage/core-app-api@1.12.5 - @backstage/core-plugin-api@1.9.2 - @backstage/plugin-permission-react@0.4.22 ## @backstage/backend-app-api@0.7.6-next.0 ### Patch Changes - b7de623: Fixed a potential crash when passing an object with a `null` prototype as log meta. - 7d30d95: Fixing issue with log meta fields possibly being circular refs - 6a576dc: Stop using `getVoidLogger` in tests to reduce the dependency on the soon-to-deprecate `backstage-common` package. - 6551b3d: Deprecated core service factories and implementations and moved them over to subpath exports on `@backstage/backend-defaults` instead. E.g. `@backstage/backend-defaults/scheduler` is where the service factory and default implementation of `coreServices.scheduler` now lives. - d617103: Updating the logger redaction message to something less dramatic - Updated dependencies - @backstage/cli-node@0.2.6-next.0 - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/plugin-permission-node@0.7.30-next.0 - @backstage/config-loader@1.8.0 - @backstage/cli-common@0.1.13 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/backend-common@0.22.1-next.0 ### Patch Changes - c6c0919: Updated configuration schema to include the `useRedisSets` cache config option. - 1779188: In preparation to the new backend system stable release, the `isDatabaseConflictError` helper have been moved to the `@backstage/backend-plugin-api` package and deprecated from `@backstage/backend-common`. - 8869b8e: We are deprecating the legacy `createServiceBuilder` factory, so if you are still using it, please checkout the migration guide and [migrate](https://backstage.io/docs/backend-system/building-plugins-and-modules/migrating) your plugin to use the new backend system. - 3bd04bb: We are deprecating the legacy router handlers and contexts in preparation for the new backend system stable release. - 6a576dc: Deprecate legacy service logger helpers and stop using `getVoidLogger` in tests. - Updated dependencies - @backstage/backend-app-api@0.7.6-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/config-loader@1.8.0 - @backstage/backend-dev-utils@0.1.4 - @backstage/cli-common@0.1.13 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 - @backstage/integration-aws-node@0.1.12 - @backstage/types@1.1.1 ## @backstage/backend-defaults@0.2.19-next.0 ### Patch Changes - 6551b3d: Added core service factories and implementations from `@backstage/backend-app-api`. They are now available as subpath exports, e.g. `@backstage/backend-defaults/scheduler` is where the service factory and default implementation of `coreServices.scheduler` now lives. They have been marked as deprecated in their old locations. - Updated dependencies - @backstage/backend-app-api@0.7.6-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-permission-node@0.7.30-next.0 - @backstage/config-loader@1.8.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/backend-dynamic-feature-service@0.2.11-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-app-api@0.7.6-next.0 - @backstage/cli-node@0.2.6-next.0 - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-catalog-backend@1.23.0-next.0 - @backstage/plugin-search-backend-node@1.2.24-next.0 - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/plugin-events-backend@0.3.6-next.0 - @backstage/plugin-permission-node@0.7.30-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/plugin-app-node@0.1.19-next.0 - @backstage/config-loader@1.8.0 - @backstage/cli-common@0.1.13 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-permission-common@0.7.13 - @backstage/plugin-search-common@1.2.11 ## @backstage/backend-openapi-utils@0.1.12-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/errors@1.2.4 ## @backstage/backend-plugin-api@0.6.19-next.0 ### Patch Changes - 6551b3d: Moved the declaration of the `SchedulerService` here, along with prefixed versions of all of the types it depends on, from `@backstage/backend-tasks` - 1779188: Start using the `isDatabaseConflictError` helper from the `@backstage/backend-plugin-api` package in order to avoid dependency with the soon to deprecate `@backstage/backend-common` package. - Updated dependencies - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/cli-common@0.1.13 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-permission-common@0.7.13 ## @backstage/backend-tasks@0.5.24-next.0 ### Patch Changes - 736bc3c: Marked all exports as deprecated and pointed at `@backstage/backend-plugin-api` and `@backstage/backend-defaults` - 6a576dc: Deprecate the legacy `TaskScheduler.fromConfig` method and stop using the `getVoidlogger` in tests files to reduce the dependency on the soon-to-deprecate `backstage-common` package. - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/backend-test-utils@0.3.9-next.0 ### Patch Changes - 6a576dc: Fix the logger service mock to prevent returning `undefined` from the `child` method. - Updated dependencies - @backstage/backend-app-api@0.7.6-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/cli@0.26.6-next.0 ### Patch Changes - 009da47: Fix `versions:check --fix` when `yarn.lock` has multiple joint versions in the same section - 9ee948a: Bump `esbuild` target for package builds to `ES2022`. - Updated dependencies - @backstage/cli-node@0.2.6-next.0 - @backstage/config-loader@1.8.0 - @backstage/catalog-model@1.5.0 - @backstage/cli-common@0.1.13 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/eslint-plugin@0.1.8 - @backstage/integration@1.11.0 - @backstage/release-manifests@0.0.11 - @backstage/types@1.1.1 ## @backstage/cli-node@0.2.6-next.0 ### Patch Changes - 93be042: Upgraded @yarnpkg/parsers to stable 3.0 - Updated dependencies - @backstage/cli-common@0.1.13 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/core-compat-api@0.2.6-next.0 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.9.2 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/version-bridge@1.0.8 ## @backstage/core-components@0.14.8-next.0 ### Patch Changes - Updated dependencies - @backstage/theme@0.5.6-next.0 - @backstage/config@1.2.0 - @backstage/core-plugin-api@1.9.2 - @backstage/errors@1.2.4 - @backstage/version-bridge@1.0.8 ## @backstage/create-app@0.5.16-next.0 ### Patch Changes - Bumped create-app version. - Updated dependencies - @backstage/cli-common@0.1.13 ## @backstage/dev-utils@1.0.33-next.0 ### Patch Changes - Updated dependencies - @backstage/theme@0.5.6-next.0 - @backstage/app-defaults@1.5.6-next.0 - @backstage/core-components@0.14.8-next.0 - @backstage/catalog-model@1.5.0 - @backstage/core-app-api@1.12.5 - @backstage/core-plugin-api@1.9.2 - @backstage/integration-react@1.1.27 - @backstage/plugin-catalog-react@1.12.1-next.0 ## @backstage/frontend-app-api@0.7.1-next.0 ### Patch Changes - Updated dependencies - @backstage/theme@0.5.6-next.0 - @backstage/core-components@0.14.8-next.0 - @backstage/config@1.2.0 - @backstage/core-app-api@1.12.5 - @backstage/core-plugin-api@1.9.2 - @backstage/errors@1.2.4 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/types@1.1.1 - @backstage/version-bridge@1.0.8 ## @backstage/frontend-plugin-api@0.6.6-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/types@1.1.1 - @backstage/version-bridge@1.0.8 ## @backstage/frontend-test-utils@0.1.8-next.0 ### Patch Changes - Updated dependencies - @backstage/frontend-app-api@0.7.1-next.0 - @backstage/test-utils@1.5.6-next.0 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/types@1.1.1 ## @backstage/repo-tools@0.9.1-next.0 ### Patch Changes - Updated dependencies - @backstage/cli-node@0.2.6-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/config-loader@1.8.0 - @backstage/catalog-model@1.5.0 - @backstage/cli-common@0.1.13 - @backstage/errors@1.2.4 ## @techdocs/cli@1.8.12-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-techdocs-node@1.12.5-next.0 - @backstage/catalog-model@1.5.0 - @backstage/cli-common@0.1.13 - @backstage/config@1.2.0 ## @backstage/test-utils@1.5.6-next.0 ### Patch Changes - Updated dependencies - @backstage/theme@0.5.6-next.0 - @backstage/config@1.2.0 - @backstage/core-app-api@1.12.5 - @backstage/core-plugin-api@1.9.2 - @backstage/types@1.1.1 - @backstage/plugin-permission-common@0.7.13 - @backstage/plugin-permission-react@0.4.22 ## @backstage/theme@0.5.6-next.0 ### Patch Changes - 702fa7d: Internal refactor to fix an issue where the MUI 5 `v5-` class prefixing gets removed by tree shaking. ## @backstage/plugin-api-docs@0.11.6-next.0 ### Patch Changes - 96cd13e: `DefaultApiExplorerPage` now accepts an optional `ownerPickerMode` for toggling the behavior of the `EntityOwnerPicker`, exposing a new mode `` particularly suitable for larger catalogs. In this new mode, `EntityOwnerPicker` will display all the users and groups present in the catalog. - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/catalog-model@1.5.0 - @backstage/core-compat-api@0.2.6-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/plugin-catalog@1.20.1-next.0 - @backstage/plugin-catalog-common@1.0.23 - @backstage/plugin-catalog-react@1.12.1-next.0 - @backstage/plugin-permission-react@0.4.22 ## @backstage/plugin-app-backend@0.3.68-next.0 ### Patch Changes - 8869b8e: Updated local development setup. - 82c2b90: Restore the support of external config schema in the router of the `app-backend` plugin, which was broken in release `1.26.0`. This support is critical for dynamic frontend plugins to have access to their config values. - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/plugin-app-node@0.1.19-next.0 - @backstage/config-loader@1.8.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/plugin-app-node@0.1.19-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/config-loader@1.8.0 ## @backstage/plugin-app-visualizer@0.1.7-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/frontend-plugin-api@0.6.6-next.0 ## @backstage/plugin-auth-backend@0.22.6-next.0 ### Patch Changes - 8869b8e: Updated local development setup. - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.11-next.0 - @backstage/plugin-auth-backend-module-oidc-provider@0.1.10-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/plugin-auth-backend-module-atlassian-provider@0.1.11-next.0 - @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.2-next.0 - @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.2-next.0 - @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.2-next.0 - @backstage/plugin-auth-backend-module-github-provider@0.1.16-next.0 - @backstage/plugin-auth-backend-module-gitlab-provider@0.1.16-next.0 - @backstage/plugin-auth-backend-module-google-provider@0.1.16-next.0 - @backstage/plugin-auth-backend-module-microsoft-provider@0.1.14-next.0 - @backstage/plugin-auth-backend-module-oauth2-provider@0.1.16-next.0 - @backstage/plugin-auth-backend-module-okta-provider@0.0.12-next.0 - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.14-next.0 - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.12-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/plugin-auth-backend-module-atlassian-provider@0.1.11-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 ## @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.11-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-auth-backend@0.22.6-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/errors@1.2.4 ## @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.2-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/catalog-model@1.5.0 - @backstage/errors@1.2.4 ## @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.2-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 ## @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.2-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 ## @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.14-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/plugin-auth-backend-module-github-provider@0.1.16-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 ## @backstage/plugin-auth-backend-module-gitlab-provider@0.1.16-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 ## @backstage/plugin-auth-backend-module-google-provider@0.1.16-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 ## @backstage/plugin-auth-backend-module-guest-provider@0.1.5-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/catalog-model@1.5.0 - @backstage/errors@1.2.4 ## @backstage/plugin-auth-backend-module-microsoft-provider@0.1.14-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 ## @backstage/plugin-auth-backend-module-oauth2-provider@0.1.16-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 ## @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.12-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/errors@1.2.4 ## @backstage/plugin-auth-backend-module-oidc-provider@0.1.10-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-auth-backend@0.22.6-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 ## @backstage/plugin-auth-backend-module-okta-provider@0.0.12-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 ## @backstage/plugin-auth-backend-module-pinniped-provider@0.1.13-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/config@1.2.0 ## @backstage/plugin-auth-backend-module-vmware-cloud-provider@0.1.11-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/catalog-model@1.5.0 ## @backstage/plugin-auth-node@0.4.14-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/plugin-auth-react@0.1.3-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/errors@1.2.4 ## @backstage/plugin-catalog@1.20.1-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/plugin-search-react@1.7.12-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/core-compat-api@0.2.6-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/errors@1.2.4 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/integration-react@1.1.27 - @backstage/types@1.1.1 - @backstage/plugin-catalog-common@1.0.23 - @backstage/plugin-catalog-react@1.12.1-next.0 - @backstage/plugin-permission-react@0.4.22 - @backstage/plugin-scaffolder-common@1.5.2 - @backstage/plugin-search-common@1.2.11 ## @backstage/plugin-catalog-backend-module-aws@0.3.14-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 - @backstage/integration-aws-node@0.1.12 - @backstage/plugin-catalog-common@1.0.23 - @backstage/plugin-kubernetes-common@0.7.6 ## @backstage/plugin-catalog-backend-module-azure@0.1.39-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/config@1.2.0 - @backstage/integration@1.11.0 - @backstage/plugin-catalog-common@1.0.23 ## @backstage/plugin-catalog-backend-module-backstage-openapi@0.2.2-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/backend-openapi-utils@0.1.12-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 ## @backstage/plugin-catalog-backend-module-bitbucket-cloud@0.2.6-next.0 ### Patch Changes - 6a576dc: Replace the usage of `getVoidLogger` with `mockServices.logger.mock` in order to remove the dependency with the soon-to-be-deprecated `backend-common` package. - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/integration@1.11.0 - @backstage/plugin-bitbucket-cloud-common@0.2.19 - @backstage/plugin-catalog-common@1.0.23 ## @backstage/plugin-catalog-backend-module-bitbucket-server@0.1.33-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 ## @backstage/plugin-catalog-backend-module-gcp@0.1.20-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/plugin-kubernetes-common@0.7.6 ## @backstage/plugin-catalog-backend-module-gerrit@0.1.36-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 ## @backstage/plugin-catalog-backend-module-github@0.6.2-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-catalog-backend@1.23.0-next.0 - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/integration@1.11.0 - @backstage/plugin-catalog-common@1.0.23 ## @backstage/plugin-catalog-backend-module-github-org@0.1.14-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-backend-module-github@0.6.2-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/config@1.2.0 ## @backstage/plugin-catalog-backend-module-gitlab@0.3.17-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/integration@1.11.0 - @backstage/plugin-catalog-common@1.0.23 ## @backstage/plugin-catalog-backend-module-gitlab-org@0.0.2-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-backend-module-gitlab@0.3.17-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 ## @backstage/plugin-catalog-backend-module-incremental-ingestion@0.4.24-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-catalog-backend@1.23.0-next.0 - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/plugin-permission-common@0.7.13 ## @backstage/plugin-catalog-backend-module-ldap@0.5.35-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-catalog-common@1.0.23 ## @backstage/plugin-catalog-backend-module-msgraph@0.5.27-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/plugin-catalog-common@1.0.23 ## @backstage/plugin-catalog-backend-module-openapi@0.1.37-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-catalog-backend@1.23.0-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/integration@1.11.0 - @backstage/types@1.1.1 - @backstage/plugin-catalog-common@1.0.23 ## @backstage/plugin-catalog-backend-module-puppetdb@0.1.25-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.17-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-model@1.5.0 - @backstage/plugin-catalog-common@1.0.23 - @backstage/plugin-scaffolder-common@1.5.2 ## @backstage/plugin-catalog-backend-module-unprocessed@0.4.6-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-model@1.5.0 - @backstage/errors@1.2.4 - @backstage/plugin-catalog-unprocessed-entities-common@0.0.1 - @backstage/plugin-permission-common@0.7.13 ## @backstage/plugin-catalog-graph@0.4.6-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/core-compat-api@0.2.6-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/types@1.1.1 - @backstage/plugin-catalog-react@1.12.1-next.0 ## @backstage/plugin-catalog-import@0.11.1-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/core-compat-api@0.2.6-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/errors@1.2.4 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/integration@1.11.0 - @backstage/integration-react@1.1.27 - @backstage/plugin-catalog-common@1.0.23 - @backstage/plugin-catalog-react@1.12.1-next.0 ## @backstage/plugin-catalog-node@1.12.1-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-permission-node@0.7.30-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-catalog-common@1.0.23 - @backstage/plugin-permission-common@0.7.13 ## @backstage/plugin-catalog-react@1.12.1-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/core-plugin-api@1.9.2 - @backstage/errors@1.2.4 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/integration-react@1.1.27 - @backstage/types@1.1.1 - @backstage/version-bridge@1.0.8 - @backstage/plugin-catalog-common@1.0.23 - @backstage/plugin-permission-common@0.7.13 - @backstage/plugin-permission-react@0.4.22 ## @backstage/plugin-catalog-unprocessed-entities@0.2.5-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/catalog-model@1.5.0 - @backstage/core-plugin-api@1.9.2 - @backstage/errors@1.2.4 ## @backstage/plugin-config-schema@0.1.56-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/plugin-devtools@0.1.15-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/core-compat-api@0.2.6-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/errors@1.2.4 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/plugin-devtools-common@0.1.9 - @backstage/plugin-permission-react@0.4.22 ## @backstage/plugin-devtools-backend@0.3.5-next.0 ### Patch Changes - 8869b8e: Updated local development setup. - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-permission-node@0.7.30-next.0 - @backstage/config-loader@1.8.0 - @backstage/cli-common@0.1.13 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-devtools-common@0.1.9 - @backstage/plugin-permission-common@0.7.13 ## @backstage/plugin-events-backend@0.3.6-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/config@1.2.0 ## @backstage/plugin-events-backend-module-aws-sqs@0.3.5-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/config@1.2.0 - @backstage/types@1.1.1 ## @backstage/plugin-events-backend-module-azure@0.2.5-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 ## @backstage/plugin-events-backend-module-bitbucket-cloud@0.2.5-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 ## @backstage/plugin-events-backend-module-gerrit@0.2.5-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 ## @backstage/plugin-events-backend-module-github@0.2.5-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/config@1.2.0 ## @backstage/plugin-events-backend-module-gitlab@0.2.5-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/config@1.2.0 ## @backstage/plugin-events-backend-test-utils@0.1.29-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.3.5-next.0 ## @backstage/plugin-events-node@0.3.5-next.0 ### Patch Changes - 6a576dc: Replace the usage of `getVoidLogger` with `mockServices.logger.mock` in order to remove the dependency with the soon-to-be-deprecated `backend-common` package. - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 ## @backstage/plugin-home@0.7.5-next.0 ### Patch Changes - Updated dependencies - @backstage/theme@0.5.6-next.0 - @backstage/core-components@0.14.8-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/core-app-api@1.12.5 - @backstage/core-compat-api@0.2.6-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/plugin-catalog-react@1.12.1-next.0 - @backstage/plugin-home-react@0.1.14-next.0 ## @backstage/plugin-home-react@0.1.14-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/core-plugin-api@1.9.2 ## @backstage/plugin-kubernetes@0.11.11-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/catalog-model@1.5.0 - @backstage/core-plugin-api@1.9.2 - @backstage/plugin-catalog-react@1.12.1-next.0 - @backstage/plugin-kubernetes-common@0.7.6 - @backstage/plugin-kubernetes-react@0.3.6-next.0 ## @backstage/plugin-kubernetes-backend@0.17.2-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-kubernetes-node@0.1.13-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/plugin-permission-node@0.7.30-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration-aws-node@0.1.12 - @backstage/types@1.1.1 - @backstage/plugin-kubernetes-common@0.7.6 - @backstage/plugin-permission-common@0.7.13 ## @backstage/plugin-kubernetes-cluster@0.0.12-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/catalog-model@1.5.0 - @backstage/core-plugin-api@1.9.2 - @backstage/plugin-catalog-react@1.12.1-next.0 - @backstage/plugin-kubernetes-common@0.7.6 - @backstage/plugin-kubernetes-react@0.3.6-next.0 ## @backstage/plugin-kubernetes-node@0.1.13-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/catalog-model@1.5.0 - @backstage/types@1.1.1 - @backstage/plugin-kubernetes-common@0.7.6 ## @backstage/plugin-kubernetes-react@0.3.6-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/catalog-model@1.5.0 - @backstage/core-plugin-api@1.9.2 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-kubernetes-common@0.7.6 ## @backstage/plugin-notifications@0.2.2-next.0 ### Patch Changes - 7f02684: Do not always show scrollbars in notification description - Updated dependencies - @backstage/theme@0.5.6-next.0 - @backstage/core-components@0.14.8-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-notifications-common@0.0.3 - @backstage/plugin-signals-react@0.0.3 ## @backstage/plugin-notifications-backend@0.2.2-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/plugin-notifications-node@0.1.5-next.0 - @backstage/plugin-signals-node@0.1.5-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/plugin-notifications-common@0.0.3 ## @backstage/plugin-notifications-backend-module-email@0.0.2-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-notifications-node@0.1.5-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/integration-aws-node@0.1.12 - @backstage/types@1.1.1 - @backstage/plugin-notifications-common@0.0.3 ## @backstage/plugin-notifications-node@0.1.5-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-signals-node@0.1.5-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/plugin-notifications-common@0.0.3 ## @backstage/plugin-org@0.6.26-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/catalog-model@1.5.0 - @backstage/core-compat-api@0.2.6-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/plugin-catalog-common@1.0.23 - @backstage/plugin-catalog-react@1.12.1-next.0 ## @backstage/plugin-org-react@0.1.25-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/core-plugin-api@1.9.2 - @backstage/plugin-catalog-react@1.12.1-next.0 ## @backstage/plugin-permission-backend@0.5.43-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/plugin-permission-node@0.7.30-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/plugin-permission-common@0.7.13 ## @backstage/plugin-permission-backend-module-allow-all-policy@0.1.16-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/plugin-permission-node@0.7.30-next.0 - @backstage/plugin-permission-common@0.7.13 ## @backstage/plugin-permission-node@0.7.30-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/plugin-permission-common@0.7.13 ## @backstage/plugin-scaffolder@1.20.1-next.0 ### Patch Changes - 612a453: Change owner to project for azure host - Updated dependencies - @backstage/plugin-scaffolder-react@1.8.6-next.0 - @backstage/core-components@0.14.8-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/core-compat-api@0.2.6-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/errors@1.2.4 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/integration@1.11.0 - @backstage/integration-react@1.1.27 - @backstage/types@1.1.1 - @backstage/plugin-catalog-common@1.0.23 - @backstage/plugin-catalog-react@1.12.1-next.0 - @backstage/plugin-permission-react@0.4.22 - @backstage/plugin-scaffolder-common@1.5.2 ## @backstage/plugin-scaffolder-backend@1.22.8-next.0 ### Patch Changes - 7d30d95: Fixing issue with log meta fields possibly being circular refs - d617103: Updating the logger redaction message to something less dramatic - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-scaffolder-backend-module-github@0.2.9-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/plugin-permission-node@0.7.30-next.0 - @backstage/plugin-scaffolder-backend-module-gitlab@0.4.1-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/plugin-scaffolder-backend-module-azure@0.1.11-next.0 - @backstage/plugin-scaffolder-backend-module-bitbucket@0.2.9-next.0 - @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.1.9-next.0 - @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.1.9-next.0 - @backstage/plugin-scaffolder-backend-module-gerrit@0.1.11-next.0 - @backstage/plugin-scaffolder-backend-module-gitea@0.1.9-next.0 - @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.17-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 - @backstage/types@1.1.1 - @backstage/plugin-permission-common@0.7.13 - @backstage/plugin-scaffolder-common@1.5.2 ## @backstage/plugin-scaffolder-backend-module-azure@0.1.11-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 ## @backstage/plugin-scaffolder-backend-module-bitbucket@0.2.9-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.1.9-next.0 - @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.1.9-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 ## @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.1.9-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 ## @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.1.9-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 ## @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.20-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 ## @backstage/plugin-scaffolder-backend-module-cookiecutter@0.2.43-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 - @backstage/types@1.1.1 ## @backstage/plugin-scaffolder-backend-module-gerrit@0.1.11-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 ## @backstage/plugin-scaffolder-backend-module-gitea@0.1.9-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 ## @backstage/plugin-scaffolder-backend-module-github@0.2.9-next.0 ### Patch Changes - f145a04: Added handling for dry run to githubPullRequest and githubWebhook and added tests for this functionality - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 ## @backstage/plugin-scaffolder-backend-module-gitlab@0.4.1-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 ## @backstage/plugin-scaffolder-backend-module-notifications@0.0.2-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-notifications-node@0.1.5-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/plugin-notifications-common@0.0.3 ## @backstage/plugin-scaffolder-backend-module-rails@0.4.36-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 - @backstage/types@1.1.1 ## @backstage/plugin-scaffolder-backend-module-sentry@0.1.27-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 ## @backstage/plugin-scaffolder-backend-module-yeoman@0.3.2-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-node-test-utils@0.1.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/types@1.1.1 ## @backstage/plugin-scaffolder-node@0.4.5-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/catalog-model@1.5.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 - @backstage/types@1.1.1 - @backstage/plugin-scaffolder-common@1.5.2 ## @backstage/plugin-scaffolder-node-test-utils@0.1.5-next.0 ### Patch Changes - 6a576dc: Replace the usage of `getVoidLogger` with `mockServices.logger.mock` in order to remove the dependency with the soon-to-be-deprecated `backend-common` package. - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-test-utils@0.3.9-next.0 - @backstage/plugin-scaffolder-node@0.4.5-next.0 - @backstage/types@1.1.1 ## @backstage/plugin-scaffolder-react@1.8.6-next.0 ### Patch Changes - 86dc29d: Links that are rendered in the markdown in the `ScaffolderField` component are now opened in new tabs. - Updated dependencies - @backstage/theme@0.5.6-next.0 - @backstage/core-components@0.14.8-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/core-plugin-api@1.9.2 - @backstage/types@1.1.1 - @backstage/version-bridge@1.0.8 - @backstage/plugin-catalog-react@1.12.1-next.0 - @backstage/plugin-scaffolder-common@1.5.2 ## @backstage/plugin-search@1.4.12-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/plugin-search-react@1.7.12-next.0 - @backstage/core-compat-api@0.2.6-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/errors@1.2.4 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/types@1.1.1 - @backstage/version-bridge@1.0.8 - @backstage/plugin-catalog-react@1.12.1-next.0 - @backstage/plugin-search-common@1.2.11 ## @backstage/plugin-search-backend@1.5.10-next.0 ### Patch Changes - 8869b8e: Updated local development setup. - 5b6f979: Split backend search plugin startup into "init" and "start" stages to ensure necessary initialization has happened before startup - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-search-backend-node@1.2.24-next.0 - @backstage/backend-defaults@0.2.19-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/repo-tools@0.9.1-next.0 - @backstage/plugin-permission-node@0.7.30-next.0 - @backstage/backend-openapi-utils@0.1.12-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-permission-common@0.7.13 - @backstage/plugin-search-common@1.2.11 ## @backstage/plugin-search-backend-module-catalog@0.1.25-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-search-backend-node@1.2.24-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/plugin-catalog-common@1.0.23 - @backstage/plugin-permission-common@0.7.13 - @backstage/plugin-search-common@1.2.11 ## @backstage/plugin-search-backend-module-elasticsearch@1.4.2-next.0 ### Patch Changes - 6a576dc: Replace the usage of `getVoidLogger` with `mockServices.logger.mock` in order to remove the dependency with the soon-to-be-deprecated `backend-common` package. - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-search-backend-node@1.2.24-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/config@1.2.0 - @backstage/integration-aws-node@0.1.12 - @backstage/plugin-search-common@1.2.11 ## @backstage/plugin-search-backend-module-explore@0.1.25-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-search-backend-node@1.2.24-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/config@1.2.0 - @backstage/plugin-search-common@1.2.11 ## @backstage/plugin-search-backend-module-pg@0.5.28-next.0 ### Patch Changes - 6a576dc: Replace the usage of `getVoidLogger` with `mockServices.logger.mock` in order to remove the dependency with the soon-to-be-deprecated `backend-common` package. - Updated dependencies - @backstage/backend-app-api@0.7.6-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-search-backend-node@1.2.24-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/config@1.2.0 - @backstage/plugin-search-common@1.2.11 ## @backstage/plugin-search-backend-module-stack-overflow-collator@0.1.12-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-search-backend-node@1.2.24-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/config@1.2.0 - @backstage/plugin-search-common@1.2.11 ## @backstage/plugin-search-backend-module-techdocs@0.1.24-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-search-backend-node@1.2.24-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-techdocs-node@1.12.5-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/plugin-catalog-common@1.0.23 - @backstage/plugin-permission-common@0.7.13 - @backstage/plugin-search-common@1.2.11 ## @backstage/plugin-search-backend-node@1.2.24-next.0 ### Patch Changes - 6a576dc: Replace the usage of `getVoidLogger` with `mockServices.logger.mock` in order to remove the dependency with the soon-to-be-deprecated `backend-common` package. - 5b6f979: Split backend search plugin startup into "init" and "start" stages to ensure necessary initialization has happened before startup - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/plugin-permission-common@0.7.13 - @backstage/plugin-search-common@1.2.11 ## @backstage/plugin-search-react@1.7.12-next.0 ### Patch Changes - Updated dependencies - @backstage/theme@0.5.6-next.0 - @backstage/core-components@0.14.8-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/types@1.1.1 - @backstage/version-bridge@1.0.8 - @backstage/plugin-search-common@1.2.11 ## @backstage/plugin-signals@0.0.7-next.0 ### Patch Changes - Updated dependencies - @backstage/theme@0.5.6-next.0 - @backstage/core-components@0.14.8-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/types@1.1.1 - @backstage/plugin-signals-react@0.0.3 ## @backstage/plugin-signals-backend@0.1.5-next.0 ### Patch Changes - 6a576dc: Replace the usage of `getVoidLogger` with `mockServices.logger.mock` in order to remove the dependency with the soon-to-be-deprecated `backend-common` package. - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/plugin-signals-node@0.1.5-next.0 - @backstage/config@1.2.0 - @backstage/types@1.1.1 ## @backstage/plugin-signals-node@0.1.5-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/config@1.2.0 - @backstage/types@1.1.1 ## @backstage/plugin-techdocs@1.10.6-next.0 ### Patch Changes - 654af4a: mkdocs-material have updated their CSS variable template, and a few are unset in Backstage. This patch adds the missing variables to ensure coverage. - 96cd13e: `TechDocsIndexPage` now accepts an optional `ownerPickerMode` for toggling the behavior of the `EntityOwnerPicker`, exposing a new mode `` particularly suitable for larger catalogs. In this new mode, `EntityOwnerPicker` will display all the users and groups present in the catalog. - e40bd9a: Fixed bug in CopyToClipboardButton component where positioning of the "Copy to clipboard" button in techdocs code snippets was broken in some cases - 1256d88: Fix weird opening behaviour of the component. - Updated dependencies - @backstage/theme@0.5.6-next.0 - @backstage/core-components@0.14.8-next.0 - @backstage/plugin-search-react@1.7.12-next.0 - @backstage/plugin-techdocs-react@1.2.5-next.0 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/core-compat-api@0.2.6-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/errors@1.2.4 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/integration@1.11.0 - @backstage/integration-react@1.1.27 - @backstage/plugin-auth-react@0.1.3-next.0 - @backstage/plugin-catalog-react@1.12.1-next.0 - @backstage/plugin-search-common@1.2.11 ## @backstage/plugin-techdocs-addons-test-utils@1.0.33-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-techdocs@1.10.6-next.0 - @backstage/test-utils@1.5.6-next.0 - @backstage/plugin-search-react@1.7.12-next.0 - @backstage/plugin-techdocs-react@1.2.5-next.0 - @backstage/core-app-api@1.12.5 - @backstage/core-plugin-api@1.9.2 - @backstage/integration-react@1.1.27 - @backstage/plugin-catalog@1.20.1-next.0 - @backstage/plugin-catalog-react@1.12.1-next.0 ## @backstage/plugin-techdocs-backend@1.10.6-next.0 ### Patch Changes - 8869b8e: Updated local development setup. - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-search-backend-module-techdocs@0.1.24-next.0 - @backstage/plugin-techdocs-node@1.12.5-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 - @backstage/plugin-catalog-common@1.0.23 - @backstage/plugin-permission-common@0.7.13 ## @backstage/plugin-techdocs-module-addons-contrib@1.1.11-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/plugin-techdocs-react@1.2.5-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/integration@1.11.0 - @backstage/integration-react@1.1.27 ## @backstage/plugin-techdocs-node@1.12.5-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration@1.11.0 - @backstage/integration-aws-node@0.1.12 - @backstage/plugin-search-common@1.2.11 ## @backstage/plugin-techdocs-react@1.2.5-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/core-plugin-api@1.9.2 - @backstage/version-bridge@1.0.8 ## @backstage/plugin-user-settings@0.8.7-next.0 ### Patch Changes - Updated dependencies - @backstage/theme@0.5.6-next.0 - @backstage/core-components@0.14.8-next.0 - @backstage/core-app-api@1.12.5 - @backstage/core-compat-api@0.2.6-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/errors@1.2.4 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/types@1.1.1 - @backstage/plugin-catalog-react@1.12.1-next.0 ## @backstage/plugin-user-settings-backend@0.2.18-next.0 ### Patch Changes - 8869b8e: Updated local development setup. - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## example-app@0.2.98-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-techdocs@1.10.6-next.0 - @backstage/plugin-notifications@0.2.2-next.0 - @backstage/plugin-scaffolder-react@1.8.6-next.0 - @backstage/theme@0.5.6-next.0 - @backstage/plugin-api-docs@0.11.6-next.0 - @backstage/cli@0.26.6-next.0 - @backstage/plugin-scaffolder@1.20.1-next.0 - @backstage/app-defaults@1.5.6-next.0 - @backstage/core-components@0.14.8-next.0 - @backstage/frontend-app-api@0.7.1-next.0 - @backstage/plugin-home@0.7.5-next.0 - @backstage/plugin-search-react@1.7.12-next.0 - @backstage/plugin-signals@0.0.7-next.0 - @backstage/plugin-techdocs-react@1.2.5-next.0 - @backstage/plugin-user-settings@0.8.7-next.0 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/core-app-api@1.12.5 - @backstage/core-plugin-api@1.9.2 - @backstage/integration-react@1.1.27 - @backstage/plugin-auth-react@0.1.3-next.0 - @backstage/plugin-catalog@1.20.1-next.0 - @backstage/plugin-catalog-common@1.0.23 - @backstage/plugin-catalog-graph@0.4.6-next.0 - @backstage/plugin-catalog-import@0.11.1-next.0 - @backstage/plugin-catalog-react@1.12.1-next.0 - @backstage/plugin-catalog-unprocessed-entities@0.2.5-next.0 - @backstage/plugin-devtools@0.1.15-next.0 - @backstage/plugin-kubernetes@0.11.11-next.0 - @backstage/plugin-kubernetes-cluster@0.0.12-next.0 - @backstage/plugin-org@0.6.26-next.0 - @backstage/plugin-permission-react@0.4.22 - @backstage/plugin-search@1.4.12-next.0 - @backstage/plugin-search-common@1.2.11 - @backstage/plugin-techdocs-module-addons-contrib@1.1.11-next.0 ## example-app-next@0.0.12-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-techdocs@1.10.6-next.0 - @backstage/plugin-notifications@0.2.2-next.0 - @backstage/plugin-scaffolder-react@1.8.6-next.0 - @backstage/theme@0.5.6-next.0 - @backstage/plugin-api-docs@0.11.6-next.0 - @backstage/cli@0.26.6-next.0 - @backstage/plugin-scaffolder@1.20.1-next.0 - @backstage/app-defaults@1.5.6-next.0 - @backstage/core-components@0.14.8-next.0 - @backstage/frontend-app-api@0.7.1-next.0 - @backstage/plugin-home@0.7.5-next.0 - @backstage/plugin-search-react@1.7.12-next.0 - @backstage/plugin-signals@0.0.7-next.0 - @backstage/plugin-techdocs-react@1.2.5-next.0 - @backstage/plugin-user-settings@0.8.7-next.0 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/core-app-api@1.12.5 - @backstage/core-compat-api@0.2.6-next.0 - @backstage/core-plugin-api@1.9.2 - @backstage/frontend-plugin-api@0.6.6-next.0 - @backstage/integration-react@1.1.27 - @backstage/plugin-app-visualizer@0.1.7-next.0 - @backstage/plugin-auth-react@0.1.3-next.0 - @backstage/plugin-catalog@1.20.1-next.0 - @backstage/plugin-catalog-common@1.0.23 - @backstage/plugin-catalog-graph@0.4.6-next.0 - @backstage/plugin-catalog-import@0.11.1-next.0 - @backstage/plugin-catalog-react@1.12.1-next.0 - @backstage/plugin-catalog-unprocessed-entities@0.2.5-next.0 - @backstage/plugin-kubernetes@0.11.11-next.0 - @backstage/plugin-kubernetes-cluster@0.0.12-next.0 - @backstage/plugin-org@0.6.26-next.0 - @backstage/plugin-permission-react@0.4.22 - @backstage/plugin-search@1.4.12-next.0 - @backstage/plugin-search-common@1.2.11 - @backstage/plugin-techdocs-module-addons-contrib@1.1.11-next.0 ## app-next-example-plugin@0.0.12-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/frontend-plugin-api@0.6.6-next.0 ## example-backend@0.0.27-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/plugin-scaffolder-backend-module-github@0.2.9-next.0 - @backstage/plugin-devtools-backend@0.3.5-next.0 - @backstage/plugin-techdocs-backend@1.10.6-next.0 - @backstage/plugin-catalog-backend@1.23.0-next.0 - @backstage/plugin-search-backend@1.5.10-next.0 - @backstage/plugin-proxy-backend@0.5.0-next.0 - @backstage/plugin-auth-backend@0.22.6-next.0 - @backstage/plugin-app-backend@0.3.68-next.0 - @backstage/plugin-search-backend-node@1.2.24-next.0 - @backstage/plugin-signals-backend@0.1.5-next.0 - @backstage/backend-defaults@0.2.19-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-scaffolder-backend@1.22.8-next.0 - @backstage/plugin-kubernetes-backend@0.17.2-next.0 - @backstage/plugin-catalog-backend-module-backstage-openapi@0.2.2-next.0 - @backstage/plugin-search-backend-module-catalog@0.1.25-next.0 - @backstage/plugin-search-backend-module-explore@0.1.25-next.0 - @backstage/plugin-search-backend-module-techdocs@0.1.24-next.0 - @backstage/plugin-auth-backend-module-guest-provider@0.1.5-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/plugin-catalog-backend-module-openapi@0.1.37-next.0 - @backstage/plugin-catalog-backend-module-unprocessed@0.4.6-next.0 - @backstage/plugin-notifications-backend@0.2.2-next.0 - @backstage/plugin-permission-backend@0.5.43-next.0 - @backstage/plugin-permission-node@0.7.30-next.0 - @backstage/plugin-auth-backend-module-github-provider@0.1.16-next.0 - @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.17-next.0 - @backstage/plugin-permission-backend-module-allow-all-policy@0.1.16-next.0 - @backstage/catalog-model@1.5.0 - @backstage/plugin-permission-common@0.7.13 ## example-backend-legacy@0.2.99-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-tasks@0.5.24-next.0 - @backstage/backend-common@0.22.1-next.0 - @backstage/plugin-devtools-backend@0.3.5-next.0 - @backstage/plugin-techdocs-backend@1.10.6-next.0 - @backstage/plugin-catalog-backend@1.23.0-next.0 - @backstage/plugin-search-backend@1.5.10-next.0 - @backstage/plugin-proxy-backend@0.5.0-next.0 - @backstage/plugin-auth-backend@0.22.6-next.0 - @backstage/plugin-app-backend@0.3.68-next.0 - @backstage/plugin-search-backend-module-elasticsearch@1.4.2-next.0 - @backstage/plugin-search-backend-module-pg@0.5.28-next.0 - @backstage/plugin-search-backend-node@1.2.24-next.0 - @backstage/plugin-signals-backend@0.1.5-next.0 - @backstage/plugin-events-node@0.3.5-next.0 - @backstage/plugin-scaffolder-backend@1.22.8-next.0 - @backstage/plugin-kubernetes-backend@0.17.2-next.0 - @backstage/plugin-search-backend-module-catalog@0.1.25-next.0 - @backstage/plugin-search-backend-module-explore@0.1.25-next.0 - @backstage/plugin-search-backend-module-techdocs@0.1.24-next.0 - example-app@0.2.98-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/plugin-catalog-backend-module-unprocessed@0.4.6-next.0 - @backstage/plugin-events-backend@0.3.6-next.0 - @backstage/plugin-permission-backend@0.5.43-next.0 - @backstage/plugin-permission-node@0.7.30-next.0 - @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.20-next.0 - @backstage/plugin-scaffolder-backend-module-gitlab@0.4.1-next.0 - @backstage/plugin-scaffolder-backend-module-rails@0.4.36-next.0 - @backstage/plugin-signals-node@0.1.5-next.0 - @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.17-next.0 - @backstage/plugin-catalog-node@1.12.1-next.0 - @backstage/catalog-client@1.6.5 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/integration@1.11.0 - @backstage/plugin-permission-common@0.7.13 ## e2e-test@0.2.17-next.0 ### Patch Changes - Updated dependencies - @backstage/create-app@0.5.16-next.0 - @backstage/cli-common@0.1.13 - @backstage/errors@1.2.4 ## techdocs-cli-embedded-app@0.2.97-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-techdocs@1.10.6-next.0 - @backstage/theme@0.5.6-next.0 - @backstage/cli@0.26.6-next.0 - @backstage/app-defaults@1.5.6-next.0 - @backstage/core-components@0.14.8-next.0 - @backstage/test-utils@1.5.6-next.0 - @backstage/plugin-techdocs-react@1.2.5-next.0 - @backstage/catalog-model@1.5.0 - @backstage/config@1.2.0 - @backstage/core-app-api@1.12.5 - @backstage/core-plugin-api@1.9.2 - @backstage/integration-react@1.1.27 - @backstage/plugin-catalog@1.20.1-next.0 ## @internal/plugin-todo-list@1.0.28-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.14.8-next.0 - @backstage/core-plugin-api@1.9.2 ## @internal/plugin-todo-list-backend@1.0.28-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.22.1-next.0 - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 - @backstage/errors@1.2.4