Skip to content

Conversation

@theguild-bot
Copy link
Collaborator

@theguild-bot theguild-bot commented Nov 3, 2025

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@graphql-hive/[email protected]

Minor Changes

  • #1653 a3f2811 Thanks @EmrysMyrddin! - New ignoreRequest OpenTelemetry API to allow other plugins (like Prometheus integration) to mark
    an HTTP Request to be excluded from OpenTelemetry tracing.

    import { hive } from '@graphql-hive/gateway/opentelemetry/api';
    import { defineConfig } from 'graphql-hive/gateway';
    
    export const gatewayConfig = defineConfig({
      openTelemetry: {
        traces: true,
      },
      plugins: () => [
        {
          instrumentation: {
            request: ({ request }) => {
              hive.ignoreRequest(request); // marks the request to be ignored by OTEL tracing
            },
          },
        },
      ],
    });

    I addition to this new API, the Prometheus integration now automatically marks metrics scraping
    request to be ignored.

    If you are defining a custom request span filter, a new payload attribute have been added so that
    you can respect (or not, depending on your needs) the ignored request list:

    import { defineConfig } from 'graphql-hive/gateway';
    
    export const gatewayConfig = defineConfig({
      openTelemetry: {
        traces: {
          spans: {
            http: ({ request, ignoredRequests }) => {
              // First check if the request is ignored. This is the default http span filter implementation.
              if (ignoredRequests.has(request)) {
                return false;
              }
    
              // Then apply your custom filtering
    
              return true;
            },
          },
        },
      },
    });

Patch Changes

@graphql-mesh/[email protected]

Minor Changes

  • #1653 a3f2811 Thanks @EmrysMyrddin! - New ignoreRequest OpenTelemetry API to allow other plugins (like Prometheus integration) to mark
    an HTTP Request to be excluded from OpenTelemetry tracing.

    import { hive } from '@graphql-hive/gateway/opentelemetry/api';
    import { defineConfig } from 'graphql-hive/gateway';
    
    export const gatewayConfig = defineConfig({
      openTelemetry: {
        traces: true,
      },
      plugins: () => [
        {
          instrumentation: {
            request: ({ request }) => {
              hive.ignoreRequest(request); // marks the request to be ignored by OTEL tracing
            },
          },
        },
      ],
    });

    I addition to this new API, the Prometheus integration now automatically marks metrics scraping
    request to be ignored.

    If you are defining a custom request span filter, a new payload attribute have been added so that
    you can respect (or not, depending on your needs) the ignored request list:

    import { defineConfig } from 'graphql-hive/gateway';
    
    export const gatewayConfig = defineConfig({
      openTelemetry: {
        traces: {
          spans: {
            http: ({ request, ignoredRequests }) => {
              // First check if the request is ignored. This is the default http span filter implementation.
              if (ignoredRequests.has(request)) {
                return false;
              }
    
              // Then apply your custom filtering
    
              return true;
            },
          },
        },
      },
    });

Patch Changes

@graphql-tools/[email protected]

Patch Changes

@graphql-tools/[email protected]

Patch Changes

@graphql-tools/[email protected]

Patch Changes

@graphql-tools/[email protected]

Patch Changes

@graphql-tools/[email protected]

Patch Changes

@graphql-tools/[email protected]

Patch Changes

@graphql-tools/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-hive/[email protected]

Patch Changes

@graphql-hive/[email protected]

Patch Changes

@graphql-hive/[email protected]

Patch Changes

@graphql-hive/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-hive/[email protected]

Patch Changes

@graphql-tools/[email protected]

Patch Changes

@graphql-tools/[email protected]

Patch Changes

@graphql-hive/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-tools/[email protected]

Patch Changes

@gemini-code-assist
Copy link

Summary of Changes

Hello @theguild-bot, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request facilitates an automated patch release across several @graphql-hive and @graphql-mesh packages. Its core purpose is to synchronize package versions and integrate various dependency updates, ensuring the ecosystem remains current and stable. The changes primarily involve bumping versions and updating external libraries like the AWS SDK, GraphQL, and Node.js type definitions, preparing the packages for their next official publication.

Highlights

  • Automated Release: This pull request is an automated release generated by the Changesets GitHub action, preparing multiple packages for publication to npm.
  • Dependency Updates: Several packages received dependency updates, including @graphql-hive/plugin-aws-sigv4 updating @aws-sdk/client-sts, @graphql-hive/plugin-deduplicate-request updating its graphql peer dependency, and @graphql-hive/gateway-runtime updating @types/node.
  • GraphQL Dependency Removal: The @graphql-mesh/transport-http package has removed its direct dependency on graphql.
  • Package Version Bumps: Multiple packages, including @graphql-hive/gateway, @graphql-hive/nestjs, @graphql-hive/plugin-opentelemetry, @graphql-mesh/plugin-prometheus, and @graphql-hive/gateway-testing, have received patch version bumps and internal dependency updates.
  • Changeset File Removal: The individual changeset markdown files that triggered these updates have been removed, as is standard practice after their content has been consumed for the release.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request, generated by the Changesets release action, appears to introduce several invalid dependency versions. Specifically, the versions for graphql in @graphql-hive/plugin-deduplicate-request and @types/node in @graphql-hive/gateway-runtime are being updated to non-existent versions. This will likely cause installation and build failures for consumers of these packages. I've added comments with more details on the respective changelog files.

Comment on lines +8 to +10
- [#1659](https://github.com/graphql-hive/gateway/pull/1659) [`810e12b`](https://github.com/graphql-hive/gateway/commit/810e12bd5d24f90ade73f3b257a16277d2731355) Thanks [@dependabot](https://github.com/apps/dependabot)! - dependencies updates:

- Updated dependency [`graphql@^16.12.0` ↗︎](https://www.npmjs.com/package/graphql/v/16.12.0) (from `^16.9.0`, in `peerDependencies`)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The updated graphql peer dependency version ^16.12.0 seems to be incorrect. The latest version of graphql on npm is 16.8.1, and version 16.12.0 does not exist. This invalid version range in peerDependencies will likely cause installation issues for consumers of this package. Please correct the version to a valid one, for example ^16.8.1 or a broader compatible range like ^16.0.0.

Comment on lines +8 to +10
- [#1659](https://github.com/graphql-hive/gateway/pull/1659) [`810e12b`](https://github.com/graphql-hive/gateway/commit/810e12bd5d24f90ade73f3b257a16277d2731355) Thanks [@dependabot](https://github.com/apps/dependabot)! - dependencies updates:

- Updated dependency [`@types/node@^24.10.0` ↗︎](https://www.npmjs.com/package/@types/node/v/24.10.0) (from `^24.9.2`, in `dependencies`)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The updated @types/node dependency version ^24.10.0 appears to be incorrect. The @types/node package versions correspond to Node.js major versions, and there is no version 24 yet. The latest version for Node.js 20 (which is specified in engines) is in the ^20.x.x range. This will cause dependency resolution to fail. Please correct this to a valid version range.

@theguild-bot
Copy link
Collaborator Author

theguild-bot commented Nov 3, 2025

🚀 Snapshot Release (rc)

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

Package Version Info
@graphql-tools/batch-delegate 10.0.4-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-tools/batch-execute 10.0.3-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-tools/delegate 11.1.2-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-tools/executor-common 1.0.4-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-tools/executor-graphql-ws 3.1.2-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-tools/executor-http 3.0.6-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-tools/federation 4.2.2-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-mesh/fusion-runtime 1.4.2-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-hive/gateway 2.1.14-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-hive/nestjs 2.0.19-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-hive/plugin-aws-sigv4 2.0.14-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-hive/plugin-deduplicate-request 2.0.6-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-mesh/hmac-upstream-signature 2.0.6-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-jwt-auth 2.0.8-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-hive/plugin-opentelemetry 1.1.0-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-prometheus 2.1.0-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-hive/gateway-runtime 2.3.2-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-tools/stitch 10.1.2-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-tools/stitching-directives 4.0.4-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-hive/gateway-testing 2.0.2-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-common 1.0.10-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-http 1.0.10-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-http-callback 1.0.10-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-ws 2.0.10-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎
@graphql-tools/wrap 11.0.4-rc-4edfa719675b4142f39d4fe813824c68d31efbc7 npm ↗︎ unpkg ↗︎

@theguild-bot
Copy link
Collaborator Author

theguild-bot commented Nov 3, 2025

🚀 Snapshot Release (Binary for Linux-ARM64)

The latest changes of this PR are available for download (based on the declared changesets).

Download

@theguild-bot
Copy link
Collaborator Author

theguild-bot commented Nov 3, 2025

🚀 Snapshot Release (Binary for Linux-X64)

The latest changes of this PR are available for download (based on the declared changesets).

Download

@theguild-bot
Copy link
Collaborator Author

theguild-bot commented Nov 3, 2025

🚀 Snapshot Release (Binary for macOS-ARM64)

The latest changes of this PR are available for download (based on the declared changesets).

Download

@theguild-bot
Copy link
Collaborator Author

theguild-bot commented Nov 3, 2025

🚀 Snapshot Release (Binary for macOS-X64)

The latest changes of this PR are available for download (based on the declared changesets).

Download

@theguild-bot
Copy link
Collaborator Author

theguild-bot commented Nov 3, 2025

🚀 Snapshot Release (Node Docker Image)

The latest changes of this PR are available as image on GitHub Container Registry (based on the declared changesets):

ghcr.io/graphql-hive/gateway:2.1.14-rc-4edfa719675b4142f39d4fe813824c68d31efbc7

@theguild-bot
Copy link
Collaborator Author

theguild-bot commented Nov 3, 2025

🚀 Snapshot Release (Bun Docker Image)

The latest changes of this PR are available as image on GitHub Container Registry (based on the declared changesets):

ghcr.io/graphql-hive/gateway:2.1.14-rc-4edfa719675b4142f39d4fe813824c68d31efbc7-bun

@theguild-bot
Copy link
Collaborator Author

theguild-bot commented Nov 3, 2025

🚀 Snapshot Release (Binary for Windows-X64)

The latest changes of this PR are available for download (based on the declared changesets).

Download

@theguild-bot theguild-bot force-pushed the changeset-release/main branch 7 times, most recently from 420bf23 to c13ddd6 Compare November 6, 2025 02:34
@theguild-bot theguild-bot force-pushed the changeset-release/main branch from c13ddd6 to 4edfa71 Compare November 6, 2025 14:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant