Skip to content

[release-v1.16][npm]: Bump the minor group across 5 directories with 46 updates#1176

Open
dependabot[bot] wants to merge 2 commits intorelease-v1.16from
dependabot/npm_and_yarn/backstage/release-v1.16/minor-834f47e87b
Open

[release-v1.16][npm]: Bump the minor group across 5 directories with 46 updates#1176
dependabot[bot] wants to merge 2 commits intorelease-v1.16from
dependabot/npm_and_yarn/backstage/release-v1.16/minor-834f47e87b

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Mar 23, 2026

Bumps the minor group with 34 updates in the /backstage directory:

Package From To
@backstage/cli 0.24.0 0.36.0
@playwright/test 1.40.1 1.58.2
typescript 5.2.2 5.9.3
@backstage/app-defaults 1.4.5 1.7.6
@backstage/catalog-model 1.5.0 1.7.7
@backstage/core-components 0.13.8 0.18.8
@backstage/integration-react 1.1.21 1.2.16
@backstage/plugin-api-docs 0.10.1 0.13.5
@backstage/plugin-catalog-graph 0.3.1 0.6.0
@backstage/plugin-catalog-import 0.10.3 0.13.11
@backstage/plugin-org 0.6.17 0.7.0
@backstage/plugin-scaffolder 1.16.1 1.36.1
@backstage/plugin-search 1.4.3 1.7.0
@backstage/plugin-tech-radar 0.6.10 0.7.4
@backstage/plugin-techdocs 1.9.1 1.17.2
@backstage/plugin-user-settings 0.7.13 0.9.1
@backstage/theme 0.4.4 0.7.2
react-use 17.4.2 17.6.0
@backstage/test-utils 1.4.5 1.7.16
@testing-library/user-event 14.5.1 14.6.1
@backstage/backend-common 0.19.9 0.25.0
@backstage/backend-tasks 0.5.23 0.6.1
@backstage/plugin-app-backend 0.3.55 0.5.12
@backstage/plugin-auth-backend 0.20.0 0.27.3
@backstage/plugin-auth-node 0.4.13 0.6.14
@backstage/plugin-catalog-backend-module-scaffolder-entity-model 0.1.4 0.2.18
@backstage/plugin-permission-common 0.7.13 0.9.7
@backstage/plugin-permission-node 0.7.29 0.10.11
@backstage/plugin-proxy-backend 0.4.5 0.6.11
@backstage/plugin-search-backend-module-catalog 0.1.24 0.3.13
@backstage/plugin-search-backend-module-techdocs 0.1.11 0.4.12
pg 8.11.3 8.20.0
winston 3.11.0 3.19.0
@backstage/backend-dynamic-feature-service 0.2.10 0.8.0

Bumps the minor group with 9 updates in the /backstage/packages/app directory:

Package From To
@backstage/cli 0.24.0 0.36.0
@backstage/core-components 0.13.10 0.18.8
@backstage/plugin-api-docs 0.10.3 0.13.5
@backstage/plugin-catalog-graph 0.3.3 0.6.0
@backstage/plugin-catalog-import 0.10.10 0.13.11
@backstage/plugin-org 0.6.49 0.7.0
@backstage/plugin-tech-radar 0.6.13 0.7.4
@backstage/plugin-user-settings 0.7.14 0.9.1
@backstage/theme 0.4.4 0.7.2

Bumps the minor group with 9 updates in the /backstage/packages/backend directory:

Package From To
@backstage/plugin-app-backend 0.3.76 0.5.12
@backstage/plugin-auth-backend 0.20.3 0.27.3
@backstage/plugin-auth-node 0.4.17 0.6.14
@backstage/plugin-catalog-backend-module-scaffolder-entity-model 0.1.22 0.2.18
@backstage/plugin-permission-common 0.7.14 0.9.7
@backstage/plugin-permission-node 0.7.32 0.10.11
@backstage/plugin-proxy-backend 0.4.16 0.6.11
@backstage/plugin-search-backend-module-catalog 0.1.28 0.3.13
@backstage/plugin-search-backend-module-techdocs 0.1.27 0.4.12

Bumps the minor group with 4 updates in the /backstage/plugins/knative-event-mesh-backend directory: @backstage/cli, @backstage/backend-common, @backstage/backend-tasks and @backstage/backend-dynamic-feature-service.
Bumps the minor group with 1 update in the /backstage/plugins/knative-event-mesh-backend/dist-dynamic directory: winston.

Updates @backstage/cli from 0.24.0 to 0.36.0

Changelog

Sourced from @​backstage/cli's changelog.

0.36.0

Minor Changes

  • d0f4cd2: Added new auth command group for authenticating the CLI with Backstage instances using OAuth 2.0 with a pre-registered client metadata document. Commands include login, logout, list, show, print-token, and select for managing multiple authenticated instances.

  • d806b0c: The CLI now automatically discovers CLI modules from the project root's dependencies and devDependencies. Any installed package with the cli-module Backstage role will be loaded automatically without needing to be hardcoded in the CLI itself.

    If no CLI modules are found in the project dependencies, the CLI falls back to the built-in set of modules and prints a deprecation warning. This fallback will be removed in a future release. To prepare for this, add @backstage/cli-defaults as a devDependency in your root package.json:

    {
      "devDependencies": {
        "@backstage/cli-defaults": "backstage:^"
      }
    }

    If you are not using the Backstage Yarn plugin, run the following instead:

    yarn workspace root add --dev @backstage/cli-defaults

    For fine-grained control you can instead install individual CLI modules:

    {
      "devDependencies": {
        "@backstage/cli-module-auth": "backstage:^",
        "@backstage/cli-module-build": "backstage:^",
        "@backstage/cli-module-config": "backstage:^",
        "@backstage/cli-module-github": "backstage:^",
        "@backstage/cli-module-info": "backstage:^",
        "@backstage/cli-module-lint": "backstage:^",
        "@backstage/cli-module-maintenance": "backstage:^",
        "@backstage/cli-module-migrate": "backstage:^",
        "@backstage/cli-module-new": "backstage:^",
        "@backstage/cli-module-test-jest": "backstage:^",
        "@backstage/cli-module-translations": "backstage:^"
      }
    }
  • 08d9770: BREAKING: The CLI templates for frontend plugins have been renamed:

    • new-frontend-pluginfrontend-plugin
    • new-frontend-plugin-modulefrontend-plugin-module
    • frontend-plugin (legacy) → legacy-frontend-plugin

    To smooth out this breaking change, the CLI now auto-detects which frontend system your app uses based on the dependencies in packages/app/package.json. When using the default templates (no explicit templates configuration):

... (truncated)

Commits
  • 613e46d chore(deps): bump fs-extra from 9.1.0 to 10.0.0
  • 6e937b9 Version Packages
  • 8939f9e chore(deps): bump ts-node from 9.1.1 to 10.0.0
  • 852a8fd Merge pull request #6213 from backstage/dependabot/npm_and_yarn/rollup/plugin...
  • 55f49fc chore(deps): bump @​rollup/plugin-yaml from 2.1.1 to 3.0.0
  • 0ce80ab Merge pull request #6204 from backstage/rugvip/safety
  • a93e60f chore(deps): bump css-loader from 3.6.0 to 5.2.6
  • ab5cc37 backend-common,cli-common: new utilites for safely resolving child paths
  • 5a64fe7 Version Packages
  • 9cec983 Merge pull request #6153 from backstage/dependabot/npm_and_yarn/rollup/plugin...
  • Additional commits viewable in compare view

Updates @playwright/test from 1.40.1 to 1.58.2

Release notes

Sourced from @​playwright/test's releases.

v1.58.2

Highlights

#39121 fix(trace viewer): make paths via stdin work #39129 fix: do not force swiftshader on chromium mac

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

v1.58.1

Highlights

#39036 fix(msedge): fix local network permissions #39037 chore: update cft download location #38995 chore(webkit): disable frame sessions on fronzen builds

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

v1.58.0

📣 Playwright CLI+SKILLs 📣

We are adding a new token-efficient CLI mode of operation to Playwright with the skills located at playwright-cli. This brings the long-awaited official SKILL-focused CLI mode to our story and makes it more coding agent-friendly.

It is the first snapshot with the essential command set (which is already larger than the original MCP!), but we expect it to grow rapidly. Unlike the token use, that one we expect to go down since snapshots are no longer forced into the LLM!

Timeline

If you're using merged reports, the HTML report Speedboard tab now shows the Timeline:

Timeline chart in the HTML report

UI Mode and Trace Viewer Improvements

  • New 'system' theme option follows your OS dark/light mode preference
  • Search functionality (Cmd/Ctrl+F) is now available in code editors
  • Network details panel has been reorganized for better usability
  • JSON responses are now automatically formatted for readability

Thanks to @​cpAdm for contributing these improvements!

Miscellaneous

browserType.connectOverCDP() now accepts an isLocal option. When set to true, it tells Playwright that it runs on the same host as the CDP server, enabling file system optimizations.

Breaking Changes ⚠️

  • Removed _react and _vue selectors. See locators guide for alternatives.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​playwright/test since your current version.


Updates typescript from 5.2.2 to 5.9.3

Release notes

Sourced from typescript's releases.

TypeScript 5.9.3

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 RC

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 Beta

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8.3

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

... (truncated)

Commits
  • c63de15 Bump version to 5.9.3 and LKG
  • 8428ca4 🤖 Pick PR #62438 (Fix incorrectly ignored dts file fr...) into release-5.9 (#...
  • a131cac 🤖 Pick PR #62351 (Add missing Float16Array constructo...) into release-5.9 (#...
  • 0424333 🤖 Pick PR #62423 (Revert PR 61928) into release-5.9 (#62425)
  • bdb641a 🤖 Pick PR #62311 (Fix parenthesizer rules for manuall...) into release-5.9 (#...
  • 0d9b9b9 🤖 Pick PR #61978 (Restructure CI to prepare for requi...) into release-5.9 (#...
  • 2dce0c5 Intentionally regress one buggy declaration output to an older version (#62163)
  • 5be3346 Bump version to 5.9.2 and LKG
  • ad825f2 Bump version to 5.9.1-rc and LKG
  • 463a5bf Update LKG
  • Additional commits viewable in compare view

Updates @backstage/app-defaults from 1.4.5 to 1.7.6

Changelog

Sourced from @​backstage/app-defaults's changelog.

1.7.6

Patch Changes

  • Updated dependencies
    • @​backstage/core-plugin-api@​1.12.4
    • @​backstage/core-components@​0.18.8
    • @​backstage/core-app-api@​1.19.6
    • @​backstage/plugin-permission-react@​0.4.41

1.7.6-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/core-app-api@​1.19.6-next.0
    • @​backstage/core-components@​0.18.8-next.0
    • @​backstage/core-plugin-api@​1.12.4-next.0
    • @​backstage/theme@​0.7.2
    • @​backstage/plugin-permission-react@​0.4.41-next.0

1.7.5

Patch Changes

  • a7e0d50: Updated react-router-dom peer dependency to ^6.30.2 and explicitly disabled v7 future flags to suppress deprecation warnings.
  • Updated dependencies
    • @​backstage/core-components@​0.18.7
    • @​backstage/core-app-api@​1.19.5
    • @​backstage/theme@​0.7.2
    • @​backstage/core-plugin-api@​1.12.3
    • @​backstage/plugin-permission-react@​0.4.40

1.7.5-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @​backstage/core-app-api@​1.19.5-next.1
    • @​backstage/core-components@​0.18.7-next.2
    • @​backstage/core-plugin-api@​1.12.3-next.1
    • @​backstage/plugin-permission-react@​0.4.40-next.1
    • @​backstage/theme@​0.7.2-next.1

1.7.5-next.1

Patch Changes

  • Updated dependencies

... (truncated)

Commits

Updates @backstage/catalog-model from 1.5.0 to 1.7.7

Changelog

Sourced from @​backstage/catalog-model's changelog.

1.7.7

Patch Changes

  • a49a40d: Updated dependency zod to ^3.25.76 || ^4.0.0 & migrated to /v3 or /v4 imports.

1.7.6

Patch Changes

  • 05f60e1: Refactored constructor parameter properties to explicit property declarations for compatibility with TypeScript's erasableSyntaxOnly setting. This internal refactoring maintains all existing functionality while ensuring TypeScript compilation compatibility.

1.7.6-next.0

Patch Changes

  • 05f60e1: Refactored constructor parameter properties to explicit property declarations for compatibility with TypeScript's erasableSyntaxOnly setting. This internal refactoring maintains all existing functionality while ensuring TypeScript compilation compatibility.
  • Updated dependencies
    • @​backstage/errors@​1.2.7
    • @​backstage/types@​1.2.2

1.7.5

Patch Changes

  • 3507fcd: Just some more circular dep cleanup

1.7.5-next.0

Patch Changes

  • 3507fcd: Just some more circular dep cleanup

1.7.4

Patch Changes

  • ed4e625: Added support for icons containing colons
  • Updated dependencies
    • @​backstage/errors@​1.2.7
    • @​backstage/types@​1.2.1

1.7.3

Patch Changes

  • Updated dependencies
    • @​backstage/types@​1.2.1
    • @​backstage/errors@​1.2.7

... (truncated)

Commits

Updates @backstage/core-app-api from 1.11.1 to 1.19.6

Changelog

Sourced from @​backstage/core-app-api's changelog.

1.19.6

Patch Changes

  • 12d8afe: Added BUIProvider from @backstage/ui to the app shell provider tree, enabling BUI components to fire analytics events through the Backstage analytics system.
  • 59752a2: Deprecated AlertApiForwarder in favor of the new ToastApi. The AlertApiForwarder now emits a console warning on first use, guiding developers to migrate to ToastApi from @backstage/frontend-plugin-api.
  • 0452d02: Add optional description field to plugin-level feature flags.
  • 42f8c9b: Added BUIProvider inside the legacy app router to enable client-side routing for all BUI components.
  • a49a40d: Updated dependency zod to ^3.25.76 || ^4.0.0 & migrated to /v3 or /v4 imports.
  • Updated dependencies
    • @​backstage/ui@​0.13.0
    • @​backstage/core-plugin-api@​1.12.4

1.19.6-next.1

Patch Changes

  • 12d8afe: Added BUIProvider from @backstage/ui to the app shell provider tree, enabling BUI components to fire analytics events through the Backstage analytics system.
  • 0452d02: Add optional description field to plugin-level feature flags.
  • Updated dependencies
    • @​backstage/ui@​0.13.0-next.2
    • @​backstage/core-plugin-api@​1.12.4-next.1

1.19.6-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/config@​1.3.6
    • @​backstage/core-plugin-api@​1.12.4-next.0
    • @​backstage/types@​1.2.2
    • @​backstage/version-bridge@​1.0.12

1.19.5

Patch Changes

  • 5a71e7a: Fixed memory leak caused by duplicate AppThemeSelector instances and missing cleanup in AppThemeSelector and AppLanguageSelector. Added dispose() method to both selectors for proper resource cleanup.
  • a7e0d50: Updated react-router-dom peer dependency to ^6.30.2 and explicitly disabled v7 future flags to suppress deprecation warnings.
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @​backstage/core-plugin-api@​1.12.3
    • @​backstage/version-bridge@​1.0.12

1.19.5-next.1

Patch Changes

  • 5a71e7a: Fixed memory leak caused by duplicate AppThemeSelector instances and missing cleanup in AppThemeSelector and AppLanguageSelector. Added dispose() method to both selectors for proper resource cleanup.
  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.

... (truncated)

Commits
  • 8cdb8c2 Version Packages
  • 0296f27 type fixes for React 18
  • f1b349c fix: Tidy up i18nextTranslationApi change handling
  • 87509c8 Merge pull request #20519 from gabrielhuber/master
  • 29e4d8b Fix: signOutTargetUrl determination
  • 9a1fce3 chore(deps): update dependency @​testing-library/jest-dom to v6
  • f95af4e chore(deps): update dependency @​testing-library/dom to v9
  • e43d3eb Version Packages (next)
  • 4219ca1 Merge pull request #20344 from backstage/rugvip/suspense
  • c9d9bfe URL encode some well known unsafe characters in RouteResolver
  • Additional commits viewable in compare view

Updates @backstage/core-components from 0.13.8 to 0.18.8

Changelog

Sourced from @​backstage/core-components's changelog.

0.18.8

Patch Changes

  • e26e3de: The login request dialog now handles auth provider icons passed as IconElement in addition to IconComponent.
  • 8e09233: Fixed the shared Progress component to provide an accessible name for its loading indicator by default.
  • 8b1a847: Fixed Table component layout when both filters and title props are used together. The filter controls now use a dedicated CSS class (filterControls) instead of incorrectly reusing the root container class.
  • 3f36ce1: Clarified the IconElement sizing contract for the new frontend system and aligned legacy system icon rendering with the new icon API.
  • 0be2541: Promoted the plugin's translation ref to the stable package entry point. It was previously only available through the alpha entry point.
  • a49a40d: Updated dependency zod to ^3.25.76 || ^4.0.0 & migrated to /v3 or /v4 imports.
  • 470f72d: The LogViewer component from @backstage/core-components now supports downloading logs if a callback is passed to onDownloadLogs
  • Updated dependencies
    • @​backstage/core-plugin-api@​1.12.4

0.18.8-next.1

Patch Changes

  • 8b1a847: Fixed Table component layout when both filters and title props are used together. The filter controls now use a dedicated CSS class (filterControls) instead of incorrectly reusing the root container class.
  • 470f72d: The LogViewer component from @backstage/core-components now supports downloading logs if a callback is passed to onDownloadLogs
  • Updated dependencies
    • @​backstage/core-plugin-api@​1.12.4-next.1

0.18.8-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/config@​1.3.6
    • @​backstage/core-plugin-api@​1.12.4-next.0
    • @​backstage/errors@​1.2.7
    • @​backstage/theme@​0.7.2
    • @​backstage/version-bridge@​1.0.12

0.18.7

Patch Changes

  • 7455dae: Use node prefix on native imports
  • a7e0d50: Updated react-router-dom peer dependency to ^6.30.2 and explicitly disabled v7 future flags to suppress deprecation warnings.
  • cebfea7: Removed link styles from LinkButton to avoid styling inconsistencies related to import order.
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @​backstage/theme@​0.7.2
    • @​backstage/core-plugin-api@​1.12.3
    • @​backstage/version-bridge@​1.0.12

0.18.7-next.2

Patch Changes

... (truncated)

Commits

Updates @backstage/core-plugin-api from 1.8.0 to 1.12.4

Changelog

Sourced from @​backstage/core-plugin-api's changelog.

1.12.4

Patch Changes

  • d911b72: Updated createApiRef to preserve the direct config call without deprecation warnings while staying compatible with the new frontend API ref typing.
  • 59752a2: Deprecated AlertApi, AlertMessage, and alertApiRef in favor of the new ToastApi from @backstage/frontend-plugin-api.
  • 0452d02: Add optional description field to plugin-level feature flags.
  • a49a40d: Updated dependency zod to ^3.25.76 || ^4.0.0 & migrated to /v3 or /v4 imports.
  • fe848e0: Changed useApiHolder to return an empty ApiHolder instead of throwing when used outside of an API context.
  • Updated dependencies
    • @​backstage/frontend-plugin-api@​0.15.0

1.12.4-next.1

Patch Changes

  • 0452d02: Add optional description field to plugin-level feature flags.
  • fe848e0: Changed useApiHolder to return an empty ApiHolder instead of throwing when used outside of an API context.
  • Updated dependencies
    • @​backstage/frontend-plugin-api@​0.15.0-next.1

1.12.4-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/frontend-plugin-api@​0.14.2-next.0
    • @​backstage/config@​1.3.6
    • @​backstage/errors@​1.2.7
    • @​backstage/types@​1.2.2
    • @​backstage/version-bridge@​1.0.12

1.12.3

Patch Changes

  • 53b6549: Plugins in the new frontend system now have a pluginId field rather than id to better align with naming conventions used throughout the frontend and backend systems. The old field is still present but marked as deprecated. All internal code has been updated to prefer pluginId while maintaining backward compatibility by falling back to id when needed.
  • a7e0d50: Updated react-router-dom peer dependency to ^6.30.2 and explicitly disabled v7 future flags to suppress deprecation warnings.
  • 69d880e: Bump to latest zod to ensure it has the latest features
  • Updated dependencies
    • @​backstage/frontend-plugin-api@​0.14.0
    • @​backstage/version-bridge@​1.0.12

1.12.3-next.1

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @​backstage/frontend-plugin-api@​0.14.0-next.2

... (truncated)

Commits

Updates @backstage/integration-react from 1.1.21 to 1.2.16

Changelog

Sourced from @​backstage/integration-react's changelog.

1.2.16

Patch Changes

  • Updated dependencies
    • @​backstage/core-plugin-api@​1.12.4
    • @​backstage/integration@​2.0.0

1.2.16-next.1

Patch Changes

  • Updated dependencies
    • @​backstage/integration@​2.0.0-next.1
    • @​backstage/config@​1.3.6
    • @​backstage/core-plugin-api@​1.12.4-next.0

1.2.16-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/integration@​1.21.0-next.0
    • @​backstage/config@​1.3.6
    • @​backstage/core-plugin-api@​1.12.4-next.0

1.2.15

Patch Changes

  • a7e0d50: Updated react-router-dom peer dependency to ^6.30.2 and explicitly disabled v7 future flags to suppress deprecation warnings.
  • Updated dependencies
    • @​backstage/integration@​1.20.0
    • @​backstage/core-plugin-api@​1.12.3

1.2.15-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @​backstage/integration@​1.20.0-next.2
    • @​backstage/core-plugin-api@​1.12.3-next.1

1.2.15-next.1

Patch Changes

  • Updated dependencies
    • @​backstage/integration@​1.20.0-next.1

... (truncated)

Commits

Updates @backstage/plugin-api-docs from 0.10.1 to 0.13.5

Changelog

Sourced from @​backstage/plugin-api-docs's changelog.

0.13.5

Patch Changes

  • 9c9d425: Fixed invisible text in parameter input fields when using dark mode in OpenAPI definition pages
  • 538c985: Updated installation documentation to use feature discovery as the default.
  • 30e08df: Added default entity content groups for the API docs entity content tabs. The API definition tab defaults to the documentation group and the APIs tab defaults to the development group.
  • c548a0f: Migrated entity table cards (ConsumedApisCard, ProvidedApisCard, HasApisCard, ConsumingComponentsCard, ProvidingComponentsCard) to use BUI when no legacy props are passed. The old variant, columns, and tableOptions props are deprecated but still supported — passing any of them triggers the legacy MUI-based rendering. The new columnConfig prop accepts EntityColumnConfig[] for BUI-based rendering.
  • aa29b50: New frontend system pages now use the default plugin header together with HeaderPage instead of the legacy core page header pattern.
  • 3f36ce1: Updated alpha plugin icons to follow the new frontend icon sizing rules when rendered in plugin and navigation surfaces.
  • 0be2541: Promoted the plugin's translation ref to the stable package entry point. It was previously only available through the alpha entry point.
  • ca277ef: Updated dependency graphiql to 3.9.0 to address security vulnerability in markdown-it package. Updated dependency @graphiql/react to 0.29.0 to match the version used by graphiql. Moved dependency graphql-config to devDependencies as it is needed only for types.
  • Updated dependencies
    • @​backstage/plugin-catalog-react@​2.1.0
    • @​backstage/ui@​0.13.0
    • @​backstage/core-plugin-api@​1.12.4
    • @​backstage/core-components@​0.18.8
    • @​backstage/frontend-plugin-api@​0.15.0
    • @​backstage/plugin-catalog@​2.0.0
    • @​backstage/plugin-permission-react@​0.4.41
    • @​backstage/catalog-model@​1.7.7

0.13.5-next.2

Patch Changes

  • ca277ef: Updated dependency graphiql to 3.9.0 to address security vulnerability in markdown-it package. Updated dependency @graphiql/react to 0.29.0 to match the version used by graphiql. Moved dependency graphql-config to devDependencies as it is needed only for types.
  • Updated dependencies
    • @​backstage/frontend-plugin-api@​0.15.0-next.1
    • @​backstage/core-plugin-api@​1.12.4-next.1
    • @​backstage/plugin-catalog-react@​2.1.0-next.2
    • @​backstage/core-components@​0.18.8-next.1
    • @​backstage/plugin-catalog@​2.0.0-next.2

0.13.5-next.1

Patch Changes

  • 30e08df: Added default entity content groups for the API docs entity content tabs. The API definition tab defaults to the documentation group and the APIs tab defaults to the development group.
  • Updated dependencies
    • @​backstage/plugin-catalog@​1.34.0-next.1
    • @​backstage/plugin-catalog-react@​2.1.0-next.1
    • @​backstage/catalog-model@​1.7.6
    • @​backstage/core-components@​0.18.8-next.0
    • @​backstage/core-plugin-api@​1.12.4-next.0
    • @​backstage/frontend-plugin-api@​0.14.2-next.0

... (truncated)

Commits

Updates @backstage/plugin-catalog-common from 1.0.23 to 1.1.8

Changelog

Sourced from @​backstage/plugin-catalog-common's changelog.

1.1.8

Patch Changes

  • Updated dependencies
    • @​backstage/plugin-search-common@​1.2.22
    • @​backstage/plugin-permission-common@​0.9.6

1.1.8-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/plugin-search-common@​1.2.22-next.0
    • @​backstage/plugin-permission-common@​0.9.5-next.0
    • @​backstage/catalog-model@​1.7.6

1.1.7

Patch Changes

  • Updated dependencies
    • @​backstage/plugin-permission-common@​0.9.3
    • @​backstage/catalog-model@​1.7.6
    • @​backstage/plugin-search-common@​1.2.21

1.1.7-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/catalog-model@​1.7.6-next.0
    • @​backstage/plugin-permission-common@​0.9.3-next.0
    • @​backstage/plugin-search-common@​1.2.21-next.0

1.1.6

Patch Changes

  • Updated dependencies
    • @​backstage/plugin-permission-common@​0.9.2
    • @​backstage/plugin-search-common@​1.2.20

1.1.6-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/plugin-permission-common@​0.9.2-next.0
    • @​backstage/plugin-search-common@​1.2.20-next.0

... (truncated)

Commits

Updates @backstage/plugin-catalog-graph from 0.3.1 to 0.6.0

Changelog

Sourced from @​backstage/plugin-catalog-graph's changelog.

0.6.0

Minor Changes

  • d14b6e0: BREAKING: Migrated MembersListCard, OwnershipCard, and CatalogGraphCard to use BUI card primitives via EntityInfoCard.

    • OwnershipCard: Removed variant and maxScrollHeight props. Card height and scrolling are now controlled by the parent container — the card fills its container and the body scrolls automatically when content overflows.
    • CatalogGraphCard: Removed variant prop.
    • MembersListCard: Translation keys subtitle, paginationLabel, aggregateMembersToggle.directMembers, aggregateMembersToggle.aggregatedMembers, and aggregateMembersToggle.ariaLabel have been removed. The title key now includes {{groupName}}. New keys added: cardLabel, noSearchResult, aggregateMembersToggle.label.
    • OwnershipCard: Translation keys aggregateRelationsToggle.directRelations, aggregateRelationsToggle.aggregatedRelations, and aggregateRelationsToggle.ariaLabel have been removed. New key added: aggregateRelationsToggle.label.
    • Removed MemberComponentClassKey export, and root and cardContent from MembersListCardClassKey, card from OwnershipCardClassKey, and card from CatalogGraphCardClassKey.

    Migration:

    - <EntityOwnershipCard variant="gridItem" />
    + <EntityOwnershipCard />
    - <EntityCatalogGraphCard variant="gridItem" height={400} />
    + <EntityCatalogGraphCard height={400} />

Patch Changes

  • 538c985: Updated installation documentation to use feature discovery as the default.
  • 0be2541: Promoted the plugin's translation ref to the stable package entry point. It was previously only available through the alpha entry point.
  • Updated dependencies
    • @​backstage/plugin-catalog-react@​2.1.0
    • @​backstage/ui@​0.13.0
    • @​backstage/core-plugin-api@​1.12.4
    • @​backstage/core-components@​0.18.8
    • @​backstage/frontend-plugin-api@​0.15.0
    • @​backstage/catalog-client@​1.14.0
    • @​backstage/catalog-model@​1.7.7

0.6.0-next.2

Minor Changes

  • d14b6e0: BREAKING: Migrated MembersListCard, OwnershipCard, and CatalogGraphCard to use BUI card primitives via EntityInfoCard.

    • OwnershipCard: Removed variant and maxScrollHeight props. Card height and scrolling are now controlled by the parent container — the card fills its container and the body scrolls automatically when content overflows.
    • CatalogGraphCard: Removed variant prop.
    • MembersListCard: Translation keys subtitle, paginationLabel, aggregateMembersToggle.directMembers, aggregateMembersToggle.aggregatedMembers, and aggregateMembersToggle.ariaLabel have been removed. The title key now includes {{groupName}}. New keys added: cardLabel, noSearchResult, aggregateMembersToggle.label.
    • OwnershipCard: Translation keys aggregateRelationsToggle.directRelations, aggregateRelationsToggle.aggregatedRelations, and aggregateRelationsToggle.ariaLabel have been removed. New key added: aggregateRelationsToggle.label.
    • Removed MemberComponentClassKey export, and root and cardContent from MembersListCardClassKey, card from OwnershipCardClassKey, and card from CatalogGraphCardClassKey.

    Migration:

... (truncated)

Commits

Updates @backstage/plugin-catalog-import from 0.10.3 to 0.13.11

Changelog

Sourced from @​backstage/plugin-catalog-import's changelog.

0.13.11

Patch Changes

  • 538c985: Updated installation documentation to use feature discovery as the default.
  • 0be2541: Promoted the plugin's translation ref to the stable package entry point. It was previously only available through the alpha entry point.
  • Updated dependencies
    • @​backstage/plugin-catalog-react@​2.1.0
    • @​backstage/core-plugin-api@​1.12.4
    • @​backstage/core-components@​0.18.8
    • @​backstage/frontend-plugin-api@​0.15.0
    • @​backstage/catalog-client@​1.14.0
    • @​backstage/integration@​2.0.0
    • @​backstage/plugin-permission-react@​0.4.41
    • @​backstage/catalog-model@​1.7.7
    • @​backstage/integration-react@​1.2.16

0.13.11-next.2

Patch Changes

  • Updated dependencies
    • @​backstage/frontend-plugin-api@​0.15.0-next.1
    • @​backstage/core-plugin-api@​1.12.4-next.1
    • @​backstage/catalog-client@​1.14.0-next.2
    • @​backstage/plugin-catalog-react@​2.1.0-next.2
    • @​backstage/integration@​2.0.0-next.2
    • @​backstage/core-components@​0.18.8-next.1

0.13.11-next.1

Patch Changes

  • Updated dependencies
    • @​backstage/catalog-client@​1.14.0-next.1Description has been truncated

…46 updates

Bumps the minor group with 34 updates in the /backstage directory:

| Package | From | To |
| --- | --- | --- |
| [@backstage/cli](https://github.com/backstage/backstage/tree/HEAD/packages/cli) | `0.24.0` | `0.36.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.40.1` | `1.58.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.2.2` | `5.9.3` |
| [@backstage/app-defaults](https://github.com/backstage/backstage/tree/HEAD/packages/app-defaults) | `1.4.5` | `1.7.6` |
| [@backstage/catalog-model](https://github.com/backstage/backstage/tree/HEAD/packages/catalog-model) | `1.5.0` | `1.7.7` |
| [@backstage/core-components](https://github.com/backstage/backstage/tree/HEAD/packages/core-components) | `0.13.8` | `0.18.8` |
| [@backstage/integration-react](https://github.com/backstage/backstage/tree/HEAD/packages/integration-react) | `1.1.21` | `1.2.16` |
| [@backstage/plugin-api-docs](https://github.com/backstage/backstage/tree/HEAD/plugins/api-docs) | `0.10.1` | `0.13.5` |
| [@backstage/plugin-catalog-graph](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-graph) | `0.3.1` | `0.6.0` |
| [@backstage/plugin-catalog-import](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-import) | `0.10.3` | `0.13.11` |
| [@backstage/plugin-org](https://github.com/backstage/backstage/tree/HEAD/plugins/org) | `0.6.17` | `0.7.0` |
| [@backstage/plugin-scaffolder](https://github.com/backstage/backstage/tree/HEAD/plugins/scaffolder) | `1.16.1` | `1.36.1` |
| [@backstage/plugin-search](https://github.com/backstage/backstage/tree/HEAD/plugins/search) | `1.4.3` | `1.7.0` |
| [@backstage/plugin-tech-radar](https://github.com/backstage/backstage/tree/HEAD/plugins/tech-radar) | `0.6.10` | `0.7.4` |
| [@backstage/plugin-techdocs](https://github.com/backstage/backstage/tree/HEAD/plugins/techdocs) | `1.9.1` | `1.17.2` |
| [@backstage/plugin-user-settings](https://github.com/backstage/backstage/tree/HEAD/plugins/user-settings) | `0.7.13` | `0.9.1` |
| [@backstage/theme](https://github.com/backstage/backstage/tree/HEAD/packages/theme) | `0.4.4` | `0.7.2` |
| [react-use](https://github.com/streamich/react-use) | `17.4.2` | `17.6.0` |
| [@backstage/test-utils](https://github.com/backstage/backstage/tree/HEAD/packages/test-utils) | `1.4.5` | `1.7.16` |
| [@testing-library/user-event](https://github.com/testing-library/user-event) | `14.5.1` | `14.6.1` |
| [@backstage/backend-common](https://github.com/backstage/backstage/tree/HEAD/packages/backend-common) | `0.19.9` | `0.25.0` |
| [@backstage/backend-tasks](https://github.com/backstage/backstage/tree/HEAD/packages/backend-tasks) | `0.5.23` | `0.6.1` |
| [@backstage/plugin-app-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/app-backend) | `0.3.55` | `0.5.12` |
| [@backstage/plugin-auth-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/auth-backend) | `0.20.0` | `0.27.3` |
| [@backstage/plugin-auth-node](https://github.com/backstage/backstage/tree/HEAD/plugins/auth-node) | `0.4.13` | `0.6.14` |
| [@backstage/plugin-catalog-backend-module-scaffolder-entity-model](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-backend-module-scaffolder-entity-model) | `0.1.4` | `0.2.18` |
| [@backstage/plugin-permission-common](https://github.com/backstage/backstage/tree/HEAD/plugins/permission-common) | `0.7.13` | `0.9.7` |
| [@backstage/plugin-permission-node](https://github.com/backstage/backstage/tree/HEAD/plugins/permission-node) | `0.7.29` | `0.10.11` |
| [@backstage/plugin-proxy-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/proxy-backend) | `0.4.5` | `0.6.11` |
| [@backstage/plugin-search-backend-module-catalog](https://github.com/backstage/backstage/tree/HEAD/plugins/search-backend-module-catalog) | `0.1.24` | `0.3.13` |
| [@backstage/plugin-search-backend-module-techdocs](https://github.com/backstage/backstage/tree/HEAD/plugins/search-backend-module-techdocs) | `0.1.11` | `0.4.12` |
| [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) | `8.11.3` | `8.20.0` |
| [winston](https://github.com/winstonjs/winston) | `3.11.0` | `3.19.0` |
| [@backstage/backend-dynamic-feature-service](https://github.com/backstage/backstage/tree/HEAD/packages/backend-dynamic-feature-service) | `0.2.10` | `0.8.0` |

Bumps the minor group with 9 updates in the /backstage/packages/app directory:

| Package | From | To |
| --- | --- | --- |
| [@backstage/cli](https://github.com/backstage/backstage/tree/HEAD/packages/cli) | `0.24.0` | `0.36.0` |
| [@backstage/core-components](https://github.com/backstage/backstage/tree/HEAD/packages/core-components) | `0.13.10` | `0.18.8` |
| [@backstage/plugin-api-docs](https://github.com/backstage/backstage/tree/HEAD/plugins/api-docs) | `0.10.3` | `0.13.5` |
| [@backstage/plugin-catalog-graph](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-graph) | `0.3.3` | `0.6.0` |
| [@backstage/plugin-catalog-import](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-import) | `0.10.10` | `0.13.11` |
| [@backstage/plugin-org](https://github.com/backstage/backstage/tree/HEAD/plugins/org) | `0.6.49` | `0.7.0` |
| [@backstage/plugin-tech-radar](https://github.com/backstage/backstage/tree/HEAD/plugins/tech-radar) | `0.6.13` | `0.7.4` |
| [@backstage/plugin-user-settings](https://github.com/backstage/backstage/tree/HEAD/plugins/user-settings) | `0.7.14` | `0.9.1` |
| [@backstage/theme](https://github.com/backstage/backstage/tree/HEAD/packages/theme) | `0.4.4` | `0.7.2` |

Bumps the minor group with 9 updates in the /backstage/packages/backend directory:

| Package | From | To |
| --- | --- | --- |
| [@backstage/plugin-app-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/app-backend) | `0.3.76` | `0.5.12` |
| [@backstage/plugin-auth-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/auth-backend) | `0.20.3` | `0.27.3` |
| [@backstage/plugin-auth-node](https://github.com/backstage/backstage/tree/HEAD/plugins/auth-node) | `0.4.17` | `0.6.14` |
| [@backstage/plugin-catalog-backend-module-scaffolder-entity-model](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-backend-module-scaffolder-entity-model) | `0.1.22` | `0.2.18` |
| [@backstage/plugin-permission-common](https://github.com/backstage/backstage/tree/HEAD/plugins/permission-common) | `0.7.14` | `0.9.7` |
| [@backstage/plugin-permission-node](https://github.com/backstage/backstage/tree/HEAD/plugins/permission-node) | `0.7.32` | `0.10.11` |
| [@backstage/plugin-proxy-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/proxy-backend) | `0.4.16` | `0.6.11` |
| [@backstage/plugin-search-backend-module-catalog](https://github.com/backstage/backstage/tree/HEAD/plugins/search-backend-module-catalog) | `0.1.28` | `0.3.13` |
| [@backstage/plugin-search-backend-module-techdocs](https://github.com/backstage/backstage/tree/HEAD/plugins/search-backend-module-techdocs) | `0.1.27` | `0.4.12` |

Bumps the minor group with 4 updates in the /backstage/plugins/knative-event-mesh-backend directory: [@backstage/cli](https://github.com/backstage/backstage/tree/HEAD/packages/cli), [@backstage/backend-common](https://github.com/backstage/backstage/tree/HEAD/packages/backend-common), [@backstage/backend-tasks](https://github.com/backstage/backstage/tree/HEAD/packages/backend-tasks) and [@backstage/backend-dynamic-feature-service](https://github.com/backstage/backstage/tree/HEAD/packages/backend-dynamic-feature-service).
Bumps the minor group with 1 update in the /backstage/plugins/knative-event-mesh-backend/dist-dynamic directory: [winston](https://github.com/winstonjs/winston).


Updates `@backstage/cli` from 0.24.0 to 0.36.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v0.36.0/packages/cli)

Updates `@playwright/test` from 1.40.1 to 1.58.2
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](https://github.com/microsoft/playwright/compare/v1.40.1...v1.58.2)

Updates `typescript` from 5.2.2 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.2.2...v5.9.3)

Updates `@backstage/app-defaults` from 1.4.5 to 1.7.6
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/app-defaults/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/app-defaults)

Updates `@backstage/catalog-model` from 1.5.0 to 1.7.7
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/catalog-model/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/catalog-model)

Updates `@backstage/core-app-api` from 1.11.1 to 1.19.6
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/core-app-api/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.19.6/packages/core-app-api)

Updates `@backstage/core-components` from 0.13.8 to 0.18.8
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/core-components/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/core-components)

Updates `@backstage/core-plugin-api` from 1.8.0 to 1.12.4
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/core-plugin-api/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/core-plugin-api)

Updates `@backstage/integration-react` from 1.1.21 to 1.2.16
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/integration-react/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/integration-react)

Updates `@backstage/plugin-api-docs` from 0.10.1 to 0.13.5
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/api-docs/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/api-docs)

Updates `@backstage/plugin-catalog-common` from 1.0.23 to 1.1.8
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-common/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog-common)

Updates `@backstage/plugin-catalog-graph` from 0.3.1 to 0.6.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-graph/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v0.6.0/plugins/catalog-graph)

Updates `@backstage/plugin-catalog-import` from 0.10.3 to 0.13.11
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-import/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog-import)

Updates `@backstage/plugin-org` from 0.6.17 to 0.7.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/org/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v0.7.0/plugins/org)

Updates `@backstage/plugin-permission-react` from 0.4.17 to 0.4.41
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/permission-react/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/permission-react)

Updates `@backstage/plugin-scaffolder` from 1.16.1 to 1.36.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/scaffolder/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.36.1/plugins/scaffolder)

Updates `@backstage/plugin-search` from 1.4.3 to 1.7.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.7.0/plugins/search)

Updates `@backstage/plugin-search-react` from 1.7.3 to 1.11.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search-react/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.11.0/plugins/search-react)

Updates `@backstage/plugin-tech-radar` from 0.6.10 to 0.7.4
- [Release notes](https://github.com/backstage/backstage/releases)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/tech-radar)

Updates `@backstage/plugin-techdocs` from 1.9.1 to 1.17.2
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/techdocs/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.17.2/plugins/techdocs)

Updates `@backstage/plugin-techdocs-react` from 1.1.13 to 1.3.9
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/techdocs-react/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/techdocs-react)

Updates `@backstage/plugin-user-settings` from 0.7.13 to 0.9.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/user-settings/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/user-settings)

Updates `@backstage/theme` from 0.4.4 to 0.7.2
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/theme/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/theme)

Updates `react-use` from 17.4.2 to 17.6.0
- [Release notes](https://github.com/streamich/react-use/releases)
- [Changelog](https://github.com/streamich/react-use/blob/master/CHANGELOG.md)
- [Commits](https://github.com/streamich/react-use/compare/v17.4.2...v17.6.0)

Updates `@backstage/test-utils` from 1.4.5 to 1.7.16
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/test-utils/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/test-utils)

Updates `@testing-library/user-event` from 14.5.1 to 14.6.1
- [Release notes](https://github.com/testing-library/user-event/releases)
- [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
- [Commits](https://github.com/testing-library/user-event/compare/v14.5.1...v14.6.1)

Updates `@types/react-dom` from 17.0.25 to 17.0.26
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `@backstage/backend-common` from 0.19.9 to 0.25.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Commits](https://github.com/backstage/backstage/commits/v0.25.0/packages/backend-common)

Updates `@backstage/backend-tasks` from 0.5.23 to 0.6.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/backend-tasks)

Updates `@backstage/catalog-client` from 1.6.5 to 1.14.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/catalog-client/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.14.0/packages/catalog-client)

Updates `@backstage/config` from 1.2.0 to 1.3.6
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/config/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/config)

Updates `@backstage/plugin-app-backend` from 0.3.55 to 0.5.12
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/app-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/app-backend)

Updates `@backstage/plugin-auth-backend` from 0.20.0 to 0.27.3
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/auth-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/auth-backend)

Updates `@backstage/plugin-auth-node` from 0.4.13 to 0.6.14
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/auth-node/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/auth-node)

Updates `@backstage/plugin-catalog-backend-module-scaffolder-entity-model` from 0.1.4 to 0.2.18
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-backend-module-scaffolder-entity-model/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog-backend-module-scaffolder-entity-model)

Updates `@backstage/plugin-permission-common` from 0.7.13 to 0.9.7
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/permission-common/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/permission-common)

Updates `@backstage/plugin-permission-node` from 0.7.29 to 0.10.11
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/permission-node/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/permission-node)

Updates `@backstage/plugin-proxy-backend` from 0.4.5 to 0.6.11
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/proxy-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/proxy-backend)

Updates `@backstage/plugin-search-backend-module-catalog` from 0.1.24 to 0.3.13
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search-backend-module-catalog/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/search-backend-module-catalog)

Updates `@backstage/plugin-search-backend-module-techdocs` from 0.1.11 to 0.4.12
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search-backend-module-techdocs/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/search-backend-module-techdocs)

Updates `@backstage/plugin-search-backend-node` from 1.2.23 to 1.4.2
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search-backend-node/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/search-backend-node)

Updates `express` from 4.18.2 to 4.22.1
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/v4.22.1/History.md)
- [Commits](https://github.com/expressjs/express/compare/4.18.2...v4.22.1)

Updates `pg` from 8.11.3 to 8.20.0
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg@8.20.0/packages/pg)

Updates `winston` from 3.11.0 to 3.19.0
- [Release notes](https://github.com/winstonjs/winston/releases)
- [Changelog](https://github.com/winstonjs/winston/blob/master/CHANGELOG.md)
- [Commits](https://github.com/winstonjs/winston/compare/v3.11.0...v3.19.0)

Updates `@types/express` from 4.17.21 to 4.17.25
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/express)

Updates `@backstage/backend-dynamic-feature-service` from 0.2.10 to 0.8.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/backend-dynamic-feature-service/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v0.8.0/packages/backend-dynamic-feature-service)

Updates `@backstage/app-defaults` from 1.4.5 to 1.7.6
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/app-defaults/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/app-defaults)

Updates `@backstage/catalog-model` from 1.5.0 to 1.7.7
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/catalog-model/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/catalog-model)

Updates `@backstage/cli` from 0.24.0 to 0.36.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v0.36.0/packages/cli)

Updates `@backstage/core-app-api` from 1.11.1 to 1.19.6
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/core-app-api/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.19.6/packages/core-app-api)

Updates `@backstage/core-components` from 0.13.8 to 0.18.8
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/core-components/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/core-components)

Updates `@backstage/core-plugin-api` from 1.8.0 to 1.12.4
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/core-plugin-api/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/core-plugin-api)

Updates `@backstage/integration-react` from 1.1.21 to 1.2.16
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/integration-react/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/integration-react)

Updates `@backstage/plugin-api-docs` from 0.10.1 to 0.13.5
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/api-docs/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/api-docs)

Updates `@backstage/plugin-catalog-common` from 1.0.23 to 1.1.8
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-common/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog-common)

Updates `@backstage/plugin-catalog-graph` from 0.3.1 to 0.6.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-graph/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v0.6.0/plugins/catalog-graph)

Updates `@backstage/plugin-catalog-import` from 0.10.3 to 0.13.11
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-import/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog-import)

Updates `@backstage/plugin-org` from 0.6.17 to 0.7.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/org/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v0.7.0/plugins/org)

Updates `@backstage/plugin-permission-react` from 0.4.17 to 0.4.41
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/permission-react/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/permission-react)

Updates `@backstage/plugin-scaffolder` from 1.16.1 to 1.36.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/scaffolder/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.36.1/plugins/scaffolder)

Updates `@backstage/plugin-search` from 1.4.3 to 1.7.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.7.0/plugins/search)

Updates `@backstage/plugin-search-react` from 1.7.3 to 1.11.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search-react/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.11.0/plugins/search-react)

Updates `@backstage/plugin-tech-radar` from 0.6.10 to 0.7.4
- [Release notes](https://github.com/backstage/backstage/releases)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/tech-radar)

Updates `@backstage/plugin-techdocs` from 1.9.1 to 1.17.2
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/techdocs/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.17.2/plugins/techdocs)

Updates `@backstage/plugin-techdocs-react` from 1.1.13 to 1.3.9
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/techdocs-react/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/techdocs-react)

Updates `@backstage/plugin-user-settings` from 0.7.13 to 0.9.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/user-settings/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/user-settings)

Updates `@backstage/theme` from 0.4.4 to 0.7.2
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/theme/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/theme)

Updates `react-use` from 17.4.2 to 17.6.0
- [Release notes](https://github.com/streamich/react-use/releases)
- [Changelog](https://github.com/streamich/react-use/blob/master/CHANGELOG.md)
- [Commits](https://github.com/streamich/react-use/compare/v17.4.2...v17.6.0)

Updates `@backstage/test-utils` from 1.4.5 to 1.7.16
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/test-utils/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/test-utils)

Updates `@playwright/test` from 1.40.1 to 1.58.2
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](https://github.com/microsoft/playwright/compare/v1.40.1...v1.58.2)

Updates `@testing-library/user-event` from 14.5.1 to 14.6.1
- [Release notes](https://github.com/testing-library/user-event/releases)
- [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
- [Commits](https://github.com/testing-library/user-event/compare/v14.5.1...v14.6.1)

Updates `@types/react-dom` from 17.0.25 to 17.0.26
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `@backstage/plugin-app-backend` from 0.3.55 to 0.5.12
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/app-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/app-backend)

Updates `@backstage/plugin-auth-backend` from 0.20.0 to 0.27.3
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/auth-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/auth-backend)

Updates `@backstage/plugin-auth-node` from 0.4.13 to 0.6.14
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/auth-node/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/auth-node)

Updates `@backstage/plugin-catalog-backend-module-scaffolder-entity-model` from 0.1.4 to 0.2.18
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-backend-module-scaffolder-entity-model/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog-backend-module-scaffolder-entity-model)

Updates `@backstage/plugin-permission-common` from 0.7.13 to 0.9.7
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/permission-common/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/permission-common)

Updates `@backstage/plugin-permission-node` from 0.7.29 to 0.10.11
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/permission-node/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/permission-node)

Updates `@backstage/plugin-proxy-backend` from 0.4.5 to 0.6.11
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/proxy-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/proxy-backend)

Updates `@backstage/plugin-search-backend-module-catalog` from 0.1.24 to 0.3.13
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search-backend-module-catalog/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/search-backend-module-catalog)

Updates `@backstage/plugin-search-backend-module-techdocs` from 0.1.11 to 0.4.12
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search-backend-module-techdocs/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/search-backend-module-techdocs)

Updates `@backstage/plugin-search-backend-node` from 1.2.23 to 1.4.2
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search-backend-node/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/search-backend-node)

Updates `pg` from 8.11.3 to 8.20.0
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg@8.20.0/packages/pg)

Updates `@backstage/backend-common` from 0.19.9 to 0.25.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Commits](https://github.com/backstage/backstage/commits/v0.25.0/packages/backend-common)

Updates `@backstage/backend-dynamic-feature-service` from 0.2.10 to 0.8.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/backend-dynamic-feature-service/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v0.8.0/packages/backend-dynamic-feature-service)

Updates `@backstage/backend-tasks` from 0.5.23 to 0.6.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/backend-tasks)

Updates `@backstage/catalog-client` from 1.6.5 to 1.14.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/catalog-client/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.14.0/packages/catalog-client)

Updates `@backstage/catalog-model` from 1.5.0 to 1.7.7
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/catalog-model/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/catalog-model)

Updates `@backstage/config` from 1.2.0 to 1.3.6
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/config/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/config)

Updates `@backstage/plugin-catalog-common` from 1.0.23 to 1.1.8
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-common/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog-common)

Updates `@types/express` from 4.17.21 to 4.17.25
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/express)

Updates `express` from 4.18.2 to 4.22.1
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/v4.22.1/History.md)
- [Commits](https://github.com/expressjs/express/compare/4.18.2...v4.22.1)

Updates `winston` from 3.11.0 to 3.19.0
- [Release notes](https://github.com/winstonjs/winston/releases)
- [Changelog](https://github.com/winstonjs/winston/blob/master/CHANGELOG.md)
- [Commits](https://github.com/winstonjs/winston/compare/v3.11.0...v3.19.0)

Updates `@backstage/cli` from 0.24.0 to 0.36.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v0.36.0/packages/cli)

Updates `@types/express` from 4.17.21 to 4.17.25
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/express)

Updates `express` from 4.18.2 to 4.22.1
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/v4.22.1/History.md)
- [Commits](https://github.com/expressjs/express/compare/4.18.2...v4.22.1)

Updates `winston` from 3.11.0 to 3.19.0
- [Release notes](https://github.com/winstonjs/winston/releases)
- [Changelog](https://github.com/winstonjs/winston/blob/master/CHANGELOG.md)
- [Commits](https://github.com/winstonjs/winston/compare/v3.11.0...v3.19.0)

Updates `@backstage/cli` from 0.24.0 to 0.36.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v0.36.0/packages/cli)

Updates `@backstage/core-components` from 0.13.10 to 0.18.8
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/core-components/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/core-components)

Updates `@backstage/plugin-api-docs` from 0.10.3 to 0.13.5
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/api-docs/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/api-docs)

Updates `@backstage/plugin-catalog-graph` from 0.3.3 to 0.6.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-graph/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v0.6.0/plugins/catalog-graph)

Updates `@backstage/plugin-catalog-import` from 0.10.10 to 0.13.11
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-import/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog-import)

Updates `@backstage/plugin-org` from 0.6.49 to 0.7.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/org/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v0.7.0/plugins/org)

Updates `@backstage/plugin-tech-radar` from 0.6.13 to 0.7.4
- [Release notes](https://github.com/backstage/backstage/releases)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/tech-radar)

Updates `@backstage/plugin-user-settings` from 0.7.14 to 0.9.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/user-settings/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/user-settings)

Updates `@backstage/theme` from 0.4.4 to 0.7.2
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/theme/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/theme)

Updates `@backstage/plugin-app-backend` from 0.3.76 to 0.5.12
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/app-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/app-backend)

Updates `@backstage/plugin-auth-backend` from 0.20.3 to 0.27.3
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/auth-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/auth-backend)

Updates `@backstage/plugin-auth-node` from 0.4.17 to 0.6.14
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/auth-node/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/auth-node)

Updates `@backstage/plugin-catalog-backend-module-scaffolder-entity-model` from 0.1.22 to 0.2.18
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-backend-module-scaffolder-entity-model/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/catalog-backend-module-scaffolder-entity-model)

Updates `@backstage/plugin-permission-common` from 0.7.14 to 0.9.7
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/permission-common/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/permission-common)

Updates `@backstage/plugin-permission-node` from 0.7.32 to 0.10.11
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/permission-node/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/permission-node)

Updates `@backstage/plugin-proxy-backend` from 0.4.16 to 0.6.11
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/proxy-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/proxy-backend)

Updates `@backstage/plugin-search-backend-module-catalog` from 0.1.28 to 0.3.13
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search-backend-module-catalog/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/search-backend-module-catalog)

Updates `@backstage/plugin-search-backend-module-techdocs` from 0.1.27 to 0.4.12
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/search-backend-module-techdocs/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/plugins/search-backend-module-techdocs)

Updates `@backstage/cli` from 0.24.0 to 0.36.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v0.36.0/packages/cli)

Updates `@backstage/backend-common` from 0.19.10 to 0.25.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Commits](https://github.com/backstage/backstage/commits/v0.25.0/packages/backend-common)

Updates `@backstage/backend-tasks` from 0.5.27 to 0.6.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Commits](https://github.com/backstage/backstage/commits/HEAD/packages/backend-tasks)

Updates `@backstage/backend-dynamic-feature-service` from 0.2.15 to 0.8.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/packages/backend-dynamic-feature-service/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v0.8.0/packages/backend-dynamic-feature-service)

Updates `winston` from 3.11.0 to 3.19.0
- [Release notes](https://github.com/winstonjs/winston/releases)
- [Changelog](https://github.com/winstonjs/winston/blob/master/CHANGELOG.md)
- [Commits](https://github.com/winstonjs/winston/compare/v3.11.0...v3.19.0)

Updates `winston` from 3.11.0 to 3.19.0
- [Release notes](https://github.com/winstonjs/winston/releases)
- [Changelog](https://github.com/winstonjs/winston/blob/master/CHANGELOG.md)
- [Commits](https://github.com/winstonjs/winston/compare/v3.11.0...v3.19.0)

Updates `winston` from 3.11.0 to 3.19.0
- [Release notes](https://github.com/winstonjs/winston/releases)
- [Changelog](https://github.com/winstonjs/winston/blob/master/CHANGELOG.md)
- [Commits](https://github.com/winstonjs/winston/compare/v3.11.0...v3.19.0)

---
updated-dependencies:
- dependency-name: "@backstage/cli"
  dependency-version: 0.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@playwright/test"
  dependency-version: 1.58.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/app-defaults"
  dependency-version: 1.7.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/catalog-model"
  dependency-version: 1.7.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/core-app-api"
  dependency-version: 1.19.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/core-components"
  dependency-version: 0.18.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/core-plugin-api"
  dependency-version: 1.12.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/integration-react"
  dependency-version: 1.2.16
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-api-docs"
  dependency-version: 0.13.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-common"
  dependency-version: 1.1.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-graph"
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-import"
  dependency-version: 0.13.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-org"
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-permission-react"
  dependency-version: 0.4.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/plugin-scaffolder"
  dependency-version: 1.36.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-search"
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-search-react"
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-tech-radar"
  dependency-version: 0.7.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-techdocs"
  dependency-version: 1.17.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-techdocs-react"
  dependency-version: 1.3.9
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-user-settings"
  dependency-version: 0.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/theme"
  dependency-version: 0.7.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: react-use
  dependency-version: 17.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/test-utils"
  dependency-version: 1.7.16
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@testing-library/user-event"
  dependency-version: 14.6.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/react-dom"
  dependency-version: 17.0.26
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/backend-common"
  dependency-version: 0.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/backend-tasks"
  dependency-version: 0.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/catalog-client"
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/config"
  dependency-version: 1.3.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-app-backend"
  dependency-version: 0.5.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-auth-backend"
  dependency-version: 0.27.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-auth-node"
  dependency-version: 0.6.14
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-backend-module-scaffolder-entity-model"
  dependency-version: 0.2.18
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-permission-common"
  dependency-version: 0.9.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-permission-node"
  dependency-version: 0.10.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-proxy-backend"
  dependency-version: 0.6.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-search-backend-module-catalog"
  dependency-version: 0.3.13
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-search-backend-module-techdocs"
  dependency-version: 0.4.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-search-backend-node"
  dependency-version: 1.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: express
  dependency-version: 4.22.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: pg
  dependency-version: 8.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: winston
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/express"
  dependency-version: 4.17.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/backend-dynamic-feature-service"
  dependency-version: 0.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/app-defaults"
  dependency-version: 1.7.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/catalog-model"
  dependency-version: 1.7.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/cli"
  dependency-version: 0.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/core-app-api"
  dependency-version: 1.19.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/core-components"
  dependency-version: 0.18.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/core-plugin-api"
  dependency-version: 1.12.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/integration-react"
  dependency-version: 1.2.16
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-api-docs"
  dependency-version: 0.13.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-common"
  dependency-version: 1.1.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-graph"
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-import"
  dependency-version: 0.13.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-org"
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-permission-react"
  dependency-version: 0.4.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/plugin-scaffolder"
  dependency-version: 1.36.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-search"
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-search-react"
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-tech-radar"
  dependency-version: 0.7.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-techdocs"
  dependency-version: 1.17.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-techdocs-react"
  dependency-version: 1.3.9
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-user-settings"
  dependency-version: 0.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/theme"
  dependency-version: 0.7.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: react-use
  dependency-version: 17.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/test-utils"
  dependency-version: 1.7.16
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@playwright/test"
  dependency-version: 1.58.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@testing-library/user-event"
  dependency-version: 14.6.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/react-dom"
  dependency-version: 17.0.26
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/plugin-app-backend"
  dependency-version: 0.5.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-auth-backend"
  dependency-version: 0.27.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-auth-node"
  dependency-version: 0.6.14
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-backend-module-scaffolder-entity-model"
  dependency-version: 0.2.18
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-permission-common"
  dependency-version: 0.9.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-permission-node"
  dependency-version: 0.10.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-proxy-backend"
  dependency-version: 0.6.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-search-backend-module-catalog"
  dependency-version: 0.3.13
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-search-backend-module-techdocs"
  dependency-version: 0.4.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-search-backend-node"
  dependency-version: 1.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: pg
  dependency-version: 8.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/backend-common"
  dependency-version: 0.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/backend-dynamic-feature-service"
  dependency-version: 0.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/backend-tasks"
  dependency-version: 0.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/catalog-client"
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/catalog-model"
  dependency-version: 1.7.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/config"
  dependency-version: 1.3.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-common"
  dependency-version: 1.1.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/express"
  dependency-version: 4.17.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: express
  dependency-version: 4.22.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: winston
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/cli"
  dependency-version: 0.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/express"
  dependency-version: 4.17.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: express
  dependency-version: 4.22.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: winston
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/cli"
  dependency-version: 0.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/core-components"
  dependency-version: 0.18.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-api-docs"
  dependency-version: 0.13.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-graph"
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-import"
  dependency-version: 0.13.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-org"
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-tech-radar"
  dependency-version: 0.7.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-user-settings"
  dependency-version: 0.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/theme"
  dependency-version: 0.7.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-app-backend"
  dependency-version: 0.5.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-auth-backend"
  dependency-version: 0.27.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-auth-node"
  dependency-version: 0.6.14
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-backend-module-scaffolder-entity-model"
  dependency-version: 0.2.18
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-permission-common"
  dependency-version: 0.9.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-permission-node"
  dependency-version: 0.10.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-proxy-backend"
  dependency-version: 0.6.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-search-backend-module-catalog"
  dependency-version: 0.3.13
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-search-backend-module-techdocs"
  dependency-version: 0.4.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/cli"
  dependency-version: 0.36.0
  dependency-type: direct:development
  update-type: version-upd...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 23, 2026
@openshift-ci openshift-ci bot requested review from aliok and creydr March 23, 2026 13:59
@openshift-ci
Copy link

openshift-ci bot commented Mar 23, 2026

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: dependabot[bot]
Once this PR has been reviewed and has the lgtm label, please assign rudyredhat1 for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci
Copy link

openshift-ci bot commented Mar 23, 2026

Hi @dependabot[bot]. Thanks for your PR.

I'm waiting for a openshift-knative member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work.

Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code needs-ok-to-test

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants