Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 26, 2023

This PR contains the following updates:

Package Change Age Confidence
@apollo/server (source) 5.0.05.2.0 age confidence
@graphql-tools/schema (source) 10.0.2410.0.31 age confidence
@graphql-tools/utils (source) 10.9.010.11.0 age confidence
@types/node (source) 20.19.820.19.29 age confidence
@types/node (source) 18.17.018.19.130 age confidence
apollo-server (source) 3.12.03.13.0 age confidence
apollo-server (source) 2.26.12.26.2 age confidence
graphql 16.11.016.12.0 age confidence
graphql 15.8.015.10.1 age confidence
typescript (source) 5.8.35.9.3 age confidence

Release Notes

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

v5.2.0

Compare Source

Minor Changes
  • #​8161 51acbeb Thanks @​jerelmiller! - Fix an issue where some bundlers would fail to build because of the dynamic import for the optional peer dependency on @yaacovcr/transform introduced in @apollo/server 5.1.0. To provide support for the legacy incremental format, you must now provide the legacyExperimentalExecuteIncrementally option to the ApolloServer constructor.

    import { legacyExecuteIncrementally } from '@​yaacovcr/transform';
    
    const server = new ApolloServer({
      // ...
      legacyExperimentalExecuteIncrementally: legacyExecuteIncrementally,
    });

    If the legacyExperimentalExecuteIncrementally option is not provided and the client sends an Accept header with a value of multipart/mixed; deferSpec=20220824, an error is returned by the 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.

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

v10.0.31

Compare Source

Patch Changes

v10.0.30

Compare Source

Patch Changes

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

v10.0.25

Compare Source

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

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'
    import schema from './schema'
    
    const result = await normalizedExecutor({
      schema,
      document: parse(`...`),
      schemaCoordinateInErrors: true // enable adding schema coordinate to graphql errors
    })
    
    if (result.errors) {
      for (const error of result.errors) {
        console.log('Error in resolver ', error.coordinate, ':', error.message)
        // or with `getSchemaCoordinate` util, to workaround types if needed
        console.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 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

v10.9.1

Compare Source

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

v3.13.0

Compare Source

v3.12.1

Compare Source

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
microsoft/TypeScript (typescript)

v5.9.3: TypeScript 5.9.3

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

v5.9.2: TypeScript 5.9

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:


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 changed the title chore(deps): update dependency @types/node to v18.17.1 fix(deps): update all apollo server non-major dependencies Jul 27, 2023
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 4 times, most recently from e86e645 to 685d13c Compare August 8, 2023 20:40
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 2 times, most recently from 2c379e3 to 8ef8f60 Compare August 18, 2023 20:45
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 5 times, most recently from 6318d6c to e3511f1 Compare August 28, 2023 01:07
@renovate renovate bot changed the title fix(deps): update all apollo server non-major dependencies chore(deps): update all apollo server non-major dependencies Aug 30, 2023
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 2 times, most recently from 3fc273d to 789e336 Compare September 2, 2023 23:07
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 2 times, most recently from d697a8f to e8681c2 Compare September 15, 2023 08:31
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 2 times, most recently from 3d5a12d to e410c8e Compare September 19, 2023 10:12
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 3 times, most recently from 9749e98 to 63efad4 Compare October 7, 2023 02:03
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 2 times, most recently from c58f04d to 9f43f7f Compare October 18, 2023 10:11
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 2 times, most recently from 1b61a02 to 8352b18 Compare October 31, 2023 11:11
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 2 times, most recently from 9bb192d to fda1f5a Compare November 14, 2023 02:09
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch from 4e4b281 to ce952ca Compare July 21, 2025 07:39
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 2 times, most recently from b201c0a to 04bbc83 Compare August 8, 2025 20:24
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch from 04bbc83 to 92c3875 Compare August 15, 2025 10:33
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 2 times, most recently from d61cc25 to 0db7184 Compare September 13, 2025 23:08
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 3 times, most recently from 5e76039 to 0b92e57 Compare September 18, 2025 01:08
@renovate renovate bot changed the title fix(deps): update all apollo server non-major dependencies chore(deps): update all apollo server non-major dependencies Sep 25, 2025
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 2 times, most recently from d4987d5 to 6cfae2d Compare October 1, 2025 02:05
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 2 times, most recently from 3ac9135 to 7c2480f Compare October 11, 2025 18:00
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 2 times, most recently from 9c772d8 to eb8a2ec Compare October 21, 2025 02:10
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 4 times, most recently from 0cc562b to 0a15ff1 Compare November 4, 2025 21:05
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 2 times, most recently from 17670d9 to 896f30a Compare November 12, 2025 11:03
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 2 times, most recently from e88b909 to 0adf8b8 Compare November 28, 2025 10:51
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 2 times, most recently from 7ead089 to d88207e Compare December 14, 2025 00:52
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch 2 times, most recently from 9338476 to 2a8827d Compare January 10, 2026 04:45
@renovate renovate bot force-pushed the renovate/upper-case-directive-all-apollo-server-minor-patch branch from 2a8827d to 1097461 Compare January 13, 2026 18:16
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