# Release v1.4.0-next.3 ## @backstage/plugin-catalog-node@1.0.0-next.0 ### Major Changes - 9a6aba1d85: This package houses stable types from the `@backstage/plugin-catalog-backend` package and is intended for creation of catalog modules. Prefer importing from this package over the `@backstage/plugin-catalog-backend` package. ### Minor Changes - 91c1d12123: Added alpha exports for the new experimental backend system. ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.1.0-next.0 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/backend-app-api@0.1.0-next.0 ### Minor Changes - 91c1d12123: Add initial plumbing for creating backends using the experimental backend framework. This package is highly **EXPERIMENTAL** and should not be used in production. ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.1.0-next.0 - @backstage/backend-common@0.14.1-next.3 - @backstage/plugin-permission-node@0.6.3-next.2 - @backstage/backend-tasks@0.3.3-next.3 ## @backstage/backend-plugin-api@0.1.0-next.0 ### Minor Changes - 91c1d12123: Introduced new package for creating backend plugins using the new alpha backend plugin framework. This package is still considered **EXPERIMENTAL** and things will change without warning. Do not use this for production. ### Patch Changes - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/plugin-permission-common@0.6.3-next.1 - @backstage/backend-tasks@0.3.3-next.3 ## @backstage/plugin-auth-backend@0.15.0-next.3 ### Minor Changes - fe8e025af5: Allowed post method on /refresh path ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - 3a014730dc: Add new config option for okta auth server and IDP - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/plugin-auth-node@0.2.3-next.2 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-catalog-backend@1.3.0-next.3 ### Minor Changes - 1dd6c22cc8: Added an option to be able to trigger refreshes on entities based on a prestored arbitrary key. The UrlReaderProcessor, FileReaderProcessor got updated to store the absolute URL of the catalog file as a refresh key. In the format of `:` The PlaceholderProcessor got updated to store the resolverValues as refreshKeys for the entities. The custom resolvers will need to be updated to pass in a `CatalogProcessorEmit` function as parameter and they should be updated to emit their refresh processingResults. You can see the updated resolvers in the `PlaceholderProcessor.ts` ```ts // yamlPlaceholderResolver ... const { content, url } = await readTextLocation(params); params.emit(processingResult.refresh(`url:${url}`)); ... ``` - 91c1d12123: Export experimental `catalogPlugin` for the new backend system. This export is not considered stable and should not be used in production. ### Patch Changes - 1e02fe46d6: Fixed bug where catalog metrics weren't being tracked. - 5f6b847c15: Fix Error Code in Register Component DryRun - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - 72622d9143: Updated dependency `yaml` to `^2.0.0`. - fa0533e604: CatalogBuilder supports now subscription to processing engine errors. ```ts subscribe(options: { onProcessingError: (event: { unprocessedEntity: Entity, error: Error }) => Promise | void; }); ``` If you want to get notified on errors while processing the entities, you call CatalogBuilder.subscribe to get notifications with the parameters defined as above. - 9a6aba1d85: Many symbol declarations have been moved to `@backstage/plugin-catalog-node`. This has no affect on users of this package as they are all re-exported. Modules that build on top of the catalog backend plugin should switch all of their imports to the `@backstage/plugin-catalog-node` package and remove the dependency on `@backstage/plugin-catalog-backend`. - Updated dependencies - @backstage/backend-plugin-api@0.1.0-next.0 - @backstage/plugin-catalog-node@1.0.0-next.0 - @backstage/backend-common@0.14.1-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/integration@1.2.2-next.3 - @backstage/plugin-permission-common@0.6.3-next.1 - @backstage/plugin-permission-node@0.6.3-next.2 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-code-coverage@0.2.0-next.3 ### Minor Changes - d70aaa7622: Cleaned up API exports. The `Router` export has been removed; users are expected to use `EntityCodeCoverageContent` instead. The `isPluginApplicableToEntity` helper has been deprecated, in favor of the `isCodeCoverageAvailable` helper. ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-code-coverage-backend@0.2.0-next.3 ### Minor Changes - d70aaa7622: Cleaned up API exports. The `CodeCoverageApi` and `makeRouter` exports have been removed from the backend, since they were not meant to be exported in the first place. ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/integration@1.2.2-next.3 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-kubernetes@0.7.0-next.3 ### Minor Changes - f5c9730639: Add `localKubectlProxy` cluster locator method to make local development simpler to setup. Consolidated no-op server side auth decorators. The following Kubernetes auth decorators are now one class (`ServerSideKubernetesAuthProvider`): - `AwsKubernetesAuthProvider` - `AzureKubernetesAuthProvider` - `ServiceAccountKubernetesAuthProvider` ### Patch Changes - 3ec294a186: expose detectErrors function publicly - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - eadb3a8d2e: Updated dependency `@kubernetes/client-node` to `^0.17.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 - @backstage/plugin-kubernetes-common@0.4.0-next.2 ## @backstage/plugin-kubernetes-backend@0.7.0-next.3 ### Minor Changes - f5c9730639: Add `localKubectlProxy` cluster locator method to make local development simpler to setup. Consolidated no-op server side auth decorators. The following Kubernetes auth decorators are now one class (`ServerSideKubernetesAuthProvider`): - `AwsKubernetesAuthProvider` - `AzureKubernetesAuthProvider` - `ServiceAccountKubernetesAuthProvider` - 1454bf98e7: Add new endpoints to Kubernetes backend plugin BREAKING: Kubernetes backend plugin now depends on CatalogApi ```typescript // Create new CatalogClient const catalogApi = new CatalogClient({ discoveryApi: env.discovery }); const { router } = await KubernetesBuilder.createBuilder({ logger: env.logger, config: env.config, // Inject it into createBuilder params catalogApi, }).build(); ``` ### Patch Changes - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - eadb3a8d2e: Updated dependency `@kubernetes/client-node` to `^0.17.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/plugin-auth-node@0.2.3-next.2 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-kubernetes-common@0.4.0-next.2 ## @backstage/plugin-newrelic-dashboard@0.2.0-next.3 ### Minor Changes - 79ecedded9: Fix bug where the default time window/snapshot duration was supposed to be 30 days, but ended up being 43 weeks **BREAKING**: Add a select input to change the time window of the snapshot displayed. This removes the duration prop from the `DashboardSnapshot` component. ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-scaffolder-backend@1.4.0-next.3 ### Minor Changes - 91c1d12123: Export experimental `scaffolderCatalogExtension` for the new backend system. This export is not considered stable and should not be used in production. ### Patch Changes - ea6dcb84a4: Don't resolve symlinks, treat them as binary files and copy them as-is - af02f54483: new setUserAsOwner flag for publish:gitlab action The field default is `false`. When true it will use the token configured in the gitlab integration for the matching host, to try and set the user logged in via `repoUrlPicker` `requestUserCredentials` OAuth flow as owner of the repository created in GitLab. - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - 72622d9143: Updated dependency `yaml` to `^2.0.0`. - 511f49ee43: Updated dependency `octokit` to `^2.0.0`. - 735853353b: Updated dependency `@octokit/webhooks` to `^10.0.0`. - Updated dependencies - @backstage/backend-plugin-api@0.1.0-next.0 - @backstage/plugin-catalog-backend@1.3.0-next.3 - @backstage/plugin-catalog-node@1.0.0-next.0 - @backstage/backend-common@0.14.1-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/integration@1.2.2-next.3 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-sentry@0.4.0-next.3 ### Minor Changes - 1b7c691a3b: Added the possibility to specify organization per component, now the annotation `sentry.io/project-slug` can have the format of `[organization]/[project-slug]` or just `[project-slug]`. **BREAKING**: The method `fetchIssue` changed the signature: ```diff export interface SentryApi { fetchIssues( - project: string, - statsFor: string, - query?: string, + entity: Entity, + options: { + statsFor: string; + query?: string; + }, ): Promise; } ``` ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-tech-insights-backend@0.5.0-next.3 ### Minor Changes - 46cfda58aa: **BREAKING**: Update FactRetrieverRegistry interface to be async so that db backed implementations can be passed through to the FactRetrieverEngine. If you have existing custom `FactRetrieverRegistry` implementations, you'll need to remove the `retrievers` member and make all the methods async. ### Patch Changes - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - bcc122c46d: The `FactRetriever` model has been extended by adding optional title and description fields, allowing you to display them in the UI. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/backend-tasks@0.3.3-next.3 - @backstage/plugin-tech-insights-common@0.2.5-next.0 - @backstage/plugin-tech-insights-node@0.3.2-next.1 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/app-defaults@1.0.4-next.3 ### Patch Changes - 881fc75a75: Internal tweak removing usage of explicit type parameters for the `BackstagePlugin` type. - Updated dependencies - @backstage/core-app-api@1.0.4-next.1 - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/plugin-permission-react@0.4.3-next.1 ## @backstage/backend-common@0.14.1-next.3 ### Patch Changes - 90c87f28e8: Moving from Bitbucket Server endpoint from to , to have the last commit in function of different branch, and not only the list of default branch - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/config-loader@1.1.3-next.1 - @backstage/integration@1.2.2-next.3 ## @backstage/backend-tasks@0.3.3-next.3 ### Patch Changes - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 ## @backstage/backend-test-utils@0.1.26-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/cli@0.18.0-next.3 ## @backstage/catalog-client@1.0.4-next.2 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/catalog-model@1.1.0-next.3 ## @backstage/catalog-model@1.1.0-next.3 ### Patch Changes - 72622d9143: Updated dependency `yaml` to `^2.0.0`. ## @backstage/cli@0.18.0-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 72622d9143: Updated dependency `yaml` to `^2.0.0`. - e662b573cf: Updated dependency `@octokit/request` to `^6.0.0`. - Updated dependencies - @backstage/config-loader@1.1.3-next.1 - @backstage/release-manifests@0.0.5-next.0 ## @backstage/config-loader@1.1.3-next.1 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 72622d9143: Updated dependency `yaml` to `^2.0.0`. - a3acec8819: Updated dependency `typescript-json-schema` to `^0.54.0`. ## @backstage/core-app-api@1.0.4-next.1 ### Patch Changes - 881fc75a75: Internal tweak removing usage of explicit type parameters for the `BackstagePlugin` type. - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 ## @backstage/core-components@0.10.0-next.3 ### Patch Changes - 7f5e79961d: Fix relative `sub-paths` by concatenating the app's base path with them. - a70869e775: Updated dependency `msw` to `^0.43.0`. - 693990d4fe: Updated dependency `@react-hookz/web` to `^15.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 ## @backstage/core-plugin-api@1.0.4-next.0 ### Patch Changes - 881fc75a75: Internal tweak removing usage of explicit type parameters for the `BackstagePlugin` type. - a70869e775: Updated dependency `msw` to `^0.43.0`. - 2990fff4e5: Enabled the `@backstage/core-plugin-api/alpha` entry point. ## @backstage/create-app@0.4.29-next.3 ### Patch Changes - Bumped create-app version. ## @backstage/dev-utils@1.0.4-next.3 ### Patch Changes - Updated dependencies - @backstage/app-defaults@1.0.4-next.3 - @backstage/core-app-api@1.0.4-next.1 - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/integration-react@1.1.2-next.3 - @backstage/test-utils@1.1.2-next.2 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/integration@1.2.2-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - 1f29047bad: Updated dependency `@octokit/auth-app` to `^4.0.0`. - 4df3390795: Avoid double encoding of the file path in `getBitbucketServerDownloadUrl` ## @backstage/integration-react@1.1.2-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/integration@1.2.2-next.3 ## @backstage/release-manifests@0.0.5-next.0 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. ## @backstage/test-utils@1.1.2-next.2 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-app-api@1.0.4-next.1 - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/plugin-permission-common@0.6.3-next.1 - @backstage/plugin-permission-react@0.4.3-next.1 ## @backstage/plugin-adr@0.1.2-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 511f49ee43: Updated dependency `octokit` to `^2.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/integration-react@1.1.2-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 - @backstage/plugin-search-react@0.2.2-next.3 ## @backstage/plugin-adr-backend@0.1.2-next.2 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/integration@1.2.2-next.3 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-airbrake@0.3.7-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/test-utils@1.1.2-next.2 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 - @backstage/dev-utils@1.0.4-next.3 ## @backstage/plugin-airbrake-backend@0.2.7-next.1 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 ## @backstage/plugin-allure@0.1.23-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-analytics-module-ga@0.1.18-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 ## @backstage/plugin-apache-airflow@0.2.0-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 ## @backstage/plugin-api-docs@0.8.7-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - b76eea25ed: Updated dependency `@asyncapi/react-component` to `1.0.0-next.39`. - 9432a05cf3: Set font colors correctly for descriptions containing HTML - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 - @backstage/plugin-catalog@1.4.0-next.3 ## @backstage/plugin-app-backend@0.3.34-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/config-loader@1.1.3-next.1 ## @backstage/plugin-auth-node@0.2.3-next.2 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 ## @backstage/plugin-azure-devops@0.1.23-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 - @backstage/plugin-azure-devops-common@0.2.4-next.0 ## @backstage/plugin-azure-devops-backend@0.3.13-next.1 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - e67c4b7d5a: Adding getProjects endpoint to list out all projects associated with the Azure DevOps organization. It can be accessed by using this endpoint `{backendUrl}/api/azure-devops/projects` - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/plugin-azure-devops-common@0.2.4-next.0 ## @backstage/plugin-azure-devops-common@0.2.4-next.0 ### Patch Changes - e67c4b7d5a: Adding getProjects endpoint to list out all projects associated with the Azure DevOps organization. It can be accessed by using this endpoint `{backendUrl}/api/azure-devops/projects` ## @backstage/plugin-badges@0.2.31-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-bazaar@0.1.22-next.3 ### Patch Changes - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/cli@0.18.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 - @backstage/plugin-catalog@1.4.0-next.3 ## @backstage/plugin-bitbucket-cloud-common@0.1.1-next.1 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/integration@1.2.2-next.3 ## @backstage/plugin-bitrise@0.1.34-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-catalog@1.4.0-next.3 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/integration-react@1.1.2-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 - @backstage/plugin-search-react@0.2.2-next.3 ## @backstage/plugin-catalog-backend-module-aws@0.1.7-next.2 ### Patch Changes - 72622d9143: Updated dependency `yaml` to `^2.0.0`. - Updated dependencies - @backstage/plugin-catalog-backend@1.3.0-next.3 - @backstage/backend-common@0.14.1-next.3 - @backstage/integration@1.2.2-next.3 - @backstage/backend-tasks@0.3.3-next.3 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-catalog-backend-module-azure@0.1.5-next.2 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/plugin-catalog-backend@1.3.0-next.3 - @backstage/backend-common@0.14.1-next.3 - @backstage/integration@1.2.2-next.3 - @backstage/backend-tasks@0.3.3-next.3 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-catalog-backend-module-bitbucket@0.2.1-next.2 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/plugin-catalog-backend@1.3.0-next.3 - @backstage/backend-common@0.14.1-next.3 - @backstage/integration@1.2.2-next.3 - @backstage/plugin-bitbucket-cloud-common@0.1.1-next.1 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-catalog-backend-module-bitbucket-cloud@0.1.1-next.1 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/plugin-catalog-backend@1.3.0-next.3 - @backstage/integration@1.2.2-next.3 - @backstage/plugin-bitbucket-cloud-common@0.1.1-next.1 - @backstage/backend-tasks@0.3.3-next.3 ## @backstage/plugin-catalog-backend-module-gerrit@0.1.2-next.2 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/plugin-catalog-backend@1.3.0-next.3 - @backstage/backend-common@0.14.1-next.3 - @backstage/integration@1.2.2-next.3 - @backstage/backend-tasks@0.3.3-next.3 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-catalog-backend-module-github@0.1.5-next.2 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 0f25116d28: Updated dependency `@octokit/graphql` to `^5.0.0`. - Updated dependencies - @backstage/plugin-catalog-backend@1.3.0-next.3 - @backstage/backend-common@0.14.1-next.3 - @backstage/integration@1.2.2-next.3 - @backstage/backend-tasks@0.3.3-next.3 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-catalog-backend-module-gitlab@0.1.5-next.2 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/plugin-catalog-backend@1.3.0-next.3 - @backstage/backend-common@0.14.1-next.3 - @backstage/integration@1.2.2-next.3 - @backstage/backend-tasks@0.3.3-next.3 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-catalog-backend-module-ldap@0.5.1-next.2 ### Patch Changes - ddfd566606: Fix mapping between users and groups for FreeIPA when using the LdapOrgProcessor - Updated dependencies - @backstage/plugin-catalog-backend@1.3.0-next.3 - @backstage/backend-tasks@0.3.3-next.3 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-catalog-backend-module-msgraph@0.4.0-next.2 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/plugin-catalog-backend@1.3.0-next.3 - @backstage/backend-tasks@0.3.3-next.3 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-catalog-backend-module-openapi@0.1.0-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-backend@1.3.0-next.3 - @backstage/backend-common@0.14.1-next.3 - @backstage/integration@1.2.2-next.3 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-catalog-graph@0.2.19-next.3 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-catalog-graphql@0.3.11-next.1 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-catalog-import@0.8.10-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 72622d9143: Updated dependency `yaml` to `^2.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/integration-react@1.1.2-next.3 - @backstage/integration@1.2.2-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-catalog-react@1.1.2-next.3 ### Patch Changes - 72622d9143: Updated dependency `yaml` to `^2.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/integration@1.2.2-next.3 - @backstage/plugin-permission-common@0.6.3-next.1 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-permission-react@0.4.3-next.1 ## @backstage/plugin-cicd-statistics@0.1.9-next.1 ### Patch Changes - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-cicd-statistics-module-gitlab@0.1.3-next.1 ### Patch Changes - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/plugin-cicd-statistics@0.1.9-next.1 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-circleci@0.3.7-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-cloudbuild@0.3.7-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-code-climate@0.1.7-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-codescene@0.1.2-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 ## @backstage/plugin-config-schema@0.1.30-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 ## @backstage/plugin-cost-insights@0.11.29-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-dynatrace@0.1.1-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-explore@0.3.38-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/plugin-explore-react@0.0.19-next.0 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-explore-react@0.0.19-next.0 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 ## @backstage/plugin-firehydrant@0.1.24-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-fossa@0.2.39-next.3 ### Patch Changes - 322d1ceeba: Allow configuration of base URL for Fossa links - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-gcalendar@0.3.3-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 ## @backstage/plugin-gcp-projects@0.3.26-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 693990d4fe: Updated dependency `@react-hookz/web` to `^15.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 ## @backstage/plugin-git-release-manager@0.3.20-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/integration@1.2.2-next.3 ## @backstage/plugin-github-actions@0.5.7-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/integration@1.2.2-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-github-deployments@0.1.38-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - 0f25116d28: Updated dependency `@octokit/graphql` to `^5.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/integration-react@1.1.2-next.3 - @backstage/integration@1.2.2-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-github-pull-requests-board@0.1.1-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/integration@1.2.2-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-gitops-profiles@0.3.25-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 ## @backstage/plugin-gocd@0.1.13-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-graphiql@0.2.39-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 ## @backstage/plugin-graphql-backend@0.1.24-next.1 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/plugin-catalog-graphql@0.3.11-next.1 ## @backstage/plugin-home@0.4.23-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/plugin-stack-overflow@0.1.3-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-ilert@0.1.33-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-jenkins@0.7.6-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-jenkins-backend@0.1.24-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/plugin-auth-node@0.2.3-next.2 - @backstage/plugin-permission-common@0.6.3-next.1 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-kafka@0.3.7-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-kubernetes-common@0.4.0-next.2 ### Patch Changes - eadb3a8d2e: Updated dependency `@kubernetes/client-node` to `^0.17.0`. - Updated dependencies - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-lighthouse@0.3.7-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-newrelic@0.3.25-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 ## @backstage/plugin-org@0.5.7-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-pagerduty@0.5.0-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-periskop@0.1.5-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-periskop-backend@0.1.5-next.1 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 ## @backstage/plugin-permission-backend@0.5.9-next.2 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/plugin-auth-node@0.2.3-next.2 - @backstage/plugin-permission-common@0.6.3-next.1 - @backstage/plugin-permission-node@0.6.3-next.2 ## @backstage/plugin-permission-common@0.6.3-next.1 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. ## @backstage/plugin-permission-node@0.6.3-next.2 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/plugin-auth-node@0.2.3-next.2 - @backstage/plugin-permission-common@0.6.3-next.1 ## @backstage/plugin-permission-react@0.4.3-next.1 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/plugin-permission-common@0.6.3-next.1 ## @backstage/plugin-proxy-backend@0.2.28-next.1 ### Patch Changes - a4fa1ce090: The proxy-backend now automatically reloads configuration when app-config.yaml is updated. - 72622d9143: Updated dependency `yaml` to `^2.0.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 ## @backstage/plugin-rollbar@0.4.7-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-rollbar-backend@0.1.31-next.1 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 ## @backstage/plugin-scaffolder@1.4.0-next.3 ### Patch Changes - b557e6c58d: Fixed that adding more than one `allowedOwner` or `allowedRepo` in the template config will now still set the first value as default in the initial form state of `RepoUrlPicker`. - d600cb2ab6: contextMenu prop passed through to from the component - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - 72622d9143: Updated dependency `yaml` to `^2.0.0`. - 693990d4fe: Updated dependency `@react-hookz/web` to `^15.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/integration-react@1.1.2-next.3 - @backstage/integration@1.2.2-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 - @backstage/plugin-permission-react@0.4.3-next.1 ## @backstage/plugin-scaffolder-backend-module-cookiecutter@0.2.9-next.2 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/plugin-scaffolder-backend@1.4.0-next.3 - @backstage/integration@1.2.2-next.3 ## @backstage/plugin-search@0.9.1-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 - @backstage/plugin-search-react@0.2.2-next.3 ## @backstage/plugin-search-backend@0.5.4-next.2 ### Patch Changes - a21cd43467: If error is `MissingIndexError` we return a 400 response with a more clear error message. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/plugin-auth-node@0.2.3-next.2 - @backstage/plugin-permission-common@0.6.3-next.1 - @backstage/plugin-permission-node@0.6.3-next.2 - @backstage/plugin-search-backend-node@0.6.3-next.2 ## @backstage/plugin-search-backend-module-elasticsearch@0.2.0-next.2 ### Patch Changes - 71de198828: Updated dependency `@opensearch-project/opensearch` to `^2.0.0`. - a21cd43467: Throws `MissingIndexError` when no index of type exist. - Updated dependencies - @backstage/plugin-search-backend-node@0.6.3-next.2 ## @backstage/plugin-search-backend-node@0.6.3-next.2 ### Patch Changes - a21cd43467: Exports `MissingIndexError` that can be used by the search engines for better error handling when missing index. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/plugin-permission-common@0.6.3-next.1 - @backstage/backend-tasks@0.3.3-next.3 ## @backstage/plugin-search-react@0.2.2-next.3 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 ## @backstage/plugin-shortcuts@0.2.8-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 ## @backstage/plugin-sonarqube@0.3.7-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-splunk-on-call@0.3.31-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-stack-overflow@0.1.3-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/plugin-home@0.4.23-next.3 ## @backstage/plugin-tech-insights@0.2.3-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/plugin-tech-insights-common@0.2.5-next.0 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.18-next.2 ### Patch Changes - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/plugin-tech-insights-common@0.2.5-next.0 - @backstage/plugin-tech-insights-node@0.3.2-next.1 ## @backstage/plugin-tech-insights-common@0.2.5-next.0 ### Patch Changes - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. ## @backstage/plugin-tech-insights-node@0.3.2-next.1 ### Patch Changes - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - bcc122c46d: The `FactRetriever` model has been extended by adding optional title and description fields, allowing you to display them in the UI. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/plugin-tech-insights-common@0.2.5-next.0 ## @backstage/plugin-tech-radar@0.5.14-next.3 ### Patch Changes - b8f608f1ec: Update tech-radar documentation on how to use an external json data source with dates. - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 ## @backstage/plugin-techdocs@1.2.1-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/integration-react@1.1.2-next.3 - @backstage/integration@1.2.2-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 - @backstage/plugin-search-react@0.2.2-next.3 - @backstage/plugin-techdocs-react@1.0.2-next.2 ## @backstage/plugin-techdocs-addons-test-utils@1.0.2-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-app-api@1.0.4-next.1 - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/integration-react@1.1.2-next.3 - @backstage/test-utils@1.1.2-next.2 - @backstage/plugin-techdocs@1.2.1-next.3 - @backstage/plugin-catalog@1.4.0-next.3 - @backstage/plugin-search-react@0.2.2-next.3 - @backstage/plugin-techdocs-react@1.0.2-next.2 ## @backstage/plugin-techdocs-backend@1.2.0-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/plugin-techdocs-node@1.2.0-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/integration@1.2.2-next.3 - @backstage/plugin-permission-common@0.6.3-next.1 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-techdocs-module-addons-contrib@1.0.2-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 693990d4fe: Updated dependency `@react-hookz/web` to `^15.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/integration-react@1.1.2-next.3 - @backstage/integration@1.2.2-next.3 - @backstage/plugin-techdocs-react@1.0.2-next.2 ## @backstage/plugin-techdocs-node@1.2.0-next.3 ### Patch Changes - d505b7b37d: Fixed issue with git feedback buttons not appearing automatically in docs pages. This was done by appending repo_url to the helper function getRepoUrlFromLocationAnnotation. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/integration@1.2.2-next.3 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-techdocs-react@1.0.2-next.2 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-todo@0.2.9-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-todo-backend@0.1.31-next.2 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/integration@1.2.2-next.3 - @backstage/catalog-model@1.1.0-next.3 ## @backstage/plugin-user-settings@0.4.6-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 ## @backstage/plugin-vault@0.1.1-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 ## @backstage/plugin-vault-backend@0.2.0-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - Updated dependencies - @backstage/backend-common@0.14.1-next.3 - @backstage/backend-test-utils@0.1.26-next.3 - @backstage/backend-tasks@0.3.3-next.3 ## @backstage/plugin-xcmetrics@0.2.27-next.3 ### Patch Changes - a70869e775: Updated dependency `msw` to `^0.43.0`. - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`. - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 ## example-app@0.2.73-next.3 ### Patch Changes - Updated dependencies - @backstage/plugin-code-coverage@0.2.0-next.3 - @backstage/plugin-scaffolder@1.4.0-next.3 - @backstage/plugin-kubernetes@0.7.0-next.3 - @backstage/plugin-tech-radar@0.5.14-next.3 - @backstage/plugin-newrelic-dashboard@0.2.0-next.3 - @backstage/app-defaults@1.0.4-next.3 - @backstage/core-app-api@1.0.4-next.1 - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/plugin-sentry@0.4.0-next.3 - @backstage/cli@0.18.0-next.3 - @backstage/integration-react@1.1.2-next.3 - @backstage/plugin-airbrake@0.3.7-next.3 - @backstage/plugin-apache-airflow@0.2.0-next.3 - @backstage/plugin-api-docs@0.8.7-next.3 - @backstage/plugin-azure-devops@0.1.23-next.3 - @backstage/plugin-badges@0.2.31-next.3 - @backstage/plugin-catalog-import@0.8.10-next.3 - @backstage/plugin-circleci@0.3.7-next.3 - @backstage/plugin-cloudbuild@0.3.7-next.3 - @backstage/plugin-cost-insights@0.11.29-next.3 - @backstage/plugin-dynatrace@0.1.1-next.3 - @backstage/plugin-explore@0.3.38-next.3 - @backstage/plugin-gcalendar@0.3.3-next.3 - @backstage/plugin-gcp-projects@0.3.26-next.3 - @backstage/plugin-github-actions@0.5.7-next.3 - @backstage/plugin-gocd@0.1.13-next.3 - @backstage/plugin-graphiql@0.2.39-next.3 - @backstage/plugin-home@0.4.23-next.3 - @backstage/plugin-jenkins@0.7.6-next.3 - @backstage/plugin-kafka@0.3.7-next.3 - @backstage/plugin-lighthouse@0.3.7-next.3 - @backstage/plugin-newrelic@0.3.25-next.3 - @backstage/plugin-org@0.5.7-next.3 - @backstage/plugin-pagerduty@0.5.0-next.3 - @backstage/plugin-rollbar@0.4.7-next.3 - @backstage/plugin-search@0.9.1-next.3 - @backstage/plugin-shortcuts@0.2.8-next.3 - @backstage/plugin-stack-overflow@0.1.3-next.3 - @backstage/plugin-tech-insights@0.2.3-next.3 - @backstage/plugin-techdocs-module-addons-contrib@1.0.2-next.3 - @backstage/plugin-techdocs@1.2.1-next.3 - @backstage/plugin-todo@0.2.9-next.3 - @backstage/plugin-user-settings@0.4.6-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog-react@1.1.2-next.3 - @backstage/plugin-catalog@1.4.0-next.3 - @backstage/plugin-catalog-graph@0.2.19-next.3 - @backstage/plugin-permission-react@0.4.3-next.1 - @backstage/plugin-search-react@0.2.2-next.3 - @backstage/plugin-techdocs-react@1.0.2-next.2 ## example-backend@0.2.73-next.3 ### Patch Changes - Updated dependencies - @backstage/plugin-code-coverage-backend@0.2.0-next.3 - @backstage/plugin-catalog-backend@1.3.0-next.3 - @backstage/plugin-kubernetes-backend@0.7.0-next.3 - @backstage/plugin-proxy-backend@0.2.28-next.1 - @backstage/backend-common@0.14.1-next.3 - @backstage/plugin-scaffolder-backend@1.4.0-next.3 - @backstage/catalog-client@1.0.4-next.2 - @backstage/integration@1.2.2-next.3 - @backstage/plugin-app-backend@0.3.34-next.3 - @backstage/plugin-auth-backend@0.15.0-next.3 - @backstage/plugin-auth-node@0.2.3-next.2 - @backstage/plugin-azure-devops-backend@0.3.13-next.1 - @backstage/plugin-graphql-backend@0.1.24-next.1 - @backstage/plugin-jenkins-backend@0.1.24-next.3 - @backstage/plugin-permission-backend@0.5.9-next.2 - @backstage/plugin-permission-common@0.6.3-next.1 - @backstage/plugin-permission-node@0.6.3-next.2 - @backstage/plugin-rollbar-backend@0.1.31-next.1 - @backstage/plugin-techdocs-backend@1.2.0-next.3 - @backstage/plugin-todo-backend@0.1.31-next.2 - @backstage/backend-tasks@0.3.3-next.3 - @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.18-next.2 - @backstage/plugin-tech-insights-backend@0.5.0-next.3 - @backstage/plugin-tech-insights-node@0.3.2-next.1 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-search-backend-module-elasticsearch@0.2.0-next.2 - @backstage/plugin-search-backend-node@0.6.3-next.2 - @backstage/plugin-search-backend@0.5.4-next.2 - example-app@0.2.73-next.3 ## example-backend-next@0.0.1-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-backend@1.3.0-next.3 - @backstage/plugin-scaffolder-backend@1.4.0-next.3 - @backstage/backend-app-api@0.1.0-next.0 ## techdocs-cli-embedded-app@0.2.72-next.3 ### Patch Changes - Updated dependencies - @backstage/app-defaults@1.0.4-next.3 - @backstage/core-app-api@1.0.4-next.1 - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3 - @backstage/cli@0.18.0-next.3 - @backstage/integration-react@1.1.2-next.3 - @backstage/test-utils@1.1.2-next.2 - @backstage/plugin-techdocs@1.2.1-next.3 - @backstage/catalog-model@1.1.0-next.3 - @backstage/plugin-catalog@1.4.0-next.3 - @backstage/plugin-techdocs-react@1.0.2-next.2 ## @internal/plugin-todo-list@1.0.3-next.3 ### Patch Changes - Updated dependencies - @backstage/core-plugin-api@1.0.4-next.0 - @backstage/core-components@0.10.0-next.3