Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the gateway group with 14 updates in the / directory:

Package From To
@graphql-tools/graphql-file-loader 8.1.6 8.1.7
@graphql-tools/batch-delegate 10.0.4 10.0.5
@graphql-tools/delegate 11.1.2 11.1.3
@graphql-tools/wrap 11.0.4 11.0.5
@graphql-tools/federation 4.2.2 4.2.3
@graphql-tools/stitching-directives 4.0.4 4.0.5
@graphql-hive/core 0.13.2 0.15.0
@graphql-tools/stitch 10.1.2 10.1.3
@graphql-hive/yoga 0.42.4 0.43.0
@graphql-hive/gateway 2.1.16 2.1.17
@graphql-hive/gateway-runtime 2.3.4 2.3.5
@graphql-mesh/fusion-runtime 1.5.0 1.5.1
@graphql-hive/cli 0.53.2 0.53.4
@graphql-mesh/transport-common 1.0.11 1.0.12

Updates @graphql-tools/graphql-file-loader from 8.1.6 to 8.1.7

Changelog

Sourced from @​graphql-tools/graphql-file-loader's changelog.

8.1.7

Patch Changes

  • Updated dependencies [8a2a507]:
    • @​graphql-tools/import@​7.1.7
Commits

Updates @graphql-tools/batch-delegate from 10.0.4 to 10.0.5

Changelog

Sourced from @​graphql-tools/batch-delegate's changelog.

10.0.5

Patch Changes

Commits

Updates @graphql-tools/delegate from 11.1.2 to 11.1.3

Changelog

Sourced from @​graphql-tools/delegate's changelog.

11.1.3

Patch Changes

Commits

Updates @graphql-tools/wrap from 11.0.4 to 11.0.5

Changelog

Sourced from @​graphql-tools/wrap's changelog.

11.0.5

Patch Changes

Commits

Updates @graphql-tools/federation from 4.2.2 to 4.2.3

Changelog

Sourced from @​graphql-tools/federation's changelog.

4.2.3

Patch Changes

Commits

Updates @graphql-tools/stitching-directives from 4.0.4 to 4.0.5

Changelog

Sourced from @​graphql-tools/stitching-directives's changelog.

4.0.5

Patch Changes

Commits

Updates @graphql-hive/core from 0.13.2 to 0.15.0

Release notes

Sourced from @​graphql-hive/core's releases.

@​graphql-hive/core@​0.15.0

Minor Changes

  • #7280 2cc443c Thanks @​n1ru4l! - Support circuit breaking for usage reporting.

    Circuit breaking is a fault-tolerance pattern that prevents a system from repeatedly calling a failing service. When errors or timeouts exceed a set threshold, the circuit “opens,” blocking further requests until the service recovers.

    This ensures that during a network issue or outage, the service using the Hive SDK remains healthy and is not overwhelmed by failed usage reports or repeated retries.

    import { createClient } from '@graphql-hive/core'
    const client = createClient({
    agent: {
    circuitBreaker: {
    /**
    * Count of requests before starting evaluating.
    * Default: 5
    /
    volumeThreshold: 5,
    /*
    * Percentage of requests failing before the circuit breaker kicks in.
    * Default: 50
    /
    errorThresholdPercentage: 1,
    /*
    * After what time the circuit breaker is attempting to retry sending requests in milliseconds
    * Default: 30_000
    */
    resetTimeout: 10_000
    }
    }
    })

@​graphql-hive/core@​0.14.0

Minor Changes

  • #7264 582bc0e Thanks @​n1ru4l! - Introduce debug log level. HTTP retry log pollute the error log. The retries are now logged to the debug level. In order to see debug logs set the debug option to true.

... (truncated)

Changelog

Sourced from @​graphql-hive/core's changelog.

0.15.0

Minor Changes

  • #7280 2cc443c Thanks @​n1ru4l! - Support circuit breaking for usage reporting.

    Circuit breaking is a fault-tolerance pattern that prevents a system from repeatedly calling a failing service. When errors or timeouts exceed a set threshold, the circuit “opens,” blocking further requests until the service recovers.

    This ensures that during a network issue or outage, the service using the Hive SDK remains healthy and is not overwhelmed by failed usage reports or repeated retries.

    import { createClient } from '@graphql-hive/core'
    const client = createClient({
    agent: {
    circuitBreaker: {
    /**
    * Count of requests before starting evaluating.
    * Default: 5
    /
    volumeThreshold: 5,
    /*
    * Percentage of requests failing before the circuit breaker kicks in.
    * Default: 50
    /
    errorThresholdPercentage: 1,
    /*
    * After what time the circuit breaker is attempting to retry sending requests in milliseconds
    * Default: 30_000
    */
    resetTimeout: 10_000
    }
    }
    })

0.14.0

Minor Changes

  • #7264 582bc0e Thanks @​n1ru4l! - Introduce debug log level. HTTP retry log pollute the error log. The retries are now logged to the debug level. In order to see debug logs set the debug option to true.

... (truncated)

Commits
  • c222824 Upcoming Release Changes (#7285)
  • 2cc443c feat(js-sdk): circuit breaker for usage reporting (attempt 2) (#7280)
  • c778450 Upcoming Release Changes (#7263)
  • e2169cf Revert "feat(js-sdk): circuit breaker for usage reporting (#7259)" (#7278)
  • 23f0fb9 chore(deps): update vitest and vite to latest, fix node version constraints, ...
  • 582bc0e feat(hive-sdk): reduce http retry noise by introducing debug log level (#7264)
  • d1320b8 feat(js-sdk): circuit breaker for usage reporting (#7259)
  • See full diff in compare view

Updates @graphql-tools/stitch from 10.1.2 to 10.1.3

Changelog

Sourced from @​graphql-tools/stitch's changelog.

10.1.3

Patch Changes

Commits

Updates @graphql-hive/yoga from 0.42.4 to 0.43.0

Release notes

Sourced from @​graphql-hive/yoga's releases.

@​graphql-hive/yoga@​0.43.0

Minor Changes

  • #7280 2cc443c Thanks @​n1ru4l! - Support circuit breaking for usage reporting.

    Circuit breaking is a fault-tolerance pattern that prevents a system from repeatedly calling a failing service. When errors or timeouts exceed a set threshold, the circuit “opens,” blocking further requests until the service recovers.

    This ensures that during a network issue or outage, the service using the Hive SDK remains healthy and is not overwhelmed by failed usage reports or repeated retries.

    import { createClient } from '@graphql-hive/core'
    const client = createClient({
    agent: {
    circuitBreaker: {
    /**
    * Count of requests before starting evaluating.
    * Default: 5
    /
    volumeThreshold: 5,
    /*
    * Percentage of requests failing before the circuit breaker kicks in.
    * Default: 50
    /
    errorThresholdPercentage: 1,
    /*
    * After what time the circuit breaker is attempting to retry sending requests in milliseconds
    * Default: 30_000
    */
    resetTimeout: 10_000
    }
    }
    })

Patch Changes

  • Updated dependencies [2cc443c]:
    • @​graphql-hive/core@​0.15.0

@​graphql-hive/yoga@​0.42.5

Patch Changes

  • Updated dependencies

... (truncated)

Changelog

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

0.43.0

Minor Changes

  • #7280 2cc443c Thanks @​n1ru4l! - Support circuit breaking for usage reporting.

    Circuit breaking is a fault-tolerance pattern that prevents a system from repeatedly calling a failing service. When errors or timeouts exceed a set threshold, the circuit “opens,” blocking further requests until the service recovers.

    This ensures that during a network issue or outage, the service using the Hive SDK remains healthy and is not overwhelmed by failed usage reports or repeated retries.

    import { createClient } from '@graphql-hive/core'
    const client = createClient({
    agent: {
    circuitBreaker: {
    /**
    * Count of requests before starting evaluating.
    * Default: 5
    /
    volumeThreshold: 5,
    /*
    * Percentage of requests failing before the circuit breaker kicks in.
    * Default: 50
    /
    errorThresholdPercentage: 1,
    /*
    * After what time the circuit breaker is attempting to retry sending requests in milliseconds
    * Default: 30_000
    */
    resetTimeout: 10_000
    }
    }
    })

Patch Changes

  • Updated dependencies [2cc443c]:
    • @​graphql-hive/core@​0.15.0

0.42.5

Patch Changes

... (truncated)

Commits

Updates @graphql-hive/gateway from 2.1.16 to 2.1.17

Release notes

Sourced from @​graphql-hive/gateway's releases.

[email protected]

Pre-built binaries of the Hive Gateway for the @​graphql-hive/gateway@​2.1.17 release.

Changelog

Sourced from @​graphql-hive/gateway's changelog.

2.1.17

Patch Changes

Commits

Updates @graphql-hive/gateway-runtime from 2.3.4 to 2.3.5

Changelog

Sourced from @​graphql-hive/gateway-runtime's changelog.

2.3.5

Patch Changes

Commits

Updates @graphql-mesh/fusion-runtime from 1.5.0 to 1.5.1

Changelog

Sourced from @​graphql-mesh/fusion-runtime's changelog.

1.5.1

Patch Changes

Commits

Updates @graphql-hive/cli from 0.53.2 to 0.53.4

Release notes

Sourced from @​graphql-hive/cli's releases.

@​graphql-hive/cli@​0.53.4

Patch Changes

  • Updated dependencies [2cc443c]:
    • @​graphql-hive/core@​0.15.0

@​graphql-hive/cli@​0.53.3

Patch Changes

Changelog

Sourced from @​graphql-hive/cli's changelog.

0.53.4

Patch Changes

  • Updated dependencies [2cc443c]:
    • @​graphql-hive/core@​0.15.0

0.53.3

Patch Changes

Commits

Updates @graphql-mesh/transport-common from 1.0.11 to 1.0.12

Changelog

Sourced from @​graphql-mesh/transport-common's changelog.

1.0.12

Patch Changes

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

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

coderabbitai bot commented Nov 21, 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.

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/gateway-85f5aa9a46 branch from 7bff319 to 2da8944 Compare November 21, 2025 23:09
Bumps the gateway group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@graphql-tools/graphql-file-loader](https://github.com/ardatan/graphql-tools/tree/HEAD/packages/loaders/graphql-file) | `8.1.6` | `8.1.7` |
| [@graphql-tools/batch-delegate](https://github.com/graphql-hive/gateway/tree/HEAD/packages/batch-delegate) | `10.0.4` | `10.0.5` |
| [@graphql-tools/delegate](https://github.com/graphql-hive/gateway/tree/HEAD/packages/delegate) | `11.1.2` | `11.1.3` |
| [@graphql-tools/wrap](https://github.com/graphql-hive/gateway/tree/HEAD/packages/wrap) | `11.0.4` | `11.0.5` |
| [@graphql-tools/federation](https://github.com/graphql-hive/gateway/tree/HEAD/packages/federation) | `4.2.2` | `4.2.3` |
| [@graphql-tools/stitching-directives](https://github.com/graphql-hive/gateway/tree/HEAD/packages/stitching-directives) | `4.0.4` | `4.0.5` |
| [@graphql-hive/core](https://github.com/graphql-hive/platform/tree/HEAD/packages/libraries/core) | `0.13.2` | `0.15.0` |
| [@graphql-tools/stitch](https://github.com/graphql-hive/gateway/tree/HEAD/packages/stitch) | `10.1.2` | `10.1.3` |
| [@graphql-hive/yoga](https://github.com/graphql-hive/platform/tree/HEAD/packages/libraries/yoga) | `0.42.4` | `0.43.0` |
| [@graphql-hive/gateway](https://github.com/graphql-hive/gateway/tree/HEAD/packages/gateway) | `2.1.16` | `2.1.17` |
| [@graphql-hive/gateway-runtime](https://github.com/graphql-hive/gateway/tree/HEAD/packages/runtime) | `2.3.4` | `2.3.5` |
| [@graphql-mesh/fusion-runtime](https://github.com/graphql-hive/gateway/tree/HEAD/packages/fusion-runtime) | `1.5.0` | `1.5.1` |
| [@graphql-hive/cli](https://github.com/graphql-hive/platform/tree/HEAD/packages/libraries/cli) | `0.53.2` | `0.53.4` |
| [@graphql-mesh/transport-common](https://github.com/graphql-hive/gateway/tree/HEAD/packages/transports/common) | `1.0.11` | `1.0.12` |



Updates `@graphql-tools/graphql-file-loader` from 8.1.6 to 8.1.7
- [Release notes](https://github.com/ardatan/graphql-tools/releases)
- [Changelog](https://github.com/ardatan/graphql-tools/blob/master/packages/loaders/graphql-file/CHANGELOG.md)
- [Commits](https://github.com/ardatan/graphql-tools/commits/@graphql-tools/[email protected]/packages/loaders/graphql-file)

Updates `@graphql-tools/batch-delegate` from 10.0.4 to 10.0.5
- [Release notes](https://github.com/graphql-hive/gateway/releases)
- [Changelog](https://github.com/graphql-hive/gateway/blob/main/packages/batch-delegate/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/gateway/commits/@graphql-tools/[email protected]/packages/batch-delegate)

Updates `@graphql-tools/delegate` from 11.1.2 to 11.1.3
- [Release notes](https://github.com/graphql-hive/gateway/releases)
- [Changelog](https://github.com/graphql-hive/gateway/blob/main/packages/delegate/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/gateway/commits/@graphql-tools/[email protected]/packages/delegate)

Updates `@graphql-tools/wrap` from 11.0.4 to 11.0.5
- [Release notes](https://github.com/graphql-hive/gateway/releases)
- [Changelog](https://github.com/graphql-hive/gateway/blob/main/packages/wrap/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/gateway/commits/@graphql-tools/[email protected]/packages/wrap)

Updates `@graphql-tools/federation` from 4.2.2 to 4.2.3
- [Release notes](https://github.com/graphql-hive/gateway/releases)
- [Changelog](https://github.com/graphql-hive/gateway/blob/main/packages/federation/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/gateway/commits/@graphql-tools/[email protected]/packages/federation)

Updates `@graphql-tools/stitching-directives` from 4.0.4 to 4.0.5
- [Release notes](https://github.com/graphql-hive/gateway/releases)
- [Changelog](https://github.com/graphql-hive/gateway/blob/main/packages/stitching-directives/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/gateway/commits/@graphql-tools/[email protected]/packages/stitching-directives)

Updates `@graphql-hive/core` from 0.13.2 to 0.15.0
- [Release notes](https://github.com/graphql-hive/platform/releases)
- [Changelog](https://github.com/graphql-hive/console/blob/main/packages/libraries/core/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/platform/commits/@graphql-hive/[email protected]/packages/libraries/core)

Updates `@graphql-tools/stitch` from 10.1.2 to 10.1.3
- [Release notes](https://github.com/graphql-hive/gateway/releases)
- [Changelog](https://github.com/graphql-hive/gateway/blob/main/packages/stitch/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/gateway/commits/@graphql-tools/[email protected]/packages/stitch)

Updates `@graphql-hive/yoga` from 0.42.4 to 0.43.0
- [Release notes](https://github.com/graphql-hive/platform/releases)
- [Changelog](https://github.com/graphql-hive/console/blob/main/packages/libraries/yoga/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/platform/commits/@graphql-hive/[email protected]/packages/libraries/yoga)

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

Updates `@graphql-hive/gateway-runtime` from 2.3.4 to 2.3.5
- [Release notes](https://github.com/graphql-hive/gateway/releases)
- [Changelog](https://github.com/graphql-hive/gateway/blob/main/packages/runtime/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/gateway/commits/@graphql-hive/[email protected]/packages/runtime)

Updates `@graphql-mesh/fusion-runtime` from 1.5.0 to 1.5.1
- [Release notes](https://github.com/graphql-hive/gateway/releases)
- [Changelog](https://github.com/graphql-hive/gateway/blob/main/packages/fusion-runtime/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/gateway/commits/@graphql-mesh/[email protected]/packages/fusion-runtime)

Updates `@graphql-hive/cli` from 0.53.2 to 0.53.4
- [Release notes](https://github.com/graphql-hive/platform/releases)
- [Changelog](https://github.com/graphql-hive/console/blob/main/packages/libraries/cli/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/platform/commits/@graphql-hive/[email protected]/packages/libraries/cli)

Updates `@graphql-mesh/transport-common` from 1.0.11 to 1.0.12
- [Release notes](https://github.com/graphql-hive/gateway/releases)
- [Changelog](https://github.com/graphql-hive/gateway/blob/main/packages/transports/common/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/gateway/commits/@graphql-mesh/[email protected]/packages/transports/common)

---
updated-dependencies:
- dependency-name: "@graphql-tools/graphql-file-loader"
  dependency-version: 8.1.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gateway
- dependency-name: "@graphql-tools/batch-delegate"
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gateway
- dependency-name: "@graphql-tools/delegate"
  dependency-version: 11.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gateway
- dependency-name: "@graphql-tools/wrap"
  dependency-version: 11.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gateway
- dependency-name: "@graphql-tools/federation"
  dependency-version: 4.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gateway
- dependency-name: "@graphql-tools/stitching-directives"
  dependency-version: 4.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gateway
- dependency-name: "@graphql-hive/core"
  dependency-version: 0.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gateway
- dependency-name: "@graphql-tools/stitch"
  dependency-version: 10.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gateway
- dependency-name: "@graphql-hive/yoga"
  dependency-version: 0.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gateway
- dependency-name: "@graphql-hive/gateway"
  dependency-version: 2.1.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gateway
- dependency-name: "@graphql-hive/gateway-runtime"
  dependency-version: 2.3.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gateway
- dependency-name: "@graphql-mesh/fusion-runtime"
  dependency-version: 1.5.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: gateway
- dependency-name: "@graphql-hive/cli"
  dependency-version: 0.53.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gateway
- dependency-name: "@graphql-mesh/transport-common"
  dependency-version: 1.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gateway
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/gateway-85f5aa9a46 branch from 2da8944 to ab4f954 Compare November 24, 2025 19:08
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.

1 participant