# Release v1.50.0-next.2 Upgrade Helper: [https://backstage.github.io/upgrade-helper/?to=1.50.0-next.2](https://backstage.github.io/upgrade-helper/?to=1.50.0-next.2) ## @backstage/errors@1.3.0-next.0 ### Minor Changes - b2319ff: A new `toError` utility function is now available for converting unknown values to `ErrorLike` objects. If the value is already error-like it is returned as-is, strings are used directly as the error message, and all other values are wrapped as `unknown error ''`. Non-error causes passed to `CustomErrorBase` are now converted and stored using `toError` rather than discarded. ## @backstage/ui@0.14.0-next.2 ### Minor Changes - b4a1875: **BREAKING**: Tab `href` values in the Header component are now resolved through the router context instead of being passed raw to the `` tag. This means relative `href` values (e.g. `sub3`, `./sub4`, `../catalog`) are now resolved against the current route, and absolute `href` values may be affected by the router's `basename` configuration. **Migration:** Tab navigation should work the same for absolute `href` values in most setups. If you use relative `href` values in tabs, verify they resolve as expected. If your app configures a router `basename`, check that absolute tab `href` values still navigate correctly. **Affected components:** Header ### Patch Changes - 4032ad7: Added new `Badge` component for non-interactive labeling and categorization of content. It shares the visual appearance of `Tag` but renders as a plain DOM element with no interactive states. **Affected components:** Badge - b4a1875: Added automatic active tab detection to the Header component. When `activeTabId` is omitted, the active tab is now auto-detected from the current route using `matchRoutes`. Pass an explicit `activeTabId` to override, or `null` for no active tab. **Affected components:** Header - aa47a37: Add an initial CheckboxGroup component implementation and docs coverage. - 386972f: Fixed the Tabs active indicator not hiding when no tab matches the current route. **Affected components:** Tabs ## @backstage/plugin-auth-backend-module-auth0-provider@0.4.0-next.2 ### Minor Changes - 9244b70: Added federated logout support. Set `federatedLogout: true` in the Auth0 provider config to clear both the Auth0 session and any upstream IdP session on sign-out. The authenticator returns a logout URL that redirects the browser to Auth0's `/v2/logout?federated` endpoint, ensuring users must fully re-authenticate after signing out. ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 ## @backstage/plugin-catalog-backend@3.6.0-next.2 ### Minor Changes - d16311f: Added a `location_entity_ref` column to the `locations` database table that stores the full entity ref of the corresponding `kind: Location` catalog entity for each registered location row. The value is pre-computed and persisted so that it no longer needs to be recomputed from the location's type and target on every read. ### Patch Changes - 7e63730: Removed deprecated `PermissionAuthorizer` support and the `createPermissionIntegrationRouter` fallback path from `CatalogBuilder`. The `permissionsRegistry` service is now required, and `permissions` is always a `PermissionsService`. - 056e18e: Removed the internal `addPermissions` and `addPermissionRules` methods from `CatalogBuilder`, and removed the `catalogPermissionExtensionPoint` wiring from `CatalogPlugin`. Custom permission rules and permissions should be registered via `coreServices.permissionsRegistry` directly. - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-openapi-utils@0.6.8-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/filter-predicates@0.1.2-next.0 - @backstage/plugin-events-node@0.4.21-next.2 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-permission-node@0.10.12-next.2 - @backstage/plugin-catalog-common@1.1.9-next.0 ## @backstage/plugin-catalog-node@2.2.0-next.2 ### Minor Changes - 056e18e: **BREAKING ALPHA**: Removed the deprecated `CatalogPermissionRuleInput`, `CatalogPermissionExtensionPoint`, and `catalogPermissionExtensionPoint` exports. Use `coreServices.permissionsRegistry` directly to register catalog entity permission rules and permissions. - 7a03196: **BREAKING ALPHA**: Removed the following deprecated exports from `@backstage/plugin-catalog-node/alpha`: - `catalogServiceRef` — use `catalogServiceRef` from `@backstage/plugin-catalog-node` instead - `CatalogLocationsExtensionPoint` / `catalogLocationsExtensionPoint` — use the non-alpha equivalents from `@backstage/plugin-catalog-node` instead - `CatalogProcessingExtensionPoint` / `catalogProcessingExtensionPoint` — use the non-alpha equivalents from `@backstage/plugin-catalog-node` instead - `CatalogAnalysisExtensionPoint` / `catalogAnalysisExtensionPoint` — use the non-alpha equivalents from `@backstage/plugin-catalog-node` instead ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/backend-test-utils@1.11.2-next.2 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-permission-node@0.10.12-next.2 - @backstage/plugin-catalog-common@1.1.9-next.0 ## @backstage/plugin-scaffolder-backend@3.4.0-next.2 ### Minor Changes - 5af48e7: Migrated permission registration to use the `PermissionsRegistryService` instead of the deprecated `createPermissionIntegrationRouter`. This fixes an issue where scaffolder permissions were not visible to RBAC plugins because the `actionsRegistryServiceRef` dependency caused an empty permissions metadata router to shadow the scaffolder's actual permission metadata. The old `createPermissionIntegrationRouter` path is retained as a fallback for standalone `createRouter` usage. ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - 961e274: Migrated OpenTelemetry metrics to use the `MetricsService` from `@backstage/backend-plugin-api/alpha` instead of the raw `@opentelemetry/api` meter. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/plugin-scaffolder-node@0.13.2-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-openapi-utils@0.6.8-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-node@0.4.21-next.2 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-permission-node@0.10.12-next.2 - @backstage/plugin-scaffolder-common@2.0.1-next.0 ## @backstage/app-defaults@1.7.7-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.7.3-next.0 - @backstage/core-app-api@1.20.0-next.2 - @backstage/core-components@0.18.9-next.1 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/plugin-permission-react@0.4.42-next.1 ## @backstage/backend-app-api@1.6.1-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 ## @backstage/backend-defaults@0.16.1-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - 308c672: `HostDiscovery` now logs a warning when `backend.baseUrl` is set to a localhost address while `NODE_ENV` is `production`, and when `backend.baseUrl` is not a valid URL. - 85c5a46: DefaultActionsRegistryService: add json middleware to /.backstage/actions/ routes only - f14df56: Added experimental support for using `embedded-postgres` as the database for local development. Set `backend.database.client` to `embedded-postgres` in your app config to enable this. The `embedded-postgres` package must be installed as an explicit dependency in your project. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/backend-app-api@1.6.1-next.2 - @backstage/cli-node@0.3.1-next.1 - @backstage/config-loader@1.10.10-next.1 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/integration-aws-node@0.1.21-next.0 - @backstage/plugin-events-node@0.4.21-next.2 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-permission-node@0.10.12-next.2 ## @backstage/backend-dynamic-feature-service@0.8.1-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/plugin-catalog-backend@3.6.0-next.2 - @backstage/backend-defaults@0.16.1-next.2 - @backstage/cli-common@0.2.1-next.1 - @backstage/cli-node@0.3.1-next.1 - @backstage/config-loader@1.10.10-next.1 - @backstage/plugin-search-backend-node@1.4.3-next.2 - @backstage/plugin-scaffolder-node@0.13.2-next.2 - @backstage/backend-openapi-utils@0.6.8-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-backend@0.6.1-next.2 - @backstage/plugin-events-node@0.4.21-next.2 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-permission-node@0.10.12-next.2 - @backstage/plugin-search-common@1.2.23-next.0 ## @backstage/backend-openapi-utils@0.6.8-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 ## @backstage/backend-plugin-api@1.9.0-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/cli-common@0.2.1-next.1 - @backstage/config@1.3.7-next.0 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-permission-node@0.10.12-next.2 ## @backstage/backend-test-utils@1.11.2-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/backend-app-api@1.6.1-next.2 - @backstage/backend-defaults@0.16.1-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-node@0.4.21-next.2 - @backstage/plugin-permission-common@0.9.8-next.0 ## @backstage/catalog-client@1.14.1-next.0 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/filter-predicates@0.1.2-next.0 ## @backstage/catalog-model@1.7.8-next.0 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 ## @backstage/cli@0.36.1-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/cli-common@0.2.1-next.1 - @backstage/cli-node@0.3.1-next.1 - @backstage/cli-module-build@0.1.1-next.2 ## @backstage/cli-common@0.2.1-next.1 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 ## @backstage/cli-module-actions@0.0.2-next.1 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/cli-node@0.3.1-next.1 ## @backstage/cli-module-auth@0.1.1-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/cli-node@0.3.1-next.1 ## @backstage/cli-module-build@0.1.1-next.2 ### Patch Changes - c16c508: When building dist-workspaces with --always-pack, batch `yarn pack` operations to avoid packing packages and their dependencies simultaneously. - f14df56: Added experimental support for using `embedded-postgres` as the database for local development. Set `backend.database.client` to `embedded-postgres` in your app config to enable this. The `embedded-postgres` package must be installed as an explicit dependency in your project. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/cli-common@0.2.1-next.1 - @backstage/cli-node@0.3.1-next.1 - @backstage/config-loader@1.10.10-next.1 - @backstage/config@1.3.7-next.0 - @backstage/module-federation-common@0.1.3-next.0 ## @backstage/cli-module-config@0.1.1-next.1 ### Patch Changes - Updated dependencies - @backstage/cli-common@0.2.1-next.1 - @backstage/cli-node@0.3.1-next.1 - @backstage/config-loader@1.10.10-next.1 - @backstage/config@1.3.7-next.0 ## @backstage/cli-module-migrate@0.1.1-next.1 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/cli-common@0.2.1-next.1 - @backstage/cli-node@0.3.1-next.1 ## @backstage/cli-module-new@0.1.2-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/cli-common@0.2.1-next.1 - @backstage/cli-node@0.3.1-next.1 ## @backstage/cli-node@0.3.1-next.1 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/cli-common@0.2.1-next.1 ## @backstage/config@1.3.7-next.0 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 ## @backstage/config-loader@1.10.10-next.1 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/cli-common@0.2.1-next.1 - @backstage/config@1.3.7-next.0 ## @backstage/core-app-api@1.20.0-next.2 ### Patch Changes - 9244b70: The default auth implementation now checks for a `logoutUrl` in the logout response body. If the auth provider returns one (e.g. Auth0 federated logout), the browser is redirected to that URL to clear the provider's session cookies. This is backward compatible — providers that return an empty response are unaffected. - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/core-plugin-api@1.12.5-next.2 ## @backstage/core-compat-api@0.5.10-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/filter-predicates@0.1.2-next.0 - @backstage/frontend-plugin-api@0.16.0-next.2 ## @backstage/core-components@0.18.9-next.1 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - 58b9f3f: Use Backstage Link component for markdown anchor rendering to ensure consistent internal and external link behavior. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/theme@0.7.3-next.0 - @backstage/config@1.3.7-next.0 - @backstage/core-plugin-api@1.12.5-next.2 ## @backstage/core-plugin-api@1.12.5-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/config@1.3.7-next.0 - @backstage/frontend-plugin-api@0.16.0-next.2 ## @backstage/create-app@0.8.2-next.2 ### Patch Changes - Bumped create-app version. - Updated dependencies - @backstage/cli-common@0.2.1-next.1 ## @backstage/dev-utils@1.1.22-next.2 ### Patch Changes - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/theme@0.7.3-next.0 - @backstage/core-app-api@1.20.0-next.2 - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/app-defaults@1.7.7-next.2 - @backstage/integration-react@1.2.17-next.1 ## @backstage/filter-predicates@0.1.2-next.0 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/config@1.3.7-next.0 ## @backstage/frontend-app-api@0.16.2-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/core-app-api@1.20.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/filter-predicates@0.1.2-next.0 - @backstage/frontend-defaults@0.5.1-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 ## @backstage/frontend-defaults@0.5.1-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-app@0.4.3-next.2 - @backstage/core-components@0.18.9-next.1 - @backstage/config@1.3.7-next.0 - @backstage/frontend-app-api@0.16.2-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 ## @backstage/frontend-dynamic-feature-loader@0.1.11-next.2 ### Patch Changes - Updated dependencies - @backstage/config@1.3.7-next.0 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/module-federation-common@0.1.3-next.0 ## @backstage/frontend-plugin-api@0.16.0-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/filter-predicates@0.1.2-next.0 ## @backstage/frontend-test-utils@0.5.2-next.2 ### Patch Changes - Updated dependencies - @backstage/core-app-api@1.20.0-next.2 - @backstage/plugin-app@0.4.3-next.2 - @backstage/config@1.3.7-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/filter-predicates@0.1.2-next.0 - @backstage/frontend-app-api@0.16.2-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/test-utils@1.7.17-next.2 - @backstage/plugin-permission-react@0.4.42-next.1 ## @backstage/integration@2.0.1-next.0 ### Patch Changes - d112499: Fixed `SingleInstanceGithubCredentialsProvider` to return app credentials when `getCredentials` is called with a bare host URL (e.g. `https://github.com`) instead of falling back to a personal access token. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/config@1.3.7-next.0 ## @backstage/integration-aws-node@0.1.21-next.0 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/config@1.3.7-next.0 ## @backstage/integration-react@1.2.17-next.1 ### Patch Changes - Updated dependencies - @backstage/integration@2.0.1-next.0 - @backstage/config@1.3.7-next.0 - @backstage/core-plugin-api@1.12.5-next.2 ## @backstage/module-federation-common@0.1.3-next.0 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/config@1.3.7-next.0 ## @backstage/repo-tools@0.17.1-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/cli-common@0.2.1-next.1 - @backstage/cli-node@0.3.1-next.1 - @backstage/config-loader@1.10.10-next.1 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 ## @techdocs/cli@1.10.7-next.1 ### Patch Changes - 980b7f5: Updated proxy documentation to recommend Node.js built-in proxy support via `NODE_USE_ENV_PROXY` instead of `global-agent`. - Updated dependencies - @backstage/backend-defaults@0.16.1-next.2 - @backstage/cli-common@0.2.1-next.1 - @backstage/plugin-techdocs-node@1.14.5-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 ## @backstage/test-utils@1.7.17-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.7.3-next.0 - @backstage/core-app-api@1.20.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-permission-react@0.4.42-next.1 ## @backstage/theme@0.7.3-next.0 ### Patch Changes - a0100d4: Fixes occasional duplication of v5 class name prefix for MUI 5 components. Documentation added to explain how to resolve missing v5 prefix in class names when using MUI 5 components in main app. ## @backstage/plugin-api-docs@0.13.6-next.2 ### Patch Changes - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/plugin-catalog@2.0.2-next.2 - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/plugin-catalog-common@1.1.9-next.0 - @backstage/plugin-permission-react@0.4.42-next.1 ## @backstage/plugin-app@0.4.3-next.2 ### Patch Changes - 9244b70: The default auth implementation now checks for a `logoutUrl` in the logout response body. If the auth provider returns one (e.g. Auth0 federated logout), the browser is redirected to that URL to clear the provider's session cookies. This is backward compatible — providers that return an empty response are unaffected. - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/theme@0.7.3-next.0 - @backstage/core-components@0.18.9-next.1 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/filter-predicates@0.1.2-next.0 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/integration-react@1.2.17-next.1 - @backstage/plugin-permission-react@0.4.42-next.1 ## @backstage/plugin-app-backend@0.5.13-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/config-loader@1.10.10-next.1 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-auth@0.1.7-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/errors@1.3.0-next.0 - @backstage/theme@0.7.3-next.0 - @backstage/frontend-plugin-api@0.16.0-next.2 ## @backstage/plugin-auth-backend@0.28.0-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.15-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/plugin-auth-backend@0.28.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 ## @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.19-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 ## @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.14-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.14-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 ## @backstage/plugin-auth-backend-module-guest-provider@0.2.18-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 ## @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.19-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 ## @backstage/plugin-auth-backend-module-oidc-provider@0.4.15-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/plugin-auth-backend@0.28.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-auth-backend-module-openshift-provider@0.1.6-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 ## @backstage/plugin-auth-backend-module-pinniped-provider@0.3.13-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-auth-backend-module-vmware-cloud-provider@0.5.13-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 ## @backstage/plugin-auth-node@0.7.0-next.2 ### Patch Changes - 9244b70: Added `OAuthAuthenticatorLogoutResult` type. The `logout` method on `OAuthAuthenticator` can now optionally return `{ logoutUrl }` to trigger a browser redirect after sign-out. This allows providers like Auth0 to clear their session cookies by redirecting to their logout endpoint. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-auth-react@0.1.26-next.1 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/core-components@0.18.9-next.1 - @backstage/core-plugin-api@1.12.5-next.2 ## @backstage/plugin-bitbucket-cloud-common@0.3.9-next.0 ### Patch Changes - Updated dependencies - @backstage/integration@2.0.1-next.0 ## @backstage/plugin-catalog@2.0.2-next.2 ### Patch Changes - ee1531d: Exported the NFS variant of the catalog index page as `CatalogIndexPage` from the `./alpha` entry point, along with supporting types `CatalogIndexPageProps`, `CatalogTableRow`, and `CatalogTableColumnsFunc`. This allows adopters to use and customize the catalog index page within a `PageBlueprint` in the new frontend system. - 482ceed: Migrated from `assertError` to `toError` for error handling. - c193ef1: Added Kind field to the About Card. Tags moved before Type and Lifecycle, Kind placed after them. A new `aboutCard.kindField.label` translation key was added. - e5af44c: Replaced deprecated `humanizeEntityRef` usage with the Catalog Presentation API. - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/errors@1.3.0-next.0 - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/core-compat-api@0.5.10-next.2 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/plugin-scaffolder-common@2.0.1-next.0 - @backstage/plugin-search-react@1.11.1-next.2 - @backstage/plugin-techdocs-react@1.3.10-next.2 - @backstage/integration-react@1.2.17-next.1 - @backstage/plugin-catalog-common@1.1.9-next.0 - @backstage/plugin-permission-react@0.4.42-next.1 - @backstage/plugin-search-common@1.2.23-next.0 ## @backstage/plugin-catalog-backend-module-aws@0.4.22-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-defaults@0.16.1-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/integration-aws-node@0.1.21-next.0 - @backstage/plugin-catalog-common@1.1.9-next.0 - @backstage/plugin-kubernetes-common@0.9.11-next.0 ## @backstage/plugin-catalog-backend-module-azure@0.3.16-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-node@0.4.21-next.2 - @backstage/plugin-catalog-common@1.1.9-next.0 ## @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.13-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-openapi-utils@0.6.8-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-catalog-backend-module-bitbucket-cloud@0.5.10-next.2 ### Patch Changes - f215863: Added Bitbucket Cloud SCM event translation layer for the catalog backend module. The module now subscribes to Bitbucket Cloud webhook events and translates them into generic catalog SCM events, enabling instant catalog reprocessing when repositories are pushed to, renamed, transferred, or deleted. The `analyzeBitbucketCloudWebhookEvent` function is exported from the alpha entry point for custom integrations. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-node@0.4.21-next.2 - @backstage/plugin-bitbucket-cloud-common@0.3.9-next.0 - @backstage/plugin-catalog-common@1.1.9-next.0 ## @backstage/plugin-catalog-backend-module-bitbucket-server@0.5.10-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-node@0.4.21-next.2 - @backstage/plugin-catalog-common@1.1.9-next.0 ## @backstage/plugin-catalog-backend-module-gcp@0.3.18-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/plugin-kubernetes-common@0.9.11-next.0 ## @backstage/plugin-catalog-backend-module-gerrit@0.3.13-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-catalog-common@1.1.9-next.0 ## @backstage/plugin-catalog-backend-module-gitea@0.1.11-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-catalog-common@1.1.9-next.0 ## @backstage/plugin-catalog-backend-module-github@0.13.1-next.2 ### Patch Changes - cca9fc2: Added automatic retry on temporary errors (like 5XX) to the shared GitHub GraphQL client used by `GithubOrgEntityProvider` and replaced the GraphQL client in `GithubEntityProvider` by this one as well, improving resilience against intermittent GitHub API failures. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-node@0.4.21-next.2 - @backstage/plugin-catalog-common@1.1.9-next.0 ## @backstage/plugin-catalog-backend-module-github-org@0.3.21-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/plugin-catalog-backend-module-github@0.13.1-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-node@0.4.21-next.2 ## @backstage/plugin-catalog-backend-module-gitlab@0.8.2-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-defaults@0.16.1-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-node@0.4.21-next.2 - @backstage/plugin-catalog-common@1.1.9-next.0 ## @backstage/plugin-catalog-backend-module-gitlab-org@0.2.20-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/plugin-catalog-backend-module-gitlab@0.8.2-next.2 - @backstage/plugin-events-node@0.4.21-next.2 ## @backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.11-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-backend@3.6.0-next.2 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-defaults@0.16.1-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-node@0.4.21-next.2 - @backstage/plugin-permission-common@0.9.8-next.0 ## @backstage/plugin-catalog-backend-module-ldap@0.12.4-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/plugin-catalog-common@1.1.9-next.0 ## @backstage/plugin-catalog-backend-module-logs@0.1.21-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-backend@3.6.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/plugin-events-node@0.4.21-next.2 ## @backstage/plugin-catalog-backend-module-msgraph@0.9.2-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/plugin-catalog-common@1.1.9-next.0 ## @backstage/plugin-catalog-backend-module-openapi@0.2.21-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/plugin-catalog-common@1.1.9-next.0 ## @backstage/plugin-catalog-backend-module-puppetdb@0.2.21-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.19-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/plugin-scaffolder-common@2.0.1-next.0 - @backstage/plugin-catalog-common@1.1.9-next.0 ## @backstage/plugin-catalog-backend-module-unprocessed@0.6.10-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/plugin-catalog-unprocessed-entities-common@0.0.14-next.0 - @backstage/plugin-permission-common@0.9.8-next.0 ## @backstage/plugin-catalog-common@1.1.9-next.0 ### Patch Changes - Updated dependencies - @backstage/catalog-model@1.7.8-next.0 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-search-common@1.2.23-next.0 ## @backstage/plugin-catalog-graph@0.6.1-next.2 ### Patch Changes - d5899c2: Support configuring `showArrowHeads` on `page:catalog-graph` and `entity-card:catalog-graph/relations`. - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 ## @backstage/plugin-catalog-import@0.13.12-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - e5af44c: Replaced deprecated `humanizeEntityRef` usage with the Catalog Presentation API. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/integration-react@1.2.17-next.1 - @backstage/plugin-catalog-common@1.1.9-next.0 - @backstage/plugin-permission-react@0.4.42-next.1 ## @backstage/plugin-catalog-react@2.1.2-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - 5f9a531: Deprecated `humanizeEntityRef` and `humanizeEntity` in favor of the Catalog Presentation API. Use `useEntityPresentation`, `EntityDisplayName`, or `entityPresentationApiRef` instead. - fa232da: Migrated `InspectEntityDialog` from Material UI to Backstage UI components. Added new translation keys: `inspectEntityDialog.overviewPage.copyAriaLabel`, `inspectEntityDialog.overviewPage.copiedStatus`, `inspectEntityDialog.overviewPage.helpLinkAriaLabel`, and `inspectEntityDialog.colocatedPage.entityListAriaLabel`. - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/errors@1.3.0-next.0 - @backstage/core-components@0.18.9-next.1 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/core-compat-api@0.5.10-next.2 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/filter-predicates@0.1.2-next.0 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/integration-react@1.2.17-next.1 - @backstage/plugin-catalog-common@1.1.9-next.0 - @backstage/frontend-test-utils@0.5.2-next.2 - @backstage/plugin-permission-react@0.4.42-next.1 ## @backstage/plugin-catalog-unprocessed-entities@0.2.29-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/errors@1.3.0-next.0 - @backstage/core-components@0.18.9-next.1 - @backstage/core-compat-api@0.5.10-next.2 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/plugin-catalog-unprocessed-entities-common@0.0.14-next.0 ## @backstage/plugin-catalog-unprocessed-entities-common@0.0.14-next.0 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/plugin-permission-common@0.9.8-next.0 ## @backstage/plugin-config-schema@0.1.79-next.1 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/core-components@0.18.9-next.1 - @backstage/core-plugin-api@1.12.5-next.2 ## @backstage/plugin-devtools@0.1.38-next.2 ### Patch Changes - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/errors@1.3.0-next.0 - @backstage/core-components@0.18.9-next.1 - @backstage/core-compat-api@0.5.10-next.2 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/plugin-permission-react@0.4.42-next.1 - @backstage/plugin-devtools-common@0.1.24-next.0 ## @backstage/plugin-devtools-backend@0.5.16-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/cli-common@0.2.1-next.1 - @backstage/config-loader@1.10.10-next.1 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-permission-node@0.10.12-next.2 - @backstage/plugin-devtools-common@0.1.24-next.0 ## @backstage/plugin-devtools-common@0.1.24-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-permission-common@0.9.8-next.0 ## @backstage/plugin-events-backend@0.6.1-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/backend-openapi-utils@0.6.8-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-node@0.4.21-next.2 ## @backstage/plugin-events-backend-module-aws-sqs@0.4.21-next.2 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-node@0.4.21-next.2 ## @backstage/plugin-events-backend-module-github@0.4.11-next.2 ### Patch Changes - Updated dependencies - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-node@0.4.21-next.2 ## @backstage/plugin-events-backend-module-gitlab@0.3.11-next.2 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-node@0.4.21-next.2 ## @backstage/plugin-events-backend-module-google-pubsub@0.2.2-next.2 ### Patch Changes - eacf362: Migrated internal metrics in `GooglePubSubConsumingEventPublisher` and `EventConsumingGooglePubSubPublisher` to use the new alpha `MetricsService` - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/filter-predicates@0.1.2-next.0 - @backstage/plugin-events-node@0.4.21-next.2 ## @backstage/plugin-events-backend-module-kafka@0.3.3-next.2 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-node@0.4.21-next.2 ## @backstage/plugin-events-node@0.4.21-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 ## @backstage/plugin-home@0.9.4-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.7.3-next.0 - @backstage/core-app-api@1.20.0-next.2 - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/core-compat-api@0.5.10-next.2 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 ## @backstage/plugin-kubernetes@0.12.18-next.2 ### Patch Changes - Updated dependencies - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/plugin-kubernetes-react@0.5.18-next.1 - @backstage/plugin-kubernetes-common@0.9.11-next.0 - @backstage/plugin-permission-react@0.4.42-next.1 ## @backstage/plugin-kubernetes-backend@0.21.3-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/integration-aws-node@0.1.21-next.0 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-permission-node@0.10.12-next.2 - @backstage/plugin-kubernetes-common@0.9.11-next.0 - @backstage/plugin-kubernetes-node@0.4.3-next.2 ## @backstage/plugin-kubernetes-cluster@0.0.36-next.1 ### Patch Changes - Updated dependencies - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/plugin-kubernetes-react@0.5.18-next.1 - @backstage/plugin-kubernetes-common@0.9.11-next.0 - @backstage/plugin-permission-react@0.4.42-next.1 ## @backstage/plugin-kubernetes-common@0.9.11-next.0 ### Patch Changes - Updated dependencies - @backstage/catalog-model@1.7.8-next.0 - @backstage/plugin-permission-common@0.9.8-next.0 ## @backstage/plugin-kubernetes-node@0.4.3-next.2 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/plugin-kubernetes-common@0.9.11-next.0 ## @backstage/plugin-kubernetes-react@0.5.18-next.1 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/core-components@0.18.9-next.1 - @backstage/catalog-model@1.7.8-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/plugin-kubernetes-common@0.9.11-next.0 ## @backstage/plugin-mcp-actions-backend@0.1.12-next.2 ### Patch Changes - 282c114: Fix OAuth 2.0 Protected Resource Metadata endpoint returning internal plugin URL, preventing some MCP clients like Claude Code from authenticating - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-client@1.14.1-next.0 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-mui-to-bui@0.2.6-next.2 ### Patch Changes - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/theme@0.7.3-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 ## @backstage/plugin-notifications@0.5.16-next.2 ### Patch Changes - 19a2a03: Migrated notifications plugin to use backstage UI - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/errors@1.3.0-next.0 - @backstage/theme@0.7.3-next.0 - @backstage/core-components@0.18.9-next.1 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/plugin-notifications-common@0.2.2-next.0 ## @backstage/plugin-notifications-backend@0.6.4-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/plugin-notifications-node@0.2.25-next.2 - @backstage/plugin-notifications-common@0.2.2-next.0 - @backstage/plugin-signals-node@0.1.30-next.2 ## @backstage/plugin-notifications-backend-module-email@0.3.20-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/integration-aws-node@0.1.21-next.0 - @backstage/plugin-notifications-node@0.2.25-next.2 - @backstage/plugin-notifications-common@0.2.2-next.0 ## @backstage/plugin-notifications-backend-module-slack@0.4.1-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/plugin-notifications-node@0.2.25-next.2 - @backstage/plugin-notifications-common@0.2.2-next.0 ## @backstage/plugin-notifications-common@0.2.2-next.0 ### Patch Changes - Updated dependencies - @backstage/config@1.3.7-next.0 ## @backstage/plugin-notifications-node@0.2.25-next.2 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/plugin-notifications-common@0.2.2-next.0 - @backstage/plugin-signals-node@0.1.30-next.2 ## @backstage/plugin-org@0.7.1-next.2 ### Patch Changes - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/plugin-catalog-common@1.1.9-next.0 ## @backstage/plugin-org-react@0.1.49-next.1 ### Patch Changes - e5af44c: Replaced deprecated `humanizeEntityRef` usage with the Catalog Presentation API. - Updated dependencies - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/core-plugin-api@1.12.5-next.2 ## @backstage/plugin-permission-backend@0.7.11-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-permission-node@0.10.12-next.2 ## @backstage/plugin-permission-backend-module-allow-all-policy@0.2.18-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-permission-node@0.10.12-next.2 ## @backstage/plugin-permission-common@0.9.8-next.0 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-permission-node@0.10.12-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-permission-common@0.9.8-next.0 ## @backstage/plugin-permission-react@0.4.42-next.1 ### Patch Changes - Updated dependencies - @backstage/config@1.3.7-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/plugin-permission-common@0.9.8-next.0 ## @backstage/plugin-scaffolder@1.36.2-next.2 ### Patch Changes - e5af44c: Replaced deprecated `humanizeEntityRef` usage with the Catalog Presentation API. - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/errors@1.3.0-next.0 - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/plugin-scaffolder-common@2.0.1-next.0 - @backstage/plugin-scaffolder-react@1.20.1-next.2 - @backstage/plugin-techdocs-react@1.3.10-next.2 - @backstage/integration-react@1.2.17-next.1 - @backstage/plugin-catalog-common@1.1.9-next.0 - @backstage/plugin-permission-react@0.4.42-next.1 ## @backstage/plugin-scaffolder-backend-module-azure@0.2.20-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-scaffolder-node@0.13.2-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.3.5-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-scaffolder-node@0.13.2-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-bitbucket-cloud-common@0.3.9-next.0 ## @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.20-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-scaffolder-node@0.13.2-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.20-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-scaffolder-node@0.13.2-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.22-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/backend-defaults@0.16.1-next.2 - @backstage/plugin-scaffolder-node@0.13.2-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-scaffolder-backend-module-gcp@0.2.20-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-scaffolder-node@0.13.2-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-scaffolder-backend-module-gerrit@0.2.20-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-scaffolder-node@0.13.2-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-scaffolder-backend-module-gitea@0.2.20-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-scaffolder-node@0.13.2-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-scaffolder-backend-module-github@0.9.8-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/plugin-scaffolder-node@0.13.2-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-scaffolder-backend-module-gitlab@0.11.5-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-scaffolder-node@0.13.2-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-scaffolder-backend-module-notifications@0.1.21-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-node@0.13.2-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/plugin-notifications-node@0.2.25-next.2 - @backstage/plugin-notifications-common@0.2.2-next.0 ## @backstage/plugin-scaffolder-backend-module-rails@0.5.20-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-scaffolder-node@0.13.2-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-scaffolder-backend-module-sentry@0.3.3-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-scaffolder-node@0.13.2-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-scaffolder-common@2.0.1-next.0 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/integration@2.0.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/plugin-permission-common@0.9.8-next.0 ## @backstage/plugin-scaffolder-node@0.13.2-next.2 ### Patch Changes - 5af48e7: Added `PermissionResourceRef` definitions for scaffolder resource types: `scaffolderTemplatePermissionResourceRef`, `scaffolderActionPermissionResourceRef`, and `scaffolderTaskPermissionResourceRef`. These are exported from `@backstage/plugin-scaffolder-node/alpha`. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/backend-test-utils@1.11.2-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-permission-node@0.10.12-next.2 - @backstage/plugin-scaffolder-common@2.0.1-next.0 ## @backstage/plugin-scaffolder-react@1.20.1-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.7.3-next.0 - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/plugin-scaffolder-common@2.0.1-next.0 - @backstage/frontend-test-utils@0.5.2-next.2 - @backstage/plugin-permission-react@0.4.42-next.1 ## @backstage/plugin-search@1.7.1-next.2 ### Patch Changes - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/errors@1.3.0-next.0 - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/plugin-search-react@1.11.1-next.2 - @backstage/plugin-search-common@1.2.23-next.0 ## @backstage/plugin-search-backend@2.1.1-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-search-backend-node@1.4.3-next.2 - @backstage/backend-openapi-utils@0.6.8-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-permission-node@0.10.12-next.2 - @backstage/plugin-search-common@1.2.23-next.0 ## @backstage/plugin-search-backend-module-catalog@0.3.14-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/plugin-search-backend-node@1.4.3-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-catalog-common@1.1.9-next.0 - @backstage/plugin-search-common@1.2.23-next.0 ## @backstage/plugin-search-backend-module-elasticsearch@1.8.2-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-search-backend-node@1.4.3-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/integration-aws-node@0.1.21-next.0 - @backstage/plugin-search-common@1.2.23-next.0 ## @backstage/plugin-search-backend-module-explore@0.3.13-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-search-backend-node@1.4.3-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-search-common@1.2.23-next.0 ## @backstage/plugin-search-backend-module-pg@0.5.54-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-search-backend-node@1.4.3-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-search-common@1.2.23-next.0 ## @backstage/plugin-search-backend-module-stack-overflow-collator@0.3.19-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-search-backend-node@1.4.3-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-search-common@1.2.23-next.0 ## @backstage/plugin-search-backend-module-techdocs@0.4.13-next.2 ### Patch Changes - 5e32f77: Migrated internal usage of the deprecated `catalogServiceRef` from `@backstage/plugin-catalog-node/alpha` to the stable `catalogServiceRef` from `@backstage/plugin-catalog-node`. - Updated dependencies - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/plugin-search-backend-node@1.4.3-next.2 - @backstage/plugin-techdocs-node@1.14.5-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-catalog-common@1.1.9-next.0 - @backstage/plugin-search-common@1.2.23-next.0 ## @backstage/plugin-search-backend-node@1.4.3-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-search-common@1.2.23-next.0 ## @backstage/plugin-search-common@1.2.23-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-permission-common@0.9.8-next.0 ## @backstage/plugin-search-react@1.11.1-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.7.3-next.0 - @backstage/core-components@0.18.9-next.1 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/plugin-search-common@1.2.23-next.0 ## @backstage/plugin-signals@0.0.30-next.2 ### Patch Changes - Updated dependencies - @backstage/theme@0.7.3-next.0 - @backstage/core-components@0.18.9-next.1 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 ## @backstage/plugin-signals-backend@0.3.14-next.2 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-node@0.4.21-next.2 - @backstage/plugin-signals-node@0.1.30-next.2 ## @backstage/plugin-signals-node@0.1.30-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/config@1.3.7-next.0 - @backstage/plugin-events-node@0.4.21-next.2 ## @backstage/plugin-techdocs@1.17.3-next.2 ### Patch Changes - e5af44c: Replaced deprecated `humanizeEntityRef` usage with the Catalog Presentation API. - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/errors@1.3.0-next.0 - @backstage/theme@0.7.3-next.0 - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/plugin-auth-react@0.1.26-next.1 - @backstage/plugin-search-react@1.11.1-next.2 - @backstage/plugin-techdocs-react@1.3.10-next.2 - @backstage/integration-react@1.2.17-next.1 - @backstage/plugin-search-common@1.2.23-next.0 ## @backstage/plugin-techdocs-backend@2.1.7-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - 5e32f77: Migrated internal usage of the deprecated `catalogServiceRef` from `@backstage/plugin-catalog-node/alpha` to the stable `catalogServiceRef` from `@backstage/plugin-catalog-node`. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-catalog-node@2.2.0-next.2 - @backstage/plugin-techdocs-node@1.14.5-next.2 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-client@1.14.1-next.0 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 ## @backstage/plugin-techdocs-module-addons-contrib@1.1.35-next.2 ### Patch Changes - Updated dependencies - @backstage/core-components@0.18.9-next.1 - @backstage/integration@2.0.1-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/plugin-techdocs-react@1.3.10-next.2 - @backstage/integration-react@1.2.17-next.1 ## @backstage/plugin-techdocs-node@1.14.5-next.2 ### Patch Changes - 482ceed: Migrated from `assertError` to `toError` for error handling. - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/integration@2.0.1-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/integration-aws-node@0.1.21-next.0 - @backstage/plugin-search-common@1.2.23-next.0 ## @backstage/plugin-techdocs-react@1.3.10-next.2 ### Patch Changes - Updated dependencies - @backstage/core-components@0.18.9-next.1 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 ## @backstage/plugin-user-settings@0.9.2-next.2 ### Patch Changes - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/errors@1.3.0-next.0 - @backstage/theme@0.7.3-next.0 - @backstage/core-app-api@1.20.0-next.2 - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 ## @backstage/plugin-user-settings-backend@0.4.2-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/plugin-signals-node@0.1.30-next.2 ## example-app@0.0.34-next.2 ### Patch Changes - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/theme@0.7.3-next.0 - @backstage/plugin-catalog@2.0.2-next.2 - @backstage/core-app-api@1.20.0-next.2 - @backstage/plugin-app@0.4.3-next.2 - @backstage/cli@0.36.1-next.2 - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-auth@0.1.7-next.2 - @backstage/plugin-catalog-import@0.13.12-next.2 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/plugin-catalog-unprocessed-entities@0.2.29-next.2 - @backstage/plugin-notifications@0.5.16-next.2 - @backstage/plugin-catalog-graph@0.6.1-next.2 - @backstage/plugin-scaffolder@1.36.2-next.2 - @backstage/plugin-techdocs@1.17.3-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/core-compat-api@0.5.10-next.2 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-app-api@0.16.2-next.2 - @backstage/frontend-defaults@0.5.1-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/plugin-auth-react@0.1.26-next.1 - @backstage/plugin-devtools@0.1.38-next.2 - @backstage/plugin-search@1.7.1-next.2 - @backstage/plugin-user-settings@0.9.2-next.2 - @backstage/app-defaults@1.7.7-next.2 - @backstage/plugin-home@0.9.4-next.2 - @backstage/plugin-scaffolder-react@1.20.1-next.2 - @backstage/plugin-search-react@1.11.1-next.2 - @backstage/plugin-signals@0.0.30-next.2 - @backstage/plugin-techdocs-react@1.3.10-next.2 - @backstage/integration-react@1.2.17-next.1 - @backstage/plugin-techdocs-module-addons-contrib@1.1.35-next.2 - @backstage/plugin-org@0.7.1-next.2 - @backstage/plugin-api-docs@0.13.6-next.2 - @backstage/plugin-catalog-common@1.1.9-next.0 - @backstage/plugin-kubernetes@0.12.18-next.2 - @backstage/plugin-kubernetes-cluster@0.0.36-next.1 - @backstage/plugin-permission-react@0.4.42-next.1 - @backstage/plugin-search-common@1.2.23-next.0 ## example-app-legacy@0.2.120-next.2 ### Patch Changes - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/theme@0.7.3-next.0 - @backstage/plugin-catalog@2.0.2-next.2 - @backstage/core-app-api@1.20.0-next.2 - @backstage/cli@0.36.1-next.2 - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-catalog-import@0.13.12-next.2 - @backstage/plugin-catalog-react@2.1.2-next.2 - @backstage/plugin-catalog-unprocessed-entities@0.2.29-next.2 - @backstage/plugin-notifications@0.5.16-next.2 - @backstage/plugin-catalog-graph@0.6.1-next.2 - @backstage/plugin-scaffolder@1.36.2-next.2 - @backstage/plugin-techdocs@1.17.3-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/core-plugin-api@1.12.5-next.2 - @backstage/frontend-app-api@0.16.2-next.2 - @backstage/plugin-auth-react@0.1.26-next.1 - @backstage/plugin-devtools@0.1.38-next.2 - @backstage/plugin-search@1.7.1-next.2 - @backstage/plugin-user-settings@0.9.2-next.2 - @backstage/app-defaults@1.7.7-next.2 - @backstage/plugin-home@0.9.4-next.2 - @backstage/plugin-mui-to-bui@0.2.6-next.2 - @backstage/plugin-scaffolder-react@1.20.1-next.2 - @backstage/plugin-search-react@1.11.1-next.2 - @backstage/plugin-signals@0.0.30-next.2 - @backstage/plugin-techdocs-react@1.3.10-next.2 - @backstage/integration-react@1.2.17-next.1 - @backstage/plugin-techdocs-module-addons-contrib@1.1.35-next.2 - @backstage/plugin-org@0.7.1-next.2 - @backstage/plugin-api-docs@0.13.6-next.2 - @backstage/plugin-catalog-common@1.1.9-next.0 - @backstage/plugin-kubernetes@0.12.18-next.2 - @backstage/plugin-kubernetes-cluster@0.0.36-next.1 - @backstage/plugin-permission-react@0.4.42-next.1 - @backstage/plugin-search-common@1.2.23-next.0 ## example-backend@0.0.49-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.7.0-next.2 - @backstage/plugin-mcp-actions-backend@0.1.12-next.2 - @backstage/plugin-catalog-backend@3.6.0-next.2 - @backstage/plugin-events-backend-module-google-pubsub@0.2.2-next.2 - @backstage/backend-defaults@0.16.1-next.2 - @backstage/plugin-auth-backend@0.28.0-next.2 - @backstage/plugin-devtools-backend@0.5.16-next.2 - @backstage/plugin-scaffolder-backend@3.4.0-next.2 - @backstage/plugin-scaffolder-backend-module-github@0.9.8-next.2 - @backstage/plugin-search-backend-node@1.4.3-next.2 - @backstage/plugin-techdocs-backend@2.1.7-next.2 - @backstage/plugin-search-backend-module-techdocs@0.4.13-next.2 - @backstage/backend-plugin-api@1.9.0-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/plugin-app-backend@0.5.13-next.2 - @backstage/plugin-auth-backend-module-guest-provider@0.2.18-next.2 - @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.13-next.2 - @backstage/plugin-catalog-backend-module-unprocessed@0.6.10-next.2 - @backstage/plugin-events-backend@0.6.1-next.2 - @backstage/plugin-kubernetes-backend@0.21.3-next.2 - @backstage/plugin-notifications-backend@0.6.4-next.2 - @backstage/plugin-permission-backend@0.7.11-next.2 - @backstage/plugin-permission-common@0.9.8-next.0 - @backstage/plugin-permission-node@0.10.12-next.2 - @backstage/plugin-proxy-backend@0.6.12-next.1 - @backstage/plugin-search-backend@2.1.1-next.2 - @backstage/plugin-search-backend-module-catalog@0.3.14-next.2 - @backstage/plugin-catalog-backend-module-logs@0.1.21-next.2 - @backstage/plugin-catalog-backend-module-openapi@0.2.21-next.2 - @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.19-next.2 - @backstage/plugin-auth-backend-module-openshift-provider@0.1.6-next.2 - @backstage/plugin-search-backend-module-elasticsearch@1.8.2-next.2 - @backstage/plugin-search-backend-module-explore@0.3.13-next.2 - @backstage/plugin-signals-backend@0.3.14-next.2 - @backstage/plugin-permission-backend-module-allow-all-policy@0.2.18-next.2 - @backstage/plugin-scaffolder-backend-module-notifications@0.1.21-next.2 ## e2e-test@0.2.39-next.1 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/create-app@0.8.2-next.2 - @backstage/cli-common@0.2.1-next.1 ## @internal/frontend@0.0.19-next.2 ### Patch Changes - Updated dependencies - @backstage/filter-predicates@0.1.2-next.0 - @backstage/frontend-plugin-api@0.16.0-next.2 ## techdocs-cli-embedded-app@0.2.119-next.2 ### Patch Changes - Updated dependencies - @backstage/ui@0.14.0-next.2 - @backstage/theme@0.7.3-next.0 - @backstage/plugin-catalog@2.0.2-next.2 - @backstage/core-app-api@1.20.0-next.2 - @backstage/cli@0.36.1-next.2 - @backstage/core-components@0.18.9-next.1 - @backstage/plugin-techdocs@1.17.3-next.2 - @backstage/catalog-model@1.7.8-next.0 - @backstage/config@1.3.7-next.0 - @backstage/frontend-defaults@0.5.1-next.2 - @backstage/frontend-plugin-api@0.16.0-next.2 - @backstage/test-utils@1.7.17-next.2 - @backstage/plugin-techdocs-react@1.3.10-next.2 - @backstage/integration-react@1.2.17-next.1 ## yarn-plugin-backstage@0.0.11-next.1 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/cli-common@0.2.1-next.1 ## @internal/plugin-todo-list-backend@1.0.49-next.2 ### Patch Changes - Updated dependencies - @backstage/errors@1.3.0-next.0 - @backstage/backend-plugin-api@1.9.0-next.2 ## @internal/plugin-todo-list-common@1.0.30-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-permission-common@0.9.8-next.0