# Release v1.42.0-next.1 Upgrade Helper: [https://backstage.github.io/upgrade-helper/?to=1.42.0-next.1](https://backstage.github.io/upgrade-helper/?to=1.42.0-next.1) ## @backstage/backend-openapi-utils@0.6.0-next.0 ### Minor Changes - c08cbc4: Move Scaffolder API to OpenAPI ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 ## @backstage/catalog-client@1.11.0-next.0 ### Minor Changes - 6b608e7: Added the analyze-location endpoint to the CatalogClient ### Patch Changes - Updated dependencies - @backstage/catalog-model@1.7.5 - @backstage/errors@1.2.7 ## @backstage/frontend-plugin-api@0.11.0-next.0 ### Minor Changes - 29786f6: **BREAKING**: The `NavLogoBlueprint` has been removed and replaced by `NavContentBlueprint`, which instead replaces the entire navbar. The default navbar has also been switched to a more minimal implementation. To use `NavContentBlueprint` to install new logos, you can use it as follows: ```tsx NavContentBlueprint.make({ params: { component: ({ items }) => { return compatWrapper( {/* Other sidebar content */} {items.map((item, index) => ( ))} {/* Other sidebar content */} , ); }, }, }); ``` - 805c298: **BREAKING**: The `ApiBlueprint` has been updated to use the new advanced type parameters through the new `defineParams` blueprint option. This is an immediate breaking change that requires all existing usages of `ApiBlueprint` to switch to the new callback format. Existing extensions created with the old format are still compatible with the latest version of the plugin API however, meaning that this does not break existing plugins. To update existing usages of `ApiBlueprint`, you remove the outer level of the `params` object and replace `createApiFactory(...)` with `define => define(...)`. For example, the following old usage: ```ts ApiBlueprint.make({ name: 'error', params: { factory: createApiFactory({ api: errorApiRef, deps: { alertApi: alertApiRef }, factory: ({ alertApi }) => { return ...; }, }) }, }) ``` is migrated to the following: ```ts ApiBlueprint.make({ name: 'error', params: define => define({ api: errorApiRef, deps: { alertApi: alertApiRef }, factory: ({ alertApi }) => { return ...; }, }), }) ``` - 805c298: Added support for advanced parameter types in extension blueprints. The primary purpose of this is to allow extension authors to use type inference in the definition of the blueprint parameters. This often removes the need for extra imports and improves discoverability of blueprint parameters. This feature is introduced through the new `defineParams` option of `createExtensionBlueprint`, along with accompanying `createExtensionBlueprintParams` function to help implement the new format. The following is an example of how to create an extension blueprint that uses the new option: ```ts const ExampleBlueprint = createExtensionBlueprint({ kind: 'example', attachTo: { id: 'example', input: 'example' }, output: [exampleComponentDataRef, exampleFetcherDataRef], defineParams(params: { component(props: ExampleProps): JSX.Element | null; fetcher(options: FetchOptions): Promise>; }) { // The returned params must be wrapped with `createExtensionBlueprintParams` return createExtensionBlueprintParams(params); }, *factory(params) { // These params are now inferred yield exampleComponentDataRef(params.component); yield exampleFetcherDataRef(params.fetcher); }, }); ``` Usage of the above example looks as follows: ```ts const example = ExampleBlueprint.make({ params: define => define({ component: ..., fetcher: ..., }), }); ``` This `define => define()` is also known as the "callback syntax" and is required if a blueprint is created with the new `defineParams` option. The callback syntax can also optionally be used for other blueprints too, which means that it is not a breaking change to remove the `defineParams` option, as long as the external parameter types remain compatible. ### Patch Changes - Updated dependencies - @backstage/core-components@0.17.5-next.0 - @backstage/core-plugin-api@1.10.9 - @backstage/types@1.2.1 - @backstage/version-bridge@1.0.11 ## @backstage/plugin-app@0.2.0-next.0 ### Minor Changes - 29786f6: Updated the `app/nav` extension to use the new `NavContentBlueprint`, and removed support for extensions created with the now removed `NavLogoBlueprint`. ### Patch Changes - f2f133c: Internal update to use the new variant of `ApiBlueprint`. - Updated dependencies - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/theme@0.6.8-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/core-plugin-api@1.10.9 - @backstage/integration-react@1.2.9 - @backstage/types@1.2.1 - @backstage/plugin-permission-react@0.4.36 ## @backstage/plugin-catalog-node@1.18.0-next.0 ### Minor Changes - 3f4da39: Added the analyze-location endpoint to the CatalogService ### Patch Changes - Updated dependencies - @backstage/catalog-client@1.11.0-next.0 - @backstage/plugin-permission-node@0.10.3-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/plugin-catalog-common@1.1.5 - @backstage/plugin-permission-common@0.9.1 ## @backstage/plugin-catalog-react@1.20.0-next.1 ### Minor Changes - 3f4da39: Added the `analyzeLocation` method to `catalogApiMock` ### Patch Changes - defc243: hide pagination `queryparams` if pagination mode is set to none - Updated dependencies - @backstage/core-compat-api@0.4.5-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/catalog-client@1.11.0-next.0 - @backstage/frontend-test-utils@0.3.5-next.1 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/core-plugin-api@1.10.9 - @backstage/errors@1.2.7 - @backstage/integration-react@1.2.9 - @backstage/types@1.2.1 - @backstage/version-bridge@1.0.11 - @backstage/plugin-catalog-common@1.1.5 - @backstage/plugin-permission-common@0.9.1 - @backstage/plugin-permission-react@0.4.36 ## @backstage/plugin-scaffolder@1.34.0-next.1 ### Minor Changes - c08cbc4: Move Scaffolder API to OpenAPI ### Patch Changes - f2f133c: Internal update to use the new variant of `ApiBlueprint`. - b0dc9b8: differentiate between entirely and partially composite schemas in schema rendering - c4b7c50: Export `FormField` type from `/alpha` in `-react` package, and internal refactor. - Updated dependencies - @backstage/plugin-scaffolder-react@1.19.0-next.1 - @backstage/plugin-scaffolder-common@1.7.0-next.0 - @backstage/core-compat-api@0.4.5-next.1 - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/catalog-client@1.11.0-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/core-plugin-api@1.10.9 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/integration-react@1.2.9 - @backstage/types@1.2.1 - @backstage/plugin-catalog-common@1.1.5 - @backstage/plugin-permission-react@0.4.36 ## @backstage/plugin-scaffolder-backend@2.2.0-next.0 ### Minor Changes - c08cbc4: Move Scaffolder API to OpenAPI - 812485c: Add step info to scaffolder action context to access the step id and name. ### Patch Changes - caee2eb: Fixed WinstonLogger throwing when redactions were null or undefined - Updated dependencies - @backstage/backend-defaults@0.11.2-next.0 - @backstage/backend-openapi-utils@0.6.0-next.0 - @backstage/plugin-scaffolder-common@1.7.0-next.0 - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/plugin-scaffolder-backend-module-gitlab@0.9.4-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/plugin-permission-node@0.10.3-next.0 - @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.11-next.0 - @backstage/plugin-scaffolder-backend-module-azure@0.2.12-next.0 - @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.13-next.0 - @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.12-next.0 - @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.12-next.0 - @backstage/plugin-scaffolder-backend-module-gerrit@0.2.12-next.0 - @backstage/plugin-scaffolder-backend-module-gitea@0.2.12-next.0 - @backstage/plugin-scaffolder-backend-module-github@0.8.2-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/types@1.2.1 - @backstage/plugin-bitbucket-cloud-common@0.3.1 - @backstage/plugin-permission-common@0.9.1 ## @backstage/plugin-scaffolder-common@1.7.0-next.0 ### Minor Changes - c08cbc4: Move Scaffolder API to OpenAPI ### Patch Changes - Updated dependencies - @backstage/catalog-model@1.7.5 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/types@1.2.1 - @backstage/plugin-permission-common@0.9.1 ## @backstage/plugin-scaffolder-node@0.11.0-next.0 ### Minor Changes - c08cbc4: Move Scaffolder API to OpenAPI ### Patch Changes - 812485c: Add step info to scaffolder action context to access the step id and name. - Updated dependencies - @backstage/plugin-scaffolder-common@1.7.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/types@1.2.1 - @backstage/plugin-permission-common@0.9.1 ## @backstage/plugin-scaffolder-react@1.19.0-next.1 ### Minor Changes - 4f99e10: **DEPRECATION**: The following types have been deprecated from this package and moved into `@backstage/plugin-scaffolder-common` and should be imported from there instead. `Action`, `ListActionsResponse`, `LogEvent`, `ScaffolderApi`, `ScaffolderDryRunOptions`, `ScaffolderDryRunResponse`, `ScaffolderGetIntegrationsListOptions`, `ScaffolderGetIntegrationsListResponse`, `ScaffolderOutputLink`, `ScaffolderOutputText`, `ScaffolderScaffoldOptions`, `ScaffolderScaffoldResponse`, `ScaffolderStreamLogsOptions`, `ScaffolderTask`, `ScaffolderTaskOutput`, `ScaffolderTaskStatus`, `ScaffolderUsageExample`, `TemplateFilter`, `TemplateGlobalFunction`, `TemplateGlobalValue`, `TemplateParameterSchema`. - c08cbc4: Move Scaffolder API to OpenAPI ### Patch Changes - f2f133c: Internal update to use the new variant of `ApiBlueprint`. - c4b7c50: Export `FormField` type from `/alpha` in `-react` package, and internal refactor. - Updated dependencies - @backstage/plugin-scaffolder-common@1.7.0-next.0 - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/theme@0.6.8-next.0 - @backstage/catalog-client@1.11.0-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/core-plugin-api@1.10.9 - @backstage/types@1.2.1 - @backstage/version-bridge@1.0.11 - @backstage/plugin-permission-react@0.4.36 ## @backstage/plugin-techdocs@1.14.0-next.1 ### Minor Changes - cb0541f: Adds `additionalAllowedURIProtocols` to sanitizer config ### Patch Changes - f2f133c: Internal update to use the new variant of `ApiBlueprint`. - Updated dependencies - @backstage/core-compat-api@0.4.5-next.1 - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/theme@0.6.8-next.0 - @backstage/catalog-client@1.11.0-next.0 - @backstage/plugin-search-react@1.9.3-next.0 - @backstage/plugin-techdocs-react@1.3.2-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/core-plugin-api@1.10.9 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/integration-react@1.2.9 - @backstage/plugin-auth-react@0.1.18-next.0 - @backstage/plugin-search-common@1.2.19 - @backstage/plugin-techdocs-common@0.1.1 ## @backstage/app-defaults@1.6.5-next.0 ### Patch Changes - Updated dependencies - @backstage/theme@0.6.8-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/core-app-api@1.18.0 - @backstage/core-plugin-api@1.10.9 - @backstage/plugin-permission-react@0.4.36 ## @backstage/backend-app-api@1.2.6-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 ## @backstage/backend-defaults@0.11.2-next.0 ### Patch Changes - caee2eb: Fixed WinstonLogger throwing when redactions were null or undefined - 3a7dad9: Updated `better-sqlite3` to v12 - Updated dependencies - @backstage/backend-app-api@1.2.6-next.0 - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/plugin-permission-node@0.10.3-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/cli-node@0.2.13 - @backstage/config-loader@1.10.2 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/backend-dev-utils@0.1.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/integration-aws-node@0.1.17 - @backstage/types@1.2.1 ## @backstage/backend-dynamic-feature-service@0.7.3-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-defaults@0.11.2-next.0 - @backstage/backend-openapi-utils@0.6.0-next.0 - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/plugin-catalog-backend@3.0.1-next.0 - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/plugin-events-backend@0.5.5-next.0 - @backstage/plugin-permission-node@0.10.3-next.0 - @backstage/plugin-search-backend-node@1.3.14-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/cli-node@0.2.13 - @backstage/config-loader@1.10.2 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/cli-common@0.1.15 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/plugin-app-node@0.1.36-next.0 - @backstage/plugin-permission-common@0.9.1 - @backstage/plugin-search-common@1.2.19 ## @backstage/backend-plugin-api@1.4.2-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/plugin-permission-node@0.10.3-next.0 - @backstage/cli-common@0.1.15 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/plugin-permission-common@0.9.1 ## @backstage/backend-test-utils@1.7.1-next.0 ### Patch Changes - 3a7dad9: Updated `better-sqlite3` to v12 - Updated dependencies - @backstage/backend-defaults@0.11.2-next.0 - @backstage/backend-app-api@1.2.6-next.0 - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/plugin-permission-common@0.9.1 ## @backstage/cli@0.33.2-next.0 ### Patch Changes - a6af768: Allow js files to be processed by the nodeTransform loader - Updated dependencies - @backstage/cli-node@0.2.13 - @backstage/config-loader@1.10.2 - @backstage/catalog-model@1.7.5 - @backstage/cli-common@0.1.15 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/eslint-plugin@0.1.11 - @backstage/integration@1.17.1 - @backstage/release-manifests@0.0.13 - @backstage/types@1.2.1 ## @backstage/core-compat-api@0.4.5-next.1 ### Patch Changes - f2f133c: Internal update to use the new variant of `ApiBlueprint`. - Updated dependencies - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/core-plugin-api@1.10.9 - @backstage/version-bridge@1.0.11 ## @backstage/core-components@0.17.5-next.0 ### Patch Changes - Updated dependencies - @backstage/theme@0.6.8-next.0 - @backstage/config@1.3.3 - @backstage/core-plugin-api@1.10.9 - @backstage/errors@1.2.7 - @backstage/version-bridge@1.0.11 ## @backstage/create-app@0.7.2-next.1 ### Patch Changes - d7a3d04: Created a flag for scaffolding apps using the new frontend system. - 2a156e0: Updated the `better-sqlite` dependency from `v9.0.0` to `v13.0.0`. You can apply this change to your instance by applying the following change to your `packages/backend/package.json` and running `yarn install`. ```diff "dependencies": { "app": "link:../app", - "better-sqlite3": "^9.0.0", + "better-sqlite3": "^12.0.0", "node-gyp": "^10.0.0", "pg": "^8.11.3" } ``` - Updated dependencies - @backstage/cli-common@0.1.15 ## @backstage/dev-utils@1.1.13-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/theme@0.6.8-next.0 - @backstage/app-defaults@1.6.5-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/core-app-api@1.18.0 - @backstage/core-plugin-api@1.10.9 - @backstage/integration-react@1.2.9 ## @backstage/frontend-app-api@0.11.5-next.1 ### Patch Changes - f2f133c: Internal update to use the new variant of `ApiBlueprint`. - Updated dependencies - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/frontend-defaults@0.2.5-next.1 - @backstage/config@1.3.3 - @backstage/core-app-api@1.18.0 - @backstage/core-plugin-api@1.10.9 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/version-bridge@1.0.11 ## @backstage/frontend-defaults@0.2.5-next.1 ### Patch Changes - Updated dependencies - @backstage/frontend-app-api@0.11.5-next.1 - @backstage/plugin-app@0.2.0-next.0 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 ## @backstage/frontend-dynamic-feature-loader@0.1.4-next.0 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/config@1.3.3 ## @backstage/frontend-test-utils@0.3.5-next.1 ### Patch Changes - Updated dependencies - @backstage/frontend-app-api@0.11.5-next.1 - @backstage/plugin-app@0.2.0-next.0 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/test-utils@1.7.11-next.0 - @backstage/config@1.3.3 - @backstage/types@1.2.1 - @backstage/version-bridge@1.0.11 ## @backstage/repo-tools@0.15.1-next.0 ### Patch Changes - 225d7c2: Added `stringEnums` to `mustache` templates - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/cli-node@0.2.13 - @backstage/config-loader@1.10.2 - @backstage/catalog-model@1.7.5 - @backstage/cli-common@0.1.15 - @backstage/errors@1.2.7 ## @techdocs/cli@1.9.6-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-defaults@0.11.2-next.0 - @backstage/plugin-techdocs-node@1.13.6-next.0 - @backstage/catalog-model@1.7.5 - @backstage/cli-common@0.1.15 - @backstage/config@1.3.3 ## @backstage/test-utils@1.7.11-next.0 ### Patch Changes - Updated dependencies - @backstage/theme@0.6.8-next.0 - @backstage/config@1.3.3 - @backstage/core-app-api@1.18.0 - @backstage/core-plugin-api@1.10.9 - @backstage/types@1.2.1 - @backstage/plugin-permission-common@0.9.1 - @backstage/plugin-permission-react@0.4.36 ## @backstage/theme@0.6.8-next.0 ### Patch Changes - b731527: We are introducing two new data attributes on the `body` to support Backstage UI (BUI) new theming system. ## @backstage/ui@0.7.0-next.1 ### Patch Changes - de89a3d: Fixes some styles on the Select component in BUI. - 75fead9: Fixes a couple of small bugs in BUI including setting H1 and H2 correctly on the Header and HeaderPage. - 2f9a084: We are motion away from `motion` to use `gsap` instead to make Backstage UI backward compatible with React 17. ## @backstage/plugin-api-docs@0.12.10-next.1 ### Patch Changes - f2f133c: Internal update to use the new variant of `ApiBlueprint`. - Updated dependencies - @backstage/plugin-catalog@1.31.2-next.1 - @backstage/core-compat-api@0.4.5-next.1 - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/core-plugin-api@1.10.9 - @backstage/plugin-catalog-common@1.1.5 - @backstage/plugin-permission-react@0.4.36 ## @backstage/plugin-app-backend@0.5.5-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config-loader@1.10.2 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/plugin-app-node@0.1.36-next.0 ## @backstage/plugin-app-node@0.1.36-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config-loader@1.10.2 ## @backstage/plugin-app-visualizer@0.1.22-next.0 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/core-plugin-api@1.10.9 ## @backstage/plugin-auth-backend@0.25.3-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 ## @backstage/plugin-auth-backend-module-atlassian-provider@0.4.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 ## @backstage/plugin-auth-backend-module-auth0-provider@0.2.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 ## @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-backend@0.25.3-next.0 - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/errors@1.2.7 ## @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.11-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/errors@1.2.7 ## @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 ## @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 ## @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 ## @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 ## @backstage/plugin-auth-backend-module-github-provider@0.3.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 ## @backstage/plugin-auth-backend-module-gitlab-provider@0.3.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 ## @backstage/plugin-auth-backend-module-google-provider@0.3.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 ## @backstage/plugin-auth-backend-module-guest-provider@0.2.11-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/errors@1.2.7 ## @backstage/plugin-auth-backend-module-microsoft-provider@0.3.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 ## @backstage/plugin-auth-backend-module-oauth2-provider@0.4.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 ## @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.11-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/errors@1.2.7 ## @backstage/plugin-auth-backend-module-oidc-provider@0.4.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-backend@0.25.3-next.0 - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/types@1.2.1 ## @backstage/plugin-auth-backend-module-okta-provider@0.2.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 ## @backstage/plugin-auth-backend-module-onelogin-provider@0.3.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 ## @backstage/plugin-auth-backend-module-pinniped-provider@0.3.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/types@1.2.1 ## @backstage/plugin-auth-backend-module-vmware-cloud-provider@0.5.6-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 ## @backstage/plugin-auth-node@0.6.6-next.0 ### Patch Changes - Updated dependencies - @backstage/catalog-client@1.11.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 ## @backstage/plugin-auth-react@0.1.18-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.17.5-next.0 - @backstage/core-plugin-api@1.10.9 - @backstage/errors@1.2.7 ## @backstage/plugin-catalog@1.31.2-next.1 ### Patch Changes - c0ea01b: Fix card scrolling behaviour - f2f133c: Internal update to use the new variant of `ApiBlueprint`. - Updated dependencies - @backstage/plugin-scaffolder-common@1.7.0-next.0 - @backstage/core-compat-api@0.4.5-next.1 - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/catalog-client@1.11.0-next.0 - @backstage/plugin-search-react@1.9.3-next.0 - @backstage/plugin-techdocs-react@1.3.2-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/core-plugin-api@1.10.9 - @backstage/errors@1.2.7 - @backstage/integration-react@1.2.9 - @backstage/types@1.2.1 - @backstage/version-bridge@1.0.11 - @backstage/plugin-catalog-common@1.1.5 - @backstage/plugin-permission-react@0.4.36 - @backstage/plugin-search-common@1.2.19 - @backstage/plugin-techdocs-common@0.1.1 ## @backstage/plugin-catalog-backend@3.0.1-next.0 ### Patch Changes - 3a7dad9: Updated `better-sqlite3` to v12 - Updated dependencies - @backstage/backend-openapi-utils@0.6.0-next.0 - @backstage/catalog-client@1.11.0-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/plugin-permission-node@0.10.3-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/types@1.2.1 - @backstage/plugin-catalog-common@1.1.5 - @backstage/plugin-permission-common@0.9.1 ## @backstage/plugin-catalog-backend-module-aws@0.4.14-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-defaults@0.11.2-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/integration-aws-node@0.1.17 - @backstage/plugin-catalog-common@1.1.5 - @backstage/plugin-kubernetes-common@0.9.6 ## @backstage/plugin-catalog-backend-module-azure@0.3.8-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/integration@1.17.1 - @backstage/plugin-catalog-common@1.1.5 ## @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.5-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-openapi-utils@0.6.0-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 ## @backstage/plugin-catalog-backend-module-bitbucket-cloud@0.5.2-next.0 ### Patch Changes - Updated dependencies - @backstage/catalog-client@1.11.0-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/integration@1.17.1 - @backstage/plugin-bitbucket-cloud-common@0.3.1 - @backstage/plugin-catalog-common@1.1.5 ## @backstage/plugin-catalog-backend-module-bitbucket-server@0.5.2-next.0 ### Patch Changes - Updated dependencies - @backstage/catalog-client@1.11.0-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/plugin-catalog-common@1.1.5 ## @backstage/plugin-catalog-backend-module-gcp@0.3.11-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/plugin-kubernetes-common@0.9.6 ## @backstage/plugin-catalog-backend-module-gerrit@0.3.5-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/plugin-catalog-common@1.1.5 ## @backstage/plugin-catalog-backend-module-gitea@0.1.3-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/plugin-catalog-common@1.1.5 ## @backstage/plugin-catalog-backend-module-github@0.10.2-next.0 ### Patch Changes - d421b16: This change introduces single user versions of the user group resolution code in the multi org provider that will not page through all membership when updating a single user. - Updated dependencies - @backstage/catalog-client@1.11.0-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/plugin-catalog-backend@3.0.1-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/integration@1.17.1 - @backstage/plugin-catalog-common@1.1.5 ## @backstage/plugin-catalog-backend-module-github-org@0.3.13-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/plugin-catalog-backend-module-github@0.10.2-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/config@1.3.3 ## @backstage/plugin-catalog-backend-module-gitlab@0.7.2-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-defaults@0.11.2-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/integration@1.17.1 - @backstage/plugin-catalog-common@1.1.5 ## @backstage/plugin-catalog-backend-module-gitlab-org@0.2.12-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/plugin-catalog-backend-module-gitlab@0.7.2-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 ## @backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.3-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-defaults@0.11.2-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/plugin-catalog-backend@3.0.1-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/plugin-permission-common@0.9.1 ## @backstage/plugin-catalog-backend-module-ldap@0.11.8-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/plugin-catalog-common@1.1.5 ## @backstage/plugin-catalog-backend-module-logs@0.1.13-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-backend@3.0.1-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 ## @backstage/plugin-catalog-backend-module-msgraph@0.7.3-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/plugin-catalog-common@1.1.5 ## @backstage/plugin-catalog-backend-module-openapi@0.2.13-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/integration@1.17.1 - @backstage/types@1.2.1 - @backstage/plugin-catalog-common@1.1.5 ## @backstage/plugin-catalog-backend-module-puppetdb@0.2.13-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 ## @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.11-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-common@1.7.0-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/plugin-catalog-common@1.1.5 ## @backstage/plugin-catalog-backend-module-unprocessed@0.6.3-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/errors@1.2.7 - @backstage/plugin-catalog-unprocessed-entities-common@0.0.9 - @backstage/plugin-permission-common@0.9.1 ## @backstage/plugin-catalog-graph@0.4.22-next.1 ### Patch Changes - Updated dependencies - @backstage/core-compat-api@0.4.5-next.1 - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/catalog-client@1.11.0-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/core-plugin-api@1.10.9 - @backstage/types@1.2.1 ## @backstage/plugin-catalog-import@0.13.4-next.1 ### Patch Changes - f2f133c: Internal update to use the new variant of `ApiBlueprint`. - Updated dependencies - @backstage/core-compat-api@0.4.5-next.1 - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/catalog-client@1.11.0-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/core-plugin-api@1.10.9 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/integration-react@1.2.9 - @backstage/plugin-catalog-common@1.1.5 ## @backstage/plugin-catalog-unprocessed-entities@0.2.20-next.1 ### Patch Changes - f2f133c: Internal update to use the new variant of `ApiBlueprint`. - Updated dependencies - @backstage/core-compat-api@0.4.5-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/core-plugin-api@1.10.9 - @backstage/errors@1.2.7 ## @backstage/plugin-config-schema@0.1.71-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.17.5-next.0 - @backstage/core-plugin-api@1.10.9 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 ## @backstage/plugin-devtools@0.1.30-next.1 ### Patch Changes - f2f133c: Internal update to use the new variant of `ApiBlueprint`. - Updated dependencies - @backstage/core-compat-api@0.4.5-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/core-plugin-api@1.10.9 - @backstage/errors@1.2.7 - @backstage/plugin-devtools-common@0.1.17 - @backstage/plugin-permission-react@0.4.36 ## @backstage/plugin-devtools-backend@0.5.8-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-defaults@0.11.2-next.0 - @backstage/plugin-permission-node@0.10.3-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config-loader@1.10.2 - @backstage/cli-common@0.1.15 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/plugin-devtools-common@0.1.17 - @backstage/plugin-permission-common@0.9.1 ## @backstage/plugin-events-backend@0.5.5-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-openapi-utils@0.6.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 ## @backstage/plugin-events-backend-module-aws-sqs@0.4.14-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/config@1.3.3 - @backstage/types@1.2.1 ## @backstage/plugin-events-backend-module-azure@0.2.23-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 ## @backstage/plugin-events-backend-module-bitbucket-cloud@0.2.23-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 ## @backstage/plugin-events-backend-module-bitbucket-server@0.1.4-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 ## @backstage/plugin-events-backend-module-gerrit@0.2.23-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 ## @backstage/plugin-events-backend-module-github@0.4.3-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/config@1.3.3 - @backstage/integration@1.17.1 - @backstage/types@1.2.1 ## @backstage/plugin-events-backend-module-gitlab@0.3.4-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/config@1.3.3 ## @backstage/plugin-events-backend-module-google-pubsub@0.1.3-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 ## @backstage/plugin-events-backend-module-kafka@0.1.2-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/config@1.3.3 - @backstage/types@1.2.1 ## @backstage/plugin-events-backend-test-utils@0.1.47-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-events-node@0.4.14-next.0 ## @backstage/plugin-events-node@0.4.14-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 ## @backstage/plugin-gateway-backend@1.0.4-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 ## @backstage/plugin-home@0.8.11-next.1 ### Patch Changes - f16d380: Add the missing Visits API to the alpha plugin, fixing a crash due to the API not being installed. - f2f133c: Internal update to use the new variant of `ApiBlueprint`. - Updated dependencies - @backstage/core-compat-api@0.4.5-next.1 - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/theme@0.6.8-next.0 - @backstage/catalog-client@1.11.0-next.0 - @backstage/plugin-home-react@0.1.29-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/core-app-api@1.18.0 - @backstage/core-plugin-api@1.10.9 ## @backstage/plugin-home-react@0.1.29-next.0 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/core-plugin-api@1.10.9 ## @backstage/plugin-kubernetes@0.12.10-next.1 ### Patch Changes - f2f133c: Internal update to use the new variant of `ApiBlueprint`. - Updated dependencies - @backstage/core-compat-api@0.4.5-next.1 - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/core-plugin-api@1.10.9 - @backstage/plugin-kubernetes-common@0.9.6 - @backstage/plugin-kubernetes-react@0.5.10-next.0 - @backstage/plugin-permission-react@0.4.36 ## @backstage/plugin-kubernetes-backend@0.19.9-next.0 ### Patch Changes - 00ebaeb: Remove usage of the deprecated `loggerToWinstonLogger` from `@backstage/backend-common`. - Updated dependencies - @backstage/catalog-client@1.11.0-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/plugin-kubernetes-node@0.3.3-next.0 - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/plugin-permission-node@0.10.3-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration-aws-node@0.1.17 - @backstage/types@1.2.1 - @backstage/plugin-kubernetes-common@0.9.6 - @backstage/plugin-permission-common@0.9.1 ## @backstage/plugin-kubernetes-cluster@0.0.28-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/core-plugin-api@1.10.9 - @backstage/plugin-kubernetes-common@0.9.6 - @backstage/plugin-kubernetes-react@0.5.10-next.0 - @backstage/plugin-permission-react@0.4.36 ## @backstage/plugin-kubernetes-node@0.3.3-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/types@1.2.1 - @backstage/plugin-kubernetes-common@0.9.6 ## @backstage/plugin-kubernetes-react@0.5.10-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/core-plugin-api@1.10.9 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/plugin-kubernetes-common@0.9.6 ## @backstage/plugin-mcp-actions-backend@0.1.2-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-defaults@0.11.2-next.0 - @backstage/catalog-client@1.11.0-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 ## @backstage/plugin-notifications@0.5.8-next.1 ### Patch Changes - f2f133c: Internal update to use the new variant of `ApiBlueprint`. - Updated dependencies - @backstage/core-compat-api@0.4.5-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/theme@0.6.8-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/core-plugin-api@1.10.9 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/plugin-notifications-common@0.0.10 - @backstage/plugin-signals-react@0.0.15 ## @backstage/plugin-notifications-backend@0.5.9-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/plugin-notifications-node@0.2.18-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/plugin-notifications-common@0.0.10 - @backstage/plugin-signals-node@0.1.23-next.0 ## @backstage/plugin-notifications-backend-module-email@0.3.12-next.0 ### Patch Changes - Updated dependencies - @backstage/catalog-client@1.11.0-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/plugin-notifications-node@0.2.18-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/integration-aws-node@0.1.17 - @backstage/types@1.2.1 - @backstage/plugin-notifications-common@0.0.10 ## @backstage/plugin-notifications-backend-module-slack@0.1.4-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/plugin-notifications-node@0.2.18-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/plugin-notifications-common@0.0.10 ## @backstage/plugin-notifications-node@0.2.18-next.0 ### Patch Changes - Updated dependencies - @backstage/catalog-client@1.11.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/plugin-notifications-common@0.0.10 - @backstage/plugin-signals-node@0.1.23-next.0 ## @backstage/plugin-org@0.6.42-next.1 ### Patch Changes - Updated dependencies - @backstage/core-compat-api@0.4.5-next.1 - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/core-plugin-api@1.10.9 - @backstage/plugin-catalog-common@1.1.5 ## @backstage/plugin-org-react@0.1.41-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/catalog-client@1.11.0-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/core-plugin-api@1.10.9 ## @backstage/plugin-permission-backend@0.7.3-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/plugin-permission-node@0.10.3-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/plugin-permission-common@0.9.1 ## @backstage/plugin-permission-backend-module-allow-all-policy@0.2.11-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/plugin-permission-node@0.10.3-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-permission-common@0.9.1 ## @backstage/plugin-permission-node@0.10.3-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/plugin-permission-common@0.9.1 ## @backstage/plugin-proxy-backend@0.6.5-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-proxy-node@0.1.7-next.0 - @backstage/types@1.2.1 ## @backstage/plugin-proxy-node@0.1.7-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 ## @backstage/plugin-scaffolder-backend-module-azure@0.2.12-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 ## @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.13-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.12-next.0 - @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.12-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 ## @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.12-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/plugin-bitbucket-cloud-common@0.3.1 ## @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.12-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 ## @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.12-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 ## @backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.14-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-defaults@0.11.2-next.0 - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/types@1.2.1 ## @backstage/plugin-scaffolder-backend-module-gcp@0.2.12-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 ## @backstage/plugin-scaffolder-backend-module-gerrit@0.2.12-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 ## @backstage/plugin-scaffolder-backend-module-gitea@0.2.12-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 ## @backstage/plugin-scaffolder-backend-module-github@0.8.2-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/types@1.2.1 ## @backstage/plugin-scaffolder-backend-module-gitlab@0.9.4-next.0 ### Patch Changes - df2bfab: The `description` property in `publish:gitlab:merge-request` has been made optional again to comply with the GitLab API. - Updated dependencies - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 ## @backstage/plugin-scaffolder-backend-module-notifications@0.1.13-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/plugin-notifications-node@0.2.18-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-notifications-common@0.0.10 ## @backstage/plugin-scaffolder-backend-module-rails@0.5.12-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/types@1.2.1 ## @backstage/plugin-scaffolder-backend-module-sentry@0.2.12-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 ## @backstage/plugin-scaffolder-backend-module-yeoman@0.4.13-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/plugin-scaffolder-node-test-utils@0.3.2-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/types@1.2.1 ## @backstage/plugin-scaffolder-node-test-utils@0.3.2-next.0 ### Patch Changes - 812485c: Add step info to scaffolder action context to access the step id and name. - Updated dependencies - @backstage/plugin-scaffolder-node@0.11.0-next.0 - @backstage/backend-test-utils@1.7.1-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/types@1.2.1 ## @backstage/plugin-search@1.4.29-next.1 ### Patch Changes - f2f133c: Internal update to use the new variant of `ApiBlueprint`. - Updated dependencies - @backstage/core-compat-api@0.4.5-next.1 - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/plugin-search-react@1.9.3-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/core-plugin-api@1.10.9 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/version-bridge@1.0.11 - @backstage/plugin-search-common@1.2.19 ## @backstage/plugin-search-backend@2.0.5-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-defaults@0.11.2-next.0 - @backstage/backend-openapi-utils@0.6.0-next.0 - @backstage/plugin-permission-node@0.10.3-next.0 - @backstage/plugin-search-backend-node@1.3.14-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/plugin-permission-common@0.9.1 - @backstage/plugin-search-common@1.2.19 ## @backstage/plugin-search-backend-module-catalog@0.3.7-next.0 ### Patch Changes - Updated dependencies - @backstage/catalog-client@1.11.0-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/plugin-search-backend-node@1.3.14-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/plugin-catalog-common@1.1.5 - @backstage/plugin-permission-common@0.9.1 - @backstage/plugin-search-common@1.2.19 ## @backstage/plugin-search-backend-module-elasticsearch@1.7.5-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-search-backend-node@1.3.14-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/integration-aws-node@0.1.17 - @backstage/plugin-search-common@1.2.19 ## @backstage/plugin-search-backend-module-explore@0.3.5-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-search-backend-node@1.3.14-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/plugin-search-common@1.2.19 ## @backstage/plugin-search-backend-module-pg@0.5.47-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-search-backend-node@1.3.14-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/plugin-search-common@1.2.19 ## @backstage/plugin-search-backend-module-stack-overflow-collator@0.3.12-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-search-backend-node@1.3.14-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/plugin-search-common@1.2.19 ## @backstage/plugin-search-backend-module-techdocs@0.4.5-next.0 ### Patch Changes - Updated dependencies - @backstage/catalog-client@1.11.0-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/plugin-search-backend-node@1.3.14-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-techdocs-node@1.13.6-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/plugin-catalog-common@1.1.5 - @backstage/plugin-permission-common@0.9.1 - @backstage/plugin-search-common@1.2.19 ## @backstage/plugin-search-backend-node@1.3.14-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/plugin-permission-common@0.9.1 - @backstage/plugin-search-common@1.2.19 ## @backstage/plugin-search-react@1.9.3-next.0 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/theme@0.6.8-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/core-plugin-api@1.10.9 - @backstage/types@1.2.1 - @backstage/version-bridge@1.0.11 - @backstage/plugin-search-common@1.2.19 ## @backstage/plugin-signals@0.0.22-next.1 ### Patch Changes - f2f133c: Internal update to use the new variant of `ApiBlueprint`. - Updated dependencies - @backstage/core-compat-api@0.4.5-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/theme@0.6.8-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/core-plugin-api@1.10.9 - @backstage/types@1.2.1 - @backstage/plugin-signals-react@0.0.15 ## @backstage/plugin-signals-backend@0.3.7-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/config@1.3.3 - @backstage/types@1.2.1 - @backstage/plugin-signals-node@0.1.23-next.0 ## @backstage/plugin-signals-node@0.1.23-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-events-node@0.4.14-next.0 - @backstage/config@1.3.3 - @backstage/types@1.2.1 ## @backstage/plugin-techdocs-addons-test-utils@1.0.52-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog@1.31.2-next.1 - @backstage/plugin-techdocs@1.14.0-next.1 - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/plugin-search-react@1.9.3-next.0 - @backstage/plugin-techdocs-react@1.3.2-next.0 - @backstage/test-utils@1.7.11-next.0 - @backstage/core-app-api@1.18.0 - @backstage/core-plugin-api@1.10.9 - @backstage/integration-react@1.2.9 ## @backstage/plugin-techdocs-backend@2.0.5-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-defaults@0.11.2-next.0 - @backstage/catalog-client@1.11.0-next.0 - @backstage/plugin-catalog-node@1.18.0-next.0 - @backstage/plugin-search-backend-module-techdocs@0.4.5-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-techdocs-node@1.13.6-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/plugin-catalog-common@1.1.5 - @backstage/plugin-permission-common@0.9.1 - @backstage/plugin-techdocs-common@0.1.1 ## @backstage/plugin-techdocs-module-addons-contrib@1.1.27-next.0 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/plugin-techdocs-react@1.3.2-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/core-plugin-api@1.10.9 - @backstage/integration@1.17.1 - @backstage/integration-react@1.2.9 ## @backstage/plugin-techdocs-node@1.13.6-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/errors@1.2.7 - @backstage/integration@1.17.1 - @backstage/integration-aws-node@0.1.17 - @backstage/plugin-search-common@1.2.19 - @backstage/plugin-techdocs-common@0.1.1 ## @backstage/plugin-techdocs-react@1.3.2-next.0 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/core-plugin-api@1.10.9 - @backstage/version-bridge@1.0.11 - @backstage/plugin-techdocs-common@0.1.1 ## @backstage/plugin-user-settings@0.8.25-next.1 ### Patch Changes - Updated dependencies - @backstage/core-compat-api@0.4.5-next.1 - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/theme@0.6.8-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/core-app-api@1.18.0 - @backstage/core-plugin-api@1.10.9 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/plugin-signals-react@0.0.15 - @backstage/plugin-user-settings-common@0.0.1 ## @backstage/plugin-user-settings-backend@0.3.5-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-defaults@0.11.2-next.0 - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/errors@1.2.7 - @backstage/types@1.2.1 - @backstage/plugin-signals-node@0.1.23-next.0 - @backstage/plugin-user-settings-common@0.0.1 ## example-app@0.2.112-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog@1.31.2-next.1 - @backstage/plugin-scaffolder-react@1.19.0-next.1 - @backstage/plugin-scaffolder@1.34.0-next.1 - @backstage/ui@0.7.0-next.1 - @backstage/plugin-home@0.8.11-next.1 - @backstage/plugin-catalog-unprocessed-entities@0.2.20-next.1 - @backstage/frontend-app-api@0.11.5-next.1 - @backstage/plugin-catalog-import@0.13.4-next.1 - @backstage/plugin-notifications@0.5.8-next.1 - @backstage/plugin-kubernetes@0.12.10-next.1 - @backstage/plugin-api-docs@0.12.10-next.1 - @backstage/plugin-devtools@0.1.30-next.1 - @backstage/plugin-techdocs@1.14.0-next.1 - @backstage/plugin-signals@0.0.22-next.1 - @backstage/plugin-search@1.4.29-next.1 - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/theme@0.6.8-next.0 - @backstage/cli@0.33.2-next.0 - @backstage/plugin-catalog-graph@0.4.22-next.1 - @backstage/plugin-kubernetes-cluster@0.0.28-next.1 - @backstage/plugin-org@0.6.42-next.1 - @backstage/plugin-techdocs-module-addons-contrib@1.1.27-next.0 - @backstage/plugin-user-settings@0.8.25-next.1 - @backstage/plugin-search-react@1.9.3-next.0 - @backstage/plugin-techdocs-react@1.3.2-next.0 - @backstage/app-defaults@1.6.5-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/core-app-api@1.18.0 - @backstage/core-plugin-api@1.10.9 - @backstage/integration-react@1.2.9 - @backstage/plugin-auth-react@0.1.18-next.0 - @backstage/plugin-catalog-common@1.1.5 - @backstage/plugin-permission-react@0.4.36 - @backstage/plugin-search-common@1.2.19 ## example-app-next@0.0.26-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog@1.31.2-next.1 - @backstage/plugin-scaffolder-react@1.19.0-next.1 - @backstage/plugin-scaffolder@1.34.0-next.1 - @backstage/ui@0.7.0-next.1 - @backstage/plugin-home@0.8.11-next.1 - @backstage/plugin-catalog-unprocessed-entities@0.2.20-next.1 - @backstage/frontend-app-api@0.11.5-next.1 - @backstage/core-compat-api@0.4.5-next.1 - @backstage/plugin-catalog-import@0.13.4-next.1 - @backstage/plugin-notifications@0.5.8-next.1 - @backstage/plugin-kubernetes@0.12.10-next.1 - @backstage/plugin-api-docs@0.12.10-next.1 - @backstage/plugin-techdocs@1.14.0-next.1 - @backstage/plugin-signals@0.0.22-next.1 - @backstage/plugin-search@1.4.29-next.1 - @backstage/plugin-app@0.2.0-next.0 - @backstage/plugin-catalog-react@1.20.0-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/theme@0.6.8-next.0 - @backstage/cli@0.33.2-next.0 - @backstage/frontend-defaults@0.2.5-next.1 - @backstage/plugin-catalog-graph@0.4.22-next.1 - @backstage/plugin-kubernetes-cluster@0.0.28-next.1 - @backstage/plugin-org@0.6.42-next.1 - @backstage/plugin-techdocs-module-addons-contrib@1.1.27-next.0 - @backstage/plugin-user-settings@0.8.25-next.1 - @backstage/plugin-app-visualizer@0.1.22-next.0 - @backstage/plugin-search-react@1.9.3-next.0 - @backstage/plugin-techdocs-react@1.3.2-next.0 - @backstage/app-defaults@1.6.5-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/core-app-api@1.18.0 - @backstage/core-plugin-api@1.10.9 - @backstage/integration-react@1.2.9 - @backstage/plugin-auth-react@0.1.18-next.0 - @backstage/plugin-catalog-common@1.1.5 - @backstage/plugin-permission-react@0.4.36 - @backstage/plugin-search-common@1.2.19 ## app-next-example-plugin@0.0.26-next.0 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/core-components@0.17.5-next.0 ## example-backend@0.0.41-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-kubernetes-backend@0.19.9-next.0 - @backstage/plugin-scaffolder-backend@2.2.0-next.0 - @backstage/backend-defaults@0.11.2-next.0 - @backstage/plugin-catalog-backend@3.0.1-next.0 - @backstage/plugin-app-backend@0.5.5-next.0 - @backstage/plugin-auth-backend@0.25.3-next.0 - @backstage/plugin-auth-backend-module-github-provider@0.3.6-next.0 - @backstage/plugin-auth-node@0.6.6-next.0 - @backstage/plugin-devtools-backend@0.5.8-next.0 - @backstage/plugin-events-backend@0.5.5-next.0 - @backstage/plugin-events-backend-module-google-pubsub@0.1.3-next.0 - @backstage/plugin-mcp-actions-backend@0.1.2-next.0 - @backstage/plugin-notifications-backend@0.5.9-next.0 - @backstage/plugin-permission-backend@0.7.3-next.0 - @backstage/plugin-permission-node@0.10.3-next.0 - @backstage/plugin-proxy-backend@0.6.5-next.0 - @backstage/plugin-search-backend@2.0.5-next.0 - @backstage/plugin-search-backend-node@1.3.14-next.0 - @backstage/plugin-signals-backend@0.3.7-next.0 - @backstage/plugin-techdocs-backend@2.0.5-next.0 - @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.5-next.0 - @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.11-next.0 - @backstage/plugin-scaffolder-backend-module-github@0.8.2-next.0 - @backstage/plugin-scaffolder-backend-module-notifications@0.1.13-next.0 - @backstage/plugin-search-backend-module-catalog@0.3.7-next.0 - @backstage/plugin-search-backend-module-techdocs@0.4.5-next.0 - @backstage/plugin-catalog-backend-module-openapi@0.2.13-next.0 - @backstage/plugin-catalog-backend-module-unprocessed@0.6.3-next.0 - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/plugin-auth-backend-module-guest-provider@0.2.11-next.0 - @backstage/plugin-permission-backend-module-allow-all-policy@0.2.11-next.0 - @backstage/plugin-search-backend-module-explore@0.3.5-next.0 - @backstage/catalog-model@1.7.5 - @backstage/plugin-permission-common@0.9.1 ## @internal/frontend@0.0.12-next.0 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.11.0-next.0 - @backstage/types@1.2.1 - @backstage/version-bridge@1.0.11 ## @internal/scaffolder@0.0.12-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-scaffolder-react@1.19.0-next.1 - @backstage/frontend-plugin-api@0.11.0-next.0 ## techdocs-cli-embedded-app@0.2.111-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog@1.31.2-next.1 - @backstage/plugin-techdocs@1.14.0-next.1 - @backstage/theme@0.6.8-next.0 - @backstage/cli@0.33.2-next.0 - @backstage/plugin-techdocs-react@1.3.2-next.0 - @backstage/app-defaults@1.6.5-next.0 - @backstage/core-components@0.17.5-next.0 - @backstage/test-utils@1.7.11-next.0 - @backstage/catalog-model@1.7.5 - @backstage/config@1.3.3 - @backstage/core-app-api@1.18.0 - @backstage/core-plugin-api@1.10.9 - @backstage/integration-react@1.2.9 ## @internal/plugin-todo-list@1.0.42-next.0 ### Patch Changes - Updated dependencies - @backstage/core-components@0.17.5-next.0 - @backstage/core-plugin-api@1.10.9 ## @internal/plugin-todo-list-backend@1.0.42-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.2-next.0 - @backstage/errors@1.2.7