Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 1, 2025

This PR contains the following updates:

Package Change Age Confidence
@apollo/gateway (source) 2.11.3 -> 2.12.1 age confidence
@apollo/server (source) 5.0.0 -> 5.1.0 age confidence
@apollo/subgraph (source) 2.11.3 -> 2.12.1 age confidence
@babel/core (source) 7.28.4 -> 7.28.5 age confidence
@babel/preset-env (source) 7.28.3 -> 7.28.5 age confidence
@graphql-tools/merge (source) 9.1.1 -> 9.1.5 age confidence
@graphql-tools/resolvers-composition (source) 7.0.20 -> 7.0.24 age confidence
@graphql-tools/schema (source) 10.0.25 -> 10.0.29 age confidence
@graphql-tools/utils (source) 10.9.1 -> 10.10.3 age confidence
@graphql-tools/wrap (source) 11.0.1 -> 11.0.4 age confidence
@neo4j/cypher-builder (source) 2.9.0 -> 2.10.0 age confidence
@tsconfig/node22 (source) 22.0.2 -> 22.0.4 age confidence
@types/amqplib (source) 0.10.7 -> 0.10.8 age confidence
@types/node (source) 20.19.23 -> 20.19.25 age confidence
@typescript-eslint/eslint-plugin (source) 8.46.2 -> 8.46.4 age confidence
@typescript-eslint/parser (source) 8.46.2 -> 8.46.4 age confidence
graphql 16.11.0 -> 16.12.0 age confidence
graphql-yoga (source) 5.16.0 -> 5.16.2 age confidence
koa (source) 3.0.3 -> 3.1.1 age confidence
parcel 2.16.0 -> 2.16.1 age confidence
rimraf 6.0.1 -> 6.1.0 age confidence
yarn (source) 4.10.3 -> 4.11.0 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

apollographql/federation (@​apollo/gateway)

v2.12.1

Compare Source

Patch Changes

v2.12.0

Compare Source

Minor Changes
  • Federation 2.12 and Connect 0.3 (#​3276)
Patch Changes

v2.11.5

Compare Source

Patch Changes

v2.11.4

Compare Source

Patch Changes
apollographql/apollo-server (@​apollo/server)

v5.1.0

Compare Source

Minor Changes
  • #​8148 80a1a1a Thanks @​jerelmiller! - Apollo Server now supports the incremental delivery protocol (@defer and @stream) that ships with [email protected]. To use the current protocol, clients must send the Accept header with a value of multipart/mixed; incrementalSpec=v0.2.

    Upgrading to 5.1 will depend on what version of graphql you have installed and whether you already support the incremental delivery protocol.

apollographql/federation (@​apollo/subgraph)

v2.12.1

Compare Source

Patch Changes

v2.12.0

Compare Source

Minor Changes
  • Federation 2.12 and Connect 0.3 (#​3276)
Patch Changes

v2.11.5

Compare Source

Patch Changes

v2.11.4

Compare Source

Patch Changes
babel/babel (@​babel/core)

v7.28.5

Compare Source

👓 Spec Compliance
🐛 Bug Fix
  • babel-plugin-proposal-destructuring-private
  • babel-parser
  • babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring
  • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-plugin-transform-block-scoping, babel-plugin-transform-optional-chaining, babel-traverse, babel-types
  • babel-traverse
🏠 Internal
🏃‍♀️ Performance
ardatan/graphql-tools (@​graphql-tools/merge)

v9.1.5

Compare Source

Patch Changes

v9.1.4

Compare Source

Patch Changes

v9.1.3

Compare Source

Patch Changes

v9.1.2

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/resolvers-composition)

v7.0.24

Compare Source

Patch Changes

v7.0.23

Compare Source

Patch Changes

v7.0.22

Compare Source

Patch Changes

v7.0.21

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/schema)

v10.0.29

Compare Source

Patch Changes

v10.0.28

Compare Source

Patch Changes

v10.0.27

Compare Source

Patch Changes

v10.0.26

Compare Source

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

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 types
    buildSchema(
      /* 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;

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

    The generated operation will be like following;

    query getAllPages_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

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

v11.0.4

Compare Source

Patch Changes

v11.0.3

Compare Source

Patch Changes

v11.0.2

Compare Source

Patch Changes
neo4j/cypher-builder (@​neo4j/cypher-builder)

v2.10.0

Compare Source

Minor Changes
  • #​599 a0e01d0 Thanks @​angrykoala! - Add support for range operator ([ .. ]) in Cypher.List, PropertyRef.range and using Cypher.listRange:

    new Cypher.Variable().property("prop").range(1, -1); // var0["prop"][1..-1]
    new Cypher.List([1, 2, 3, 4]).range(1, -1); // [1, 2, 3, 4][1..-1]
    Cypher.listRange(expr, 2, -1); // expr[2..-1]
  • #​600 074ea4a Thanks @​angrykoala! - Add support for .set and .remove in Cypher.With

Patch Changes
  • #​596 e3a3447 Thanks @​angrykoala! - Support for a single value in Cypher.minus operator:

    Cypher.minus(var1, var2); // var1 - var2
    Cypher.minus(var1); // -var1
tsconfig/bases (@​tsconfig/node22)

v22.0.4

Compare Source

v22.0.3

Compare Source

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.46.4

Compare Source

🩹 Fixes
  • parser: error when both projectService and project are set (#​11333)
  • eslint-plugin: handle override modifier in promise-function-async fixer (#​11730)
  • eslint-plugin: [no-deprecated] fix double-report on computed literal identifiers (#​11006, #​10958)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.46.3

Compare Source

🩹 Fixes
  • eslint-plugin: [no-duplicate-enum-values] support signed numbers (#​11722, #​11723)
  • eslint-plugin: [no-misused-promises] expand union type to retrieve target property (#​11706)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.46.4

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.46.3

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

graphql/graphql-js (graphql)

v16.12.0: 16.12.0

Compare Source

v16.12.0 (2025-11-01)

New Feature 🚀
Bug Fix 🐞
Docs 📝
28 PRs were merged
Polish 💅
Internal 🏠
3 PRs were merged

Configuration

📅 Schedule: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" in timezone Europe/London, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 enabled auto-merge (squash) November 1, 2025 13:52
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 1, 2025
@changeset-bot
Copy link

changeset-bot bot commented Nov 1, 2025

⚠️ No Changeset found

Latest commit: fd8bb31

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-approve[bot]
renovate-approve bot previously approved these changes Nov 1, 2025
@renovate renovate bot force-pushed the renovate/lts-minor-and-patch branch from 041696b to 5d11b58 Compare November 1, 2025 20:35
@renovate renovate bot force-pushed the renovate/lts-minor-and-patch branch from 5d11b58 to f7421c4 Compare November 2, 2025 16:43
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 2, 2025
@renovate renovate bot changed the title chore(deps): update minor-and-patch (lts) fix(deps): update minor-and-patch (lts) Nov 2, 2025
@renovate renovate bot force-pushed the renovate/lts-minor-and-patch branch from f7421c4 to 9c4269e Compare November 2, 2025 22:44
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 2, 2025
@renovate renovate bot force-pushed the renovate/lts-minor-and-patch branch from 9c4269e to a8e3d73 Compare November 3, 2025 11:26
@renovate renovate bot force-pushed the renovate/lts-minor-and-patch branch from a8e3d73 to 656c3d7 Compare November 4, 2025 20:08
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 4, 2025
@renovate renovate bot force-pushed the renovate/lts-minor-and-patch branch from 656c3d7 to e7b8a38 Compare November 5, 2025 12:46
@renovate renovate bot force-pushed the renovate/lts-minor-and-patch branch from e7b8a38 to edc001c Compare November 6, 2025 20:52
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 6, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 7, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 8, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 13, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 14, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 14, 2025
@renovate renovate bot force-pushed the renovate/lts-minor-and-patch branch 3 times, most recently from 15bd9da to bff7205 Compare November 15, 2025 09:03
@renovate renovate bot force-pushed the renovate/lts-minor-and-patch branch from bff7205 to 25d0bec Compare November 15, 2025 14:46
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 15, 2025
@renovate renovate bot force-pushed the renovate/lts-minor-and-patch branch 2 times, most recently from b45ed94 to 9ed0143 Compare November 15, 2025 22:16
@renovate renovate bot force-pushed the renovate/lts-minor-and-patch branch from 9ed0143 to 4a93d30 Compare November 16, 2025 04:30
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 16, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 16, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 18, 2025
@renovate renovate bot force-pushed the renovate/lts-minor-and-patch branch from 2bee7af to 9225ccb Compare November 19, 2025 10:49
@renovate renovate bot force-pushed the renovate/lts-minor-and-patch branch from 9225ccb to fd8bb31 Compare November 19, 2025 13:09
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