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
@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.2 -> 11.0.4 age confidence
@tsconfig/node20 (source) 20.1.6 -> 20.1.8 age confidence
@types/node (source) 22.18.12 -> 22.19.1 age confidence
@typescript-eslint/eslint-plugin (source) 8.46.2 -> 8.47.0 age confidence
@typescript-eslint/parser (source) 8.46.2 -> 8.47.0 age confidence
eslint-plugin-jest 29.0.1 -> 29.1.0 age confidence
graphql 16.11.0 -> 16.12.0 age confidence
neo4j-driver 6.0.0 -> 6.0.1 age confidence
rimraf 6.0.1 -> 6.1.2 age confidence
webpack 5.102.1 -> 5.103.0 age confidence
yarn (source) 4.10.3 -> 4.11.0 age confidence

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 graphql@17.0.0-alpha.9. 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
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
tsconfig/bases (@​tsconfig/node20)

v20.1.8

Compare Source

v20.1.7

Compare Source

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

v8.47.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unused-private-class-members] new extension rule (#​10913)
❤️ Thank You

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

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.47.0

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

jest-community/eslint-plugin-jest (eslint-plugin-jest)

v29.1.0

Compare Source

Features

29.0.1 (2025-06-18)

Bug Fixes
  • update semantic-release config so new v29 major is marked as latest on npm (#​1772) (531c8ba)
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
Committers: 9
neo4j/neo4j-javascript-driver (neo4j-driver)

v6.0.1

Compare Source

Patch release primarily fixing the typescript exports for types in the new Vector feature

🔧 Fixes

  • Fixes the typescript exporting of Vector and vectors. #​1356
👏🏼 Improvements

  • Adds a quick return for Bolt serializing primitive types. #​1352
isaacs/rimraf (rimraf)

v6.1.2

Compare Source

v6.1.1

Compare Source

v6.1.0

Compare Source

webpack/webpack (webpack)

v5.103.0

Compare Source

Features
  • Added DotenvPlugin and top level dotenv option to enable this plugin
  • Added WebpackManifestPlugin
  • Added support the ignoreList option in devtool plugins
  • Allow to use custom javascript parse function
  • Added import.meta.env support for environment variables
  • Added support for import.meta.dirname and import.meta.filename
  • Added support import.defer() for statistical path
  • Handle import.meta.main
  • Added suport to setup named exports for JSON modules and disable usage named export for import file from "./file.json" with { type: "json" }
  • Added support __dirname/__filename/import.meta.dirname/import.meta.filename for universal target
  • [CSS] Added the exportType option with link (by default), "text" and css-style-sheet values
  • [CSS] Added support for composes properties
Fixes
  • The dependOn chunk must be loaded before the common chunk
  • Return to namespace import when the external request includes a specific export
  • No runtime extra runtime code for module libraries
  • Delay HMR accept dependencies to preserve import attributes
  • Properly handle external presets for universal target
  • Fixed incorrect identifier of import binding for module externals
  • Fixed when defer import and dynamic default export mixed
  • Reduce generated output when globalThis supported
  • Fixed loading async modules in defer import
  • Reexport module for default import when no used exports for systemjs library
  • Rename HarmonyExportDependencyParserPlugin exported id to CompatibilityPlugin tagged id
  • Handle __dirname and __filename for ES modules
  • Rename single nested __webpack_export__ and __webpack_require__ in already bundled code
  • [Types] webpack function type
  • [Types] NormalModule type
  • [Types] Multi compiler configuration type
  • [Types] Fixed regression in custom hashDigest type
  • [CSS] No extra runtime for initial chunk
  • [CSS] Fixed a lot of CSS modules bugs
yarnpkg/berry (yarn)

v4.11.0

Compare Source


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 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 enabled auto-merge (squash) November 1, 2025 03:03
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: 40ff5e1

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 2, 2025
@renovate renovate bot changed the title chore(deps): update minor-and-patch (dev) fix(deps): update minor-and-patch (dev) Nov 2, 2025
@renovate renovate bot force-pushed the renovate/dev-minor-and-patch branch from 0b49346 to b723a32 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/dev-minor-and-patch branch from b723a32 to 3ccc102 Compare November 3, 2025 11:26
@renovate renovate bot force-pushed the renovate/dev-minor-and-patch branch from 3ccc102 to 1787a9d Compare November 4, 2025 20:07
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 4, 2025
@renovate renovate bot force-pushed the renovate/dev-minor-and-patch branch 2 times, most recently from 1bb8bfb to 64dfb82 Compare November 5, 2025 12:45
@renovate renovate bot force-pushed the renovate/dev-minor-and-patch branch from 64dfb82 to 3567e43 Compare November 6, 2025 04:11
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 6, 2025
@renovate renovate bot force-pushed the renovate/dev-minor-and-patch branch from 3567e43 to 6eb6a89 Compare November 6, 2025 09:30
@renovate renovate bot force-pushed the renovate/dev-minor-and-patch branch from 6eb6a89 to 5e9d25a Compare November 6, 2025 11:42
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 6, 2025
@renovate renovate bot force-pushed the renovate/dev-minor-and-patch branch 2 times, most recently from 9e9bee9 to 8adac95 Compare November 6, 2025 14:27
@renovate renovate bot force-pushed the renovate/dev-minor-and-patch branch from 8adac95 to b52e0d4 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 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/dev-minor-and-patch branch 3 times, most recently from 8f39ce5 to ba898bc Compare November 19, 2025 14:41
This was referenced Nov 19, 2025
@renovate renovate bot force-pushed the renovate/dev-minor-and-patch branch from ba898bc to 3a6d0d3 Compare November 20, 2025 09:14
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 20, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 20, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 21, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 21, 2025
@renovate renovate bot merged commit d228799 into dev Nov 22, 2025
46 checks passed
@renovate renovate bot deleted the renovate/dev-minor-and-patch branch November 22, 2025 17:39
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