Skip to content

chore(deps): update all apollo server non-major dependencies#77

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch
Open

chore(deps): update all apollo server non-major dependencies#77
renovate[bot] wants to merge 1 commit intomainfrom
renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 24, 2023

This PR contains the following updates:

Package Change Age Confidence
@apollo/server (source) 5.0.05.4.0 age confidence
@graphql-tools/schema (source) 10.0.2410.0.31 age confidence
@graphql-tools/schema (source) 9.0.139.0.19 age confidence
@types/cors (source) 2.8.132.8.19 age confidence
@types/node (source) 20.19.820.19.32 age confidence
@types/node (source) 18.6.318.19.130 age confidence
@types/ws (source) 8.2.28.18.1 age confidence
@types/ws (source) 8.5.58.18.1 age confidence
apollo-server-express (source) 3.12.03.13.0 age confidence
cors 2.8.52.8.6 age confidence
express (source) 5.1.05.2.1 age confidence
express (source) 4.18.24.22.1 age confidence
graphql 16.11.016.12.0 age confidence
graphql 15.8.015.10.1 age confidence
graphql-ws (source) 5.5.55.16.2 age confidence
graphql-ws (source) 5.14.05.16.2 age confidence
typescript (source) 5.8.35.9.3 age confidence
typescript (source) 4.7.44.9.5 age confidence
ws 8.18.38.19.0 age confidence
ws 8.4.28.19.0 age confidence
ws 8.13.08.19.0 age confidence

Release Notes

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

v5.4.0

Compare Source

Minor Changes
  • d25a5bd Thanks @​phryneas! - ⚠️ 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.
    Note that the more recent JSON RFC, RFC 8259, is more strict and will only allow UTF-8.
    Since this is a minor release, we have chosen to remain compatible with the more permissive RFC 7159 for now.
    In a future major release, we may tighten this restriction further to only allow UTF-8.

    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.

v5.3.0

Compare Source

Minor Changes
  • #​8062 8e54e58 Thanks @​cristunaranjo! - Allow configuration of graphql execution options (maxCoercionErrors)

    const server = new ApolloServer({
      typeDefs,
      resolvers,
      executionOptions: {
        maxCoercionErrors: 50,
      },
    });
  • #​8014 26320bc Thanks @​mo4islona! - Expose graphql validation options.

    const server = new ApolloServer({
      typeDefs,
      resolvers,
      validationOptions: {
        maxErrors: 10,
      },
    });

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

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
apollographql/apollo-server (apollo-server-express)

v3.13.0

Compare Source

v3.12.1

Compare Source

expressjs/cors (cors)

v2.8.6

Compare Source

==================

  • Improve documentation (API, context, examples...)
  • Remove additional markdown files from tarball
expressjs/express (express)

v5.2.1

Compare Source

=======================

v5.2.0

Compare Source

========================

  • Security fix for CVE-2024-51999 (GHSA-pj86-cfqh-vqx6)
  • deps: body-parser@^2.2.1
  • A deprecation warning was added when using res.redirect with undefined arguments, Express now emits a warning to help detect calls that pass undefined as the status or URL and make them easier to fix.
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
enisdenjo/graphql-ws (graphql-ws)

v5.16.2

Compare Source

Patch Changes

v5.16.1

Compare Source

Patch Changes

v5.16.0

Compare Source

Bug Fixes
  • server: Return all subscriptions regardless of the return invocation order (f442288)
  • server: should not send error messages if socket closes before onSubscribe hooks resolves (db47a66), closes #​539
Features
  • server: Close code and reason are optional (6ae6e6f), closes #​547

v5.15.0

Compare Source

Bug Fixes
  • client: Use TerminatedCloseEvent class extending an Error for rejecting promises when terminating (74b4ceb), closes #​531
  • server: Dispose of subscriptions on close even if added late to the subscriptions list (#​534) (e45d6b1), closes #​532
Features

v5.14.3

Compare Source

Bug Fixes
  • client: Use closures instead of bindings (with this) (812129d)
  • remove package.json workspaces entry in release (63a831e), closes #​524

v5.14.2

Compare Source

Bug Fixes
  • client: correct close code for Bad Gateway reason (#​512) (0438650)

v5.14.1

Compare Source

Bug Fixes
  • server: Acknowledge connection before notifying the client to avoid race conditions with slow sends (#​506) (8cb82bd), closes #​501

v5.14.0

Compare Source

Features

v5.13.1

Compare Source

Bug Fixes

v5.13.0

Compare Source

Features

v5.12.1

Compare Source

Bug Fixes
  • Add file extensions to imports/exports in ESM type definitions (48775be)

v5.12.0

Compare Source

Features

v5.11.3

Compare Source

Bug Fixes

v5.11.2

Compare Source

Bug Fixes
  • Reorder types paths in package.json for better import resolution (#​406) (37263c5)

v5.11.1

Compare Source

Bug Fixes
  • server: Shouldn't send a complete message if client sent it (331fe47), closes #​403

v5.11.0

Compare Source

Features
  • client: Provide subscribe payload in generateID (d0bc6e1), closes #​398

v5.10.2

Compare Source

Performance Improvements

v5.10.1

Compare Source

Bug Fixes
  • client: Debounce close by lazyCloseTimeout (c332837), closes #​388

v5.10.0

Compare Source

Features

v5.9.1

Compare Source

Bug Fixes

v5.9.0

Compare Source

Features

v5.8.2

Compare Source

Bug Fixes
  • server: Should clean up subscription reservations on abrupt errors without relying on connection close (611c223)

v5.8.1

Compare Source

Bug Fixes
  • client: isFatalConnectionProblem defaults to undefined for using shouldRetry (9d5c573)

v5.8.0

Compare Source

Features
  • client: Deprecate isFatalConnectionProblem option in favour of shouldRetry (d8dcf21)

v5.7.0

Compare Source

Features
  • client: Terminate the WebSocket abruptly and immediately (53ad515), closes #​290

v5.6.4

Compare Source

Bug Fixes
  • Warn about subscriptions-transport-ws clients and provide migration link (e080739), closes #​339 #​325

v5.6.3

Compare Source

Bug Fixes
  • client: Stop execution if connectionParams took too long and the server kicked the client off (1e94e45), closes #​331

v5.6.2

Compare Source

Bug Fixes
  • server: handleProtocols accepts arrays too and gracefully rejects other types (98dec1a), closes #​318

v5.6.1

Compare Source

Bug Fixes
  • server: Handle upgrade requests with multiple subprotocols and omit Sec-WebSocket-Protocol header if none supported (9bae064)

v5.6.0

Compare Source

Features
  • TypeScript generic for connection init payload (connectionParams) (#​311) (e67cf80)
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:

websockets/ws (ws)

v8.19.0

Compare Source

Features

  • Added the closeTimeout option (#​2308).

Bug fixes

  • Handled a forthcoming breaking change in Node.js core (1998485).

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 force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 4 times, most recently from e227150 to af98ae6 Compare July 25, 2023 20:33
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 4 times, most recently from a6ac2a1 to ab80564 Compare August 8, 2023 20:40
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 3 times, most recently from 80ae9c0 to 5b90f3c Compare August 18, 2023 20:45
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 5 times, most recently from 9bd2945 to f9cedc5 Compare August 28, 2023 01:07
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 4 times, most recently from 0d6917f to c3cc631 Compare September 8, 2023 18:17
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 2 times, most recently from 7b8ccca to 18b04f8 Compare September 15, 2023 08:31
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 3 times, most recently from 092a694 to 304002f Compare September 19, 2023 16:33
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 3 times, most recently from 0184ee6 to a902888 Compare October 7, 2023 02:02
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 3 times, most recently from ab27737 to 5fb97f1 Compare October 15, 2025 21:58
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 2 times, most recently from 7ee5fad to 8df196a Compare October 21, 2025 02:12
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 4 times, most recently from 2c3c501 to 27244d7 Compare November 4, 2025 21:06
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 2 times, most recently from 72f80d1 to 5db1ceb Compare November 12, 2025 11:04
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 2 times, most recently from 816918e to d50aa6a Compare November 28, 2025 10:52
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 2 times, most recently from 7bcd05d to bdfbc49 Compare December 1, 2025 21:08
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 2 times, most recently from cf74fb2 to 14a08af Compare December 14, 2025 00:53
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 3 times, most recently from 0d8db1a to 539c936 Compare January 7, 2026 02:04
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 4 times, most recently from 6410de8 to 3b6c5c2 Compare January 15, 2026 18:14
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 2 times, most recently from 6f146ed to e7d9ecb Compare January 23, 2026 12:10
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch 2 times, most recently from ac3cfd1 to 75899ba Compare February 4, 2026 13:10
@renovate renovate bot force-pushed the renovate/subscriptions-graphql-ws-all-apollo-server-minor-patch branch from 75899ba to 067191d Compare February 5, 2026 19:00
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.

1 participant