Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 30, 2025

Bumps the patch group with 7 updates in the / directory:

Package From To
@biomejs/biome 2.0.6 2.2.4
turbo 2.5.6 2.5.8
@types/node 24.4.0 24.6.0
fastify 5.6.0 5.6.1
@types/react 19.1.13 19.1.15
graphql-yoga 5.15.2 5.16.0
@typescript-eslint/eslint-plugin 8.43.0 8.45.0

Bumps the patch group with 2 updates in the /packages/yoga directory: graphql-yoga and @typescript-eslint/eslint-plugin.

Updates @biomejs/biome from 2.0.6 to 2.2.4

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.2.4

2.2.4

Patch Changes

  • #7453 aa8cea3 Thanks @​arendjr! - Fixed #7242: Aliases specified in package.json's imports section now support having multiple targets as part of an array.

  • #7454 ac17183 Thanks @​arendjr! - Greatly improved performance of noImportCycles by eliminating allocations.

    In one repository, the total runtime of Biome with only noImportCycles enabled went from ~23s down to ~4s.

  • #7447 7139aad Thanks @​rriski! - Fixes #7446. The GritQL $... spread metavariable now correctly matches members in object literals, aligning its behavior with arrays and function calls.

  • #6710 98cf9af Thanks @​arendjr! - Fixed #4723: Type inference now recognises index signatures and their accesses when they are being indexed as a string.

    Example

    type BagOfPromises = {
      // This is an index signature definition. It declares that instances of type
      // `BagOfPromises` can be indexed using arbitrary strings.
      [property: string]: Promise<void>;
    };
    let bag: BagOfPromises = {};
    // Because bag.iAmAPromise is equivalent to bag[&quot;iAmAPromise&quot;], this is
    // considered an access to the string index, and a Promise is expected.
    bag.iAmAPromise;

  • #7415 d042f18 Thanks @​qraqras! - Fixed #7212, now the useOptionalChain rule recognizes optional chaining using typeof (e.g., typeof foo !== 'undefined' && foo.bar).

  • #7419 576baf4 Thanks @​Conaclos! - Fixed #7323. noUnusedPrivateClassMembers no longer reports as unused TypeScript private members if the rule encounters a computed access on this.

    In the following example, member as previously reported as unused. It is no longer reported.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.2.4

Patch Changes

  • #7453 aa8cea3 Thanks @​arendjr! - Fixed #7242: Aliases specified in package.json's imports section now support having multiple targets as part of an array.

  • #7454 ac17183 Thanks @​arendjr! - Greatly improved performance of noImportCycles by eliminating allocations.

    In one repository, the total runtime of Biome with only noImportCycles enabled went from ~23s down to ~4s.

  • #7447 7139aad Thanks @​rriski! - Fixes #7446. The GritQL $... spread metavariable now correctly matches members in object literals, aligning its behavior with arrays and function calls.

  • #6710 98cf9af Thanks @​arendjr! - Fixed #4723: Type inference now recognises index signatures and their accesses when they are being indexed as a string.

    Example

    type BagOfPromises = {
      // This is an index signature definition. It declares that instances of type
      // `BagOfPromises` can be indexed using arbitrary strings.
      [property: string]: Promise<void>;
    };
    let bag: BagOfPromises = {};
    // Because bag.iAmAPromise is equivalent to bag[&quot;iAmAPromise&quot;], this is
    // considered an access to the string index, and a Promise is expected.
    bag.iAmAPromise;

  • #7415 d042f18 Thanks @​qraqras! - Fixed #7212, now the useOptionalChain rule recognizes optional chaining using typeof (e.g., typeof foo !== 'undefined' && foo.bar).

  • #7419 576baf4 Thanks @​Conaclos! - Fixed #7323. noUnusedPrivateClassMembers no longer reports as unused TypeScript private members if the rule encounters a computed access on this.

    In the following example, member as previously reported as unused. It is no longer reported.

    class TsBioo {
      private member: number;
    set_with_name(name: string, value: number) {
    this[name] = value;
    }
    }

... (truncated)

Commits

Updates turbo from 2.5.6 to 2.5.8

Release notes

Sourced from turbo's releases.

Turborepo v2.5.8

What's Changed

create-turbo

Changelog

Full Changelog: vercel/turborepo@v2.5.7...v2.5.8

Turborepo v2.5.8-canary.0

What's Changed

create-turbo

Changelog

Full Changelog: vercel/turborepo@v2.5.7...v2.5.8-canary.0

Turborepo v2.5.7

What's Changed

Docs

create-turbo

eslint

@​turbo/repository

Examples

... (truncated)

Commits

Updates @types/node from 24.4.0 to 24.6.0

Commits

Updates fastify from 5.6.0 to 5.6.1

Release notes

Sourced from fastify's releases.

v5.6.1

What's Changed

New Contributors

Full Changelog: fastify/fastify@v5.6.0...v5.6.1

Commits

Updates @types/react from 19.1.13 to 19.1.15

Commits

Updates graphql-yoga from 5.15.2 to 5.16.0

Changelog

Sourced from graphql-yoga's changelog.

5.16.0

Minor Changes

Patch Changes

  • #4191 0a7a635 Thanks @​ardatan! - Fix workers' loading in online GraphiQL mode, so that Monaco features like autocomplete can work properly
Commits
  • de68acb chore(release): update monorepo packages versions (#4197)
  • c3d545d fix(deps): update dependency @​types/node to v24.5.1 (#4201)
  • a4e1c5f Add allowedHeaders option to allow filtering Response and Request headers (...
  • 0a7a635 fix(graphiql): load monaco workers properly in online mode (#4191)
  • 7a0ec50 fix(deps): update all non-major dependencies (#4189)
  • c7ad9c8 Fix image source to work in NPM page (#4185)
  • 042987d chore: update outdated links (#4179)
  • See full diff in compare view

Updates @typescript-eslint/eslint-plugin from 8.43.0 to 8.45.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.45.0

8.45.0 (2025-09-29)

🚀 Features

  • eslint-plugin: expose rule name via RuleModule interface (#11616)

🩹 Fixes

  • disable generating declaration maps (#11627)
  • ast-spec: narrow ArrowFunctionExpression.generator to false (#11636)
  • eslint-plugin: [no-base-to-string] check if superclass is ignored (#11617)
  • eslint-plugin: [prefer-nullish-coalescing] ignoreBooleanCoercion should not apply to top-level ternary expressions (#11614)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.44.1

8.44.1 (2025-09-22)

🩹 Fixes

  • eslint-plugin: [no-base-to-string] make ignoredTypeNames match type names without generics (#11597)
  • eslint-plugin: [no-unsafe-enum-comparison] support unions of literals (#11599)
  • eslint-plugin: [await-thenable] should not report passing values to promise aggregators which may be a promise in an array literal (#11611)
  • typescript-estree: forbid class property with name constructor (#11590)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.44.0

8.44.0 (2025-09-15)

🚀 Features

  • eslint-plugin: [await-thenable] report invalid (non-promise) values passed to promise aggregator methods (#11267)

... (truncated)

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.45.0 (2025-09-29)

🚀 Features

  • eslint-plugin: expose rule name via RuleModule interface (#11616)

🩹 Fixes

  • eslint-plugin: [prefer-nullish-coalescing] ignoreBooleanCoercion should not apply to top-level ternary expressions (#11614)
  • eslint-plugin: [no-base-to-string] check if superclass is ignored (#11617)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

8.44.1 (2025-09-22)

🩹 Fixes

  • eslint-plugin: [await-thenable] should not report passing values to promise aggregators which may be a promise in an array literal (#11611)
  • eslint-plugin: [no-unsafe-enum-comparison] support unions of literals (#11599)
  • eslint-plugin: [no-base-to-string] make ignoredTypeNames match type names without generics (#11597)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

8.44.0 (2025-09-15)

🚀 Features

  • eslint-plugin: [await-thenable] report invalid (non-promise) values passed to promise aggregator methods (#11267)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-type-conversion] ignore enum members (#11490)

❤️ Thank You

... (truncated)

Commits
  • 255e9e2 chore(release): publish 8.45.0
  • 967764e fix(eslint-plugin): [prefer-nullish-coalescing] ignoreBooleanCoercion should ...
  • f2eeb9d feat(eslint-plugin): expose rule name via RuleModule interface (#11616)
  • 590fac6 fix(eslint-plugin): [no-base-to-string] check if superclass is ignored (#11617)
  • c198052 chore(release): publish 8.44.1
  • c392a0d fix(eslint-plugin): [await-thenable] should not report passing values to prom...
  • 20c3d97 fix(eslint-plugin): [no-unsafe-enum-comparison] support unions of literals (#...
  • 4fde781 fix(eslint-plugin): [no-base-to-string] make ignoredTypeNames match type name...
  • 77056f7 chore(release): publish 8.44.0
  • 684e63f chore(deps): update eslint monorepo to v9.35.0 (#11600)
  • Additional commits viewable in compare view

Updates graphql-yoga from 5.15.2 to 5.16.0

Changelog

Sourced from graphql-yoga's changelog.

5.16.0

Minor Changes

Patch Changes

  • #4191 0a7a635 Thanks @​ardatan! - Fix workers' loading in online GraphiQL mode, so that Monaco features like autocomplete can work properly
Commits
  • de68acb chore(release): update monorepo packages versions (#4197)
  • c3d545d fix(deps): update dependency @​types/node to v24.5.1 (#4201)
  • a4e1c5f Add allowedHeaders option to allow filtering Response and Request headers (...
  • 0a7a635 fix(graphiql): load monaco workers properly in online mode (#4191)
  • 7a0ec50 fix(deps): update all non-major dependencies (#4189)
  • c7ad9c8 Fix image source to work in NPM page (#4185)
  • 042987d chore: update outdated links (#4179)
  • See full diff in compare view

Updates @typescript-eslint/eslint-plugin from 8.43.0 to 8.45.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.45.0

8.45.0 (2025-09-29)

🚀 Features

  • eslint-plugin: expose rule name via RuleModule interface (#11616)

🩹 Fixes

  • disable generating declaration maps (#11627)
  • ast-spec: narrow ArrowFunctionExpression.generator to false (#11636)
  • eslint-plugin: [no-base-to-string] check if superclass is ignored (#11617)
  • eslint-plugin: [prefer-nullish-coalescing] ignoreBooleanCoercion should not apply to top-level ternary expressions (#11614)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.44.1

8.44.1 (2025-09-22)

🩹 Fixes

  • eslint-plugin: [no-base-to-string] make ignoredTypeNames match type names without generics (#11597)
  • eslint-plugin: [no-unsafe-enum-comparison] support unions of literals (#11599)
  • eslint-plugin: [await-thenable] should not report passing values to promise aggregators which may be a promise in an array literal (#11611)
  • typescript-estree: forbid class property with name constructor (#11590)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.44.0

8.44.0 (2025-09-15)

🚀 Features

  • eslint-plugin: [await-thenable] report invalid (non-promise) values passed to promise aggregator methods (#11267)

... (truncated)

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.45.0 (2025-09-29)

🚀 Features

  • eslint-plugin: expose rule name via RuleModule interface (#11616)

🩹 Fixes

  • eslint-plugin: [prefer-nullish-coalescing] ignoreBooleanCoercion should not apply to top-level ternary expressions (#11614)
  • eslint-plugin: [no-base-to-string] check if superclass is ignored (#11617)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

8.44.1 (2025-09-22)

🩹 Fixes

  • eslint-plugin: [await-thenable] should not report passing values to promise aggregators which may be a promise in an array literal (#11611)
  • eslint-plugin: [no-unsafe-enum-comparison] support unions of literals (#11599)
  • eslint-plugin: [no-base-to-string] make ignoredTypeNames match type names without generics (#11597)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

8.44.0 (2025-09-15)

🚀 Features

  • eslint-plugin: [await-thenable] report invalid (non-promise) values passed to promise aggregator methods (#11267)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-type-conversion] ignore enum members (#11490)

❤️ Thank You

... (truncated)

Commits
  • 255e9e2 chore(release): publish 8.45.0
  • 967764e fix(eslint-plugin): [prefer-nullish-coalescing] ignoreBooleanCoercion should ...
  • f2eeb9d feat(eslint-plugin): expose rule name via RuleModule interface (#11616)
  • 590fac6 fix(eslint-plugin): [no-base-to-string] check if superclass is ignored (#11617)
  • c198052 chore(release): publish 8.44.1
  • c392a0d fix(eslint-plugin): [await-thenable] should not report passing values to prom...
  • 20c3d97 fix(eslint-plugin): [no-unsafe-enum-comparison] support unions of literals (#...
  • 4fde781 fix(eslint-plugin): [no-base-to-string] make ignoredTypeNames match type name...
  • 77056f7 chore(release): publish 8.44.0
  • 684e63f chore(deps): update eslint monorepo to v9.35.0 (#11600)
  • Additional commits viewable in compare view

Updates graphql-yoga from 5.15.2 to 5.16.0

Changelog

Sourced from graphql-yoga's changelog.

5.16.0

Minor Changes

Patch Changes

  • #4191 0a7a635 Thanks @​ardatan! - Fix workers' loading in online GraphiQL mode, so that Monaco features like autocomplete can work properly
Commits
  • de68acb chore(release): update monorepo packages versions (#4197)
  • c3d545d fix(deps): update dependency @​types/node to v24.5.1 (#4201)
  • a4e1c5f Add allowedHeaders option to allow filtering Response and Request headers (...
  • 0a7a635 fix(graphiql): load monaco workers properly in online mode (#4191)
  • 7a0ec50 fix(deps): update all non-major dependencies (#4189)
  • c7ad9c8 Fix image source to work in NPM page (#4185)
  • 042987d chore: update outdated links (#4179)
  • See full diff in compare view

Updates @typescript-eslint/eslint-plugin from 8.43.0 to 8.45.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.45.0

8.45.0 (2025-09-29)

🚀 Features

  • eslint-plugin: expose rule name via RuleModule interface (#11616)

🩹 Fixes

  • disable generating declaration maps (#11627)
  • ast-spec: narrow ArrowFunctionExpression.generator to false (#11636)
  • eslint-plugin: [no-base-to-string] check if superclass is ignored (#11617)
  • eslint-plugin: [prefer-nullish-coalescing] ignoreBooleanCoercion should not apply to top-level ternary expressions (#11614)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.44.1

8.44.1 (2025-09-22)

🩹 Fixes

  • eslint-plugin: [no-base-to-string] make ignoredTypeNames match type names without generics (#11597)
  • eslint-plugin: [no-unsafe-enum-comparison] support unions of literals (#11599)
  • eslint-plugin: [await-thenable] should not report passing values to promise aggregators which may be a promise in an array literal (#11611)
  • typescript-estree: forbid class property with name constructor (#11590)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.44.0

8.44.0 (2025-09-15)

🚀 Features

  • eslint-plugin: [await-thenable] report invalid (non-promise) values passed to promise aggregator methods (#11267)

... (truncated)

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.45.0 (2025-09-29)

🚀 Features

  • eslint-plugin: expose rule name via RuleModule interface (#11616)

🩹 Fixes

  • eslint-plugin: [prefer-nullish-coalescing] ignoreBooleanCoercion should not apply to top-level ternary expressions (#11614)
  • eslint-plugin: [no-base-to-string] check if superclass is ignored (#11617)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

8.44.1 (2025-09-22)

🩹 Fixes

  • eslint-plugin: [await-thenable] should not report passing values to promise aggregators which may be a promise in an array literal (#11611)
  • eslint-plugin: [no-unsafe-enum-comparison] support unions of literals (#11599)
  • eslint-plugin: [no-base-to-string] make ignoredTypeNames match type names without generics (#11597)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

8.44.0 (2025-09-15)

🚀 Features

  • eslint-plugin: [await-thenable] report invalid (non-promise) values passed to promise aggregator methods (#11267)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-type-conversion] ignore enum members (#11490)

❤️ Thank You

... (truncated)

Commits
  • 255e9e2 chore(release): publish 8.45.0
  • 967764e fix(eslint-plugin): [prefer-nullish-coalescing] ignoreBooleanCoercion should ...
  • f2eeb9d feat(eslint-plugin): expose rule name via RuleModule interface (#11616)
  • 590fac6 fix(eslint-plugin): [no-base-to-string] check if superclass is ignored (#11617)
  • c198052 chore(release): publish 8.44.1
  • c392a0d fix(eslint-plugin): [await-thenable] should not report passing values to prom...
  • 20c3d97 fix(eslint-plugin): [no-unsafe-enum-comparison] support unions of literals (#...
  • 4fde781 fix(eslint-plugin): [no-base-to-string] make ignoredTypeNames match type name...

Bumps the patch group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.0.6` | `2.2.4` |
| [turbo](https://github.com/vercel/turborepo) | `2.5.6` | `2.5.8` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.4.0` | `24.6.0` |
| [fastify](https://github.com/fastify/fastify) | `5.6.0` | `5.6.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.13` | `19.1.15` |
| [graphql-yoga](https://github.com/graphql-hive/graphql-yoga/tree/HEAD/packages/graphql-yoga) | `5.15.2` | `5.16.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.43.0` | `8.45.0` |

Bumps the patch group with 2 updates in the /packages/yoga directory: [graphql-yoga](https://github.com/graphql-hive/graphql-yoga/tree/HEAD/packages/graphql-yoga) and [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin).


Updates `@biomejs/biome` from 2.0.6 to 2.2.4
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/[email protected]/packages/@biomejs/biome)

Updates `turbo` from 2.5.6 to 2.5.8
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/release.md)
- [Commits](vercel/turborepo@v2.5.6...v2.5.8)

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

Updates `fastify` from 5.6.0 to 5.6.1
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v5.6.0...v5.6.1)

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

Updates `graphql-yoga` from 5.15.2 to 5.16.0
- [Release notes](https://github.com/graphql-hive/graphql-yoga/releases)
- [Changelog](https://github.com/graphql-hive/graphql-yoga/blob/main/packages/graphql-yoga/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/graphql-yoga/commits/[email protected]/packages/graphql-yoga)

Updates `@typescript-eslint/eslint-plugin` from 8.43.0 to 8.45.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.45.0/packages/eslint-plugin)

Updates `graphql-yoga` from 5.15.2 to 5.16.0
- [Release notes](https://github.com/graphql-hive/graphql-yoga/releases)
- [Changelog](https://github.com/graphql-hive/graphql-yoga/blob/main/packages/graphql-yoga/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/graphql-yoga/commits/[email protected]/packages/graphql-yoga)

Updates `@typescript-eslint/eslint-plugin` from 8.43.0 to 8.45.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.45.0/packages/eslint-plugin)

Updates `graphql-yoga` from 5.15.2 to 5.16.0
- [Release notes](https://github.com/graphql-hive/graphql-yoga/releases)
- [Changelog](https://github.com/graphql-hive/graphql-yoga/blob/main/packages/graphql-yoga/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/graphql-yoga/commits/[email protected]/packages/graphql-yoga)

Updates `@typescript-eslint/eslint-plugin` from 8.43.0 to 8.45.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.45.0/packages/eslint-plugin)

Updates `graphql-yoga` from 5.15.2 to 5.16.0
- [Release notes](https://github.com/graphql-hive/graphql-yoga/releases)
- [Changelog](https://github.com/graphql-hive/graphql-yoga/blob/main/packages/graphql-yoga/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/graphql-yoga/commits/[email protected]/packages/graphql-yoga)

Updates `@typescript-eslint/eslint-plugin` from 8.43.0 to 8.45.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.45.0/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.2.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: turbo
  dependency-version: 2.5.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: "@types/node"
  dependency-version: 24.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: fastify
  dependency-version: 5.6.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: "@types/react"
  dependency-version: 19.1.15
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: graphql-yoga
  dependency-version: 5.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.45.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: graphql-yoga
  dependency-version: 5.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.45.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: graphql-yoga
  dependency-version: 5.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.45.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: graphql-yoga
  dependency-version: 5.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.45.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch
...

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 Sep 30, 2025
Copy link

changeset-bot bot commented Sep 30, 2025

⚠️ No Changeset found

Latest commit: 6f07294

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 6, 2025

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

@dependabot dependabot bot closed this Oct 6, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/patch-d1e08df040 branch October 6, 2025 23:18
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