Skip to content

[release-v1.18][npm]: Bump the minor group across 5 directories with 40 updates #466

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github May 7, 2025

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

Package From To
@backstage/cli 0.24.0 0.32.0
@playwright/test 1.40.1 1.52.0
typescript 5.2.2 5.8.3
@backstage/app-defaults 1.4.5 1.6.1
@backstage/core-components 0.13.8 0.17.1
@backstage/integration-react 1.1.21 1.2.6
@backstage/plugin-api-docs 0.10.1 0.12.6
@backstage/plugin-catalog-graph 0.3.1 0.4.18
@backstage/plugin-catalog-import 0.10.3 0.12.13
@backstage/plugin-scaffolder 1.16.1 1.30.1
@backstage/plugin-search-react 1.7.3 1.8.8
@backstage/plugin-tech-radar 0.6.10 0.7.3
@backstage/plugin-techdocs 1.9.1 1.12.5
@backstage/plugin-user-settings 0.7.13 0.8.21
@backstage/theme 0.4.4 0.6.5
react-use 17.4.2 17.6.0
@backstage/test-utils 1.4.5 1.7.7
@testing-library/user-event 14.5.1 14.6.1
@backstage/backend-common 0.19.9 0.24.1
@backstage/backend-tasks 0.5.23 0.6.1
@backstage/plugin-app-backend 0.3.55 0.5.1
@backstage/plugin-auth-backend 0.20.0 0.24.5
@backstage/plugin-auth-node 0.4.13 0.6.2
@backstage/plugin-catalog-backend 1.22.0 1.32.1
@backstage/plugin-catalog-backend-module-scaffolder-entity-model 0.1.4 0.2.7
@backstage/plugin-permission-common 0.7.13 0.8.4
@backstage/plugin-permission-node 0.7.29 0.9.1
@backstage/plugin-proxy-backend 0.4.5 0.6.1
@backstage/plugin-scaffolder-backend 1.19.1 1.32.1
@backstage/plugin-search-backend-module-catalog 0.1.24 0.3.3
@backstage/plugin-search-backend-module-techdocs 0.1.11 0.4.1
pg 8.11.3 8.15.6
winston 3.11.0 3.17.0
@backstage/backend-dynamic-feature-service 0.2.10 0.6.2

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

Package From To
@backstage/cli 0.24.0 0.32.0
@backstage/core-components 0.13.10 0.17.1
@backstage/plugin-api-docs 0.10.3 0.12.6
@backstage/plugin-catalog-graph 0.3.3 0.4.18
@backstage/plugin-catalog-import 0.10.10 0.12.13
@backstage/plugin-tech-radar 0.6.13 0.7.3
@backstage/plugin-user-settings 0.7.14 0.8.21
@backstage/theme 0.4.4 0.6.5

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.1
@backstage/plugin-auth-backend 0.20.3 0.24.5
@backstage/plugin-auth-node 0.4.17 0.6.2
@backstage/plugin-catalog-backend-module-scaffolder-entity-model 0.1.22 0.2.7
@backstage/plugin-permission-common 0.7.14 0.8.4
@backstage/plugin-permission-node 0.7.32 0.9.1
@backstage/plugin-proxy-backend 0.4.16 0.6.1
@backstage/plugin-search-backend-module-catalog 0.1.28 0.3.3
@backstage/plugin-search-backend-module-techdocs 0.1.27 0.4.1

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.32.0

Changelog

Sourced from @​backstage/cli's changelog.

0.32.0

Minor Changes

  • a47fd39: Removes default React imports from template files, aligning with the requirements for the upcoming React 19 migration. Introduces a new ESLint rule to disallow import React from 'react' and import * as React from 'react'.

    https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html

  • 65b584c: Internal update to move the new and create-github-app to their own module.

  • c7254ae: Internal update to move the clean, pre/postpack and fix commands into their own separate module.

Patch Changes

  • 4ea76f7: Bump @​module-federation/enhanced ^0.9.0 to fix GHSA-593f-38f6-jp5m

  • 87a5cb4: Fixed an issue causing the repo lint command to fail when the --max-warnings option was used.

  • 6969f79: Avoid trailing /* when automatically adding imports for package with multiple entry points.

  • 98b7131: Update the to do plugin template to stop using the deprecated catalog alpha service reference. If you start seeing the should create TODO item with catalog information test failing, you have two options to fix this: Update the test to mock the legacy alpha catalog service, or migrate the TODO plugin backend to use the new catalog service reference. We recommend the second option, see this pull request for an example of how to do the migration.

  • d5c4fed: make certificate strings optional for Dev environments

  • d83f3f4: Resolved a problem where the start command did not correctly handle multiple --require flags, ensuring all specified modules are now properly loaded.

  • d2091c6: Added a new repo start command to replace the existing pattern of using yarn dev scripts. The repo start command runs the app and/or backend package in the repo by default, but will also fall back to running other individual frontend or backend packages or even plugin dev entry points if the can be uniquely selected.

    The goal of this change is to reduce the number of different necessary scripts and align on yarn start being the only command needed for local development, similar to how repo test handles testing in the repo. It also opens up for more powerful options, like the --plugin <pluginId> flag that runs the dev entry point of the selected plugin.

    The new script is installed as follows, replacing the existing yarn start script:

    {
      "scripts": {
        "start": "backstage-cli repo start"
      }
    }

    In order to help users migrate in existing projects, it is recommended to add the following scripts to the root package.json:

    {
      "scripts": {
        "dev": "echo \"Use 'yarn start' instead\"",
        "start-backend": "echo \"Use 'yarn start backend' instead\""
      }
    }

    For more information, run yarn start --help once the new command is installed.

  • 918c883: Included a reference to the JSX transform guide in the warning about using the default React import.

... (truncated)

Commits
  • 36e5a82 Version Packages
  • 21a0315 chore(deps): bump @​typescript-eslint/parser from 4.14.0 to 4.27.0
  • 8fce615 Merge pull request #4996 from backstage/dependabot/npm_and_yarn/rollup-plugin...
  • fd9a86b cli: sort package.json deps
  • c5204c0 Merge pull request #6032 from backstage/freben/backend-dev
  • 955c768 chore(deps): bump rollup from 2.33.3 to 2.44.0
  • 3609656 chore(deps): bump rollup-plugin-dts from 2.0.1 to 3.0.1
  • 3108ff7 Make yarn dev for backends respect the PLUGIN_PORT env var
  • ab3d4e9 Merge pull request #5949 from backstage/dependabot/npm_and_yarn/http-proxy-mi...
  • 4a93128 Version Packages
  • Additional commits viewable in compare view

Updates @playwright/test from 1.40.1 to 1.52.0

Release notes

Sourced from @​playwright/test's releases.

v1.52.0

Highlights

  • New method expect(locator).toContainClass() to ergonomically assert individual class names on the element.

    await expect(page.getByRole('listitem', { name: 'Ship v1.52' })).toContainClass('done');
  • Aria Snapshots got two new properties: /children for strict matching and /url for links.

    await expect(locator).toMatchAriaSnapshot(`
      - list
        - /children: equal
        - listitem: Feature A
        - listitem:
          - link "Feature B":
            - /url: "https://playwright.dev"
    `);

Test Runner

  • New property testProject.workers allows to specify the number of concurrent worker processes to use for a test project. The global limit of property testConfig.workers still applies.
  • New testConfig.failOnFlakyTests option to fail the test run if any flaky tests are detected, similarly to --fail-on-flaky-tests. This is useful for CI/CD environments where you want to ensure that all tests are stable before deploying.
  • New property testResult.annotations contains annotations for each test retry.

Miscellaneous

  • New option maxRedirects in apiRequest.newContext() to control the maximum number of redirects.
  • New option ref in locator.ariaSnapshot() to generate reference for each element in the snapshot which can later be used to locate the element.
  • HTML reporter now supports NOT filtering via !@my-tag or !my-file.spec.ts or !p:my-project.

Breaking Changes

  • Changes to glob URL patterns in methods like page.route():
    • ? wildcard is not supported any more, it will always match question mark ? character.
    • Ranges/sets [] are not supported anymore. We recommend using regular expressions instead.
  • Method route.continue() does not allow to override the Cookie header anymore. If a Cookie header is provided, it will be ignored, and the cookie will be loaded from the browser's cookie store. To set custom cookies, use browserContext.addCookies().
  • macOS 13 is now deprecated and will no longer receive WebKit updates. Please upgrade to a more recent macOS version to continue benefiting from the latest WebKit improvements.

Browser Versions

  • Chromium 136.0.7103.25
  • Mozilla Firefox 137.0
  • WebKit 18.4

This version was also tested against the following stable channels:

  • Google Chrome 135
  • Microsoft Edge 135

v1.51.1

Highlights

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by playwright-bot, a new releaser for @​playwright/test since your current version.


Updates typescript from 5.2.2 to 5.8.3

Release notes

Sourced from typescript's releases.

TypeScript 5.8.3

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 RC

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 Beta

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7.3

For release notes, check out the release announcement.

Downloads are available on npm

TypeScript 5.7

For release notes, check out the release announcement.

... (truncated)

Commits
  • 83dc0bb Convert release publishing inputs into parameters (#61523)
  • ba663f6 Exclude completions of binding pattern variable initializers (#52723)
  • 7205eda Bump github/codeql-action from 3.28.12 to 3.28.13 in the github-actions group...
  • 89c572c Fixed a symbol display crash on expando members write locations (#55478)
  • 7b26d2e Fix incorrect name in new release pipeline (#61514)
  • c7a559e Add new release publisher yaml (#61491)
  • 29e6d66 Fix lib.includes('dom') check in containerSeemsToBeEmptyDomElement (#61481)
  • 19b7772 Bump the github-actions group with 4 updates (#61474)
  • 4dc677b Fix errors on type assertions in erasableSyntaxOnly (#61452)
  • ee3dd72 fix(60908): Unexpected "'Type' is declared but its value is never read." erro...
  • Additional commits viewable in compare view

Updates @backstage/app-defaults from 1.4.5 to 1.6.1

Changelog

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

1.6.1

Patch Changes

1.6.1-next.1

Patch Changes

1.6.1-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/core-components@​0.17.1-next.0
    • @​backstage/core-app-api@​1.16.0
    • @​backstage/core-plugin-api@​1.10.5
    • @​backstage/theme@​0.6.4
    • @​backstage/plugin-permission-react@​0.4.32

1.6.0

Minor Changes

  • 12f8e01: BREAKING: The default DiscoveryApi implementation has been switched to use FrontendHostDiscovery, which adds support for the discovery.endpoints configuration.

    This is marked as a breaking change because it will cause any existing discovery.endpoints configuration to be picked up and used, which may break existing setups.

    For example, consider the following configuration:

... (truncated)

Commits

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

Changelog

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

1.16.1

Patch Changes

1.16.1-next.0

Patch Changes

1.16.0

Minor Changes

  • 9262001: The default auth injection middleware for the FetchApi will now also take configuration under discovery.endpoints into consideration when deciding whether to include credentials or not.
  • 12f8e01: The discovery.endpoints configuration no longer requires both internal and external target when using the object form, instead falling back to the default.

Patch Changes

  • Updated dependencies
    • @​backstage/core-plugin-api@​1.10.5
    • @​backstage/config@​1.3.2
    • @​backstage/types@​1.2.1
    • @​backstage/version-bridge@​1.0.11

1.16.0-next.0

Minor Changes

  • 9262001: The default auth injection middleware for the FetchApi will now also take configuration under discovery.endpoints into consideration when deciding whether to include credentials or not.
  • 12f8e01: The discovery.endpoints configuration no longer requires both internal and external target when using the object form, instead falling back to the default.

... (truncated)

Commits

Updates @backstage/core-components from 0.13.8 to 0.17.1

Changelog

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

0.17.1

Patch Changes

0.17.1-next.1

Patch Changes

0.17.1-next.0

Patch Changes

  • 5d7bad4: Fixed the messaging in the AlertDisplay where it was claiming that there were older messages available rather than newer.
  • Updated dependencies
    • @​backstage/config@​1.3.2
    • @​backstage/core-plugin-api@​1.10.5
    • @​backstage/errors@​1.2.7
    • @​backstage/theme@​0.6.4
    • @​backstage/version-bridge@​1.0.11

0.17.0

Minor Changes

  • 25300cb: SimpleStepper back button now works with activeStep property set higher than 0
  • 9545af2: Declared CancelIcon explicitly on Chip component inside Select.tsx to disable onMouseDown event by default that creates the flaw of re-opening select component when user tries to remove a selected filter.

... (truncated)

Commits

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

Changelog

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

1.10.6

Patch Changes

1.10.6-next.0

Patch Changes

1.10.5

Patch Changes

  • 327d21e: Failure to lazy load an extension will now always result in an error being thrown to be forwarded to error boundaries, rather than being rendered using the BootErrorPage app component.
  • Updated dependencies
    • @​backstage/config@​1.3.2
    • @​backstage/errors@​1.2.7
    • @​backstage/types@​1.2.1
    • @​backstage/version-bridge@​1.0.11

1.10.4

Patch Changes

  • 58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.
  • Updated dependencies
    • @​backstage/version-bridge@​1.0.11
    • @​backstage/config@​1.3.2
    • @​backstage/errors@​1.2.7
    • @​backstage/types@​1.2.1

... (truncated)

Commits

Updates @backstage/integration-react from 1.1.21 to 1.2.6

Changelog

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

1.2.6

Patch Changes

1.2.6-next.1

Patch Changes

1.2.6-next.0

Patch Changes

  • 5d10f99: Added scope project for Bitbucket Cloud.
  • Updated dependencies
    • @​backstage/integration@​1.16.3-next.0
    • @​backstage/config@​1.3.2
    • @​backstage/core-plugin-api@​1.10.5

1.2.5

Patch Changes

  • Updated dependencies
    • @​backstage/core-plugin-api@​1.10.5
    • @​backstage/integration@​1.16.2
    • @​backstage/config@​1.3.2

1.2.5-next.0

Patch Changes

... (truncated)

Commits

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

Changelog

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

0.12.6

Patch Changes

0.12.6-next.2

Patch Changes

  • a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.

    https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html

  • Updated dependencies

    • @​backstage/plugin-catalog@​1.29.0-next.2
    • @​backstage/frontend-plugin-api@​0.10.1-next.1
    • @​backstage/core-compat-api@​0.4.1-next.2
    • @​backstage/core-components@​0.17.1-next.1
    • @​backstage/core-plugin-api@​1.10.6-next.0
    • @​backstage/plugin-permission-react@​0.4.33-next.0
    • @​backstage/plugin-catalog-react@​1.17.0-next.2
    • @​backstage/catalog-model@​1.7.3
    • @​backstage/plugin-catalog-common@​1.1.3

0.12.6-next.1

Patch Changes

  • Updated dependencies
    • @​backstage/core-components@​0.17.1-next.0
    • @​backstage/frontend-plugin-api@​0.10.1-next.0
    • @​backstage/plugin-catalog@​1.29.0-next.1
    • @​backstage/plugin-catalog-react@​1.16.1-next.1
    • @​backstage/core-compat-api@​0.4.1-next.1
    • @​backstage/catalog-model@​1.7.3

... (truncated)

Commits

Updates @backstage/plugin-catalog from 1.15.1 to 1.29.0

Release notes

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

v1.29.0

These are the release notes for the v1.29.0 release of Backstage.

A huge thanks to the whole team of maintainers and contributors as well as the amazing Backstage Community for the hard work in getting this release developed and done.

Highlights

BREAKING: Backend System deprecations and removals

As part of the work towards a stable 1.0 release of the new backend system, there are several new deprecations and breaking changes in the backend system packages:

Breaking:

  • The deprecated token option has been removed from PermissionsService, and the request options are now required and must contain a credentials object.
  • The deprecated getPath option has been removed from httpRouterServiceFactory, the plugin paths are now always /api/<pluginId>.
  • It is no longer possible to pass service factory callbacks to the defaultServiceFactories option of createSpecializedBackend.

Deprecations:

  • The ability to define options for service factories through createServiceFactory has been deprecated. See the service architecture documentation for more information on how to define customizable services.
  • The ability to install backend features in callback form, i.e. () => BackendFeature, has been deprecated. This also includes other usages such as startTestBackend, and dynamically imported backend features. No manual changes should be needed for this change, as all backend feature creators have been updated to return BackendFeature instances directly.
  • The ServiceFactoryTest.get method has been renamed to ServiceFactoryTest.getSubject, and is now deprecated.
  • The following types have been renamed to use an *Options suffix instead: ServiceRefConfig, RootServiceFactoryConfig, PluginServiceFactoryConfig.
  • Deprecated all exports related to the legacy status checker in @backstage/backend-common.
  • The isDockerDisabledForTests function exported by @backstage/backend-test-utils has been deprecated.

Backend Health Service

A new health service as been added to the new backend system. This service provides health check endpoints for the backend, and replaces createStatusCheckRouter from @backstage/backend-common.

The service helps implement the new /.backstage/health/v1/readiness and /.backstage/health/v1/liveness endpoints, which provide health checks for the entire backend instance.

You can read more about this new service and how to customize it in the Root Health Service documentation.

New Catalog Logs module

This new @backstage/plugin-catalog-backend-module-logs module is a minimal module that will log any error events that are published by the catalog. This module is useful for making sure that catalog errors are visible in the logs, but you may want to replace it with a more customized solution if the resulting logs are too verbose.

Updates to the @backstage/create-app template

New backstage projects created with @backstage/create-app will now include the Catalog Logs module for logging catalog error events, as well as support for the Postgres Search Engine.

Permission Policy deprecations

The PermissionPolicy interface has been updated to align with the recent changes to the Backstage auth system. The second argument to the handle method is now of the new PolicyQueryUser type. This type maintains the old fields from the BackstageIdentityResponse, which are now all deprecated. Instead, two new fields have been added, which allows access to the same information:

  • credentials - A BackstageCredentials object, which is useful for making requests to other services on behalf of the user as part of evaluating the policy. This replaces the deprecated token field. See the Auth Service documentation for information about how to create a token using these credentials.
  • info - A BackstageUserInfo object, which contains the same information as the deprecated identity, except for the type field that was redundant.

Most existing policies can be updated by replacing the BackstageIdentityResponse type with PolicyQueryUser, which is exported from @backstage/plugin-permission-node, as well as replacing any occurrences of user?.identity with user?.info.

... (truncated)

Changelog

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

1.29.0

Minor Changes

  • 9454ef9: Added support of filtering based on system columns in catalog table

  • 61d350f: BREAKING ALPHA: CatalogFilterBlueprint, used in the new frontend system, is now exported under plugin-catalog-react instead of plugin-catalog.

    + import { CatalogFilterBlueprint } from '@backstage/plugin-catalog-react/alpha';
    - import { CatalogFilterBlueprint } from '@backstage/plugin-catalog/alpha';
  • 09afd67: Adds EntityContextMenuItemBlueprint to enable extending the entity page's context menu with user defined items.

    For example:

    import { EntityContextMenuItemBlueprint } from '@backstage/plugin-catalog-react/alpha';
    const myCustomHref = EntityContextMenuItemBlueprint.make({
    name: 'test-href',
    params: {
    icon: <span>Example Icon</span>,
    useProps: () => ({
    title: 'Example Href',
    href: '/example-path',
    disabled: false,
    component: 'a',
    }),
    },
    });
    const myCustomOnClick = EntityContextMenuItemBlueprint.make({
    name: 'test-click',
    params: {
    icon: <span>Test Icon</span>,
    useProps: () => ({
    title: 'Example onClick',
    onClick: () => window.alert('Hello world!'),
    disabled: false,
    }),
    },
    });

Patch Changes

  • 3f7e4f1: Fixed the layout of summary cards in the new frontend system, ensuring that the horizontal scroll grid doesn't grow too large as well as tweaked its scrolling parameters.
  • e655f62: Updated README.md to use yarn start instead of yarn dev.
  • a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.

... (truncated)

Commits

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

Changelog

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

0.4.18

Patch Changes

0.4.18-next.2

Patch Changes

0.4.18-next.1

Patch Changes

  • Updated dependencies
    • @​backstage/core-components@​0.17.1-next.0
    • @​backstage/frontend-plugin-api@​0.10.1-next.0
    • @​backstage/plugin-catalog-react@​1.16.1-next.1
    • @​backstage/core-compat-api@​0.4.1-next.1
    • @​backstage/catalog-client@​1.9.1
    • @​backstage/catalog-model@​1.7.3
    • @​backstage/core-plugin-api@​1.10.5
    • @​backstage/types@​1.2.1

... (truncated)

Commits

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

Changelog

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

0.12.13

Patch Changes

  • a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.

    https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html

  • 5b9514f: Expose the UnpackNestedValue type as it's been removed from react-hook-form

  • f1d9a64: adding translation for Register an existing component text

  • Updated dependencies

    • @​backstage/plugin-catalog-react@​1.17.0
    • @​backstage/frontend-plugin-api@​0.10.1
    • @​backstage/integration-react@​1.2.6
    • @​backstage/core-compat-api@​0.4.1
    • @​backstage/core-components@​0.17.1
    • @​backstage/core-plugin-api@​1.10.6
    • @​backstage/integration@​1.16.3
    • @​backstage/catalog-client@​1.9.1
    • @​backstage/catalog-model@​1.7.3
    • @​backstage/config@​1.3.2
    • @​backstage/errors@​1.2.7
    • @​backstage/plugin-catalog-common@​1.1.3

0.12.13-next.2

Patch Changes

  • a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.

…40 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.32.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.40.1` | `1.52.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.2.2` | `5.8.3` |
| [@backstage/app-defaults](https://github.com/backstage/backstage/tree/HEAD/packages/app-defaults) | `1.4.5` | `1.6.1` |
| [@backstage/core-components](https://github.com/backstage/backstage/tree/HEAD/packages/core-components) | `0.13.8` | `0.17.1` |
| [@backstage/integration-react](https://github.com/backstage/backstage/tree/HEAD/packages/integration-react) | `1.1.21` | `1.2.6` |
| [@backstage/plugin-api-docs](https://github.com/backstage/backstage/tree/HEAD/plugins/api-docs) | `0.10.1` | `0.12.6` |
| [@backstage/plugin-catalog-graph](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-graph) | `0.3.1` | `0.4.18` |
| [@backstage/plugin-catalog-import](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-import) | `0.10.3` | `0.12.13` |
| [@backstage/plugin-scaffolder](https://github.com/backstage/backstage/tree/HEAD/plugins/scaffolder) | `1.16.1` | `1.30.1` |
| [@backstage/plugin-search-react](https://github.com/backstage/backstage/tree/HEAD/plugins/search-react) | `1.7.3` | `1.8.8` |
| [@backstage/plugin-tech-radar](https://github.com/backstage/backstage/tree/HEAD/plugins/tech-radar) | `0.6.10` | `0.7.3` |
| [@backstage/plugin-techdocs](https://github.com/backstage/backstage/tree/HEAD/plugins/techdocs) | `1.9.1` | `1.12.5` |
| [@backstage/plugin-user-settings](https://github.com/backstage/backstage/tree/HEAD/plugins/user-settings) | `0.7.13` | `0.8.21` |
| [@backstage/theme](https://github.com/backstage/backstage/tree/HEAD/packages/theme) | `0.4.4` | `0.6.5` |
| [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.7` |
| [@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.24.1` |
| [@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.1` |
| [@backstage/plugin-auth-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/auth-backend) | `0.20.0` | `0.24.5` |
| [@backstage/plugin-auth-node](https://github.com/backstage/backstage/tree/HEAD/plugins/auth-node) | `0.4.13` | `0.6.2` |
| [@backstage/plugin-catalog-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-backend) | `1.22.0` | `1.32.1` |
| [@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.7` |
| [@backstage/plugin-permission-common](https://github.com/backstage/backstage/tree/HEAD/plugins/permission-common) | `0.7.13` | `0.8.4` |
| [@backstage/plugin-permission-node](https://github.com/backstage/backstage/tree/HEAD/plugins/permission-node) | `0.7.29` | `0.9.1` |
| [@backstage/plugin-proxy-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/proxy-backend) | `0.4.5` | `0.6.1` |
| [@backstage/plugin-scaffolder-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/scaffolder-backend) | `1.19.1` | `1.32.1` |
| [@backstage/plugin-search-backend-module-catalog](https://github.com/backstage/backstage/tree/HEAD/plugins/search-backend-module-catalog) | `0.1.24` | `0.3.3` |
| [@backstage/plugin-search-backend-module-techdocs](https://github.com/backstage/backstage/tree/HEAD/plugins/search-backend-module-techdocs) | `0.1.11` | `0.4.1` |
| [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) | `8.11.3` | `8.15.6` |
| [winston](https://github.com/winstonjs/winston) | `3.11.0` | `3.17.0` |
| [@backstage/backend-dynamic-feature-service](https://github.com/backstage/backstage/tree/HEAD/packages/backend-dynamic-feature-service) | `0.2.10` | `0.6.2` |

Bumps the minor group with 8 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.32.0` |
| [@backstage/core-components](https://github.com/backstage/backstage/tree/HEAD/packages/core-components) | `0.13.10` | `0.17.1` |
| [@backstage/plugin-api-docs](https://github.com/backstage/backstage/tree/HEAD/plugins/api-docs) | `0.10.3` | `0.12.6` |
| [@backstage/plugin-catalog-graph](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-graph) | `0.3.3` | `0.4.18` |
| [@backstage/plugin-catalog-import](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-import) | `0.10.10` | `0.12.13` |
| [@backstage/plugin-tech-radar](https://github.com/backstage/backstage/tree/HEAD/plugins/tech-radar) | `0.6.13` | `0.7.3` |
| [@backstage/plugin-user-settings](https://github.com/backstage/backstage/tree/HEAD/plugins/user-settings) | `0.7.14` | `0.8.21` |
| [@backstage/theme](https://github.com/backstage/backstage/tree/HEAD/packages/theme) | `0.4.4` | `0.6.5` |

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.1` |
| [@backstage/plugin-auth-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/auth-backend) | `0.20.3` | `0.24.5` |
| [@backstage/plugin-auth-node](https://github.com/backstage/backstage/tree/HEAD/plugins/auth-node) | `0.4.17` | `0.6.2` |
| [@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.7` |
| [@backstage/plugin-permission-common](https://github.com/backstage/backstage/tree/HEAD/plugins/permission-common) | `0.7.14` | `0.8.4` |
| [@backstage/plugin-permission-node](https://github.com/backstage/backstage/tree/HEAD/plugins/permission-node) | `0.7.32` | `0.9.1` |
| [@backstage/plugin-proxy-backend](https://github.com/backstage/backstage/tree/HEAD/plugins/proxy-backend) | `0.4.16` | `0.6.1` |
| [@backstage/plugin-search-backend-module-catalog](https://github.com/backstage/backstage/tree/HEAD/plugins/search-backend-module-catalog) | `0.1.28` | `0.3.3` |
| [@backstage/plugin-search-backend-module-techdocs](https://github.com/backstage/backstage/tree/HEAD/plugins/search-backend-module-techdocs) | `0.1.27` | `0.4.1` |

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.32.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.32.0/packages/cli)

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

Updates `typescript` from 5.2.2 to 5.8.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.2.2...v5.8.3)

Updates `@backstage/app-defaults` from 1.4.5 to 1.6.1
- [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/core-app-api` from 1.11.1 to 1.16.1
- [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/HEAD/packages/core-app-api)

Updates `@backstage/core-components` from 0.13.8 to 0.17.1
- [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/v0.17.1/packages/core-components)

Updates `@backstage/core-plugin-api` from 1.8.0 to 1.10.6
- [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.6
- [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.12.6
- [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` from 1.15.1 to 1.29.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.29.0/plugins/catalog)

Updates `@backstage/plugin-catalog-graph` from 0.3.1 to 0.4.18
- [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/HEAD/plugins/catalog-graph)

Updates `@backstage/plugin-catalog-import` from 0.10.3 to 0.12.13
- [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-catalog-react` from 1.9.1 to 1.17.0
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-react/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.17.0/plugins/catalog-react)

Updates `@backstage/plugin-permission-react` from 0.4.17 to 0.4.33
- [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.30.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.30.1/plugins/scaffolder)

Updates `@backstage/plugin-search-react` from 1.7.3 to 1.8.8
- [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/HEAD/plugins/search-react)

Updates `@backstage/plugin-tech-radar` from 0.6.10 to 0.7.3
- [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.12.5
- [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/HEAD/plugins/techdocs)

Updates `@backstage/plugin-techdocs-react` from 1.1.13 to 1.2.16
- [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.8.21
- [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.6.5
- [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](streamich/react-use@v17.4.2...v17.6.0)

Updates `@backstage/test-utils` from 1.4.5 to 1.7.7
- [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](testing-library/user-event@v14.5.1...v14.6.1)

Updates `@backstage/backend-common` from 0.19.9 to 0.24.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Commits](https://github.com/backstage/backstage/commits/v0.24.1/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/plugin-app-backend` from 0.3.55 to 0.5.1
- [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.24.5
- [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.2
- [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` from 1.22.0 to 1.32.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/catalog-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.32.1/plugins/catalog-backend)

Updates `@backstage/plugin-catalog-backend-module-scaffolder-entity-model` from 0.1.4 to 0.2.7
- [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.8.4
- [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.9.1
- [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.1
- [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-scaffolder-backend` from 1.19.1 to 1.32.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Changelog](https://github.com/backstage/backstage/blob/master/plugins/scaffolder-backend/CHANGELOG.md)
- [Commits](https://github.com/backstage/backstage/commits/v1.32.1/plugins/scaffolder-backend)

Updates `@backstage/plugin-search-backend-module-catalog` from 0.1.24 to 0.3.3
- [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.1
- [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/v0.4.1/plugins/search-backend-module-techdocs)

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

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

Updates `@backstage/backend-dynamic-feature-service` from 0.2.10 to 0.6.2
- [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/HEAD/packages/backend-dynamic-feature-service)

Updates `@backstage/cli` from 0.24.0 to 0.32.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.32.0/packages/cli)

Updates `@backstage/core-components` from 0.13.10 to 0.17.1
- [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/v0.17.1/packages/core-components)

Updates `@backstage/plugin-api-docs` from 0.10.3 to 0.12.6
- [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.4.18
- [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/HEAD/plugins/catalog-graph)

Updates `@backstage/plugin-catalog-import` from 0.10.10 to 0.12.13
- [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-tech-radar` from 0.6.13 to 0.7.3
- [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.8.21
- [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.6.5
- [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.1
- [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.24.5
- [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.2
- [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.7
- [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.8.4
- [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.9.1
- [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.1
- [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.3
- [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.1
- [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/v0.4.1/plugins/search-backend-module-techdocs)

Updates `@backstage/cli` from 0.24.0 to 0.32.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.32.0/packages/cli)

Updates `@backstage/backend-common` from 0.19.10 to 0.24.1
- [Release notes](https://github.com/backstage/backstage/releases)
- [Commits](https://github.com/backstage/backstage/commits/v0.24.1/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.6.2
- [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/HEAD/packages/backend-dynamic-feature-service)

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

---
updated-dependencies:
- dependency-name: "@backstage/cli"
  dependency-version: 0.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@playwright/test"
  dependency-version: 1.52.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: typescript
  dependency-version: 5.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/app-defaults"
  dependency-version: 1.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/core-app-api"
  dependency-version: 1.16.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/core-components"
  dependency-version: 0.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/core-plugin-api"
  dependency-version: 1.10.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/integration-react"
  dependency-version: 1.2.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-api-docs"
  dependency-version: 0.12.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog"
  dependency-version: 1.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-graph"
  dependency-version: 0.4.18
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-import"
  dependency-version: 0.12.13
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-react"
  dependency-version: 1.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-permission-react"
  dependency-version: 0.4.33
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@backstage/plugin-scaffolder"
  dependency-version: 1.30.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-search-react"
  dependency-version: 1.8.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-tech-radar"
  dependency-version: 0.7.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-techdocs"
  dependency-version: 1.12.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-techdocs-react"
  dependency-version: 1.2.16
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-user-settings"
  dependency-version: 0.8.21
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/theme"
  dependency-version: 0.6.5
  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.7
  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: "@backstage/backend-common"
  dependency-version: 0.24.1
  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/plugin-app-backend"
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-auth-backend"
  dependency-version: 0.24.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-auth-node"
  dependency-version: 0.6.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-backend"
  dependency-version: 1.32.1
  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.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-permission-common"
  dependency-version: 0.8.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-permission-node"
  dependency-version: 0.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-proxy-backend"
  dependency-version: 0.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-scaffolder-backend"
  dependency-version: 1.32.1
  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.3
  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.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: pg
  dependency-version: 8.15.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: winston
  dependency-version: 3.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/backend-dynamic-feature-service"
  dependency-version: 0.6.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/cli"
  dependency-version: 0.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/core-components"
  dependency-version: 0.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-api-docs"
  dependency-version: 0.12.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-graph"
  dependency-version: 0.4.18
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-catalog-import"
  dependency-version: 0.12.13
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-tech-radar"
  dependency-version: 0.7.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-user-settings"
  dependency-version: 0.8.21
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/theme"
  dependency-version: 0.6.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-app-backend"
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-auth-backend"
  dependency-version: 0.24.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-auth-node"
  dependency-version: 0.6.2
  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.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-permission-common"
  dependency-version: 0.8.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-permission-node"
  dependency-version: 0.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/plugin-proxy-backend"
  dependency-version: 0.6.1
  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.3
  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.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/cli"
  dependency-version: 0.32.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@backstage/backend-common"
  dependency-version: 0.24.1
  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/backend-dynamic-feature-service"
  dependency-version: 0.6.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: winston
  dependency-version: 3.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 7, 2025
@openshift-ci openshift-ci bot requested review from aliok and pierDipi May 7, 2025 14:15
Copy link

openshift-ci bot commented May 7, 2025

[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 leo6leo for approval. For more information see the Code Review Process.

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

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

Copy link

openshift-ci bot commented May 7, 2025

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.

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.

Copy link
Author

dependabot bot commented on behalf of github May 12, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this May 12, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/backstage/release-v1.18/minor-10df594006 branch May 12, 2025 14:04
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