Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 6, 2025

Note

Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to mend[bot].

This notice will be removed on 2025-10-07.


This PR contains the following updates:

Package Change Age Confidence
@graphql-mesh/fusion-runtime (source) ^0.10.0 -> ^1.0.0 age confidence

Release Notes

graphql-hive/gateway (@​graphql-mesh/fusion-runtime)

v1.2.4

Compare Source

Patch Changes

v1.2.3

Compare Source

Patch Changes

v1.2.2

Compare Source

Patch Changes

v1.2.1

Compare Source

Patch Changes

v1.2.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

v1.1.0

Compare Source

Minor Changes
  • #​1455 b6f985b Thanks @​ardatan! - Support client side pubsub operation definition with @pubsubOperation

    Instead of @resolveTo on the gateway-side configuration with additionalTypeDefs, now you can define those operations on the subgraphs directly. Since this is a additional directive provided by Mesh, you need to use @composeDirective

              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"]
              )
              @​composeDirective(name: "@​pubsubOperation")
    
            directive @​pubsubOperation(
              pubsubTopic: String!
              filterBy: String
              result: String
            ) on FIELD_DEFINITION
    
            type Query {
              hello: String!
            }
            type Product @​key(fields: "id") {
              id: ID!
              name: String!
              price: Float!
            }
    
            type Subscription {
              newProductSubgraph: Product! @​pubsubOperation(pubsubTopic: "new_product")
            }
Patch Changes

v1.0.1

Compare Source

Patch Changes

v1.0.0

Compare Source

Major Changes
Minor Changes
  • #​956 46d2661 Thanks @​EmrysMyrddin! - Breaking Change: Removed subgraphNameByExecutionRequest weak map. Subgraph name is now stored in the execution request itself.

    - const subgraphName = subgraphNameByExecutionRequest.get(executionRequest)
    + const subgraphName = executionRequest.subgraphName
Patch Changes

v0.12.0

Compare Source

Minor Changes
  • #​1403 e5eb881 Thanks @​enisdenjo! - Allow configuring some of the batch delegation options

    Like the maxBatchSize which is used to limit the number of items requested in a single delegated batch.

Patch Changes

v0.11.20

Compare Source

Patch Changes

v0.11.19

Compare Source

Patch Changes

v0.11.18

Compare Source

Patch Changes

v0.11.17

Compare Source

Patch Changes

v0.11.16

Compare Source

Patch Changes

v0.11.15

Compare Source

Patch Changes

v0.11.14

Compare Source

Patch Changes

v0.11.13

Compare Source

Patch Changes

v0.11.12

Compare Source

Patch Changes

v0.11.11

Compare Source

Patch Changes

v0.11.10

Compare Source

Patch Changes

v0.11.9

Compare Source

Patch Changes

v0.11.8

Compare Source

Patch Changes

v0.11.7

Compare Source

Patch Changes

v0.11.6

Compare Source

Patch Changes

v0.11.5

Compare Source

Patch Changes

v0.11.4

Compare Source

Patch Changes
  • #​818 115a1f1 Thanks @​ardatan! - When the schema is reloaded during a query execution, retry the request instead of throwing a reload event error

v0.11.3

Compare Source

Patch Changes

v0.11.2

Compare Source

Patch Changes

v0.11.1

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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 6, 2025
Copy link

changeset-bot bot commented Sep 6, 2025

⚠️ No Changeset found

Latest commit: 9b15478

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/major-graphql-mesh branch from eacda5d to 7f82de8 Compare September 7, 2025 00:40
@renovate renovate bot force-pushed the renovate/major-graphql-mesh branch 2 times, most recently from 0ae77de to d830f7a Compare September 19, 2025 18:01
@renovate renovate bot force-pushed the renovate/major-graphql-mesh branch 2 times, most recently from d4775ea to a362c5d Compare September 25, 2025 16:50
@renovate renovate bot force-pushed the renovate/major-graphql-mesh branch from a362c5d to 9b15478 Compare October 2, 2025 13:32
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.

0 participants