Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 6, 2025

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

Package From To
@biomejs/biome 2.0.6 2.2.5
turbo 2.5.6 2.5.8
typescript 5.9.2 5.9.3
@types/node 24.4.0 24.7.0
fastify 5.6.0 5.6.1
@types/react 19.1.13 19.2.1
graphql-yoga 5.15.2 5.16.0
@typescript-eslint/eslint-plugin 8.43.0 8.46.0

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

Updates @biomejs/biome from 2.0.6 to 2.2.5

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.2.5

2.2.5

Patch Changes

  • #7597 5c3d542 Thanks @​arendjr! - Fixed #6432: useImportExtensions now works correctly with aliased paths.

  • #7269 f18dac1 Thanks @​CDGardner! - Fixed #6648, where Biome's noUselessFragments contained inconsistencies with ESLint for fragments only containing text.

    Previously, Biome would report that fragments with only text were unnecessary under the noUselessFragments rule. Further analysis of ESLint's behavior towards these cases revealed that text-only fragments (<>A</a>, <React.Fragment>B</React.Fragment>, <RenamedFragment>B</RenamedFragment>) would not have noUselessFragments emitted for them.

    On the Biome side, instances such as these would emit noUselessFragments, and applying the suggested fix would turn the text content into a proper JS string.

    // Ended up as: - const t = "Text"
    const t = <>Text</>
    // Ended up as: - const e = t ? "Option A" : "Option B"
    const e = t ? <>Option A</> : <>Option B</>
    /* Ended up as:
    function someFunc() {
    return "Content desired to be a multi-line block of text."
    }
    */
    function someFunc() {
    return <>
    Content desired to be a multi-line
    block of text.
    <>
    }

    The proposed update was to align Biome's reaction to this rule with ESLint's; the aforementioned examples will now be supported from Biome's perspective, thus valid use of fragments.

    // These instances are now valid and won't be called out by noUselessFragments.
    const t = <>Text</>
    const e = t ? <>Option A</> : <>Option B</>
    function someFunc() {
    return <>
    Content desired to be a multi-line
    block of text.
    <>
    }

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.2.5

Patch Changes

  • #7597 5c3d542 Thanks @​arendjr! - Fixed #6432: useImportExtensions now works correctly with aliased paths.

  • #7269 f18dac1 Thanks @​CDGardner! - Fixed #6648, where Biome's noUselessFragments contained inconsistencies with ESLint for fragments only containing text.

    Previously, Biome would report that fragments with only text were unnecessary under the noUselessFragments rule. Further analysis of ESLint's behavior towards these cases revealed that text-only fragments (<>A</a>, <React.Fragment>B</React.Fragment>, <RenamedFragment>B</RenamedFragment>) would not have noUselessFragments emitted for them.

    On the Biome side, instances such as these would emit noUselessFragments, and applying the suggested fix would turn the text content into a proper JS string.

    // Ended up as: - const t = "Text"
    const t = <>Text</>
    // Ended up as: - const e = t ? "Option A" : "Option B"
    const e = t ? <>Option A</> : <>Option B</>
    /* Ended up as:
    function someFunc() {
    return "Content desired to be a multi-line block of text."
    }
    */
    function someFunc() {
    return <>
    Content desired to be a multi-line
    block of text.
    <>
    }

    The proposed update was to align Biome's reaction to this rule with ESLint's; the aforementioned examples will now be supported from Biome's perspective, thus valid use of fragments.

    // These instances are now valid and won't be called out by noUselessFragments.
    const t = <>Text</>
    const e = t ? <>Option A</> : <>Option B</>
    function someFunc() {
    return <>
    Content desired to be a multi-line
    block of text.
    <>
    }

  • #7498 002cded Thanks @​siketyan! - Fixed #6893: The useExhaustiveDependencies rule now correctly adds a dependency that is captured in a shorthand object member. For example:

... (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 typescript from 5.9.2 to 5.9.3

Release notes

Sourced from typescript's releases.

TypeScript 5.9.3

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

For release notes, check out the release announcement

Downloads are available on:

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

Updates @types/node from 24.4.0 to 24.7.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.2.1

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

Release notes

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

v8.46.0

8.46.0 (2025-10-06)

🚀 Features

  • eslint-plugin: [no-unsafe-member-access] add allowOptionalChaining option (#11659)
  • eslint-plugin-internal: [no-dynamic-tests] new internal Lint rule to ban dynamic syntax in generating tests (#11323)
  • rule-schema-to-typescript-types: clean up and make public (#11633)
  • typescript-eslint: export util types (#10848, #10849)
  • typescript-estree: mention file specifics in project service allowDefaultProject error (#11635)
  • typescript-estree: private identifiers can only appear on LHS of in expressions (#9232)

🩹 Fixes

  • eslint-plugin: [no-floating-promises] remove excess parentheses in suggestions (#11487)
  • eslint-plugin: [unbound-method] improve wording around this: void and binding (#11634)
  • eslint-plugin: [no-deprecated] ignore deprecated export imports (#11603)
  • eslint-plugin: removed error type previously deprecated (#11674)
  • eslint-plugin: [prefer-readonly-parameter-types] ignore tagged primitives (#11660)
  • rule-tester: deprecate TestCaseError#type and LintMessage#nodeType (#11628)
  • typescript-estree: forbid abstract modifier in object methods (#11656)
  • typescript-estree: forbid abstract method and accessor to have implementation (#11657)

❤️ Thank You

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

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)

... (truncated)

Changelog

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

8.46.0 (2025-10-06)

🚀 Features

  • eslint-plugin: [no-unsafe-member-access] add allowOptionalChaining option (#11659)
  • rule-schema-to-typescript-types: clean up and make public (#11633)

🩹 Fixes

  • eslint-plugin: [prefer-readonly-parameter-types] ignore tagged primitives (#11660)
  • typescript-estree: forbid abstract method and accessor to have implementation (#11657)
  • eslint-plugin: removed error type previously deprecated (#11674)
  • eslint-plugin: [no-deprecated] ignore deprecated export imports (#11603)
  • eslint-plugin: [unbound-method] improve wording around this: void and binding (#11634)
  • rule-tester: deprecate TestCaseError#type and LintMessage#nodeType (#11628)
  • eslint-plugin: [no-floating-promises] remove excess parentheses in suggestions (#11487)

❤️ Thank You

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

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

... (truncated)

Commits
  • aec785e chore(release): publish 8.46.0
  • a974191 fix(eslint-plugin): [prefer-readonly-parameter-types] ignore tagged primitive...
  • 02e0278 fix(typescript-estree): forbid abstract method and accessor to have implement...
  • f083798 feat(eslint-plugin): [no-unsafe-member-access] add allowOptionalChaining opti...
  • a62f625 fix(eslint-plugin): removed error type previously deprecated (#11674)
  • 7f5fed7 chore: remove unused batchedSingleLineTests test utility (#11675)
  • f8412ce fix(eslint-plugin): [no-deprecated] ignore deprecated export imports (#11603)
  • 8de997e feat(eslint-plugin): [no-unused-vars] support explicit resource management wi...
  • 740a63f feat(rule-schema-to-typescript-types): clean up and make public (#11633)
  • 692d4ee docs(eslint-plugin): [prefer-for-of] mention DOM elements and lib: dom.iterab...
  • 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.46.0

Release notes

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

v8.46.0

8.46.0 (2025-10-06)

🚀 Features

  • eslint-plugin: [no-unsafe-member-access] add allowOptionalChaining option (#11659)
  • eslint-plugin-internal: [no-dynamic-tests] new internal Lint rule to ban dynamic syntax in generating tests (#11323)
  • rule-schema-to-typescript-types: clean up and make public (#11633)
  • typescript-eslint: export util types (#10848, #10849)
  • typescript-estree: mention file specifics in project service allowDefaultProject error (#11635)
  • typescript-estree: private identifiers can only appear on LHS of in expressions (#9232)

🩹 Fixes

  • eslint-plugin: [no-floating-promises] remove excess parentheses in suggestions (#11487)
  • eslint-plugin: [unbound-method] improve wording around this: void and binding (#11634)
  • eslint-plugin: [no-deprecated] ignore deprecated export imports (#11603)
  • eslint-plugin: removed error type previously deprecated (#11674)
  • eslint-plugin: [prefer-readonly-parameter-types] ignore tagged primitives (#11660)
  • rule-tester: deprecate TestCaseError#type and LintMessage#nodeType (#11628)
  • typescript-estree: forbid abstract modifier in object methods (#11656)
  • typescript-estree: forbid abstract method and accessor to have implementation (#11657)

❤️ Thank You

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

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)

... (truncated)

Changelog

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

8.46.0 (2025-10-06)

🚀 Features

  • eslint-plugin: [no-unsafe-member-access] add allowOptionalChaining option (#11659)
  • rule-schema-to-typescript-types: clean up and make public (#11633)

🩹 Fixes

  • eslint-plugin: [prefer-readonly-parameter-types] ignore tagged primitives (#11660)
  • typescript-estree: forbid abstract method and accessor to have implementation (#11657)
  • eslint-plugin: removed error type previously deprecated (#11674)
  • eslint-plugin: [no-deprecated] ignore deprecated export imports (#11603)
  • eslint-plugin: [unbound-method] improve wording around this: void and binding (#11634)
  • rule-tester: deprecate TestCaseError#type and LintMessage#nodeType (#11628)
  • eslint-plugin: [no-floating-promises] remove excess parentheses in suggestions (#11487)

❤️ Thank You

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

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

... (truncated)

Commits
  • aec785e chore(release): publish 8.46.0
  • a974191 fix(eslint-plugin): [prefer-readonly-parameter-types] ignore tagged primitive...
  • 02e0278 fix(typescript-estree): forbid abstract method and accessor to have implement...
  • f083798 feat(eslint-plugin): [no-unsafe-member-access] add allowOptionalChaining opti...
  • a62f625 fix(eslint-plugin): removed error type previously deprecated (#11674)
  • 7f5fed7 chore: remove unused batchedSingleLineTests test utility (#11675)
  • f8412ce fix(eslint-plugin): [no-deprecated] ignore deprecated export imports (#11603)
  • 8de997e feat(eslint-plugin): [no-unused-vars] support explicit resource management wi...
  • 740a63f feat(rule-schema-to-typescript-types): clean up and make public (#11633)
  • 692d4ee docs(eslint-plugin): [prefer-for-of] mention DOM elements and lib: dom.iterab...
  • Additional commits viewable in compare view

Updates typescript from 5.9.2 to 5.9.3

Release notes

Sourced from typescript's releases.

TypeScript 5.9.3

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

For release notes, check out the release announcement

Downloads are available on:

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

Updates typescript from 5.9.2 to 5.9.3

Release notes

Sourced from typescript's releases.

TypeScript 5.9.3

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

For release notes, check out the release announcement

Downloads are available on:

Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.0.6` | `2.2.5` |
| [turbo](https://github.com/vercel/turborepo) | `2.5.6` | `2.5.8` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.2` | `5.9.3` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.4.0` | `24.7.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.2.1` |
| [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.46.0` |

Bumps the patch group with 3 updates in the /packages/yoga directory: [typescript](https://github.com/microsoft/TypeScript), [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.5
- [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 `typescript` from 5.9.2 to 5.9.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.9.2...v5.9.3)

Updates `@types/node` from 24.4.0 to 24.7.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.2.1
- [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.46.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.46.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.46.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.46.0/packages/eslint-plugin)

Updates `typescript` from 5.9.2 to 5.9.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.9.2...v5.9.3)

Updates `typescript` from 5.9.2 to 5.9.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.9.2...v5.9.3)

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.46.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.46.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.46.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.46.0/packages/eslint-plugin)

Updates `typescript` from 5.9.2 to 5.9.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.9.2...v5.9.3)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.2.5
  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: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: "@types/node"
  dependency-version: 24.7.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.2.1
  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.46.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.46.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: typescript
  dependency-version: 5.9.3
  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.46.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.46.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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 Oct 6, 2025
Copy link

changeset-bot bot commented Oct 6, 2025

⚠️ No Changeset found

Latest commit: 25deb40

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

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