Skip to content

chore(deps): update apollo graphql packages to v4.13.0#154

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/apollo-graphql-packages
Open

chore(deps): update apollo graphql packages to v4.13.0#154
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/apollo-graphql-packages

Conversation

@renovate

@renovate renovate Bot commented Oct 26, 2023

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@apollo/server (source) 4.9.44.13.0 age confidence

Release Notes

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

v4.13.0

Compare Source

Minor Changes
  • #​8180 e9d49d1 Thanks @​github-actions! - ⚠️ SECURITY @apollo/server/standalone:

    The default configuration of startStandaloneServer was vulnerable to denial of service (DoS) attacks through specially crafted request bodies with exotic character set encodings.

    In accordance with RFC 7159, we now only accept request bodies encoded in UTF-8, UTF-16 (LE or BE), or UTF-32 (LE or BE).
    Any other character set will be rejected with a 415 Unsupported Media Type error.
    Additionally, upstream libraries used by this version of Apollo Server may not support all of these encodings, so some requests may still fail even if they pass this check.

    If you were not using startStandaloneServer, you were not affected by this vulnerability.

    Generally, please note that we provide startStandaloneServer as a convenience tool for quickly getting started with Apollo Server.
    For production deployments, we recommend using Apollo Server with a more fully-featured web server framework such as Express, Koa, or Fastify, where you have more control over security-related configuration options.

    Also please note that Apollo Server 4.x is considered EOL as of January 26, 2026, and Apollo no longer commits to providing support or updates for it. Please prioritize migrating to Apollo Server 5.x for continued support and updates.

v4.12.2

Compare Source

(No change; there is a change to the @apollo/server-integration-testsuite used to test integrations, and the two packages always have matching versions.)

v4.12.1

Compare Source

Patch Changes

v4.12.0

Compare Source

Minor Changes
  • #​8054 89e3f84 Thanks @​clenfest! - Adds a new graphql-js validation rule to reject operations that recursively request selections above a specified maximum, which is disabled by default. Use configuration option maxRecursiveSelections=true to enable with a maximum of 10,000,000, or maxRecursiveSelections=<number> for a custom maximum. Enabling this validation can help avoid performance issues with configured validation rules or plugins.
Patch Changes

v4.11.3

Compare Source

Patch Changes

v4.11.2

Compare Source

(No change; there is a change to the @apollo/server-integration-testsuite used to test integrations, and the two packages always have matching versions.)

v4.11.1

Compare Source

Patch Changes
  • #​7952 bb81b2c Thanks @​glasser! - Upgrade dependencies so that automated scans don't detect a vulnerability.

    @apollo/server depends on express which depends on cookie. Versions of express older than v4.21.1 depend on a version of cookie vulnerable to CVE-2024-47764. Users of older express versions who call res.cookie() or res.clearCookie() may be vulnerable to this issue.

    However, Apollo Server does not call this function directly, and it does not expose any object to user code that allows TypeScript users to call this function without an unsafe cast.

    The only way that this direct dependency can cause a vulnerability for users of Apollo Server is if you call startStandaloneServer with a context function that calls Express-specific methods such as res.cookie() or res.clearCookies() on the response object, which is a violation of the TypeScript types provided by startStandaloneServer (which only promise that the response object is a core Node.js http.ServerResponse rather than the Express-specific subclass). So this vulnerability can only affect Apollo Server users who use unsafe JavaScript or unsafe as typecasts in TypeScript.

    However, this upgrade will at least prevent vulnerability scanners from alerting you to this dependency, and we encourage all Express users to upgrade their project's own express dependency to v4.21.1 or newer.

v4.11.0

Compare Source

Minor Changes
  • #​7916 4686454 Thanks @​andrewmcgivery! - Add hideSchemaDetailsFromClientErrors option to ApolloServer to allow hiding 'did you mean' suggestions from validation errors.

    Even with introspection disabled, it is possible to "fuzzy test" a graph manually or with automated tools to try to determine the shape of your schema. This is accomplished by taking advantage of the default behavior where a misspelt field in an operation
    will be met with a validation error that includes a helpful "did you mean" as part of the error text.

    For example, with this option set to true, an error would read Cannot query field "help" on type "Query". whereas with this option set to false it would read Cannot query field "help" on type "Query". Did you mean "hello"?.

    We recommend enabling this option in production to avoid leaking information about your schema to malicious actors.

    To enable, set this option to true in your ApolloServer options:

    const server = new ApolloServer({
      typeDefs,
      resolvers,
      hideSchemaDetailsFromClientErrors: true,
    });

v4.10.5

Compare Source

Patch Changes

v4.10.4

Compare Source

Patch Changes
  • #​7871 18a3827 Thanks @​tninesling! - Subscription heartbeats are initialized prior to awaiting subscribe(). This allows long-running setup to happen in the returned Promise without the subscription being terminated prior to resolution.

v4.10.3

Compare Source

Patch Changes
  • #​7866 5f335a5 Thanks @​tninesling! - Catch errors thrown by subscription generators, and gracefully clean up the subscription instead of crashing.

v4.10.2

Compare Source

Patch Changes
  • #​7849 c7e514c Thanks @​TylerBloom! - In the subscription callback server plugin, terminating a subscription now immediately closes the internal async generator. This avoids that generator existing after termination and until the next message is received.

v4.10.1

Compare Source

Patch Changes
  • #​7843 72f568e Thanks @​bscherlein! - Improves timing of the willResolveField end hook on fields which return Promises resolving to Arrays. This makes the use of the setCacheHint method more reliable.

v4.10.0

Compare Source

Minor Changes
  • #​7786 869ec98 Thanks @​ganemone! - Restore missing v1 skipValidation option as dangerouslyDisableValidation. Note that enabling this option exposes your server to potential security and unexpected runtime issues. Apollo will not support issues that arise as a result of using this option.

  • #​7803 e9a0d6e Thanks @​favna! - allow stringifyResult to return a Promise<string>

    Users who implemented the stringifyResult hook can now expect error responses to be formatted with the hook as well. Please take care when updating to this version to ensure this is the desired behavior, or implement the desired behavior accordingly in your stringifyResult hook. This was considered a non-breaking change as we consider that it was an oversight in the original PR that introduced stringifyResult hook.

Patch Changes

v4.9.5

Compare Source

Patch Changes

Configuration

📅 Schedule: (UTC)

  • 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 changed the title chore(deps): update dependency @apollo/server to v4.9.5 chore(deps): update dependency @apollo/server to v4.10.0 Jan 2, 2024
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from eb1f752 to 2e6603b Compare January 2, 2024 18:46
@renovate renovate Bot changed the title chore(deps): update dependency @apollo/server to v4.10.0 chore(deps): update dependency @apollo/server to v4.10.1 Mar 5, 2024
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from 2e6603b to fa64884 Compare March 5, 2024 20:37
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from fa64884 to 5a9a731 Compare March 22, 2024 20:19
@renovate renovate Bot changed the title chore(deps): update dependency @apollo/server to v4.10.1 chore(deps): update dependency @apollo/server to v4.10.2 Mar 22, 2024
@renovate renovate Bot changed the title chore(deps): update dependency @apollo/server to v4.10.2 chore(deps): update dependency @apollo/server to v4.10.3 Apr 15, 2024
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from 5a9a731 to f9a8eee Compare April 15, 2024 21:15
@renovate renovate Bot changed the title chore(deps): update dependency @apollo/server to v4.10.3 chore(deps): update dependency @apollo/server to v4.10.4 Apr 18, 2024
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from f9a8eee to fd3a756 Compare April 18, 2024 17:16
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from fd3a756 to e102b98 Compare July 23, 2024 03:07
@renovate renovate Bot changed the title chore(deps): update dependency @apollo/server to v4.10.4 chore(deps): update dependency @apollo/server to v4.10.5 Jul 23, 2024
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from e102b98 to ea711fb Compare August 8, 2024 17:34
@renovate renovate Bot changed the title chore(deps): update dependency @apollo/server to v4.10.5 chore(deps): update dependency @apollo/server to v4.11.0 Aug 8, 2024
@renovate renovate Bot changed the title chore(deps): update dependency @apollo/server to v4.11.0 chore(deps): update dependency @apollo/server to v4.11.1 Oct 29, 2024
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from ea711fb to 5381b76 Compare October 29, 2024 22:03
@renovate renovate Bot changed the title chore(deps): update dependency @apollo/server to v4.11.1 chore(deps): update dependency @apollo/server to v4.11.2 Oct 30, 2024
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from 5381b76 to f3a0df5 Compare October 30, 2024 02:29
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from f3a0df5 to 926c1d2 Compare January 3, 2025 03:55
@renovate renovate Bot changed the title chore(deps): update dependency @apollo/server to v4.11.2 chore(deps): update dependency @apollo/server to v4.11.3 Jan 3, 2025
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from 926c1d2 to a627d0f Compare April 7, 2025 16:59
@renovate renovate Bot changed the title chore(deps): update dependency @apollo/server to v4.11.3 chore(deps): update dependency @apollo/server to v4.12.0 Apr 7, 2025
@renovate renovate Bot changed the title chore(deps): update dependency @apollo/server to v4.12.0 chore(deps): update dependency @apollo/server to v4.12.1 May 14, 2025
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from a627d0f to cbbe472 Compare May 14, 2025 22:04
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from cbbe472 to 790e45c Compare June 3, 2025 01:25
@renovate renovate Bot changed the title chore(deps): update dependency @apollo/server to v4.12.1 chore(deps): update dependency @apollo/server to v4.12.2 Jun 3, 2025
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from 790e45c to 7188b42 Compare August 10, 2025 13:26
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from 7188b42 to 904f208 Compare December 3, 2025 19:42
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from 904f208 to e29fb97 Compare December 31, 2025 17:14
@renovate renovate Bot changed the title chore(deps): update dependency @apollo/server to v4.12.2 chore(deps): update dependency @apollo/server to v4.13.0 Feb 4, 2026
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from e29fb97 to 842382e Compare February 4, 2026 13:13
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from 842382e to 51c2c54 Compare February 12, 2026 15:09
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from 51c2c54 to ec565d9 Compare March 27, 2026 13:19
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from ec565d9 to f80234d Compare April 8, 2026 19:06
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from f80234d to 125b40f Compare April 29, 2026 14:02
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch 2 times, most recently from e3e249d to cb3cc56 Compare May 18, 2026 09:44
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch 2 times, most recently from d4872be to cba2125 Compare June 1, 2026 17:57
@renovate renovate Bot changed the title chore(deps): update dependency @apollo/server to v4.13.0 chore(deps): update apollo graphql packages to v4.13.0 Jun 2, 2026
@renovate renovate Bot force-pushed the renovate/apollo-graphql-packages branch from cba2125 to a3a086d Compare June 11, 2026 15:40
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.

0 participants