Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 5, 2025

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
@graphql-hive/gateway (source) ^1.8.0 -> ^2.0.0 age confidence
@graphql-hive/gateway (source) ^1.16.3 -> ^2.0.0 age confidence
@graphql-hive/gateway-runtime (source) ^1.3.3 -> ^2.0.0 age confidence
@graphql-hive/gateway-runtime (source) ^1.3.5 -> ^2.0.0 age confidence
@graphql-mesh/fusion-runtime (source) ^0.12.0 -> ^1.0.0 age confidence
@graphql-mesh/transport-common (source) ^0.7.13 -> ^1.0.0 age confidence
@graphql-mesh/transport-common (source) ^0.7.25 -> ^1.0.0 age confidence
@graphql-tools/batch-delegate (source) ^9.0.16 -> ^10.0.0 age confidence
@graphql-tools/batch-delegate (source) ^9.0.10 -> ^10.0.0 age confidence
@graphql-tools/batch-delegate (source) ^9.0.9 -> ^10.0.0 age confidence
@graphql-tools/delegate (source) ^10.0.28 -> ^11.0.0 age confidence
@graphql-tools/federation (source) ^3.0.0 -> ^4.0.0 age confidence
@graphql-tools/stitch (source) ^9.2.17 -> ^10.0.0 age confidence
@graphql-tools/stitching-directives (source) ^3.1.9 -> ^4.0.0 age confidence
@graphql-tools/url-loader (source) ^8.0.9 -> ^9.0.0 age confidence
@graphql-tools/wrap (source) ^10.0.28 -> ^11.0.0 age confidence

Release Notes

graphql-hive/gateway (@​graphql-hive/gateway)

v2.1.2

Compare Source

Patch Changes

v2.1.1

Compare Source

Patch Changes

v2.1.0

Compare Source

Minor Changes
  • #​1458 6495780 Thanks @​ardatan! - New directive @pubsubPublish to publish the payload to the pubsub engine directly

            extend schema
              @​link(
                url: "https://specs.apollo.dev/federation/v2.6"
                import: ["@​key", "@​composeDirective"]
              )
              @​link(
                url: "https://the-guild.dev/mesh/v1.0"
                import: ["@​pubsubOperation", "@​pubsubPublish"]
              )
              @​composeDirective(name: "@​pubsubOperation")
              @​composeDirective(name: "@​pubsubPublish")
    
            directive @​pubsubOperation(
              pubsubTopic: String!
              filterBy: String
              result: String
            ) on FIELD_DEFINITION
    
            directive @​pubsubPublish(pubsubTopic: String!) on FIELD_DEFINITION
    
            type Query {
              hello: String!
            }
            type Product @​key(fields: "id") {
              id: ID!
              name: String!
              price: Float!
            }
    
            type Mutation {
              createProduct(name: String!, price: Float!): Product!
                @​pubsubPublish(pubsubTopic: "new_product")
            }
    
            type Subscription {
              newProductSubgraph: Product!
                @​pubsubOperation(pubsubTopic: "new_product")
            }
Patch Changes

v2.0.4

Compare Source

Patch Changes

v2.0.3

Compare Source

Patch Changes

v2.0.2

Compare Source

Patch Changes

v2.0.1

Compare Source

Patch Changes

v2.0.0

Compare Source

Major Changes
  • #​956 46d2661 Thanks @​EmrysMyrddin! - Sane security defaults, max token and depths limits enabled by default

    Max token limit defaults to 1000 (can be configured via maxTokens option) and max depth limit defaults to 8 (can be configured via maxDepth option).

  • #​956 46d2661 Thanks @​EmrysMyrddin! - Drop Node 18 support

    Least supported Node version is now v20.

  • #​956 46d2661 Thanks @​EmrysMyrddin! - useDeduplicateRequest() plugin has been removed in favour of the built-in inflight request deduplication

    To migrate, simply remove the plugin from your configuration and you're good to go!

    import {
      defineConfig,
    - useDeduplicateRequest,
    } from '@​graphql-hive/gateway'
    
    export const gatewayConfig = defineConfig({
    - plugins: ctx => [useDeduplicateRequest(ctx)]
    })

    If you still want to use the deprecated plugin, you need to install it separately and use it as before:

    npm i @​graphql-hive/plugin-deduplicate-request
    import {
      defineConfig,
      useDeduplicateRequest,
      type HTTPTransportOptions, // only for typedefs, otherwise not necessary
    } from '@​graphql-hive/gateway'
    import { useDeduplicateRequest } from '@​graphql-hive/plugin-deduplicate-request'
    
    export const gatewayConfig = defineConfig({
      transportEntries: {
        '*.http': {
          options: {
            // disable the built in deduplication
            deduplicateInflightRequests: false,
          } as HTTPTransportOptions,
        },
      },
      plugins: ctx => [useDeduplicateRequest(ctx)]
    })
  • #​956 46d2661 Thanks @​EmrysMyrddin! - Introduce and use the new Hive Logger

  • #​956 46d2661 Thanks @​EmrysMyrddin! - Disable forking even if NODE_ENV=production

    Forking workers for concurrent processing is a delicate process and if not done carefully can lead to performance degradations. It should be configured with careful consideration by advanced users.

  • #​956 46d2661 Thanks @​EmrysMyrddin! - Remove mocking plugin from Hive Gateway built-ins

    There is no need to provide the useMock plugin alongside Hive Gateway built-ins. Not only is the mock plugin 2MB in size (minified), but installing and using it is very simple.

  • #​956 46d2661 Thanks @​EmrysMyrddin! - Load schema on initialization

    Failing to start if the schema is not loaded for whatever reason.

Minor Changes
Patch Changes
graphql-hive/gateway (@​graphql-hive/gateway-runtime)

v2.1.2

Compare Source

Patch Changes
  • #​1474 70c5010 Thanks @​ardatan! - In persistedDocuments options, allowArbitraryOperations flag has been deprecated, and introduced allowArbitraryDocuments for both Hive Console and custom store sources

    defineConfig({
    /* .. */
    persistedDocuments: {
       /* .. */
    -   allowArbitraryOperations: true,
    +   allowArbitraryDocuments: true,
    },
    });
  • Updated dependencies []:

v2.1.1

Compare Source

Patch Changes
  • #​1468 7212b86 Thanks @​ardatan! - Also use documentId property or query param as the key for persisted documents when you use a custom store

    All of these will work:

    http://localhost:4000/graphql?documentId=<hash>
    
    {
      "extensions" {
        "persistedQuery": {
          "version": 1,
          "sha256Hash": "<hash>"
        }
      }
    }
    {
      "documentId": "<hash>"
    }
    {
      "extensions" {
        "persistedQuery": {
          "version": 1,
          "sha256Hash": "<hash>"
        }
      }
    }
    {
      "extensions" {
        "persistedQuery": {
          "version": 1,
          "sha256Hash": "<hash>"
        }
      }
    }
  • Updated dependencies []:

v2.1.0

Compare Source

Minor Changes
  • #​1458 6495780 Thanks @​ardatan! - New directive @pubsubPublish to publish the payload to the pubsub engine directly

            extend schema
              @&#8203;link(
                url: "https://specs.apollo.dev/federation/v2.6"
                import: ["@&#8203;key", "@&#8203;composeDirective"]
              )
              @&#8203;link(
                url: "https://the-guild.dev/mesh/v1.0"
                import: ["@&#8203;pubsubOperation", "@&#8203;pubsubPublish"]
              )
              @&#8203;composeDirective(name: "@&#8203;pubsubOperation")
              @&#8203;composeDirective(name: "@&#8203;pubsubPublish")
    
            directive @&#8203;pubsubOperation(
              pubsubTopic: String!
              filterBy: String
              result: String
            ) on FIELD_DEFINITION
    
            directive @&#8203;pubsubPublish(pubsubTopic: String!) on FIELD_DEFINITION
    
            type Query {
              hello: String!
            }
            type Product @&#8203;key(fields: "id") {
              id: ID!
              name: String!
              price: Float!
            }
    
            type Mutation {
              createProduct(name: String!, price: Float!): Product!
                @&#8203;pubsubPublish(pubsubTopic: "new_product")
            }
    
            type Subscription {
              newProductSubgraph: Product!
                @&#8203;pubsubOperation(pubsubTopic: "new_product")
            }
Patch Changes

v2.0.3

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Sep 5, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Sep 5, 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.

@github-actions
Copy link
Contributor

github-actions bot commented Sep 5, 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:

@github-actions
Copy link
Contributor

github-actions bot commented Sep 5, 2025

🚀 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.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/cache-file 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/cache-inmemory-lru 0.8.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/cache-localforage 0.105.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/cache-redis 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/cache-upstash-redis 0.1.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/compose-cli 1.4.18-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/fusion-composition 0.8.17-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/include 0.3.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/apollo-link 0.106.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/cli 0.100.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/config 0.108.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/graphql 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/grpc 0.108.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/json-schema 0.109.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/mongoose 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/mysql 0.105.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/neo4j 0.107.11-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/odata 0.106.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/openapi 0.109.20-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/postgraphile 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/raml 0.109.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/soap 0.107.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/supergraph 0.10.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/thrift 0.106.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/tuql 0.105.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/http 0.106.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/merger-bare 0.105.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/merger-stitching 0.105.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/migrate-config-cli 1.6.19-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/runtime 0.106.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/store 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-cache 0.105.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-encapsulate 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-extend 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-federation 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-filter-schema 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-hive 0.104.15-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-hoist-field 0.105.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-naming-convention 0.105.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-prefix 0.105.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-prune 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-rate-limit 0.105.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-rename 0.105.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-replace-field 0.105.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-resolvers-composition 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-transfer-schema 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-type-merging 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/types 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/urql-exchange 0.106.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/utils 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@omnigraph/grpc 0.2.7-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@omnigraph/json-schema 0.109.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@omnigraph/mysql 0.9.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@omnigraph/neo4j 0.11.11-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@omnigraph/odata 0.2.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@omnigraph/openapi 0.109.20-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@omnigraph/raml 0.109.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@omnigraph/soap 0.107.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@omnigraph/sqlite 0.8.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@omnigraph/thrift 0.9.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-deduplicate-request 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-hive 0.104.15-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-http-cache 0.105.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-http-details-extensions 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-jit 0.2.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-live-query 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-mock 0.105.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-newrelic 0.104.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-operation-field-permissions 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-operation-headers 1.4.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-rate-limit 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-response-cache 0.104.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-snapshot 0.104.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-statsd 0.104.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/string-interpolation 0.5.9-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-grpc 0.3.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-mysql 0.9.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-neo4j 0.10.11-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-odata 0.2.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-rest 0.9.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-soap 0.10.14-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-sqlite 0.9.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎
@graphql-mesh/transport-thrift 0.9.13-alpha-20250915151512-7a9042f63cbdd1ee61cfffb696997226dd0ffee4 npm ↗︎ unpkg ↗︎

@github-actions
Copy link
Contributor

github-actions bot commented Sep 5, 2025

💻 Website Preview

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

@renovate renovate bot force-pushed the renovate/major-all-gateway branch from 431a442 to e61ee32 Compare September 15, 2025 14:01
@renovate
Copy link
Contributor Author

renovate bot commented Sep 15, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@ardatan ardatan merged commit dfc6bc1 into master Sep 15, 2025
13 of 17 checks passed
@ardatan ardatan deleted the renovate/major-all-gateway branch September 15, 2025 15:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants