# Release v1.46.0 Upgrade Helper: [https://backstage.github.io/upgrade-helper/?to=1.46.0](https://backstage.github.io/upgrade-helper/?to=1.46.0) ## @backstage/plugin-techdocs-addons-test-utils@2.0.0 ### Major Changes - 8d6709e: **BREAKING**: `TechDocsAddonTester.renderWithEffects()` no longer returns a screen; this means that you can no longer grab assertions such as `getByText` from its return value. Newer versions of `@testing-library` recommends using the `screen` export for assertions - and removing this from the addon tester contract allows us to more freely iterate on which underlying version of the testing library is being used. One notable effect of this, however, is that the `@testing-library` `screen` does NOT support assertions on the shadow DOM, which techdocs relies on. You will therefore want to add a dependency on [the `shadow-dom-testing-library` package](https://github.com/konnorrogers/shadow-dom-testing-library/) in your tests, and using its `screen` and its dedicated `*Shadow*` methods. As an example, if you keep doing `getByText` you will not get matches inside the shadow DOM - switch to `getByShadowText` instead. ```ts import { screen } from 'shadow-dom-testing-library'; // ... render the addon ... await TechDocsAddonTester.buildAddonsInTechDocs([]) .withDom(TEST_CONTENT) .renderWithEffects(); expect(screen.getByShadowText('TEST_CONTENT')).toBeInTheDocument(); ``` ### Patch Changes - Updated dependencies - @backstage/core-app-api@1.19.3 - @backstage/plugin-techdocs@1.16.1 - @backstage/plugin-catalog@1.32.1 - @backstage/plugin-catalog-react@1.21.4 - @backstage/plugin-search-react@1.10.1 - @backstage/test-utils@1.7.14 - @backstage/core-plugin-api@1.12.1 - @backstage/integration-react@1.2.13 - @backstage/plugin-techdocs-react@1.3.6 ## @backstage/backend-app-api@1.4.0 ### Minor Changes - 5a2d538: Introduced backend startup result tracking and error handling. The `Backend.start()` method now returns a `BackendStartupResult` with detailed success/failure status and timing information for all plugins and modules. When startup fails, a `BackendStartupError` is thrown that includes the complete startup results, making it easier to diagnose which plugins or modules failed. This also improves the default error message when backend startup fails, and of course makes it possible to craft your own custom error reporting based on the startup results. ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.6.0 ## @backstage/backend-defaults@0.14.0 ### Minor Changes - fa43826: Move `better-sqlite3` from dependencies to peer dependencies - 2bc4e02: **BREAKING** The correct configuration options for Valkey are now being used. These changes are **required** to `app-config.yaml`: ```diff backend: cache: store: valkey connection: ... client: - namespace: 'my-app' - keyPrefixSeparator: ':' + keyPrefix: 'my-app:' - clearBatchSize: 1000 - useUnlink: false ``` In comparison to Redis, Valkey requires the full `keyPrefix` including the separator to be specified instead of separate `namespace` and `keyPrefixSeparator` options. Also, Valkey does not support the `clearBatchSize` and `useUnlink` options. ### Patch Changes - 37fba1d: Added support for Bitbucket Cloud OAuth. This introduces an alternative authentication method using a workspace OAuth consumer, alongside App Passwords (deprecated) and API tokens. OAuth does not require a bot or service account and avoids token expiry issues. **BREAKING CHANGES** - **@backstage/integration** (`src/bitbucketCloud/core.ts`) - `getBitbucketCloudRequestOptions` now returns a `Promise` and **must** be awaited. - **@backstage/plugin-scaffolder-backend-module-bitbucket-cloud** (`src/actions/helpers.ts`) - `getBitbucketClient` now returns a `Promise` and **must** be awaited. - `getAuthorizationHeader` now returns a `Promise` and **must** be awaited. **OAuth usage example** ```yaml integrations: bitbucketCloud: - clientId: client-id clientSecret: client-secret ``` - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - aa79251: build(deps): bump `node-forge` from 1.3.1 to 1.3.2 - f96edff: Allow configuration of the `referrerPolicy` - fb029b6: Updated luxon types - d9759a1: **BREAKING ALPHA**: The old `instanceMetadataService` has been removed from alpha. Please switch over to using the stable `coreServices.rootInstanceMetadata` and related types instead, available from `@backstage/backend-plugin-api`. - 847a330: Fix for `jose` types - 25b560e: Internal change to support new versions of the `logform` library - 2a0c4b0: Adds a new experimental `RootSystemMetadataService` for tracking the collection of Backstage instances that may be deployed at any one time. It currently offers a single API, `getInstalledPlugins` that returns a list of installed plugins based on config you have set up in `discovery.endpoints` as well as the plugins installed on the instance you're calling the API with. It does not handle wildcard values or fallback values. The intention is for this plugin to provide plugin authors with a simple interface to fetch a trustworthy list of all installed plugins. - 3016a79: Updated dependency `@types/archiver` to `^7.0.0`. - 42db6a6: Don't warn when parsing `storeOptions` for `memory` cache - Updated dependencies - @backstage/cli-node@0.2.16 - @backstage/integration@1.19.0 - @backstage/plugin-auth-node@0.6.10 - @backstage/plugin-events-node@0.4.18 - @backstage/plugin-permission-node@0.10.7 - @backstage/backend-app-api@1.4.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/config-loader@1.10.7 - @backstage/backend-dev-utils@0.1.6 ## @backstage/backend-plugin-api@1.6.0 ### Minor Changes - 2a0c4b0: Adds a new experimental `RootSystemMetadataService` for tracking the collection of Backstage instances that may be deployed at any one time. It currently offers a single API, `getInstalledPlugins` that returns a list of installed plugins based on config you have set up in `discovery.endpoints` as well as the plugins installed on the instance you're calling the API with. It does not handle wildcard values or fallback values. The intention is for this plugin to provide plugin authors with a simple interface to fetch a trustworthy list of all installed plugins. ### Patch Changes - d9759a1: **BREAKING ALPHA**: The old `instanceMetadataService` has been removed from alpha. Please switch over to using the stable `coreServices.rootInstanceMetadata` and related types instead, available from `@backstage/backend-plugin-api`. - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/plugin-permission-node@0.10.7 - @backstage/cli-common@0.1.16 ## @backstage/cli@0.35.0 ### Minor Changes - f6f22a9: Provide `--no-node-snapshot` by default when running the `package start` or `package test`. You can disable this behavior by providing `NODE_OPTIONS='--node-snapshot'`. - f8dff94: Switched the default module resolution to `bundler` and the `module` setting to `ES2020`. You may need to bump some dependencies as part of this change and fix imports in code. The most common source of this is that type checking will now consider the `exports` field in `package.json` when resolving imports. This in turn can break older versions of packages that had incompatible `exports` fields. Generally these issues will have already been fixed in the upstream packages. You might be tempted to use `--skipLibCheck` to hide issues due to this change, but it will weaken the type safety of your project. If you run into a large number of issues and want to keep the old behavior, you can reset the `moduleResolution` and `module` settings your own `tsconfig.json` file to `node` and `ESNext` respectively. But keep in mind that the `node` option will be removed in future versions of TypeScript. A future version of Backstage will make these new settings mandatory, as we move to rely on the `exports` field for type resolution in packages, rather than the `typesVersions` field. - cd0b8a1: **BREAKING**: `jest` is now a peer dependency. If you run tests using Backstage CLI, you must add Jest and its environment dependencies as `devDependencies` in your project. You can choose to install either Jest 29 or Jest 30. The built-in Jest version before this change was Jest 29, however, we recommend that you switch to Jest 30. Upgrading will solve the `Could not parse CSS stylesheet` errors, allow you to use MSW v2 in web packages, and ensure that you remain compatible with future versions of the Backstage CLI. Support for Jest 29 is temporary, with the purpose of allowing you to upgrade at your own pace, but it will eventually be removed. - **Jest 29**: Install `jest@^29` and `jest-environment-jsdom@^29`. No migration needed, but you may see `Could not parse CSS stylesheet` warnings/errors when testing components from `@backstage/ui` or other packages using CSS `@layer` declarations. - **Jest 30**: Install `jest@^30`, `@jest/environment-jsdom-abstract@^30`, and `jsdom@^27`. Fixes the stylesheet parsing warnings/errors, but requires migration steps. See the [Jest 30 migration guide](https://backstage.io/docs/tutorials/jest30-migration) for detailed migration instructions. ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - e7db290: Add missing peer/dev dependencies to the frontend plugin template. `react-dom` was not declared as a peer dependency, causing module resolution errors when generating plugins outside a Backstage monorepo. This adds `react-dom` to `peerDependencies` (for consuming apps) and `devDependencies` (for local development). `react-router-dom` is also added to `peerDependencies` (for consuming apps) and `devDependencies` to support routing during plugin development. Fixes: - Module not found: Can't resolve 'react-dom' - Module not found: Can't resolve 'react-router-dom' - 1226647: Updated dependency `esbuild` to `^0.27.0`. - f89a074: Updated dependency `@pmmmwh/react-refresh-webpack-plugin` to `^0.6.0`. - 2b81751: Updated dependency `webpack` to `~5.103.0`. - fafd9e1: Fixed internal usage of `yargs`. - c8c2329: Add proxy configuration from env-vars to create-app tasks - 2bae83a: Switched compilation target to ES2022 in order to match the new set of supported Node.js versions, which are 22 and 24. The TypeScript compilation target has been set to ES2022, because setting it to a higher target will break projects on older TypeScript versions. If you use a newer TypeScript version in your own project, you can bump `compilerOptions.target` to ES2023 or ES2024 in your own `tsconfig.json` file. - 7fbac5c: Updated to use new utilities from `@backstage/cli-common`. - 2bae83a: Bumped dev dependencies `@types/node` - Updated dependencies - @backstage/cli-node@0.2.16 - @backstage/integration@1.19.0 - @backstage/cli-common@0.1.16 - @backstage/config-loader@1.10.7 ## @backstage/integration@1.19.0 ### Minor Changes - 37fba1d: Added support for Bitbucket Cloud OAuth. This introduces an alternative authentication method using a workspace OAuth consumer, alongside App Passwords (deprecated) and API tokens. OAuth does not require a bot or service account and avoids token expiry issues. **BREAKING CHANGES** - **@backstage/integration** (`src/bitbucketCloud/core.ts`) - `getBitbucketCloudRequestOptions` now returns a `Promise` and **must** be awaited. - **@backstage/plugin-scaffolder-backend-module-bitbucket-cloud** (`src/actions/helpers.ts`) - `getBitbucketClient` now returns a `Promise` and **must** be awaited. - `getAuthorizationHeader` now returns a `Promise` and **must** be awaited. **OAuth usage example** ```yaml integrations: bitbucketCloud: - clientId: client-id clientSecret: client-secret ``` ### Patch Changes - a26a322: Added support for using a GitHub App installation to generate tokens for public repository access when the `publicAccess` option is enabled. When all other authentication methods fail (e.g., the app is not installed in that organization), the provider will now use an available installation to generate a token that can be used to access public repositories as read only. - fb029b6: Updated luxon types - e15fdae: Made the github urls case insensitive. ## @backstage/ui@0.10.0 ### Minor Changes - 16543fa: **Breaking change** The `Cell` component has been refactored to be a generic wrapper component that accepts `children` for custom cell content. The text-specific functionality (previously part of `Cell`) has been moved to a new `CellText` component. ### Migration Guide If you were using `Cell` with text-specific props (`title`, `description`, `leadingIcon`, `href`), you need to update your code to use `CellText` instead: **Before:** ```tsx } href="/path" /> ``` **After:** ```tsx } href="/path" /> ``` For custom cell content, use the new generic `Cell` component: ```tsx {/* Your custom content */} ``` ### Patch Changes - 50b7927: Fixed Checkbox indicator showing checkmark color when unchecked. Affected components: Checkbox - 5bacf55: Fixed `ButtonIcon` incorrectly applying `className` to inner elements instead of only the root element. Affected components: ButtonIcon - b3ad928: Fixed Table Row component to correctly handle cases where no `href` is provided, preventing unnecessary router provider wrapping and fixing the cursor incorrectly showing as a pointer despite the element not being a link. Affected components: Row - a20d317: Added row selection support with visual state styling for hover, selected, and pressed states. Fixed checkbox rendering to only show for multi-select toggle mode. Affected components: Table, TableHeader, Row, Column - fe7c751: Fixed `useTable` hook to prioritize `providedRowCount` over data length for accurate row count in server-side pagination scenarios. - c145031: Fixed Table column sorting indicator to show up arrow when no sort is active, correctly indicating that clicking will sort ascending. Affected components: Column ## @backstage/plugin-auth-backend-module-github-provider@0.4.0 ### Minor Changes - b3286d5: Added the `github.com/user-id` annotation to store GitHub's user ID (immutable) in user entities. Also includes addition of the `userIdMatchingUserEntityAnnotation` sign-in resolver that matches users by the new ID. ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-catalog-backend@3.3.0 ### Minor Changes - dce1824: Added `ActionsRegistry` actions for `register-entity` and `unregister-entity` ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - 8101ec1: Fixed default refresh service to go through the whole ancestry of the entity. - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-openapi-utils@0.6.4 - @backstage/plugin-events-node@0.4.18 - @backstage/plugin-permission-node@0.10.7 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-github@0.12.0 ### Minor Changes - b3286d5: Added the `github.com/user-id` annotation to store GitHub's user ID (immutable) in user entities. Also includes addition of the `userIdMatchingUserEntityAnnotation` sign-in resolver that matches users by the new ID. ### Patch Changes - ed5a7a3: Introduce new configuration option to exclude suspended users from GitHub Enterprise instances. When it’s set to true, suspended users won’t be returned when querying the organization users for GitHub Enterprise instances. Note that this option should be used only against GitHub Enterprise instances, the property does not exist in the github.com GraphQL schema, setting it will cause a schema validation error and the syncing of users will fail. - a413977: Added configurable `pageSizes` option to `GithubOrgEntityProvider` for GitHub GraphQL API queries to prevent `RESOURCE_LIMITS_EXCEEDED` errors with organizations with large number of teams and members. This aligns the configuration options with `GithubMultiOrgEntityProvider`. - Updated dependencies - @backstage/integration@1.19.0 - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-events-backend-module-kafka@0.2.0 ### Minor Changes - 2c74ea9: Added support for multiple named instances in `kafkaConsumingEventPublisher` configuration. The previous single configuration format is still supported for backward compatibility. - 2c74ea9: Added `KafkaPublishingEventConsumer` to support sending Backstage events to Kafka topics. This addition enables Backstage to publish events to external Kafka systems, complementing the existing ability to receive events from Kafka. This allows for better integration with external systems that rely on Kafka for event streaming. ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-kubernetes-backend@0.21.0 ### Minor Changes - 7f9846f: Add possibility to extends Kubernetes REST API. Add fetcher to parameters for custom objects provider ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - fb029b6: Updated luxon types - e9589d9: Replace `@aws-sdk/signature-v4` with `@smithy/signature-v4`, as stated in the [package documentation](https://www.npmjs.com/package/@aws-sdk/signature-v4?activeTab=readme) - 8fa8d87: Add Kubernetes Plugin Secrets Accordion with masked secret datas - Updated dependencies - @backstage/plugin-permission-node@0.10.7 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-kubernetes-node@0.4.0 - @backstage/plugin-kubernetes-common@0.9.9 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-kubernetes-node@0.4.0 ### Minor Changes - 7f9846f: Add possibility to extends Kubernetes REST API. Add fetcher to parameters for custom objects provider ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-kubernetes-common@0.9.9 ## @backstage/plugin-notifications-backend-module-slack@0.3.0 ### Minor Changes - f95a516: Enables optional routes to Slack channels for broadcast notifications based on origin and/or topics. ### Patch Changes - b80857a: Slack notification handler throttling can now be configured with the `concurrencyLimit` and `throttleInterval` options. - f8230e4: Updated dependency `@faker-js/faker` to `^10.0.0`. - Updated dependencies - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 - @backstage/plugin-notifications-node@0.2.22 ## @backstage/plugin-scaffolder@1.35.0 ### Minor Changes - dab3d3f: Added field extension `RepoOwnerPicker` for retrieving GitHub repository owners. ### Patch Changes - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - be21c5c: Updated dependency `@rjsf/utils` to `5.24.13`. Updated dependency `@rjsf/core` to `5.24.13`. Updated dependency `@rjsf/material-ui` to `5.24.13`. Updated dependency `@rjsf/validator-ajv8` to `5.24.13`. - Updated dependencies - @backstage/integration@1.19.0 - @backstage/frontend-plugin-api@0.13.2 - @backstage/plugin-scaffolder-react@1.19.4 - @backstage/core-components@0.18.4 - @backstage/plugin-catalog-react@1.21.4 - @backstage/core-plugin-api@1.12.1 - @backstage/integration-react@1.2.13 - @backstage/plugin-permission-react@0.4.39 - @backstage/plugin-scaffolder-common@1.7.4 - @backstage/plugin-techdocs-react@1.3.6 ## @backstage/plugin-scaffolder-backend@3.1.0 ### Minor Changes - a4cd405: Add `defaultEnvironment` config to scaffolder to enable more flexible and custom templates. Now it's possible enable access to default parameters and secrets in templates, improving security and reducing complexity. ### Patch Changes - be5972b: Fixed a bug where config was not passed to NunjucksWorkflowRunner, causing defaultEnvironment to be undefined - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - 2bae83a: Updated `isolated-vm` to `6.0.1` - 25b560e: Internal change to support new versions of the `logform` library - 8f4aded: Fixing OpenAPI definition - 1226647: Updated dependency `esbuild` to `^0.27.0`. - Updated dependencies - @backstage/plugin-scaffolder-backend-module-gitlab@0.11.0 - @backstage/integration@1.19.0 - @backstage/plugin-auth-node@0.6.10 - @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.3.0 - @backstage/plugin-bitbucket-cloud-common@0.3.5 - @backstage/backend-defaults@0.14.0 - @backstage/backend-openapi-utils@0.6.4 - @backstage/plugin-events-node@0.4.18 - @backstage/plugin-permission-node@0.10.7 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-backend-module-github@0.9.3 - @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.16 - @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.17 - @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.15 - @backstage/plugin-catalog-node@1.20.1 - @backstage/plugin-scaffolder-backend-module-azure@0.2.16 - @backstage/plugin-scaffolder-backend-module-gerrit@0.2.16 - @backstage/plugin-scaffolder-backend-module-gitea@0.2.16 - @backstage/plugin-scaffolder-common@1.7.4 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.3.0 ### Minor Changes - 37fba1d: Added support for Bitbucket Cloud OAuth. This introduces an alternative authentication method using a workspace OAuth consumer, alongside App Passwords (deprecated) and API tokens. OAuth does not require a bot or service account and avoids token expiry issues. **BREAKING CHANGES** - **@backstage/integration** (`src/bitbucketCloud/core.ts`) - `getBitbucketCloudRequestOptions` now returns a `Promise` and **must** be awaited. - **@backstage/plugin-scaffolder-backend-module-bitbucket-cloud** (`src/actions/helpers.ts`) - `getBitbucketClient` now returns a `Promise` and **must** be awaited. - `getAuthorizationHeader` now returns a `Promise` and **must** be awaited. **OAuth usage example** ```yaml integrations: bitbucketCloud: - clientId: client-id clientSecret: client-secret ``` ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/plugin-bitbucket-cloud-common@0.3.5 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/plugin-scaffolder-backend-module-gitlab@0.11.0 ### Minor Changes - f2d034b: In the `gitlabRepoPush` action, add 'auto' possibility for `commitAction` input. ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/plugin-search-backend-node@1.4.0 ### Minor Changes - 4d3ddb9: Improving method that search tokenizer breaks apart entity names ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.6.0 ## @backstage/app-defaults@1.7.3 ### Patch Changes - Updated dependencies - @backstage/core-app-api@1.19.3 - @backstage/core-components@0.18.4 - @backstage/core-plugin-api@1.12.1 - @backstage/theme@0.7.1 - @backstage/plugin-permission-react@0.4.39 ## @backstage/backend-dev-utils@0.1.6 ### Patch Changes - 2bae83a: Internal update for Node.js v24 support. ## @backstage/backend-dynamic-feature-service@0.7.7 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/cli-node@0.2.16 - @backstage/plugin-search-backend-node@1.4.0 - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-defaults@0.14.0 - @backstage/backend-openapi-utils@0.6.4 - @backstage/plugin-app-node@0.1.40 - @backstage/plugin-catalog-backend@3.3.0 - @backstage/plugin-events-backend@0.5.9 - @backstage/plugin-events-node@0.4.18 - @backstage/plugin-permission-node@0.10.7 - @backstage/backend-plugin-api@1.6.0 - @backstage/cli-common@0.1.16 - @backstage/config-loader@1.10.7 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/backend-openapi-utils@0.6.4 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/backend-plugin-api@1.6.0 ## @backstage/backend-test-utils@1.10.2 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - 8be23a4: Switched `textextensions` dependency for `text-extensions`. - 5a737e1: Fix PostgreSQL 18 `TestDatabases` by pinning the data directory - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-defaults@0.14.0 - @backstage/plugin-events-node@0.4.18 - @backstage/backend-app-api@1.4.0 - @backstage/backend-plugin-api@1.6.0 ## @backstage/cli-common@0.1.16 ### Patch Changes - 5cfb2a4: Added new `run`, `runOutput`, and `runCheck` utilities to help run child processes in a safe and portable way. - c8c2329: Add proxy configuration from env-vars to create-app tasks - 2bae83a: Bumped dev dependencies `@types/node` ## @backstage/cli-node@0.2.16 ### Patch Changes - 4e8c726: Updated to use new utilities from `@backstage/cli-common`. - Updated dependencies - @backstage/cli-common@0.1.16 ## @backstage/codemods@0.1.53 ### Patch Changes - 688f070: Updated to use new utilities from `@backstage/cli-common`. - 2bae83a: Bumped dev dependencies `@types/node` - Updated dependencies - @backstage/cli-common@0.1.16 ## @backstage/config-loader@1.10.7 ### Patch Changes - 741c47a: Updated dependency `typescript-json-schema` to `^0.67.0`. - Updated dependencies - @backstage/cli-common@0.1.16 ## @backstage/core-app-api@1.19.3 ### Patch Changes - 75683ed: Added replay functionality to `AlertApiForwarder` to buffer and replay recent alerts to new subscribers, preventing missed alerts that were posted before subscription. - 97cd16f: Internal update of translation imports. - Updated dependencies - @backstage/core-plugin-api@1.12.1 ## @backstage/core-compat-api@0.5.5 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/plugin-catalog-react@1.21.4 - @backstage/core-plugin-api@1.12.1 ## @backstage/core-components@0.18.4 ### Patch Changes - 9a942a4: Fixed bug in the `LogViewer` component where shift + click always opened a new window instead of just changing the selection. In addition, improved the `LogViewer` component by a few usability enhancements: - Added support for multiple selections using cmd/ctrl + click - Improved the generated hash that is added to the URL to also support ranges & multiple selections - Added an hover effect & info tooltip to the "Copy to clipboard" button to indicate its functionality - Added some color and a separator to the line numbers to improve readability - 207c3c8: long words like urls now breaks to new line on warning panels instead of overflowing the container - 4c00303: Add `tooltipClasses` prop to `OverflowTooltip` component to allow customisation of the tooltip - 5d52dab: Add i18n support for LogViewer search control - f6b49ce: added support for wrapLongLines option in CodeSnippet - Updated dependencies - @backstage/core-plugin-api@1.12.1 - @backstage/theme@0.7.1 ## @backstage/core-plugin-api@1.12.1 ### Patch Changes - 358c6f7: The `useApp` and `useRouteRef` functions are now forwards compatible with the new frontend system. Along with the previous route reference changes this means that there is no longer a need to use `compatWrapper` from `@backstage/core-compat-api` to make code based on `@backstage/core-plugin-api` compatible with `@backstage/frontend-plugin-api` APIs. - 97cd16f: Reversed the relationship between the old `@backstage/core-plugin-api` and the new `@backstage/frontend-plugin-api`. Previously, the a lot of API definitions and utilities where defined in the old and re-exported from the old, but this change flips that around so that they now reside in the new package and are re-exported from the old. The external API of both packages remain the same, but this is a step towards being able to add further compatibility with the new frontend system built into the old. - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 ## @backstage/create-app@0.7.7 ### Patch Changes - 336db00: Bumped create-app version. - 2bae83a: Updated engines to support Node 22 or 24 - c8c2329: Add proxy configuration from env-vars to create-app tasks - 2bae83a: Bumped dev dependencies `@types/node` - Updated dependencies - @backstage/cli-common@0.1.16 ## @backstage/dev-utils@1.1.18 ### Patch Changes - Updated dependencies - @backstage/core-app-api@1.19.3 - @backstage/ui@0.10.0 - @backstage/core-components@0.18.4 - @backstage/plugin-catalog-react@1.21.4 - @backstage/core-plugin-api@1.12.1 - @backstage/theme@0.7.1 - @backstage/app-defaults@1.7.3 - @backstage/integration-react@1.2.13 ## @backstage/frontend-app-api@0.13.3 ### Patch Changes - Updated dependencies - @backstage/core-app-api@1.19.3 - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-plugin-api@1.12.1 - @backstage/frontend-defaults@0.3.4 ## @backstage/frontend-defaults@0.3.4 ### Patch Changes - Updated dependencies - @backstage/plugin-app@0.3.3 - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/frontend-app-api@0.13.3 ## @backstage/frontend-dynamic-feature-loader@0.1.8 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 ## @backstage/frontend-plugin-api@0.13.2 ### Patch Changes - 75683ed: Added a new `errorPresentation` prop to `ExtensionBoundary` to control how errors are presented to the user. The default is `'error-display'`, which is the current behavior of showing the error in the `ErrorDisplay` component. The new option is `'error-api'`, posts errors to the `ErrorApi` and does not allow retries. The `AppRootElementBlueprint` now wraps its element in an `ErrorBoundary` using the new `'error-api'` presentation mode. - 0bc1ce9: Fixed a versioning conflict that could result in a `.withContext` is not a function error. - f3f84f1: Made the return type of `.withOverrides` to be simplified. - 97cd16f: Reversed the relationship between the old `@backstage/core-plugin-api` and the new `@backstage/frontend-plugin-api`. Previously, the a lot of API definitions and utilities where defined in the old and re-exported from the old, but this change flips that around so that they now reside in the new package and are re-exported from the old. The external API of both packages remain the same, but this is a step towards being able to add further compatibility with the new frontend system built into the old. - 9b8bde4: Removed unnecessary dependencies on `@backstage/core-components`, `@backstage/config`, `@material-ui/core`, and `lodash`. ## @backstage/frontend-test-utils@0.4.2 ### Patch Changes - Updated dependencies - @backstage/plugin-app@0.3.3 - @backstage/frontend-plugin-api@0.13.2 - @backstage/test-utils@1.7.14 - @backstage/frontend-app-api@0.13.3 ## @backstage/integration-react@1.2.13 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/core-plugin-api@1.12.1 ## @backstage/repo-tools@0.16.1 ### Patch Changes - 688f070: Updated to use new utilities from `@backstage/cli-common`. - 85895f9: Updates OpenAPI generator templates to preserve original property names (like 'group-name', 'user-id') from OpenAPI specs when propertyNaming=original is specified. Previously, these were always converted to camelCase regardless of the propertyNaming setting. - Updates modelGeneric.mustache templates in both client and server generators - Updates modelTaggedUnion.mustache templates in both client and server generators - Uses {{baseName}} when available, falls back to {{name}} for backward compatibility - Maintains backward compatibility - no changes when propertyNaming=original is not used - 2bae83a: Bump `@microsoft/api-documenter` and `@microsoft/api-extractor` to latest versions. - d1e38a7: Properly create workspace in OS temporary directory for `generate-patch` command - 2bae83a: Bumped dev dependencies `@types/node` - Updated dependencies - @backstage/cli-node@0.2.16 - @backstage/backend-plugin-api@1.6.0 - @backstage/cli-common@0.1.16 - @backstage/config-loader@1.10.7 ## @techdocs/cli@1.10.3 ### Patch Changes - 43629b1: Updated to use new utilities from `@backstage/cli-common`. - 2bae83a: Bumped dev dependencies `@types/node` - Updated dependencies - @backstage/backend-defaults@0.14.0 - @backstage/plugin-techdocs-node@1.13.10 - @backstage/cli-common@0.1.16 ## @backstage/test-utils@1.7.14 ### Patch Changes - 97cd16f: Internal update of translation imports. - Updated dependencies - @backstage/core-app-api@1.19.3 - @backstage/core-plugin-api@1.12.1 - @backstage/theme@0.7.1 - @backstage/plugin-permission-react@0.4.39 ## @backstage/theme@0.7.1 ### Patch Changes - fa06f6b: Added a `themeName` prop to `UnifiedThemeProvider`, enabling Backstage UI `data-theme-name` CSS attribute to be set based on active theme. ## @backstage/plugin-api-docs@0.13.2 ### Patch Changes - f3f84f1: Minor extension type updates after frontend API bump - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - Updated dependencies - @backstage/plugin-catalog@1.32.1 - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/plugin-catalog-react@1.21.4 - @backstage/core-plugin-api@1.12.1 - @backstage/plugin-permission-react@0.4.39 ## @backstage/plugin-app@0.3.3 ### Patch Changes - f3f84f1: Minor extension type updates after frontend API bump - f7bc228: Support to set `defaultLanguage` and `availableLanguages` for the app language API in the new frontend system - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/core-plugin-api@1.12.1 - @backstage/theme@0.7.1 - @backstage/integration-react@1.2.13 - @backstage/plugin-permission-react@0.4.39 ## @backstage/plugin-app-backend@0.5.9 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/plugin-app-node@0.1.40 - @backstage/backend-plugin-api@1.6.0 - @backstage/config-loader@1.10.7 ## @backstage/plugin-app-node@0.1.40 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/backend-plugin-api@1.6.0 - @backstage/config-loader@1.10.7 ## @backstage/plugin-app-visualizer@0.1.26 ### Patch Changes - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - Updated dependencies - @backstage/ui@0.10.0 - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/core-plugin-api@1.12.1 ## @backstage/plugin-auth@0.1.3 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/theme@0.7.1 ## @backstage/plugin-auth-backend@0.25.7 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-auth-backend-module-atlassian-provider@0.4.10 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-auth0-provider@0.2.10 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.10 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/plugin-auth-backend@0.25.7 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.15 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.10 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.10 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.10 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.10 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-gitlab-provider@0.3.10 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-google-provider@0.3.10 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-guest-provider@0.2.15 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-microsoft-provider@0.3.10 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-oauth2-provider@0.4.10 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.15 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-oidc-provider@0.4.10 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/plugin-auth-backend@0.25.7 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-okta-provider@0.2.10 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-onelogin-provider@0.3.10 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-openshift-provider@0.1.3 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-pinniped-provider@0.3.10 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-backend-module-vmware-cloud-provider@0.5.10 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-node@0.6.10 ### Patch Changes - 2389358: remove leading dot in auth cookie cleanup call - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - b35f8b2: Fixed chunked cookie replacing edge case in OAuthCookieManager class where some of the old chunks would not get removed if new chunked cookie would have fewer chunks. - e9dd634: fix flawed cookie removal logic with chunked tokens - Updated dependencies - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-auth-react@0.1.22 ### Patch Changes - Updated dependencies - @backstage/core-components@0.18.4 - @backstage/core-plugin-api@1.12.1 ## @backstage/plugin-bitbucket-cloud-common@0.3.5 ### Patch Changes - 37fba1d: Added support for Bitbucket Cloud OAuth. This introduces an alternative authentication method using a workspace OAuth consumer, alongside App Passwords (deprecated) and API tokens. OAuth does not require a bot or service account and avoids token expiry issues. **BREAKING CHANGES** - **@backstage/integration** (`src/bitbucketCloud/core.ts`) - `getBitbucketCloudRequestOptions` now returns a `Promise` and **must** be awaited. - **@backstage/plugin-scaffolder-backend-module-bitbucket-cloud** (`src/actions/helpers.ts`) - `getBitbucketClient` now returns a `Promise` and **must** be awaited. - `getAuthorizationHeader` now returns a `Promise` and **must** be awaited. **OAuth usage example** ```yaml integrations: bitbucketCloud: - clientId: client-id clientSecret: client-secret ``` - Updated dependencies - @backstage/integration@1.19.0 ## @backstage/plugin-catalog@1.32.1 ### Patch Changes - f3f84f1: Minor extension type updates after frontend API bump - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - 91f5ed8: Fixed `catalogAboutEntityCard` to filter icon links before calling useProps(), preventing side effects from hooks in filtered-out links - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/plugin-catalog-react@1.21.4 - @backstage/plugin-search-react@1.10.1 - @backstage/core-plugin-api@1.12.1 - @backstage/core-compat-api@0.5.5 - @backstage/integration-react@1.2.13 - @backstage/plugin-permission-react@0.4.39 - @backstage/plugin-scaffolder-common@1.7.4 - @backstage/plugin-techdocs-react@1.3.6 ## @backstage/plugin-catalog-backend-module-aws@0.4.18 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-defaults@0.14.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-kubernetes-common@0.9.9 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-azure@0.3.12 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.9 ### Patch Changes - Updated dependencies - @backstage/backend-openapi-utils@0.6.4 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-bitbucket-cloud@0.5.6 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/plugin-bitbucket-cloud-common@0.3.5 - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-bitbucket-server@0.5.6 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-gcp@0.3.15 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-kubernetes-common@0.9.9 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-gerrit@0.3.9 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-gitea@0.1.7 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-github-org@0.3.17 ### Patch Changes - ed5a7a3: Introduce new configuration option to exclude suspended users from GitHub Enterprise instances. When it’s set to true, suspended users won’t be returned when querying the organization users for GitHub Enterprise instances. Note that this option should be used only against GitHub Enterprise instances, the property does not exist in the github.com GraphQL schema, setting it will cause a schema validation error and the syncing of users will fail. - Updated dependencies - @backstage/plugin-events-node@0.4.18 - @backstage/plugin-catalog-backend-module-github@0.12.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-gitlab@0.7.6 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-defaults@0.14.0 - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-gitlab-org@0.2.16 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-backend-module-gitlab@0.7.6 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.7 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - fb029b6: Updated luxon types - Updated dependencies - @backstage/backend-defaults@0.14.0 - @backstage/plugin-catalog-backend@3.3.0 - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-ldap@0.12.1 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-logs@0.1.17 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-backend@3.3.0 - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-catalog-backend-module-msgraph@0.8.3 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-openapi@0.2.17 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-puppetdb@0.2.17 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.15 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 - @backstage/plugin-scaffolder-common@1.7.4 ## @backstage/plugin-catalog-backend-module-unprocessed@0.6.7 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-unprocessed-entities-common@0.0.12 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-catalog-graph@0.5.4 ### Patch Changes - a67c144: Fixed zoom out description (replace `&` with &) - f3f84f1: Minor extension type updates after frontend API bump - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/plugin-catalog-react@1.21.4 - @backstage/core-plugin-api@1.12.1 ## @backstage/plugin-catalog-import@0.13.8 ### Patch Changes - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - Updated dependencies - @backstage/integration@1.19.0 - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/plugin-catalog-react@1.21.4 - @backstage/core-plugin-api@1.12.1 - @backstage/integration-react@1.2.13 - @backstage/plugin-permission-react@0.4.39 ## @backstage/plugin-catalog-node@1.20.1 ### Patch Changes - Updated dependencies - @backstage/plugin-permission-node@0.10.7 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-catalog-react@1.21.4 ### Patch Changes - 6d39141: Fixed an issue where `EntityOwnerPicker` failed to filter options when the input text contained uppercase characters. - b3c0594: Use a versioned context for `useEntityList`, to better work with mixed `@backstage/plugin-catalog-react` versions. - c51c901: $contains may have string value in an entity filter. Typescript type and Zod parser were not the same. - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/core-plugin-api@1.12.1 - @backstage/core-compat-api@0.5.5 - @backstage/frontend-test-utils@0.4.2 - @backstage/integration-react@1.2.13 - @backstage/plugin-permission-react@0.4.39 ## @backstage/plugin-catalog-unprocessed-entities@0.2.24 ### Patch Changes - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - df4d646: Moved types, API and client to the common package, allowing both frontend and backend plugins to use the `CatalogUnprocessedEntitiesClient`. The following types, clients and interfaces have been deprecated and should be imported from the `@backstage/plugin-catalog-unprocessed-entities-common` instead: `CatalogUnprocessedEntitiesApi`, `CatalogUnprocessedEntitiesApiResponse`, `UnprocessedEntity`, `UnprocessedEntityCache`, `UnprocessedEntityError`, `CatalogUnprocessedEntitiesClient`. All those types, clients and interfaces are re-exported temporarily in the `@backstage/plugin-catalog-unprocessed-entities` package until cleaned up. - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/core-plugin-api@1.12.1 - @backstage/plugin-catalog-unprocessed-entities-common@0.0.12 ## @backstage/plugin-catalog-unprocessed-entities-common@0.0.12 ### Patch Changes - df4d646: Moved types, API and client to the common package, allowing both frontend and backend plugins to use the `CatalogUnprocessedEntitiesClient`. The following types, clients and interfaces have been deprecated and should be imported from the `@backstage/plugin-catalog-unprocessed-entities-common` instead: `CatalogUnprocessedEntitiesApi`, `CatalogUnprocessedEntitiesApiResponse`, `UnprocessedEntity`, `UnprocessedEntityCache`, `UnprocessedEntityError`, `CatalogUnprocessedEntitiesClient`. All those types, clients and interfaces are re-exported temporarily in the `@backstage/plugin-catalog-unprocessed-entities` package until cleaned up. ## @backstage/plugin-config-schema@0.1.75 ### Patch Changes - Updated dependencies - @backstage/core-components@0.18.4 - @backstage/core-plugin-api@1.12.1 ## @backstage/plugin-devtools@0.1.34 ### Patch Changes - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - 291bf9d: Added scheduled tasks UI feature for the DevTools plugin - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/core-plugin-api@1.12.1 - @backstage/plugin-devtools-common@0.1.20 - @backstage/core-compat-api@0.5.5 - @backstage/plugin-permission-react@0.4.39 ## @backstage/plugin-devtools-backend@0.5.12 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - 291bf9d: Added scheduled tasks UI feature for the DevTools plugin - Updated dependencies - @backstage/backend-defaults@0.14.0 - @backstage/plugin-permission-node@0.10.7 - @backstage/backend-plugin-api@1.6.0 - @backstage/cli-common@0.1.16 - @backstage/config-loader@1.10.7 - @backstage/plugin-devtools-common@0.1.20 ## @backstage/plugin-devtools-common@0.1.20 ### Patch Changes - 291bf9d: Added scheduled tasks UI feature for the DevTools plugin ## @backstage/plugin-events-backend@0.5.9 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/backend-openapi-utils@0.6.4 - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-events-backend-module-aws-sqs@0.4.18 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-events-backend-module-azure@0.2.27 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-events-backend-module-bitbucket-cloud@0.2.27 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-events-backend-module-bitbucket-server@0.1.8 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-events-backend-module-gerrit@0.2.27 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-events-backend-module-github@0.4.7 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-events-backend-module-gitlab@0.3.8 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-events-backend-module-google-pubsub@0.1.7 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-events-backend-test-utils@0.1.51 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.4.18 ## @backstage/plugin-events-node@0.4.18 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-gateway-backend@1.1.1 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - 7e860dd: Updated dependency `eventsource` to `^4.0.0`. - Updated dependencies - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-home@0.8.15 ### Patch Changes - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - be21c5c: Updated dependency `@rjsf/utils` to `5.24.13`. Updated dependency `@rjsf/core` to `5.24.13`. Updated dependency `@rjsf/material-ui` to `5.24.13`. Updated dependency `@rjsf/validator-ajv8` to `5.24.13`. - Updated dependencies - @backstage/core-app-api@1.19.3 - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/plugin-catalog-react@1.21.4 - @backstage/core-plugin-api@1.12.1 - @backstage/plugin-home-react@0.1.33 - @backstage/theme@0.7.1 ## @backstage/plugin-home-react@0.1.33 ### Patch Changes - be21c5c: Updated dependency `@rjsf/utils` to `5.24.13`. Updated dependency `@rjsf/core` to `5.24.13`. Updated dependency `@rjsf/material-ui` to `5.24.13`. Updated dependency `@rjsf/validator-ajv8` to `5.24.13`. - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/core-plugin-api@1.12.1 ## @backstage/plugin-kubernetes@0.12.14 ### Patch Changes - f15d5f1: add missing i18n support for kubernetes and kubernetes-react - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/plugin-kubernetes-react@0.5.14 - @backstage/core-components@0.18.4 - @backstage/plugin-catalog-react@1.21.4 - @backstage/plugin-kubernetes-common@0.9.9 - @backstage/core-plugin-api@1.12.1 - @backstage/plugin-permission-react@0.4.39 ## @backstage/plugin-kubernetes-cluster@0.0.32 ### Patch Changes - 2bae83a: Bumped dev dependencies `@types/node` - Updated dependencies - @backstage/plugin-kubernetes-react@0.5.14 - @backstage/core-components@0.18.4 - @backstage/plugin-catalog-react@1.21.4 - @backstage/plugin-kubernetes-common@0.9.9 - @backstage/core-plugin-api@1.12.1 - @backstage/plugin-permission-react@0.4.39 ## @backstage/plugin-kubernetes-common@0.9.9 ### Patch Changes - 8fa8d87: Add Kubernetes Plugin Secrets Accordion with masked secret datas ## @backstage/plugin-kubernetes-react@0.5.14 ### Patch Changes - f966a85: Enabled a pod terminal at GKE - 8fa8d87: Add Kubernetes Plugin Secrets Accordion with masked secret datas - f15d5f1: add missing i18n support for kubernetes and kubernetes-react - Updated dependencies - @backstage/core-components@0.18.4 - @backstage/plugin-kubernetes-common@0.9.9 - @backstage/core-plugin-api@1.12.1 ## @backstage/plugin-mcp-actions-backend@0.1.6 ### Patch Changes - e83e038: Added `@cfworker/json-schema` as a dependency to this package part of the `@modelcontextprotocol/sdk` bump as it's required in the types - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - 79ef471: Clarify error handling in readme and update handleError.ts to include all backstage/errors - Updated dependencies - @backstage/backend-defaults@0.14.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-mui-to-bui@0.2.2 ### Patch Changes - Updated dependencies - @backstage/ui@0.10.0 - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-plugin-api@1.12.1 - @backstage/theme@0.7.1 ## @backstage/plugin-notifications@0.5.12 ### Patch Changes - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - 53347cc: Move long notification descriptions behind `Show more/less` button. This improves readability of the notifications list by preventing long descriptions from taking up too much space or rendering very small scrollable areas. - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/core-plugin-api@1.12.1 - @backstage/theme@0.7.1 - @backstage/plugin-signals-react@0.0.18 ## @backstage/plugin-notifications-backend@0.6.1 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-signals-node@0.1.27 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 - @backstage/plugin-notifications-node@0.2.22 ## @backstage/plugin-notifications-backend-module-email@0.3.17 ### Patch Changes - a5d5b3a: SES config for the notification email processor now supports utilizing an ARN for the SES identity when sending an email after the SES SDK V2 update. The `sesConfig.fromArn` will set the `fromEmailAddressIdentityArn` option for the SES `SendEmailCommand`. The `sesConfig.sourceArn` field is removed since no equivalent option is available in the send email command options. Setting `sesConfig.sourceArn` will have no effect and log a warning. Example changes: ```diff notifications: processors: email: transportConfig: transport: "ses" region: "us-west-2" sender: "sender@mycompany.com" replyTo: "no-reply@mycompany.com" sesConfig: - sourceArn: "arn:aws:ses:us-west-2:123456789012:identity/example.com" fromArn: "arn:aws:ses:us-west-2:123456789012:identity/example.com" ``` - b267aea: Updated dependency `@types/nodemailer` to `^7.0.0`. - Updated dependencies - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 - @backstage/plugin-notifications-node@0.2.22 ## @backstage/plugin-notifications-node@0.2.22 ### Patch Changes - Updated dependencies - @backstage/plugin-signals-node@0.1.27 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-org@0.6.47 ### Patch Changes - f3f84f1: Minor extension type updates after frontend API bump - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/plugin-catalog-react@1.21.4 - @backstage/core-plugin-api@1.12.1 ## @backstage/plugin-org-react@0.1.45 ### Patch Changes - Updated dependencies - @backstage/core-components@0.18.4 - @backstage/plugin-catalog-react@1.21.4 - @backstage/core-plugin-api@1.12.1 ## @backstage/plugin-permission-backend@0.7.7 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/plugin-permission-node@0.10.7 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-permission-backend-module-allow-all-policy@0.2.15 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/plugin-permission-node@0.10.7 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-permission-node@0.10.7 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-permission-react@0.4.39 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.12.1 ## @backstage/plugin-proxy-backend@0.6.9 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-proxy-node@0.1.11 ## @backstage/plugin-proxy-node@0.1.11 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-scaffolder-backend-module-azure@0.2.16 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.17 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.3.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.16 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.16 ### Patch Changes - 5a6aca2: Improve error message when provided target branch is missing - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.16 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.18 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-defaults@0.14.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/plugin-scaffolder-backend-module-gcp@0.2.16 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/plugin-scaffolder-backend-module-gerrit@0.2.16 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/plugin-scaffolder-backend-module-gitea@0.2.16 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/plugin-scaffolder-backend-module-github@0.9.3 ### Patch Changes - dab3d3f: Added autocompletion resource `owners` for retrieving GitHub repository owners. - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/plugin-scaffolder-backend-module-notifications@0.1.17 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-notifications-node@0.2.22 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/plugin-scaffolder-backend-module-rails@0.5.16 ### Patch Changes - 2bae83a: Bumped dev dependencies `@types/node` - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/plugin-scaffolder-backend-module-sentry@0.2.16 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/plugin-scaffolder-backend-module-yeoman@0.4.17 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-node@0.12.2 - @backstage/plugin-scaffolder-node-test-utils@0.3.6 ## @backstage/plugin-scaffolder-common@1.7.4 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 ## @backstage/plugin-scaffolder-node@0.12.2 ### Patch Changes - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-common@1.7.4 ## @backstage/plugin-scaffolder-node-test-utils@0.3.6 ### Patch Changes - Updated dependencies - @backstage/backend-test-utils@1.10.2 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-node@0.12.2 ## @backstage/plugin-scaffolder-react@1.19.4 ### Patch Changes - fb029b6: Updated luxon types - 5ca461e: Fixed bug where custom `review.name` values were incorrectly formatted by `startCase`, preserving them exactly as written. - be21c5c: Updated dependency `@rjsf/utils` to `5.24.13`. Updated dependency `@rjsf/core` to `5.24.13`. Updated dependency `@rjsf/material-ui` to `5.24.13`. Updated dependency `@rjsf/validator-ajv8` to `5.24.13`. - 9b38f22: Updated dependency `use-immer` to `^0.11.0`. - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/plugin-catalog-react@1.21.4 - @backstage/core-plugin-api@1.12.1 - @backstage/theme@0.7.1 - @backstage/plugin-permission-react@0.4.39 - @backstage/plugin-scaffolder-common@1.7.4 ## @backstage/plugin-search@1.5.1 ### Patch Changes - f3f84f1: Minor extension type updates after frontend API bump - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/plugin-catalog-react@1.21.4 - @backstage/plugin-search-react@1.10.1 - @backstage/core-plugin-api@1.12.1 ## @backstage/plugin-search-backend@2.0.9 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-search-backend-node@1.4.0 - @backstage/backend-defaults@0.14.0 - @backstage/backend-openapi-utils@0.6.4 - @backstage/plugin-permission-node@0.10.7 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-search-backend-module-catalog@0.3.11 ### Patch Changes - Updated dependencies - @backstage/plugin-search-backend-node@1.4.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-search-backend-module-elasticsearch@1.7.9 ### Patch Changes - Updated dependencies - @backstage/plugin-search-backend-node@1.4.0 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-search-backend-module-explore@0.3.10 ### Patch Changes - 9b69262: Updated dependency `@backstage-community/plugin-explore-common` to `^0.9.0`. - Updated dependencies - @backstage/plugin-search-backend-node@1.4.0 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-search-backend-module-pg@0.5.51 ### Patch Changes - Updated dependencies - @backstage/plugin-search-backend-node@1.4.0 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-search-backend-module-stack-overflow-collator@0.3.16 ### Patch Changes - Updated dependencies - @backstage/plugin-search-backend-node@1.4.0 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-search-backend-module-techdocs@0.4.9 ### Patch Changes - Updated dependencies - @backstage/plugin-search-backend-node@1.4.0 - @backstage/plugin-techdocs-node@1.13.10 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-search-react@1.10.1 ### Patch Changes - 8947a4e: Skip the very first empty search when going to the landing page - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/core-plugin-api@1.12.1 - @backstage/theme@0.7.1 ## @backstage/plugin-signals@0.0.26 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/core-plugin-api@1.12.1 - @backstage/theme@0.7.1 - @backstage/plugin-signals-react@0.0.18 ## @backstage/plugin-signals-backend@0.3.11 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-events-node@0.4.18 - @backstage/plugin-signals-node@0.1.27 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-signals-node@0.1.27 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/plugin-events-node@0.4.18 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-signals-react@0.0.18 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.12.1 ## @backstage/plugin-techdocs@1.16.1 ### Patch Changes - f3f84f1: Minor extension type updates after frontend API bump - 5c33821: Fixed schema type for additionalAllowedURIProtocols - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - 592361e: The `techdocs` config is now marked as optional. - Updated dependencies - @backstage/integration@1.19.0 - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/plugin-catalog-react@1.21.4 - @backstage/plugin-search-react@1.10.1 - @backstage/core-plugin-api@1.12.1 - @backstage/theme@0.7.1 - @backstage/integration-react@1.2.13 - @backstage/plugin-auth-react@0.1.22 - @backstage/plugin-techdocs-react@1.3.6 ## @backstage/plugin-techdocs-backend@2.1.3 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - 2bae83a: Corrected `ErrorCallback` type to work with Node 22 types - 592361e: The `techdocs` config is now marked as optional. - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-defaults@0.14.0 - @backstage/plugin-techdocs-node@1.13.10 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-catalog-node@1.20.1 ## @backstage/plugin-techdocs-module-addons-contrib@1.1.31 ### Patch Changes - 8d6709e: Updated tests to match test-utils change - Updated dependencies - @backstage/integration@1.19.0 - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/core-plugin-api@1.12.1 - @backstage/integration-react@1.2.13 - @backstage/plugin-techdocs-react@1.3.6 ## @backstage/plugin-techdocs-node@1.13.10 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - 703f8c0: There was an issue in the uploading of large size files to the AWS S3. We have modified the logic by adding retry along with multipart uploading functionality. - Updated dependencies - @backstage/integration@1.19.0 - @backstage/backend-plugin-api@1.6.0 ## @backstage/plugin-techdocs-react@1.3.6 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/core-plugin-api@1.12.1 ## @backstage/plugin-user-settings@0.8.30 ### Patch Changes - d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system. - Updated dependencies - @backstage/core-app-api@1.19.3 - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 - @backstage/plugin-catalog-react@1.21.4 - @backstage/core-plugin-api@1.12.1 - @backstage/theme@0.7.1 - @backstage/plugin-signals-react@0.0.18 ## @backstage/plugin-user-settings-backend@0.3.9 ### Patch Changes - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0 - Updated dependencies - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-defaults@0.14.0 - @backstage/plugin-signals-node@0.1.27 - @backstage/backend-plugin-api@1.6.0 ## example-app@0.2.116 ### Patch Changes - Updated dependencies - @backstage/core-app-api@1.19.3 - @backstage/cli@0.35.0 - @backstage/ui@0.10.0 - @backstage/plugin-catalog-graph@0.5.4 - @backstage/plugin-api-docs@0.13.2 - @backstage/plugin-techdocs@1.16.1 - @backstage/plugin-catalog@1.32.1 - @backstage/plugin-search@1.5.1 - @backstage/plugin-org@0.6.47 - @backstage/plugin-scaffolder-react@1.19.4 - @backstage/core-components@0.18.4 - @backstage/plugin-techdocs-module-addons-contrib@1.1.31 - @backstage/plugin-catalog-react@1.21.4 - @backstage/plugin-kubernetes@0.12.14 - @backstage/plugin-search-react@1.10.1 - @backstage/core-plugin-api@1.12.1 - @backstage/plugin-catalog-unprocessed-entities@0.2.24 - @backstage/plugin-catalog-import@0.13.8 - @backstage/plugin-notifications@0.5.12 - @backstage/plugin-user-settings@0.8.30 - @backstage/plugin-scaffolder@1.35.0 - @backstage/plugin-devtools@0.1.34 - @backstage/plugin-home@0.8.15 - @backstage/theme@0.7.1 - @backstage/plugin-kubernetes-cluster@0.0.32 - @backstage/app-defaults@1.7.3 - @backstage/frontend-app-api@0.13.3 - @backstage/integration-react@1.2.13 - @backstage/plugin-auth-react@0.1.22 - @backstage/plugin-mui-to-bui@0.2.2 - @backstage/plugin-permission-react@0.4.39 - @backstage/plugin-signals@0.0.26 - @backstage/plugin-techdocs-react@1.3.6 ## example-app-next@0.0.30 ### Patch Changes - Updated dependencies - @backstage/core-app-api@1.19.3 - @backstage/cli@0.35.0 - @backstage/ui@0.10.0 - @backstage/plugin-catalog-graph@0.5.4 - @backstage/plugin-api-docs@0.13.2 - @backstage/plugin-techdocs@1.16.1 - @backstage/plugin-catalog@1.32.1 - @backstage/plugin-search@1.5.1 - @backstage/plugin-app@0.3.3 - @backstage/plugin-org@0.6.47 - @backstage/frontend-plugin-api@0.13.2 - @backstage/plugin-scaffolder-react@1.19.4 - @backstage/core-components@0.18.4 - @backstage/plugin-techdocs-module-addons-contrib@1.1.31 - @backstage/plugin-catalog-react@1.21.4 - @backstage/plugin-kubernetes@0.12.14 - @backstage/plugin-search-react@1.10.1 - @backstage/core-plugin-api@1.12.1 - @backstage/plugin-catalog-unprocessed-entities@0.2.24 - @backstage/plugin-app-visualizer@0.1.26 - @backstage/plugin-catalog-import@0.13.8 - @backstage/plugin-notifications@0.5.12 - @backstage/plugin-user-settings@0.8.30 - @backstage/plugin-scaffolder@1.35.0 - @backstage/plugin-home@0.8.15 - @backstage/theme@0.7.1 - @backstage/plugin-kubernetes-cluster@0.0.32 - @backstage/app-defaults@1.7.3 - @backstage/core-compat-api@0.5.5 - @backstage/frontend-app-api@0.13.3 - @backstage/frontend-defaults@0.3.4 - @backstage/integration-react@1.2.13 - @backstage/plugin-auth@0.1.3 - @backstage/plugin-auth-react@0.1.22 - @backstage/plugin-permission-react@0.4.39 - @backstage/plugin-signals@0.0.26 - @backstage/plugin-techdocs-react@1.3.6 ## app-next-example-plugin@0.0.30 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/core-components@0.18.4 ## example-backend@0.0.45 ### Patch Changes - Updated dependencies - @backstage/plugin-mcp-actions-backend@0.1.6 - @backstage/plugin-scaffolder-backend@3.1.0 - @backstage/plugin-search-backend-node@1.4.0 - @backstage/plugin-auth-node@0.6.10 - @backstage/backend-defaults@0.14.0 - @backstage/plugin-app-backend@0.5.9 - @backstage/plugin-auth-backend-module-guest-provider@0.2.15 - @backstage/plugin-auth-backend-module-openshift-provider@0.1.3 - @backstage/plugin-auth-backend@0.25.7 - @backstage/plugin-catalog-backend@3.3.0 - @backstage/plugin-devtools-backend@0.5.12 - @backstage/plugin-events-backend@0.5.9 - @backstage/plugin-kubernetes-backend@0.21.0 - @backstage/plugin-notifications-backend@0.6.1 - @backstage/plugin-permission-backend@0.7.7 - @backstage/plugin-permission-node@0.10.7 - @backstage/plugin-proxy-backend@0.6.9 - @backstage/plugin-search-backend@2.0.9 - @backstage/plugin-signals-backend@0.3.11 - @backstage/plugin-techdocs-backend@2.1.3 - @backstage/plugin-auth-backend-module-github-provider@0.4.0 - @backstage/backend-plugin-api@1.6.0 - @backstage/plugin-scaffolder-backend-module-github@0.9.3 - @backstage/plugin-search-backend-module-explore@0.3.10 - @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.9 - @backstage/plugin-catalog-backend-module-openapi@0.2.17 - @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.15 - @backstage/plugin-catalog-backend-module-unprocessed@0.6.7 - @backstage/plugin-events-backend-module-google-pubsub@0.1.7 - @backstage/plugin-permission-backend-module-allow-all-policy@0.2.15 - @backstage/plugin-scaffolder-backend-module-notifications@0.1.17 - @backstage/plugin-search-backend-module-catalog@0.3.11 - @backstage/plugin-search-backend-module-elasticsearch@1.7.9 - @backstage/plugin-search-backend-module-techdocs@0.4.9 ## e2e-test@0.2.35 ### Patch Changes - Updated dependencies - @backstage/create-app@0.7.7 - @backstage/cli-common@0.1.16 ## @internal/frontend@0.0.16 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 ## @internal/scaffolder@0.0.16 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.13.2 - @backstage/plugin-scaffolder-react@1.19.4 ## techdocs-cli-embedded-app@0.2.115 ### Patch Changes - Updated dependencies - @backstage/core-app-api@1.19.3 - @backstage/cli@0.35.0 - @backstage/ui@0.10.0 - @backstage/plugin-techdocs@1.16.1 - @backstage/plugin-catalog@1.32.1 - @backstage/core-components@0.18.4 - @backstage/test-utils@1.7.14 - @backstage/core-plugin-api@1.12.1 - @backstage/theme@0.7.1 - @backstage/app-defaults@1.7.3 - @backstage/integration-react@1.2.13 - @backstage/plugin-techdocs-react@1.3.6 ## yarn-plugin-backstage@0.0.8 ### Patch Changes - Updated dependencies - @backstage/cli-common@0.1.16 ## @internal/plugin-todo-list@1.0.46 ### Patch Changes - Updated dependencies - @backstage/core-components@0.18.4 - @backstage/core-plugin-api@1.12.1 ## @internal/plugin-todo-list-backend@1.0.46 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.6.0