Skip to content

chore(deps): bump the npm-dependencies group across 1 directory with 15 updates - #8

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-d7c22fcf26
Open

chore(deps): bump the npm-dependencies group across 1 directory with 15 updates#8
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-d7c22fcf26

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 23, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-dependencies group with 14 updates in the / directory:

Package From To
@backstage/catalog-model 1.9.0 1.10.0
@backstage/core-components 0.18.12 0.18.13
@backstage/plugin-catalog-react 1.21.6 3.2.1
cytoscape 3.34.0 3.34.1
@backstage/cli 0.29.6 0.36.5
@backstage/dev-utils 1.1.25 1.1.26
@backstage/test-utils 1.7.20 1.7.21
@testing-library/jest-dom 6.9.1 7.0.1
@testing-library/react 15.0.7 16.3.2
react 18.3.1 19.2.8
@types/react 18.3.31 19.2.18
react-dom 18.3.1 19.2.8
react-router-dom 6.30.4 7.18.2
typescript 5.4.5 7.0.2

Updates @backstage/catalog-model from 1.9.0 to 1.10.0

Changelog

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

1.10.0

Minor Changes

  • ad18743: Added marketplace spec type to the @alpha AiResource kind, representing a curated registry of plugins for discovery and distribution. Marketplaces reference their contained plugins via spec.plugins entity references, generating hasPart catalog relations.
  • f501302: Added plugin spec type to the @alpha AiResource kind, representing a packaged collection of skills distributed as a unit. Plugins reference their contained skills via spec.skills entity references, generating hasPart catalog relations.
  • 0b9b3bf: Added optional allowedTools, license, and compatibility fields to the @alpha AiResource skill spec, aligned with the agentskills.io specification.

Patch Changes

  • 9a6955c: Corrected catalog relation generation to honor declared kind combinations, and completed reverse relations for existing AiResource fields.
Commits
  • 6d46667 Version Packages
  • cebe24e add entity labels card
  • c413227 Version Packages (next)
  • f834622 Version Packages (next)
  • 011bd51 Update docs for all spelling errors, and add auth0 session and spec.presence
  • See full diff in compare view

Updates @backstage/core-components from 0.18.12 to 0.18.13

Changelog

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

0.18.13

Patch Changes

  • 226817d: chore(deps): bump js-yaml from 4.2.0 to 4.3.0

  • a4759e6: Migrated tests from MSW v1 to MSW v2.

  • 96cd953: Fixed the DependencyGraph component to avoid a jarring initial render where nodes briefly pile up at overlapping positions before animating into place. The graph content is now hidden until node measurements are complete and the layout has fully settled, then revealed at the correct positions with transitions suppressed for the first frame.

    Also fixed a containerRef recreation chain where every graph dimension change caused the container measurement callback to be recreated and re-triggered, producing unnecessary re-renders during initial layout.

  • Updated dependencies

    • @​backstage/core-plugin-api@​1.12.9
    • @​backstage/ui@​0.17.1

0.18.13-next.2

Patch Changes

  • Updated dependencies
    • @​backstage/core-plugin-api@​1.12.9-next.0

0.18.13-next.1

Patch Changes

  • 96cd953: Fixed the DependencyGraph component to avoid a jarring initial render where nodes briefly pile up at overlapping positions before animating into place. The graph content is now hidden until node measurements are complete and the layout has fully settled, then revealed at the correct positions with transitions suppressed for the first frame.

    Also fixed a containerRef recreation chain where every graph dimension change caused the container measurement callback to be recreated and re-triggered, producing unnecessary re-renders during initial layout.

0.18.13-next.0

Patch Changes

  • 226817d: chore(deps): bump js-yaml from 4.2.0 to 4.3.0
  • Updated dependencies
    • @​backstage/ui@​0.17.1-next.0
Commits

Updates @backstage/core-plugin-api from 1.12.8 to 1.12.9

Changelog

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

1.12.9

Patch Changes

  • 9fcfbc9: Fixed a performance issue where all components using analytics, including every link, would rerender unnecessarily whenever a surrounding analytics context rendered again without its attributes having changed, for example when a URL query parameter changed on an entity page.
  • Updated dependencies
    • @​backstage/frontend-plugin-api@​0.18.0

1.12.9-next.1

Patch Changes

  • 9fcfbc9: Fixed a performance issue where all components using analytics, including every link, would rerender unnecessarily whenever a surrounding analytics context rendered again without its attributes having changed, for example when a URL query parameter changed on an entity page.

1.12.9-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/frontend-plugin-api@​0.18.0-next.0
Commits

Updates @backstage/plugin-catalog-react from 1.21.6 to 3.2.1

Release notes

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

v1.54.3

This patch release fixes the following issues:

  • Fixed the unintended removal of support for intrinsic string, number, array, Map, and Set methods in software templates.

v1.54.0

These are the release notes for the v1.54.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: Stricter OAuth redirect URI allowlist matching

The OAuth redirect URI and client ID metadata document allowlists in @backstage/plugin-auth-backend now match patterns against each URL component separately instead of against the full URL string. Wildcards no longer match across the host and path boundary, patterns must include an explicit protocol and are otherwise rejected as invalid configuration instead of being silently ignored, and redirect URIs that contain embedded credentials are always rejected.

A wildcard port also no longer implicitly matches every path: a pattern such as http://localhost:* now only matches the root path. Use http://localhost:*/* to allow any port and any path. The built-in loopback defaults have been updated accordingly, so this only affects explicitly configured patterns.

BREAKING: Deprecated extension config.schema removed

The deprecated config.schema option for extensions and extension blueprints has been removed from @backstage/frontend-plugin-api. Use the top-level configSchema option with Standard Schema-compatible schema values, such as Zod v4.

BREAKING: Connections moved to a shared contract

The Connections API is still early, so this only applies to you if you are experimenting with it already. Update backend-only imports from @backstage/connections, update connection lookups to pass a typed query object instead of a top-level url, and rename RootConnectionAuth to ConfiguredConnectionAuth. New GitHub and AWS connection types have also been added.

Contributed by @​neoreddog in #34718, #35029, #35059, and #35209

BREAKING: OpenAPI validation command renamed

The backstage-repo-tools repo schema openapi verify command has been renamed to backstage-repo-tools repo schema openapi validate. A new backstage-repo-tools package schema openapi validate command has also been added to validate OpenAPI 3.x documents for individual packages.

Create-app and Home page updates

Create-app: New apps created with @backstage/create-app now include a GitHub Actions CI workflow that runs linting, type checking, tests, configuration validation, and a Docker image build on pull requests. The app template also includes a pre-configured Home page with a customizable widget grid, and create-app now checks the Node.js LTS version and Yarn availability before scaffolding.

Home plugin: The Home plugin now includes new frontend system widget blueprints for Most Visited, Recently Visited, World Clocks, a configurable Toolkit, and a search bar from the Search plugin. The home page layout now supports a defaultConfig for defining the initial widget grid through app configuration.

Catalog backend reliability and performance

Relation sync: The Catalog backend now syncs entity relations by applying only the diff of changed rows instead of deleting and reinserting all relations. In steady state, this avoids unnecessary writes, dead tuples, WAL traffic, and stitching work for unchanged relation neighbors.

Write resilience: Entity provider mutations on PostgreSQL now retry automatically on deadlocks, and concurrent entity processing on MySQL now retries the updateProcessedEntity transaction on deadlock errors. SCM location.moved events are also ignored for files that are not actively tracked, preventing spurious locations from being created.

AiResource kind: The alpha AiResource catalog kind now supports plugin and marketplace spec types, plus allowedTools, license, and compatibility fields for skill resources. Catalog relation generation also now honors declared kind combinations and completes reverse relations for existing AiResource fields.

Contributed by @​nickwtan in #34890, #34891, and #34892

Agent-friendly catalog refresh

... (truncated)

Changelog

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

3.2.1

Patch Changes

  • 9fcfbc9: Fixed a performance issue where all components reading the entity context on an entity page would rerender unnecessarily whenever the page rendered again without the entity data having changed, for example when a URL query parameter changed. This was particularly noticeable when switching tabs in the entity inspector dialog, which caused the entire underlying page to rerender.

  • e766061: Fixed an issue where the "Owned" count in UserListPicker would display the total number of catalog entities instead of 0 when the logged-in user has no ownership entity refs. The empty relations.ownedBy filter was being silently dropped by the catalog client, causing the backend to return all entities with no ownership filter applied.

    This was a regression introduced in #22131, which removed an explicit ownershipEntityRefs?.length === 0 guard that had been present since #20339.

  • ed462ad: Fixed EntityOwnerPicker in owners-only mode to display human-readable entity titles (from metadata.title or spec.profile.displayName) instead of opaque internal names, both in the dropdown list and in the selected owner chips. The owner list is now virtualized, keeping the picker responsive for catalogs with large numbers of owner entities.

  • Updated dependencies

    • @​backstage/catalog-model@​1.10.0
    • @​backstage/core-components@​0.18.13
    • @​backstage/core-plugin-api@​1.12.9
    • @​backstage/ui@​0.17.1
    • @​backstage/plugin-permission-common@​0.9.10
    • @​backstage/frontend-plugin-api@​0.18.0
    • @​backstage/core-compat-api@​0.5.14
    • @​backstage/integration-react@​1.2.21
    • @​backstage/plugin-permission-react@​0.5.4

3.2.1-next.3

Patch Changes

  • 9fcfbc9: Fixed a performance issue where all components reading the entity context on an entity page would rerender unnecessarily whenever the page rendered again without the entity data having changed, for example when a URL query parameter changed. This was particularly noticeable when switching tabs in the entity inspector dialog, which caused the entire underlying page to rerender.
  • Updated dependencies
    • @​backstage/core-plugin-api@​1.12.9-next.1

3.2.1-next.2

Patch Changes

  • e766061: Fixed an issue where the "Owned" count in UserListPicker would display the total number of catalog entities instead of 0 when the logged-in user has no ownership entity refs. The empty relations.ownedBy filter was being silently dropped by the catalog client, causing the backend to return all entities with no ownership filter applied.

    This was a regression introduced in #22131, which removed an explicit ownershipEntityRefs?.length === 0 guard that had been present since #20339.

  • Updated dependencies

    • @​backstage/frontend-plugin-api@​0.18.0-next.0
    • @​backstage/core-compat-api@​0.5.14-next.1
    • @​backstage/core-plugin-api@​1.12.9-next.0
    • @​backstage/core-components@​0.18.13-next.2
    • @​backstage/integration-react@​1.2.21-next.1
    • @​backstage/plugin-permission-react@​0.5.4-next.0

3.2.1-next.1

Patch Changes

  • ed462ad: Fixed EntityOwnerPicker in owners-only mode to display human-readable entity titles (from metadata.title or spec.profile.displayName) instead of opaque internal names, both in the dropdown list and in the selected owner chips. The owner list is now virtualized, keeping the picker responsive for catalogs with large numbers of owner entities.

... (truncated)

Commits

Updates cytoscape from 3.34.0 to 3.34.1

Release notes

Sourced from cytoscape's releases.

v3.34.1

Release version v3.34.1

Commits
  • 2510141 3.34.1
  • b76d9e1 Build 3.34.1
  • 9ebbac6 Docs: Add 3.34.1 to versions.json
  • 1a0f4de Merge pull request #3498 from Jaybhade/fix/astar-open-set-priority
  • 65e4bb1 test: use single quotes in the weighted A* path assertion
  • 069b464 Resort the A* open set when a queued node gets a lower score
  • f16dd20 Recompute round-polygon corners when node size or corner radius changes
  • e3e421c Cherry pick to main: Merge pull request #3491 from fedarko/fix-scroll-base
  • 39f638e Patch: Pinch-to-zoom throws "Cannot read properties of undefined (reading 'em...
  • See full diff in compare view
Attestation changes

This version has no provenance attestation, while the previous version (3.34.0) was attested. Review the package versions before updating.


Updates @backstage/cli from 0.29.6 to 0.36.5

Changelog

Sourced from @​backstage/cli's changelog.

0.36.5

Patch Changes

  • Updated dependencies
    • @​backstage/cli-module-build@​0.1.7
    • @​backstage/cli-module-test-jest@​0.1.5
    • @​backstage/eslint-plugin@​0.3.2
    • @​backstage/cli-defaults@​0.1.5

0.36.5-next.1

Patch Changes

  • Updated dependencies
    • @​backstage/cli-module-build@​0.1.7-next.0
    • @​backstage/cli-module-test-jest@​0.1.5-next.0
    • @​backstage/cli-defaults@​0.1.5-next.0

0.36.5-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/eslint-plugin@​0.3.2-next.0

0.36.4

Patch Changes

  • 61d4881: The shared ESLint configuration now reports unused imports in config.d.ts configuration schema files. These declaration files are not covered by the TypeScript compiler's unused-variable checks, which previously allowed a stray import to slip through. Such an import can resolve during local development but break configuration schema loading for consumers of the published package, so it is now caught at lint time.
  • Updated dependencies
    • @​backstage/cli-module-build@​0.1.5
    • @​backstage/cli-common@​0.3.0
    • @​backstage/cli-defaults@​0.1.4
    • @​backstage/cli-module-test-jest@​0.1.4
    • @​backstage/cli-node@​0.3.4

0.36.4-next.2

Patch Changes

  • Updated dependencies
    • @​backstage/cli-common@​0.3.0-next.0
    • @​backstage/cli-module-build@​0.1.5-next.2
    • @​backstage/cli-module-test-jest@​0.1.4-next.0
    • @​backstage/cli-node@​0.3.4-next.0
    • @​backstage/cli-defaults@​0.1.4-next.1

0.36.4-next.1

... (truncated)

Commits

Updates @backstage/dev-utils from 1.1.25 to 1.1.26

Changelog

Sourced from @​backstage/dev-utils's changelog.

1.1.26

Patch Changes

  • Updated dependencies
    • @​backstage/catalog-model@​1.10.0
    • @​backstage/core-components@​0.18.13
    • @​backstage/core-plugin-api@​1.12.9
    • @​backstage/plugin-catalog-react@​3.2.1
    • @​backstage/core-app-api@​1.20.4
    • @​backstage/ui@​0.17.1
    • @​backstage/app-defaults@​1.7.11
    • @​backstage/integration-react@​1.2.21

1.1.26-next.2

Patch Changes

  • Updated dependencies
    • @​backstage/plugin-catalog-react@​3.2.1-next.2
    • @​backstage/app-defaults@​1.7.11-next.1
    • @​backstage/core-plugin-api@​1.12.9-next.0
    • @​backstage/core-app-api@​1.20.4-next.1
    • @​backstage/core-components@​0.18.13-next.2
    • @​backstage/integration-react@​1.2.21-next.1

1.1.26-next.1

Patch Changes

  • Updated dependencies
    • @​backstage/plugin-catalog-react@​3.2.1-next.1
    • @​backstage/core-components@​0.18.13-next.1
    • @​backstage/integration-react@​1.2.21-next.0

1.1.26-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/core-components@​0.18.13-next.0
    • @​backstage/ui@​0.17.1-next.0
    • @​backstage/app-defaults@​1.7.11-next.0
    • @​backstage/plugin-catalog-react@​3.2.1-next.0
    • @​backstage/core-app-api@​1.20.4-next.0
Commits

Updates @backstage/test-utils from 1.7.20 to 1.7.21

Changelog

Sourced from @​backstage/test-utils's changelog.

1.7.21

Patch Changes

  • a4759e6: Migrated tests from MSW v1 to MSW v2.
  • Updated dependencies
    • @​backstage/core-plugin-api@​1.12.9
    • @​backstage/core-app-api@​1.20.4
    • @​backstage/plugin-permission-common@​0.9.10
    • @​backstage/plugin-permission-react@​0.5.4

1.7.21-next.1

Patch Changes

  • Updated dependencies
    • @​backstage/core-plugin-api@​1.12.9-next.0
    • @​backstage/core-app-api@​1.20.4-next.1
    • @​backstage/plugin-permission-react@​0.5.4-next.0

1.7.21-next.0

Patch Changes

  • Updated dependencies
    • @​backstage/core-app-api@​1.20.4-next.0
Commits

Updates @testing-library/jest-dom from 6.9.1 to 7.0.1

Release notes

Sourced from @​testing-library/jest-dom's releases.

v7.0.1

7.0.1 (2026-08-09)

Bug Fixes

  • declare vitest as an optional peer dependency (#733) (3782c78)

v7.0.0

7.0.0 (2026-07-20)

Features

  • add toContainAnyBy* and toContainOneBy* query matchers (1e39089)

BREAKING CHANGES

  • @​testing-library/dom is now a required peer dependency. The minimum supported Node.js version is now 22.

Repaired release for testing-library/jest-dom#731

v6.10.0

6.10.0 (2026-07-20)

Features

  • add toContainAnyBy* and toContainOneBy* query matchers (#731) (cae44df)
Commits
  • 3782c78 fix: declare vitest as an optional peer dependency (#733)
  • 1e39089 feat: add toContainAnyBy* and toContainOneBy* query matchers
  • cae44df feat: add toContainAnyBy* and toContainOneBy* query matchers (#731)
  • 55c07ce ci: switch release to npm trusted publishing (#726)
  • 213256f docs: move toHaveSelection from the deprecated section (#717)
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​testing-library/jest-dom since your current version.


Updates @testing-library/react from 15.0.7 to 16.3.2

Release notes

Sourced from @​testing-library/react's releases.

v16.3.2

16.3.2 (2026-01-19)

Bug Fixes

  • Update 'onCaughtError' type inference in 'RenderOptions' to work with React v19 (#1438) (f32bd1b)

v16.3.1

16.3.1 (2025-12-15)

Bug Fixes

v16.3.0

16.3.0 (2025-04-02)

Features

  • add bernardobelchior as a contributor for code, and doc (#1391) (9fc6a75)

v16.2.0

16.2.0 (2025-01-15)

Features

v16.1.0

16.1.0 (2024-12-05)

Features

v16.0.1

16.0.1 (2024-08-29)

Bug Fixes

  • Add support for exactOptionalPropertyTypes in TypeScript (#1351) (3dcd8a9)

v16.0.0

16.0.0 (2024-06-03)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​testing-library/react since your current version.


Updates react from 18.3.1 to 19.2.8

Release notes

Sourced from react's releases.

19.2.8 (July 21st, 2026)

React Server Components

19.2.7 (June 1st, 2026)

React Server Components

19.2.6 (May 6th, 2026)

React Server Components

19.2.5 (April 8th, 2026)

React Server Components

19.2.4 (January 26th, 2026)

React Server Components

19.2.3 (December 11th, 2025)

React Server Components

19.2.2 (December 11th, 2025)

React Server Components

19.2.1 (December 3rd, 2025)

React Server Components

19.2.0 (Oct 1, 2025)

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features

... (truncated)

Changelog

Sourced from react's changelog.

19.2.7 (June 1, 2026)

React Server Components

19.2.6 (May 6, 2026)

React Server Components

19.2.5 (March 18, 2026)

React Server Components

19.2.4 (Jan 26, 2026)

React Server Components

19.2.3 (Dec 11, 2025)

React Server Components

19.2.2 (Dec 11, 2025)

React Server Components

19.2.1 (Dec 3, 2025)

React Server Components

19.2.0 (October 1st, 2025)

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for react since your current version.


Updates @types/react from 18.3.31 to 19.2.18

Commits

Updates react-dom from 18.3.1 to 19.2.8

Release notes

Sourced from react-dom's releases.

19.2.8 (July 21st, 2026)

React Server Components

19.2.7 (June 1st, 2026)

React Server Components

19.2.6 (May 6th, 2026)

React Server Components

19.2.5 (April 8th, 2026)

React Server Components

19.2.4 (January 26th, 2026)

React Server Components

19.2.3 (December 11th, 2025)

React Server Components

19.2.2 (December 11th, 2025)

React Server Components

19.2.1 (December 3rd, 2025)

React Server Components

19.2.0 (Oct 1, 2025)

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features

... (truncated)

Changelog

Sourced from react-dom's changelog.

19.2.7 (June 1, 2026)

React Server Components

19.2.6 (May 6, 2026)

React Server Components

19.2.5 (March 18, 2026)

React Server Components

19.2.4 (Jan 26, 2026)

React Server Components

19.2.3 (Dec 11, 2025)

React Server Components

19.2.2 (Dec 11, 2025)

React Server Components

19.2.1 (Dec 3, 2025)

React Server Components

19.2.0 (October 1st, 2025)

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for react-dom since your current version.


Updates react-router-dom from 6.30.4 to 7.18.2

Release notes

Sourced from react-router-dom's releases.

v7.1.3

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v713

Changelog

Sourced from react-router-dom's changelog.

v7.18.2

Patch Changes

v7.18.1

Patch Changes

v7.18.0

Patch Changes

v7.17.0

Patch Changes

v7.16.0

Patch Changes

  • Remove stale/invalid unpkg field from package.json. This was removed from other packages with the release of v7 but missed in the react-router-dom re-export package (#15075)
  • Updated dependencies:

v7.15.1

Patch Changes

v7.15.0

Patch Changes

... (truncated)

Commits

Updates typescript from 5.4.5 to 7.0.2

Release notes

Sourced from typescript's releases.

TypeScript 7.0.2

https://devblogs.microsoft.com/...

Description has been truncated

…15 updates

Bumps the npm-dependencies group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@backstage/catalog-model](https://github.com/backstage/backstage/tree/HEAD/packages/catalog-model) | `1.9.0` | `1.10.0` |
| [@backstage/core-components](https://github.com/backstage/backstage/tree/HEAD/packages/core-components) | `0.18.12` | `0.18.13` |
| [@backstage/plugin-catalog-react](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-react) | `1.21.6` | `3.2.1` |
| [cytoscape](https://github.com/cytoscape/cytoscape.js) | `3.34.0` | `3.34.1` |
| [@backstage/cli](https://github.com/backstage/backstage/tree/HEAD/packages/cli) | `0.29.6` | `0.36.5` |
| [@backstage/dev-utils](https://github.com/backstage/backstage/tree/HEAD/packages/dev-utils) | `1.1.25` | `1.1.26` |
| [@backstage/test-utils](https://github.com/backstage/backstage/tree/HEAD/packages/test-utils) | `1.7.20` | `1.7.21` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.9.1` | `7.0.1` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `15.0.7` | `16.3.2` |
| [react](https://github.com/react/react/tree/HEAD/packages/react) | `18.3.1` | `19.2.8` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.31` | `19.2.18` |
| [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom) | `18.3.1` | `19.2.8` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.30.4` | `7.18.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.4.5` | `7.0.2` |



Updates `@backstage/catalog-model` from 1.9.0 to 1.10.0
- [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/v1.10.0/packages/catalog-model)

Updates `@backstage/core-components` from 0.18.12 to 0.18.13
- [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.12.8 to 1.12.9
- [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/plugin-catalog-react` from 1.21.6 to 3.2.1
- [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/HEAD/plugins/catalog-react)

Updates `cytoscape` from 3.34.0 to 3.34.1
- [Release notes](https://github.com/cytoscape/cytoscape.js/releases)
- [Commits](cytoscape/cytoscape.js@v3.34.0...v3.34.1)

Updates `@backstage/cli` from 0.29.6 to 0.36.5
- [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/HEAD/packages/cli)

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

Updates `@backstage/test-utils` from 1.7.20 to 1.7.21
- [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/jest-dom` from 6.9.1 to 7.0.1
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.9.1...v7.0.1)

Updates `@testing-library/react` from 15.0.7 to 16.3.2
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v15.0.7...v16.3.2)

Updates `react` from 18.3.1 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react)

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

Updates `react-dom` from 18.3.1 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react-dom)

Updates `react-router-dom` from 6.30.4 to 7.18.2
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/react-router-dom@7.18.2/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.18.2/packages/react-router-dom)

Updates `typescript` from 5.4.5 to 7.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.4.5...v7.0.2)

---
updated-dependencies:
- dependency-name: "@backstage/catalog-model"
  dependency-version: 1.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@backstage/core-components"
  dependency-version: 0.18.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@backstage/core-plugin-api"
  dependency-version: 1.12.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@backstage/plugin-catalog-react"
  dependency-version: 3.2.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: cytoscape
  dependency-version: 3.34.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@backstage/cli"
  dependency-version: 0.36.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@backstage/dev-utils"
  dependency-version: 1.1.26
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@backstage/test-utils"
  dependency-version: 1.7.21
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@testing-library/jest-dom"
  dependency-version: 7.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@testing-library/react"
  dependency-version: 16.3.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: react
  dependency-version: 19.2.8
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.2.18
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.8
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: react-router-dom
  dependency-version: 7.18.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
...

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 Aug 23, 2026
@dependabot
dependabot Bot requested a review from intellinfra-dev as a code owner August 23, 2026 05:25
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 23, 2026
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants