Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 4, 2025

Bumps the all-minor-patch group with 27 updates in the / directory:

Package From To
@typescript-eslint/eslint-plugin 8.48.0 8.48.1
@typescript-eslint/parser 8.48.0 8.48.1
prettier 3.7.1 3.7.4
ts-jest 29.4.5 29.4.6
tsx 4.20.6 4.21.0
react 19.2.0 19.2.1
react-dom 19.2.0 19.2.1
eslint-config-next 16.0.5 16.0.7
@graphql-codegen/typed-document-node 6.1.3 6.1.4
@graphql-codegen/typescript 5.0.5 5.0.6
@graphql-codegen/typescript-operations 5.0.5 5.0.6
@graphql-codegen/typescript-resolvers 5.1.3 5.1.4
@graphql-yoga/plugin-persisted-operations 3.16.2 3.17.1
graphql-yoga 5.16.2 5.17.1
@cloudflare/workers-types 4.20251127.0 4.20251202.0
@graphql-yoga/plugin-response-cache 3.18.2 3.19.1
hot-shots 11.2.0 11.3.0
wrangler 4.51.0 4.52.1
@grpc/grpc-js 1.14.1 1.14.2
@graphql-yoga/plugin-sofa 3.16.2 3.17.1
vite 7.2.4 7.2.6
esbuild 0.27.0 0.27.1
express 5.1.0 5.2.1
@types/express 5.0.5 5.0.6
soap 1.6.0 1.6.1
@neo4j/graphql 7.3.2 7.3.3
@graphql-yoga/plugin-apollo-inline-trace 3.16.2 3.17.1

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

Release notes

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

v8.48.1

8.48.1 (2025-12-02)

⏪ Reverts

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

🩹 Fixes

  • eslint-plugin: [consistent-type-exports] check value flag before resolving alias (#11769)
  • eslint-plugin: honor ignored base types on generic classes (#11767)
  • eslint-plugin: [restrict-template-expressions] check base types in allow list (#11764, #11759)

❤️ 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.1 (2025-12-02)

🩹 Fixes

  • eslint-plugin: [restrict-template-expressions] check base types in allow list (#11764, #11759)
  • eslint-plugin: honor ignored base types on generic classes (#11767)
  • eslint-plugin: [consistent-type-exports] check value flag before resolving alias (#11769)

❤️ Thank You

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

Commits
  • 8fe3445 chore(release): publish 8.48.1
  • 5ac66a6 fix(eslint-plugin): revert "[no-redundant-type-constituents] use assignabilit...
  • 906cc3c fix(eslint-plugin): [restrict-template-expressions] check base types in allow...
  • 16cf0f7 test(eslint-plugin): [consistent-type-exports] add more shadowed imports test...
  • 0db02ac fix(eslint-plugin): honor ignored base types on generic classes (#11767)
  • bb9ba53 fix(eslint-plugin): [consistent-type-exports] check value flag before resolvi...
  • See full diff in compare view

Updates @typescript-eslint/parser from 8.48.0 to 8.48.1

Release notes

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

v8.48.1

8.48.1 (2025-12-02)

⏪ Reverts

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

🩹 Fixes

  • eslint-plugin: [consistent-type-exports] check value flag before resolving alias (#11769)
  • eslint-plugin: honor ignored base types on generic classes (#11767)
  • eslint-plugin: [restrict-template-expressions] check base types in allow list (#11764, #11759)

❤️ Thank You

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

Changelog

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

8.48.1 (2025-12-02)

This was a version bump only for parser to align it with other projects, there were no code changes.

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

Commits

Updates prettier from 3.7.1 to 3.7.4

Release notes

Sourced from prettier's releases.

3.7.4

What's Changed

🔗 Changelog

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.7.4

diff

LWC: Avoid quote around interpolations (#18383 by @​kovsu)

<!-- Input -->
<div foo={bar}>   </div>
<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>
<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>

TypeScript: Fix comment inside union type gets duplicated (#18393 by @​fisker)

// Input
type Foo = (/** comment */ a | b) | c;
// Prettier 3.7.3
type Foo = /** comment / (/* comment */ a | b) | c;
// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;

TypeScript: Fix unstable comment print in union type comments (#18395 by @​fisker)

// Input
type X = (A | B) & (
  // comment
  A | B
);
// Prettier 3.7.3 (first format)
type X = (A | B) &
(// comment
A | B);
// Prettier 3.7.3 (second format)
type X = (
| A
</tr></table>

... (truncated)

Commits

Updates ts-jest from 29.4.5 to 29.4.6

Release notes

Sourced from ts-jest's releases.

v29.4.6

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.4.6 (2025-12-01)

Bug Fixes

  • log hybrid module as warning instead of failing tests (#5144) (528d37c), closes #5130
Commits
  • 202bde5 chore(release): 29.4.6 (#5146)
  • 528d37c fix: log hybrid module as warning instead of failing tests (#5144)
  • 141e5af build(deps): update github/codeql-action digest to 497990d
  • d281cce build(deps): update google/osv-scanner-action action to v2.3.0
  • 0d20322 build(deps): update dependency memfs to ^4.51.0
  • 455dde2 build(deps): update dependency js-yaml to ^4.1.1
  • d579480 build(deps): update dependency @​types/node to v20.19.25
  • f6859d0 build(deps): update dependency @​types/yargs to ^17.0.35
  • 4d7e432 build(deps): update github/codeql-action digest to d3ced5c
  • 4ea70c9 build(deps): update actions/checkout digest to 34e1148
  • Additional commits viewable in compare view

Updates tsx from 4.20.6 to 4.21.0

Release notes

Sourced from tsx's releases.

v4.21.0

4.21.0 (2025-11-30)

Features


This release is also available on:

Commits

Updates react from 19.2.0 to 19.2.1

Release notes

Sourced from react's releases.

19.2.1 (December 3rd, 2025)

React Server Components

Changelog

Sourced from react's changelog.

19.2.1 (Dec 3, 2025)

React Server Components

Commits

Updates react-dom from 19.2.0 to 19.2.1

Release notes

Sourced from react-dom's releases.

19.2.1 (December 3rd, 2025)

React Server Components

Changelog

Sourced from react-dom's changelog.

19.2.1 (Dec 3, 2025)

React Server Components

Commits

Updates eslint-config-next from 16.0.5 to 16.0.7

Release notes

Sourced from eslint-config-next's releases.

v16.0.7

Please see CVE-2025-66478 for additional details about this release.

v16.0.6

[!NOTE] This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • bump the browserslist version to silence a warning in CI (#86625)

Credits

Huge thanks to @​lukesandberg for helping!

Commits

Updates @graphql-codegen/typed-document-node from 6.1.3 to 6.1.4

Changelog

Sourced from @​graphql-codegen/typed-document-node's changelog.

6.1.4

Patch Changes

  • Updated dependencies [b995ed1]:
    • @​graphql-codegen/visitor-plugin-common@​6.2.1
Commits

Updates @graphql-codegen/typescript from 5.0.5 to 5.0.6

Changelog

Sourced from @​graphql-codegen/typescript's changelog.

5.0.6

Patch Changes

  • Updated dependencies [b995ed1]:
    • @​graphql-codegen/visitor-plugin-common@​6.2.1
Commits

Updates @graphql-codegen/typescript-operations from 5.0.5 to 5.0.6

Changelog

Sourced from @​graphql-codegen/typescript-operations's changelog.

5.0.6

Patch Changes

  • Updated dependencies [b995ed1]:
    • @​graphql-codegen/visitor-plugin-common@​6.2.1
    • @​graphql-codegen/typescript@​5.0.6
Commits

Updates @graphql-codegen/typescript-resolvers from 5.1.3 to 5.1.4

Changelog

Sourced from @​graphql-codegen/typescript-resolvers's changelog.

5.1.4

Patch Changes

  • Updated dependencies [b995ed1]:
    • @​graphql-codegen/visitor-plugin-common@​6.2.1
    • @​graphql-codegen/typescript@​5.0.6
Commits

Updates @graphql-yoga/plugin-persisted-operations from 3.16.2 to 3.17.1

Changelog

Sourced from @​graphql-yoga/plugin-persisted-operations's changelog.

3.17.1

Patch Changes

3.17.0

Patch Changes

Commits

Updates graphql-yoga from 5.16.2 to 5.17.1

Changelog

Sourced from graphql-yoga's changelog.

5.17.1

Patch Changes

5.17.0

Minor Changes

  • #4288 66c370c Thanks @​EmrysMyrddin! - Add experimental support for coordinate error attribute proposal.

    The coordinate attribute indicates the coordinate in the schema of the resolver which experienced the errors. It allows for an easier error source identification than with the path which can be difficult to walk, or even lead to unsolvable ambiguities when using Union or Interface types.

    Usage

    Since this is experimental, it has to be explicitly enabled by adding the appropriate plugin to the Yoga instance:

    import { createYoga, useErrorCoordinate } from 'graphql-yoga'
    import { schema } from './schema'
    export const yoga = createYoga({
    schema,
    plugins: [useErrorCoordinate()]
    })

    Once enabled, located errors will gain the coordinate attribute:

    const myPlugin = {
      onExecutionResult({ result }) {
        if (result.errors) {
          for (const error of result.errors) {
            console.log('Error at', error.coordinate, ':', error.message)
          }
        }
      }
    }

... (truncated)

Commits

Updates @cloudflare/workers-types from 4.20251127.0 to 4.20251202.0

Commits

Updates @graphql-yoga/plugin-response-cache from 3.18.2 to 3.19.1

Changelog

Sourced from @​graphql-yoga/plugin-response-cache's changelog.

3.19.1

Patch Changes

3.19.0

Patch Changes

Commits

Updates hot-shots from 11.2.0 to 11.3.0

Changelog

Sourced from hot-shots's changelog.

11.3.0 (2025-11-30)

  • @​bdeitte Revert some buffering code to fix tag duplication issue seen with Datadog
Commits

Updates wrangler from 4.51.0 to 4.52.1

Release notes

Sourced from wrangler's releases.

[email protected]

Patch Changes

[email protected]

Minor Changes

  • #11416 abe49d8 Thanks @​dario-piotrowicz! - Remove the wrangler deploy's --x-remote-diff-check experimental flag

    The remote diffing feature has been enabled by default for a while and its functionality is stable, as a result the experimental flag (only available for option-out of the feature right now) has been removed.

  • #11408 f29e699 Thanks @​ascorbic! - Export unstable helpers useful for generating wrangler config

  • #11389 2342d2f Thanks @​dario-piotrowicz! - Improve the wrangler deploy flow to also check for potential overrides of secrets.

    Now when you run wrangler deploy Wrangler will check the remote secrets for your workers for conflicts with the names of the bindings you're about to deploy. If there are conflicts, Wrangler will warn you and ask you for your permission before proceeding.

  • #11375 9a1de61 Thanks @​penalosa! - Support TanStack Start in autoconfig

  • #11360 6b38532 Thanks @​emily-shen! - Containers: Allow users to directly authenticate external image registries in local dev

    Previously, we always queried the API for stored registry credentials and used those to pull images. This means that if you are using an external registry (ECR, dockerhub) then you have to configure registry credentials remotely before running local dev.

    Now you can directly authenticate with your external registry provider (using docker login etc.), and Wrangler or Vite will be able to pull the image specified in the containers.image field in your config file.

    The Cloudflare-managed registry (registry.cloudflare.com) currently still does not work with the Vite plugin.

  • #11009 e4ddbc2 Thanks @​dario-piotrowicz! - Allow users to provide an account_id as part of the WorkerConfigObject they pass to maybeStartOrUpdateRemoteProxySession

  • #11478 2aec2b4 Thanks @​dario-piotrowicz! - Support SolidStart in autoconfig

  • #11330 5a873bb Thanks @​dario-piotrowicz! - Support Angular projects in autoconfig

  • #11449 e7b690b Thanks @​penalosa! - Delegate generation of HTTPS certificates to Miniflare

  • #11448 2b4813b Thanks @​edmundhung! - Bumps esbuild version to 0.27.0

  • #11335 c47ad11 Thanks @​dario-piotrowicz! - Support internal-only undocumented cross_account_grant service binding property

  • #11346 a977701 Thanks @​penalosa! - We're soon going to make backend changes that mean that wrangler dev --remote sessions will no longer have an associated inspector connection. In advance of these backend changes, we've enabled a new wrangler tail-based logging strategy for wrangler dev --remote. For now, you can revert to the previous logging strategy with wrangler dev --remote --no-x-tail-logs, but in future it will not be possible to revert.

    The impact of this will be that logs that were previously available via devtools will now be provided directly to the Wrangler console and it will no longer be possible to interact with the remote Worker via the devtools console.

Patch Changes

... (truncated)

Commits
  • 0c71b87 Version Packages (#11503)
  • 7e80340 Fix wrangler deploy failing for new workers containing environment variable...
  • 59534ba chore(deps): bump the workerd-and-workers-types group with 2 updates (#11495)
  • 1b3e10d Version Packages (#11427)
  • c8e22c3 Allow Vite plugin users to customize worker config (#11445)
  • 8962ccf Avoid test flakes by disabling perMessageDeflate in WebSocket connections...
  • 1cfae2d fix(wrangler): close FileHandle in to support Node 25 (#11484)
  • 6b38532 try pulling an image even if docker login fails (#11360)
  • 2aec2b4 Support SolidStart in autoconfig (#11478)
  • 76083d1 Remove vitest globals from all tests (#11462)
  • Additional commits viewable in compare view

Updates @grpc/grpc-js from 1.14.1 to 1.14.2

Release notes

Sourced from @​grpc/grpc-js's releases.

@​grpc/grpc-js 1.14.2

Commits
  • bf0dc8f Merge pull request #3029 from murgatroid99/grpc-js_keepalive_fix_backport
  • 235474e grpc-js: Bump to 1.14.2
  • 2f090c6 grpc-js: Fix server keep alive timeout not properly destroying connections
  • See full diff in compare view

Updates @graphql-yoga/plugin-sofa from 3.16.2 to 3.17.1

Changelog

Sourced from @​graphql-yoga/plugin-sofa's changelog.

3.17.1

Patch Changes

3.17.0

Patch Changes

Commits

Updates vite from 7.2.4 to 7.2.6

Release notes

Sourced from vite's releases.

v7.2.6

Please refer to CHANGELOG.md for details.

v7.2.5

Please refer to CHANGELOG.md for details.

Note: 7.2.5 failed to publish so it is skipped on npm

Changelog

Sourced from vite's changelog.

7.2.6 (2025-12-01)

7.2.5 (2025-12-01)

Bug Fixes

Performance Improvements

Documentation

  • clarify manifest.json imports field is JS chunks only (#21136) (46d3077)

Miscellaneous Chores

Commits

Updates esbuild from 0.27.0 to 0.27.1

Release notes

Sourced from esbuild's releases.

v0.27.1

  • Fix bundler bug with var nested inside if (#4348)

    This release fixes a bug with the bundler that happens when importing an ES module using require (which causes it to be wrapped) and there's a top-level var inside an if statement without being wrapped in a { ... } block (and a few other conditions). The bundling transform needed to hoist these varDescription has been truncated

@dependabot dependabot bot added dependencies javascript Pull requests that update javascript code labels Dec 4, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 4, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

…7 updates

Bumps the all-minor-patch group with 27 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.48.0` | `8.48.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.48.0` | `8.48.1` |
| [prettier](https://github.com/prettier/prettier) | `3.7.1` | `3.7.4` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.4.5` | `29.4.6` |
| [tsx](https://github.com/privatenumber/tsx) | `4.20.6` | `4.21.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.1` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.0` | `19.2.1` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `16.0.5` | `16.0.7` |
| [@graphql-codegen/typed-document-node](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/typed-document-node) | `6.1.3` | `6.1.4` |
| [@graphql-codegen/typescript](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/typescript) | `5.0.5` | `5.0.6` |
| [@graphql-codegen/typescript-operations](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/operations) | `5.0.5` | `5.0.6` |
| [@graphql-codegen/typescript-resolvers](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/resolvers) | `5.1.3` | `5.1.4` |
| [@graphql-yoga/plugin-persisted-operations](https://github.com/graphql-hive/graphql-yoga/tree/HEAD/packages/plugins/persisted-operations) | `3.16.2` | `3.17.1` |
| [graphql-yoga](https://github.com/graphql-hive/graphql-yoga/tree/HEAD/packages/graphql-yoga) | `5.16.2` | `5.17.1` |
| [@cloudflare/workers-types](https://github.com/cloudflare/workerd) | `4.20251127.0` | `4.20251202.0` |
| [@graphql-yoga/plugin-response-cache](https://github.com/graphql-hive/graphql-yoga/tree/HEAD/packages/plugins/response-cache) | `3.18.2` | `3.19.1` |
| [hot-shots](https://github.com/bdeitte/hot-shots) | `11.2.0` | `11.3.0` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.51.0` | `4.52.1` |
| [@grpc/grpc-js](https://github.com/grpc/grpc-node) | `1.14.1` | `1.14.2` |
| [@graphql-yoga/plugin-sofa](https://github.com/graphql-hive/graphql-yoga/tree/HEAD/packages/plugins/sofa) | `3.16.2` | `3.17.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.2.4` | `7.2.6` |
| [esbuild](https://github.com/evanw/esbuild) | `0.27.0` | `0.27.1` |
| [express](https://github.com/expressjs/express) | `5.1.0` | `5.2.1` |
| [@types/express](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/express) | `5.0.5` | `5.0.6` |
| [soap](https://github.com/vpulim/node-soap) | `1.6.0` | `1.6.1` |
| [@neo4j/graphql](https://github.com/neo4j/graphql) | `7.3.2` | `7.3.3` |
| [@graphql-yoga/plugin-apollo-inline-trace](https://github.com/graphql-hive/graphql-yoga/tree/HEAD/packages/plugins/apollo-inline-trace) | `3.16.2` | `3.17.1` |



Updates `@typescript-eslint/eslint-plugin` from 8.48.0 to 8.48.1
- [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.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.48.0 to 8.48.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.48.1/packages/parser)

Updates `prettier` from 3.7.1 to 3.7.4
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.7.1...3.7.4)

Updates `ts-jest` from 29.4.5 to 29.4.6
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.4.5...v29.4.6)

Updates `tsx` from 4.20.6 to 4.21.0
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.20.6...v4.21.0)

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

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

Updates `eslint-config-next` from 16.0.5 to 16.0.7
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v16.0.7/packages/eslint-config-next)

Updates `@graphql-codegen/typed-document-node` from 6.1.3 to 6.1.4
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/typed-document-node/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/plugins/typescript/typed-document-node)

Updates `@graphql-codegen/typescript` from 5.0.5 to 5.0.6
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/typescript/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/plugins/typescript/typescript)

Updates `@graphql-codegen/typescript-operations` from 5.0.5 to 5.0.6
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/operations/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/plugins/typescript/operations)

Updates `@graphql-codegen/typescript-resolvers` from 5.1.3 to 5.1.4
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/resolvers/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/plugins/typescript/resolvers)

Updates `@graphql-yoga/plugin-persisted-operations` from 3.16.2 to 3.17.1
- [Release notes](https://github.com/graphql-hive/graphql-yoga/releases)
- [Changelog](https://github.com/graphql-hive/graphql-yoga/blob/main/packages/plugins/persisted-operations/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/graphql-yoga/commits/@graphql-yoga/[email protected]/packages/plugins/persisted-operations)

Updates `graphql-yoga` from 5.16.2 to 5.17.1
- [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 `@cloudflare/workers-types` from 4.20251127.0 to 4.20251202.0
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](https://github.com/cloudflare/workerd/commits)

Updates `@graphql-yoga/plugin-response-cache` from 3.18.2 to 3.19.1
- [Release notes](https://github.com/graphql-hive/graphql-yoga/releases)
- [Changelog](https://github.com/graphql-hive/graphql-yoga/blob/main/packages/plugins/response-cache/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/graphql-yoga/commits/@graphql-yoga/[email protected]/packages/plugins/response-cache)

Updates `hot-shots` from 11.2.0 to 11.3.0
- [Changelog](https://github.com/bdeitte/hot-shots/blob/main/CHANGES.md)
- [Commits](bdeitte/hot-shots@v11.2.0...v11.3.0)

Updates `wrangler` from 4.51.0 to 4.52.1
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/[email protected]/packages/wrangler)

Updates `@grpc/grpc-js` from 1.14.1 to 1.14.2
- [Release notes](https://github.com/grpc/grpc-node/releases)
- [Commits](https://github.com/grpc/grpc-node/compare/@grpc/[email protected]...@grpc/[email protected])

Updates `@graphql-yoga/plugin-sofa` from 3.16.2 to 3.17.1
- [Release notes](https://github.com/graphql-hive/graphql-yoga/releases)
- [Changelog](https://github.com/graphql-hive/graphql-yoga/blob/main/packages/plugins/sofa/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/graphql-yoga/commits/@graphql-yoga/[email protected]/packages/plugins/sofa)

Updates `vite` from 7.2.4 to 7.2.6
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.2.6/packages/vite)

Updates `esbuild` from 0.27.0 to 0.27.1
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.27.1)

Updates `express` from 5.1.0 to 5.2.1
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@v5.1.0...v5.2.1)

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

Updates `soap` from 1.6.0 to 1.6.1
- [Release notes](https://github.com/vpulim/node-soap/releases)
- [Changelog](https://github.com/vpulim/node-soap/blob/master/History.md)
- [Commits](vpulim/node-soap@v1.6.0...v1.6.1)

Updates `@neo4j/graphql` from 7.3.2 to 7.3.3
- [Release notes](https://github.com/neo4j/graphql/releases)
- [Commits](https://github.com/neo4j/graphql/compare/@neo4j/[email protected]...@neo4j/[email protected])

Updates `@graphql-yoga/plugin-apollo-inline-trace` from 3.16.2 to 3.17.1
- [Release notes](https://github.com/graphql-hive/graphql-yoga/releases)
- [Changelog](https://github.com/graphql-hive/graphql-yoga/blob/main/packages/plugins/apollo-inline-trace/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/graphql-yoga/commits/@graphql-yoga/[email protected]/packages/plugins/apollo-inline-trace)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.48.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.48.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: ts-jest
  dependency-version: 29.4.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: tsx
  dependency-version: 4.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: react
  dependency-version: 19.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: react-dom
  dependency-version: 19.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: eslint-config-next
  dependency-version: 16.0.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@graphql-codegen/typed-document-node"
  dependency-version: 6.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@graphql-codegen/typescript"
  dependency-version: 5.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@graphql-codegen/typescript-operations"
  dependency-version: 5.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@graphql-codegen/typescript-resolvers"
  dependency-version: 5.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@graphql-yoga/plugin-persisted-operations"
  dependency-version: 3.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: graphql-yoga
  dependency-version: 5.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: "@cloudflare/workers-types"
  dependency-version: 4.20251202.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: "@graphql-yoga/plugin-response-cache"
  dependency-version: 3.19.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: hot-shots
  dependency-version: 11.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: wrangler
  dependency-version: 4.52.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: "@grpc/grpc-js"
  dependency-version: 1.14.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@graphql-yoga/plugin-sofa"
  dependency-version: 3.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: vite
  dependency-version: 7.2.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: esbuild
  dependency-version: 0.27.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: express
  dependency-version: 5.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: "@types/express"
  dependency-version: 5.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: soap
  dependency-version: 1.6.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@neo4j/graphql"
  dependency-version: 7.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@graphql-yoga/plugin-apollo-inline-trace"
  dependency-version: 3.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/all-minor-patch-ed58d411f7 branch from 7a5d3bb to b033264 Compare December 4, 2025 19:00
@github-actions
Copy link
Contributor

github-actions bot commented Dec 4, 2025

Apollo Federation Subgraph Compatibility Results

Federation 1 Support Federation 2 Support
_service🟢
@key (single)🟢
@key (multi)🟢
@key (composite)🟢
repeatable @key🟢
@requires🟢
@provides🟢
federated tracing🟢
@link🟢
@shareable🟢
@tag🟢
@override🟢
@inaccessible🟢
@composeDirective🟢
@interfaceObject🟢

Learn more:

@theguild-bot
Copy link
Collaborator

🚀 Snapshot Release (alpha)

The latest changes of this PR are available as alpha on npm (based on the declared changesets):

Package Version Info
@graphql-mesh/cache-cfw-kv 0.105.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/cache-file 0.104.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/cache-inmemory-lru 0.8.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/cache-localforage 0.105.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/cache-redis 0.105.4-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/cache-upstash-redis 0.1.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/compose-cli 1.5.5-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/cross-helpers 0.4.11-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/fusion-composition 0.8.22-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/include 0.3.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/apollo-link 0.106.20-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/cli 0.100.21-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/config 0.108.21-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/graphql 0.104.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/grpc 0.108.20-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/json-schema 0.109.20-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/mongoose 0.104.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/mysql 0.105.20-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/neo4j 0.107.17-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/odata 0.106.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/openapi 0.109.26-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/postgraphile 0.104.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/raml 0.109.20-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/soap 0.107.20-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/supergraph 0.10.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/thrift 0.106.20-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/tuql 0.105.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/http 0.106.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/merger-bare 0.105.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/merger-stitching 0.105.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/migrate-config-cli 1.7.7-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/runtime 0.106.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/store 0.104.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-cache 0.105.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-encapsulate 0.104.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-extend 0.104.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-federation 0.104.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-filter-schema 0.104.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-hive 0.104.20-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-hoist-field 0.105.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-naming-convention 0.105.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-prefix 0.105.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-prune 0.104.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-rate-limit 0.105.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-rename 0.105.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-replace-field 0.105.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-resolvers-composition 0.104.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-transfer-schema 0.104.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-type-merging 0.104.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/types 0.104.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/urql-exchange 0.106.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/utils 0.104.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@omnigraph/grpc 0.2.8-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@omnigraph/json-schema 0.109.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@omnigraph/mysql 0.9.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@omnigraph/neo4j 0.11.16-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@omnigraph/odata 0.2.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@omnigraph/openapi 0.109.25-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@omnigraph/raml 0.109.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@omnigraph/soap 0.107.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@omnigraph/sqlite 0.8.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@omnigraph/thrift 0.9.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-deduplicate-request 0.104.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-hive 0.104.20-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-http-cache 0.105.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-http-details-extensions 0.104.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-jit 0.2.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-live-query 0.104.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-mock 0.105.20-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-newrelic 0.104.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-operation-field-permissions 0.104.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-operation-headers 1.4.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-rate-limit 0.105.7-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-response-cache 0.104.20-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-snapshot 0.104.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-statsd 0.104.20-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-grpc 0.3.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-mysql 0.9.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-neo4j 0.10.16-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-odata 0.2.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-rest 0.9.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-soap 0.10.19-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-sqlite 0.9.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-thrift 0.9.18-alpha-20251204190407-e1b00b3467a4951954791c7b6da60b984c85c8f2 npm ↗︎ unpkg ↗︎

@github-actions
Copy link
Contributor

github-actions bot commented Dec 4, 2025

💻 Website Preview

The latest changes are available as preview in: https://c435142c.graphql-mesh.pages.dev

@ardatan ardatan merged commit 7c0b01e into master Dec 4, 2025
19 checks passed
@ardatan ardatan deleted the dependabot/npm_and_yarn/all-minor-patch-ed58d411f7 branch December 4, 2025 20:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants