Skip to content

fix(deps): update graphql-tools (major) - #981

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-graphql-tools
Open

fix(deps): update graphql-tools (major)#981
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-graphql-tools

Conversation

@renovate

@renovaterenovateBot commented Sep 6, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

PackageChangeAgeConfidence
@graphql-tools/delegate (source)^9.0.32 || ^10.0.0^9.0.32 || ^10.0.0 || ^12.0.0ageconfidence
@graphql-tools/utils (source)^10.0.0^11.0.0ageconfidence
@graphql-tools/utils (source)^9.2.1 || ^10.0.0^9.2.1 || ^10.0.0 || ^11.0.0ageconfidence
@graphql-tools/wrap (source)^9.4.2 || ^10.0.0^9.4.2 || ^10.0.0 || ^11.0.0ageconfidence

Release Notes

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

v12.0.3

Compare Source

Patch Changes
  • #​1835dcd8f0e Thanks @​ardatan! - Delegate variable values correctly;

    When delegating requests with variables that include nested arrays, ensure that null values are preserved and passed correctly to the subschema. This fix addresses issues where null values in nested arrays were not handled properly during delegation.

    Let's say we have the following schema;

    makeExecutableSchema({typeDefs: /* GraphQL */` type Query { test(input: InputType!): [String!] } input InputType { value: [String!] } `,resolvers: {Query: {test: (_,args)=>{// Returns the incoming variable valuereturnargs.input.value;},},}});

    When delegating a query with a variable like:

    {
    "query": "query Test($value: [String!]) { test(input: { value: $value } ) }",
    "variables": { "value": null }
    }

    And the result was

    {
    "data": {
    "test": []
    }
    }

    But with this fix, the result will correctly be:

    {
    "data": {
    "test": null
    }
    }

v12.0.2

Compare Source

Patch Changes
  • da8b8e3 Thanks @​ardatan! - Use getDefinedRootType instead of schema.getRootType for GraphQL v15 compatibility

v12.0.1

Compare Source

Patch Changes

v12.0.0

Compare Source

Major Changes
  • #​1708bc6cddd Thanks @​ardatan! - Breaking changes in createRequest function;

    • No more sourceParentType, sourceFieldName, variableDefinitions, variableValues and targetRootValue
    • targetRootValue has been renamed to rootValue
    • targetSchema is a required option now and args is also accepted as a map of the arguments of the target field
    • fragments is now an array of FragmentDefinitionNode instead of a record { [fragmentName: string]: FragmentDefinitionNode }

    Breaking changes in delegateRequest and delegateToSchema functions;

    • No more transformedSchema option, it has been renamed to targetSchema
    • targetSchema is a required option now
Patch Changes
  • #​17271dbc653 Thanks @​ardatan! - Avoid extra __typename in the root selection

    query {
    - __typename
    hello
    }
  • #​1743b520eb2 Thanks @​ardatan! - Handle leftovers recursively but in async
    Fixes requires-circular test suite's second case on federation audit repository

v11.1.3

Compare Source

Patch Changes

v11.1.2

Compare Source

Patch Changes

v11.1.1

Compare Source

Patch Changes

v11.1.0

Compare Source

Minor Changes
  • #​1624a8458b2 Thanks @​ardatan! - Progressive Override for Safer Field Migrations

    Introduces Progressive Override, allowing you to safely migrate fields between subgraphs using the @override directive with a label. Control the rollout using custom logic in the gateway (e.g., percentage, headers) or the built-in percent(x) label for gradual, incremental traffic migration.

    Detailed documentation can be found here.

Patch Changes

v11.0.1

Compare Source

Patch Changes

v11.0.0

Compare Source

Major Changes
Minor Changes
Patch Changes
ardatan/graphql-tools (@​graphql-tools/utils)

v11.0.0

Compare Source

Major Changes
  • #​7685
    6f3776c
    Thanks @​ardatan! - Support "federation/subgraph style" schemas in
    astFromSchema and printSchemaWithDirectives

    If a GraphQLSchema doesn't have any defined operation types, we should print the schema
    definition as an extension rather than omitting it entirely. They are not a valid schema on their
    own, but they are valid subgraph schemas in a federation setup, and it is possible to build such
    schemas with assumeValid options.

    // A schema without defined root typesbuildSchema(/* GraphQL */` extend schema @​link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@​key"]) type User @​key(fields: "id") { id: ID! username: String } `,{assumeValid: true,assumeValidSDL: true})

    POTENTIAL BREAKING CHANGE: This can be a breaking change because now the schema above will be
    printed as the input, previously extend schema was converted to schema {}.

v10.11.0

Compare Source

Minor Changes
  • #​7588
    2118a80
    Thanks @​EmrysMyrddin! - Add optional schema coordinate in error
    extensions. This extension allows to precisely identify the source of the error by automated tools
    like tracing or monitoring.

    This new feature is opt-in, you have to enable it using schemaCoordinateInErrors executor
    option.

    Caution: This feature, when enabled, will expose information about your schema. If you need to
    keep your schema private and secret, you should strip this attribute at serialization time before
    sending errors to the client.

    import{parse}from'graphql'import{normalizedExecutor}from'@​graphql-tools/executor'import{getSchemaCoordinate}from'@​graphql-tools/utils'importschemafrom'./schema'constresult=awaitnormalizedExecutor({
    schema,document: parse(`...`),schemaCoordinateInErrors: true// enable adding schema coordinate to graphql errors})if(result.errors){for(consterrorofresult.errors){console.log('Error in resolver ',error.coordinate,':',error.message)// or with `getSchemaCoordinate` util, to workaround types if neededconsole.log('Error in resolver',getSchemaCoordinate(error),':',error.message)}}

v10.10.3

Compare Source

Patch Changes
  • #​7683
    2fe123a
    Thanks @​ardatan! - Revert
    #​7683 which can cause unexpected breaking changes so
    as before the schema extension node will always be converted to a schema definition node

v10.10.2

Compare Source

Patch Changes
  • #​7679
    dddc5f6
    Thanks @​ardatan! - Support "federation/subgraph style" schemas in
    astFromSchema and printSchemaWithDirectives

    If a GraphQLSchema doesn't have any defined operation types, we should print the schema
    definition as an extension rather than omitting it entirely. They are not a valid schema on their
    own, but they are valid subgraph schemas in a federation setup, and it is possible to build such
    schemas with assumeValid options.

    // A schema without defined root typesbuildSchema(/* GraphQL */` extend schema @​link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@​key"]) type User @​key(fields: "id") { id: ID! username: String } `,{assumeValid: true,assumeValidSDL: true})

v10.10.1

Compare Source

Patch Changes

v10.10.0

Compare Source

Minor Changes
  • #​5269
    fded91e
    Thanks @​uroslates! - Add default values to the arguments

    When the schema is like following;

    typeQuery {
    getAllPages(currentPage: Int = 0, pageSize: Int = 10, pageType: getAllPages_pageType = ContentPage, sort: String = "asc"): PagesList
    }
    enumgetAllPages_pageType {
     ContentPage CategoryPage CatalogPage
    }
    typePagesList {
    ...
    }

    The generated operation will be like following;

    querygetAllPages_query($currentPage: Int = 0, $pageSize: Int = 10, $pageType: getAllPages_pageType = ContentPage, $sort: String = "asc") {
    getAllPages(currentPage: $currentPage, pageSize: $pageSize, pageType: $pageType, sort: $sort) {
    ...
    }
    }
Patch Changes
  • #​7012
    fd105f4
    Thanks @​ardatan! - Fix the bug in mergeDeep;

    The following inputs and outputs are corrected;

    • mergeDeep([{a:2}, undefined]) - Any nullish values should be ignored so it should return
      {a:2}
    • mergeDeep([]) - no sources should return undefined
    • mergeDeep([undefined]) - no sources should return undefined
  • #​5294
    3b99a9b
    Thanks @​n1ru4l! - Do not map builtin scalars

v10.9.1

Compare Source

Patch Changes

v10.9.0

Compare Source

Minor Changes
Patch Changes

v10.8.6

Compare Source

Patch Changes

v10.8.5

Compare Source

Patch Changes

v10.8.4

Compare Source

Patch Changes

v10.8.3

Compare Source

Patch Changes

v10.8.2

Compare Source

Patch Changes
graphql-hive/gateway (@​graphql-tools/wrap)

v11.1.3

Compare Source

Patch Changes

v11.1.2

Compare Source

Patch Changes

v11.1.1

Compare Source

Patch Changes

v11.1.0

Compare Source

Minor Changes
Patch Changes

v11.0.5

Compare Source

Patch Changes

v11.0.4

Compare Source

Patch Changes

v11.0.3

Compare Source

Patch Changes

v11.0.2

Compare Source

Patch Changes

v11.0.1

Compare Source

Patch Changes

v11.0.0

Compare Source

Major Changes
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.

@changeset-bot

changeset-botBot commented Sep 6, 2025

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: b9c339d

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
renovateBotforce-pushed the renovate/major-graphql-tools branch from 68bbede to 2330275CompareSeptember 15, 2025 18:47
@renovate
renovateBotforce-pushed the renovate/major-graphql-tools branch from 2330275 to de362aeCompareSeptember 25, 2025 16:50
@renovate
renovateBotforce-pushed the renovate/major-graphql-tools branch from de362ae to 285050fCompareOctober 22, 2025 13:01
@renovate
renovateBotforce-pushed the renovate/major-graphql-tools branch from 285050f to c6000fcCompareDecember 1, 2025 13:08
@renovaterenovateBot changed the title chore(deps): update graphql-tools to v11 (major)chore(deps): update graphql-tools (major)Dec 1, 2025
@renovate
renovateBotforce-pushed the renovate/major-graphql-tools branch 2 times, most recently from 263d0d9 to 9847e01CompareJanuary 7, 2026 01:34
@renovaterenovateBot changed the title chore(deps): update graphql-tools (major)fix(deps): update graphql-tools (major)Jan 7, 2026
@renovate
renovateBotforce-pushed the renovate/major-graphql-tools branch from 9847e01 to 07cd203CompareFebruary 2, 2026 13:44
@renovate
renovateBotforce-pushed the renovate/major-graphql-tools branch from 07cd203 to ac7d009CompareFebruary 12, 2026 17:07
@renovate
renovateBotforce-pushed the renovate/major-graphql-tools branch from ac7d009 to b64b286CompareMarch 5, 2026 18:56
@renovate
renovateBotforce-pushed the renovate/major-graphql-tools branch from b64b286 to 399a1d1CompareMarch 18, 2026 01:26
@renovate
renovateBotforce-pushed the renovate/major-graphql-tools branch from 399a1d1 to 0bbfbc8CompareApril 1, 2026 17:15
@renovate
renovateBotforce-pushed the renovate/major-graphql-tools branch 2 times, most recently from 6068308 to 010d545CompareApril 9, 2026 13:31
@renovate
renovateBotforce-pushed the renovate/major-graphql-tools branch from 010d545 to 4a6dc76CompareApril 16, 2026 10:41
@renovate
renovateBotforce-pushed the renovate/major-graphql-tools branch from 4a6dc76 to 61967f1CompareApril 23, 2026 11:58
@renovate
renovateBotforce-pushed the renovate/major-graphql-tools branch 2 times, most recently from a0173d2 to 809d040CompareMay 12, 2026 11:28
@renovate
renovateBotforce-pushed the renovate/major-graphql-tools branch from 809d040 to b9c339dCompareMay 28, 2026 17:35
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants