Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 24, 2025

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

Package From To
@biomejs/biome 2.3.6 2.3.7
@vitest/coverage-v8 4.0.10 4.0.13
vitest 4.0.10 4.0.13
@apollo/server 5.1.0 5.2.0
@types/react 19.2.6 19.2.7
@typescript-eslint/eslint-plugin 8.47.0 8.48.0

Bumps the patch group with 3 updates in the /packages/apollo directory: @vitest/coverage-v8, vitest and @apollo/server.
Bumps the patch group with 2 updates in the /packages/core directory: @vitest/coverage-v8 and vitest.
Bumps the patch group with 2 updates in the /packages/express-adapter directory: @vitest/coverage-v8 and vitest.
Bumps the patch group with 2 updates in the /packages/fastify-adapter directory: @vitest/coverage-v8 and vitest.
Bumps the patch group with 3 updates in the /packages/react directory: @vitest/coverage-v8, vitest and @types/react.
Bumps the patch group with 3 updates in the /packages/yoga directory: @vitest/coverage-v8, vitest and @typescript-eslint/eslint-plugin.

Updates @biomejs/biome from 2.3.6 to 2.3.7

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.7

2.3.7

Patch Changes

  • #8169 7fdcec8 Thanks @​arendjr! - Fixed #7999: Correctly place await after leading comment in auto-fix action from noFloatingPromises rule.

  • #8157 12d5b42 Thanks @​Conaclos! - Fixed #8148. noInvalidUseBeforeDeclaration no longer reports some valid use before declarations.

    The following code is no longer reported as invalid:

    class classA {
      C = C;
    }
    const C = 0;
  • #8178 6ba4157 Thanks @​dyc3! - Fixed #8174, where the HTML parser would parse 2 directives as a single directive because it would not reject whitespace in Vue directives. This would cause the formatter to erroneously merge the 2 directives into one, resulting in broken code.

    - <Component v-else:property="123" />
    + <Component v-else :property="123" />
  • #8088 0eb08e8 Thanks @​db295! - Fixed #7876: The noUnusedImports rule now ignores imports that are used by @​linkcode and @​linkplain (previously supported @​link and @​see).

    The following code will no longer be a false positive:

    import type { a } from "a"
    /**
    
    {@​linkcode a}
    */
    function func() {}
  • #8119 8d64655 Thanks @​ematipico! - Improved the detection of the rule noUnnecessaryConditions. Now the rule isn't triggered for variables that are mutated inside a module.

    This logic deviates from the original rule, hence noUnnecessaryConditions is now marked as "inspired".

    In the following example, hey starts as false, but then it's assigned to a string. The rule isn't triggered inside the if check.

    let hey = false;
    function test() {
    hey = "string";

  • ... (truncated)

    Changelog

    Sourced from @​biomejs/biome's changelog.

    2.3.7

    Patch Changes

    • #8169 7fdcec8 Thanks @​arendjr! - Fixed #7999: Correctly place await after leading comment in auto-fix action from noFloatingPromises rule.

    • #8157 12d5b42 Thanks @​Conaclos! - Fixed #8148. noInvalidUseBeforeDeclaration no longer reports some valid use before declarations.

      The following code is no longer reported as invalid:

      class classA {
        C = C;
      }
      const C = 0;
    • #8178 6ba4157 Thanks @​dyc3! - Fixed #8174, where the HTML parser would parse 2 directives as a single directive because it would not reject whitespace in Vue directives. This would cause the formatter to erroneously merge the 2 directives into one, resulting in broken code.

      - <Component v-else:property="123" />
      + <Component v-else :property="123" />
    • #8088 0eb08e8 Thanks @​db295! - Fixed #7876: The noUnusedImports rule now ignores imports that are used by @​linkcode and @​linkplain (previously supported @​link and @​see).

      The following code will no longer be a false positive:

      import type { a } from "a"
      /**
      
      {@​linkcode a}
      */
      function func() {}
  • #8119 8d64655 Thanks @​ematipico! - Improved the detection of the rule noUnnecessaryConditions. Now the rule isn't triggered for variables that are mutated inside a module.

    This logic deviates from the original rule, hence noUnnecessaryConditions is now marked as "inspired".

    In the following example, hey starts as false, but then it's assigned to a string. The rule isn't triggered inside the if check.

    let hey = false;
    function test() {
    hey = "string";
    }

  • ... (truncated)

    Commits

    Updates @vitest/coverage-v8 from 4.0.10 to 4.0.13

    Release notes

    Sourced from @​vitest/coverage-v8's releases.

    v4.0.13

       🐞 Bug Fixes

       🏎 Performance

        View changes on GitHub

    v4.0.12

       🐞 Bug Fixes

        View changes on GitHub

    v4.0.11

       🚀 Experimental Features

       🏎 Performance

        View changes on GitHub
    Commits

    Updates vitest from 4.0.10 to 4.0.13

    Release notes

    Sourced from vitest's releases.

    v4.0.13

       🐞 Bug Fixes

       🏎 Performance

        View changes on GitHub

    v4.0.12

       🐞 Bug Fixes

        View changes on GitHub

    v4.0.11

       🚀 Experimental Features

       🏎 Performance

        View changes on GitHub
    Commits
    • 73b54ce chore: release v4.0.13
    • b27e002 perf: avoid fetchModule roundtrip if the module is cached (#9075)
    • 6b9a1b5 perf(experimental): if fsCacheModule is enabled, read from the memory when ...
    • 332afa0 fix(types): don't import node.js dependent types in vitest/browser (#9068)
    • 6356b1d fix(types): don't use type from Vite 7.1 (#9071)
    • 5aa84d5 chore: release v4.0.12
    • e944a37 fix: don't import from @opentelemetry/api in public types (#9066)
    • 9a8bc78 fix: inherit fsModuleCachePath by default (#9063)
    • c3befb0 chore: release v4.0.11
    • 1b14737 perf(experimental): add file system cache (#9026)
    • Additional commits viewable in compare view

    Updates @apollo/server from 5.1.0 to 5.2.0

    Release notes

    Sourced from @​apollo/server's releases.

    @​apollo/server-integration-testsuite@​5.2.0

    Patch Changes

    • Updated dependencies [51acbeb]:
      • @​apollo/server@​5.2.0

    @​apollo/server@​5.2.0

    Minor Changes

    • #8161 51acbeb Thanks @​jerelmiller! - Fix an issue where some bundlers would fail to build because of the dynamic import for the optional peer dependency on @yaacovcr/transform introduced in @apollo/server 5.1.0. To provide support for the legacy incremental format, you must now provide the legacyExperimentalExecuteIncrementally option to the ApolloServer constructor.

      import { legacyExecuteIncrementally } from '@yaacovcr/transform';
      const server = new ApolloServer({
      // ...
      legacyExperimentalExecuteIncrementally: legacyExecuteIncrementally,
      });

      If the legacyExperimentalExecuteIncrementally option is not provided and the client sends an Accept header with a value of multipart/mixed; deferSpec=20220824, an error is returned by the server.

    Changelog

    Sourced from @​apollo/server's changelog.

    5.2.0

    Minor Changes

    • #8161 51acbeb Thanks @​jerelmiller! - Fix an issue where some bundlers would fail to build because of the dynamic import for the optional peer dependency on @yaacovcr/transform introduced in @apollo/server 5.1.0. To provide support for the legacy incremental format, you must now provide the legacyExperimentalExecuteIncrementally option to the ApolloServer constructor.

      import { legacyExecuteIncrementally } from '@yaacovcr/transform';
      const server = new ApolloServer({
      // ...
      legacyExperimentalExecuteIncrementally: legacyExecuteIncrementally,
      });

      If the legacyExperimentalExecuteIncrementally option is not provided and the client sends an Accept header with a value of multipart/mixed; deferSpec=20220824, an error is returned by the server.

    Commits

    Updates @types/react from 19.2.6 to 19.2.7

    Commits

    Updates @typescript-eslint/eslint-plugin from 8.47.0 to 8.48.0

    Release notes

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

    v8.48.0

    8.48.0 (2025-11-24)

    🚀 Features

    • eslint-plugin: [no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)
    • rule-tester: remove workaround for jest circular structure error (#11772)
    • typescript-estree: gate all errors behind allowInvalidAST (#11693)
    • typescript-estree: replace fast-glob with tinyglobby (#11740)

    🩹 Fixes

    • eslint-plugin: [consistent-generic-constructors] ignore when constructor is typed array (#10477)
    • scope-manager: change unhelpful aaa error message and change analyze to expects Program (#11747)
    • typescript-estree: infers singleRun as true for project service (#11327)
    • typescript-estree: disallow binding patterns in parameter properties (#11760)

    ❤️ Thank You

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

    Changelog

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

    8.48.0 (2025-11-24)

    🚀 Features

    • eslint-plugin: [no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)

    🩹 Fixes

    • typescript-estree: disallow binding patterns in parameter properties (#11760)
    • eslint-plugin: [consistent-generic-constructors] ignore when constructor is typed array (#10477)

    ❤️ Thank You

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

    Commits
    • 6fb1551 chore(release): publish 8.48.0
    • d26e9de chore(eslint-plugin): correct TODO comment on the wrong line (#11773)
    • 5f04910 fix(typescript-estree): disallow binding patterns in parameter properties (#1...
    • a4dc42a chore: migrate to nx 22 (#11780)
    • 2ffb168 feat(eslint-plugin): [no-redundant-type-constituents] use assignability check...
    • 5ea21f1 fix(eslint-plugin): [consistent-generic-constructors] ignore when constructor...
    • See full diff in compare view

    Updates @vitest/coverage-v8 from 4.0.10 to 4.0.13

    Release notes

    Sourced from @​vitest/coverage-v8's releases.

    v4.0.13

       🐞 Bug Fixes

       🏎 Performance

        View changes on GitHub

    v4.0.12

       🐞 Bug Fixes

        View changes on GitHub

    v4.0.11

       🚀 Experimental Features

       🏎 Performance

        View changes on GitHub
    Commits

    Updates vitest from 4.0.10 to 4.0.13

    Release notes

    Sourced from vitest's releases.

    v4.0.13

       🐞 Bug Fixes

       🏎 Performance

        View changes on GitHub

    v4.0.12

       🐞 Bug Fixes

        View changes on GitHub

    v4.0.11

       🚀 Experimental Features

       🏎 Performance

        View changes on GitHub
    Commits
    • 73b54ce chore: release v4.0.13
    • b27e002 perf: avoid fetchModule roundtrip if the module is cached (#9075)
    • 6b9a1b5 perf(experimental): if fsCacheModule is enabled, read from the memory when ...
    • 332afa0 fix(types): don't import node.js dependent types in vitest/browser (#9068)
    • 6356b1d fix(types): don't use type from Vite 7.1 (#9071)
    • 5aa84d5 chore: release v4.0.12
    • e944a37 fix: don't import from @opentelemetry/api in public types (#9066)
    • 9a8bc78 fix: inherit fsModuleCachePath by default (#9063)
    • c3befb0 chore: release v4.0.11
    • 1b14737 perf(experimental): add file system cache (#9026)
    • Additional commits viewable in compare view

    Updates @apollo/server from 5.1.0 to 5.2.0

    Release notes

    Sourced from @​apollo/server's releases.

    @​apollo/server-integration-testsuite@​5.2.0

    Patch Changes

    • Updated dependencies [51acbeb]:
      • @​apollo/server@​5.2.0

    @​apollo/server@​5.2.0

    Minor Changes

    • #8161 51acbeb Thanks @​jerelmiller! - Fix an issue where some bundlers would fail to build because of the dynamic import for the optional peer dependency on @yaacovcr/transform introduced in @apollo/server 5.1.0. To provide support for the legacy incremental format, you must now provide the legacyExperimentalExecuteIncrementally option to the ApolloServer constructor.

      import { legacyExecuteIncrementally } from '@yaacovcr/transform';
      const server = new ApolloServer({
      // ...
      legacyExperimentalExecuteIncrementally: legacyExecuteIncrementally,
      });

      If the legacyExperimentalExecuteIncrementally option is not provided and the client sends an Accept header with a value of multipart/mixed; deferSpec=20220824, an error is returned by the server.

    Changelog

    Sourced from @​apollo/server's changelog.

    5.2.0

    Minor Changes

    • #8161 51acbeb Thanks @​jerelmiller! - Fix an issue where some bundlers would fail to build because of the dynamic import for the optional peer dependency on @yaacovcr/transform introduced in @apollo/server 5.1.0. To provide support for the legacy incremental format, you must now provide the legacyExperimentalExecuteIncrementally option to the ApolloServer constructor.

      import { legacyExecuteIncrementally } from '@yaacovcr/transform';
      const server = new ApolloServer({
      // ...
      legacyExperimentalExecuteIncrementally: legacyExecuteIncrementally,
      });

      If the legacyExperimentalExecuteIncrementally option is not provided and the client sends an Accept header with a value of multipart/mixed; deferSpec=20220824, an error is returned by the server.

    Commits

    Updates @vitest/coverage-v8 from 4.0.10 to 4.0.13

    Release notes

    Sourced from @​vitest/coverage-v8's releases.

    v4.0.13

       🐞 Bug Fixes

       🏎 Performance

        View changes on GitHub

    v4.0.12

       🐞 Bug Fixes

        View changes on GitHub

    v4.0.11

       🚀 Experimental Features

       🏎 Performance

        View changes on GitHub
    Commits

    Updates vitest from 4.0.10 to 4.0.13

    Release notes

    Sourced from vitest's releases.

    v4.0.13

       🐞 Bug Fixes

       🏎 Performance

        View changes on GitHub

    v4.0.12

       🐞 Bug Fixes

        View changes on GitHub

    v4.0.11

       🚀 Experimental Features

       🏎 Performance

        View changes on GitHub
    Commits
    • 73b54ce chore: release v4.0.13
    • b27e002 perf: avoid fetchModule roundtrip if the module is cached (#9075)
    • 6b9a1b5 perf(experimental): if fsCacheModule is enabled, read from the memory when ...
    • 332afa0 fix(types): don't import node.js dependent types in vitest/browser (#9068)
    • 6356b1d fix(types): don't use type from Vite 7.1 (#9071)
    • ...

      Description has been truncated

    Bumps the patch group with 6 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.6` | `2.3.7` |
    | [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.0.10` | `4.0.13` |
    | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.10` | `4.0.13` |
    | [@apollo/server](https://github.com/apollographql/apollo-server/tree/HEAD/packages/server) | `5.1.0` | `5.2.0` |
    | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.6` | `19.2.7` |
    | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.47.0` | `8.48.0` |
    
    Bumps the patch group with 3 updates in the /packages/apollo directory: [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8), [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) and [@apollo/server](https://github.com/apollographql/apollo-server/tree/HEAD/packages/server).
    Bumps the patch group with 2 updates in the /packages/core directory: [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) and [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest).
    Bumps the patch group with 2 updates in the /packages/express-adapter directory: [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) and [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest).
    Bumps the patch group with 2 updates in the /packages/fastify-adapter directory: [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) and [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest).
    Bumps the patch group with 3 updates in the /packages/react directory: [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8), [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) and [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react).
    Bumps the patch group with 3 updates in the /packages/yoga directory: [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8), [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) and [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin).
    
    
    Updates `@biomejs/biome` from 2.3.6 to 2.3.7
    - [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 `@vitest/coverage-v8` from 4.0.10 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/coverage-v8)
    
    Updates `vitest` from 4.0.10 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/vitest)
    
    Updates `@apollo/server` from 5.1.0 to 5.2.0
    - [Release notes](https://github.com/apollographql/apollo-server/releases)
    - [Changelog](https://github.com/apollographql/apollo-server/blob/main/packages/server/CHANGELOG.md)
    - [Commits](https://github.com/apollographql/apollo-server/commits/@apollo/[email protected]/packages/server)
    
    Updates `@types/react` from 19.2.6 to 19.2.7
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)
    
    Updates `@typescript-eslint/eslint-plugin` from 8.47.0 to 8.48.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.48.0/packages/eslint-plugin)
    
    Updates `@vitest/coverage-v8` from 4.0.10 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/coverage-v8)
    
    Updates `vitest` from 4.0.10 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/vitest)
    
    Updates `@apollo/server` from 5.1.0 to 5.2.0
    - [Release notes](https://github.com/apollographql/apollo-server/releases)
    - [Changelog](https://github.com/apollographql/apollo-server/blob/main/packages/server/CHANGELOG.md)
    - [Commits](https://github.com/apollographql/apollo-server/commits/@apollo/[email protected]/packages/server)
    
    Updates `@vitest/coverage-v8` from 4.0.10 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/coverage-v8)
    
    Updates `vitest` from 4.0.10 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/vitest)
    
    Updates `@vitest/coverage-v8` from 4.0.10 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/coverage-v8)
    
    Updates `vitest` from 4.0.10 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/vitest)
    
    Updates `@vitest/coverage-v8` from 4.0.10 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/coverage-v8)
    
    Updates `vitest` from 4.0.10 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/vitest)
    
    Updates `@vitest/coverage-v8` from 4.0.10 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/coverage-v8)
    
    Updates `vitest` from 4.0.10 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/vitest)
    
    Updates `@types/react` from 19.2.6 to 19.2.7
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)
    
    Updates `@vitest/coverage-v8` from 4.0.10 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/coverage-v8)
    
    Updates `vitest` from 4.0.10 to 4.0.13
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/vitest)
    
    Updates `@typescript-eslint/eslint-plugin` from 8.47.0 to 8.48.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.48.0/packages/eslint-plugin)
    
    ---
    updated-dependencies:
    - dependency-name: "@biomejs/biome"
      dependency-version: 2.3.7
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: "@vitest/coverage-v8"
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: vitest
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: "@apollo/server"
      dependency-version: 5.2.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: patch
    - dependency-name: "@types/react"
      dependency-version: 19.2.7
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: "@typescript-eslint/eslint-plugin"
      dependency-version: 8.48.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: patch
    - dependency-name: "@vitest/coverage-v8"
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: vitest
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: "@apollo/server"
      dependency-version: 5.2.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: patch
    - dependency-name: "@vitest/coverage-v8"
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: vitest
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: "@vitest/coverage-v8"
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: vitest
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: "@vitest/coverage-v8"
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: vitest
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: "@vitest/coverage-v8"
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: vitest
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: "@types/react"
      dependency-version: 19.2.7
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: "@vitest/coverage-v8"
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: vitest
      dependency-version: 4.0.13
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: "@typescript-eslint/eslint-plugin"
      dependency-version: 8.48.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 Nov 24, 2025
    @changeset-bot
    Copy link

    changeset-bot bot commented Nov 24, 2025

    ⚠️ No Changeset found

    Latest commit: 71a56e9

    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

    @dependabot @github
    Copy link
    Contributor Author

    dependabot bot commented on behalf of github Dec 2, 2025

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

    @dependabot dependabot bot closed this Dec 2, 2025
    @dependabot dependabot bot deleted the dependabot/npm_and_yarn/patch-650afd961c branch December 2, 2025 02:19
    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.

    1 participant