Skip to content

chore(deps): update dependency graphql-yoga to v5.18.0#190

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/graphql-yoga-5.x-lockfile
Open

chore(deps): update dependency graphql-yoga to v5.18.0#190
renovate[bot] wants to merge 1 commit intomainfrom
renovate/graphql-yoga-5.x-lockfile

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 26, 2025

This PR contains the following updates:

Package Change Age Confidence
graphql-yoga (source) 5.10.15.18.0 age confidence

Release Notes

graphql-hive/graphql-yoga (graphql-yoga)

v5.18.0

Compare Source

Minor Changes
  • #​4312
    3eabd17
    Thanks @​ardatan! - Export GraphiQLRenderer type which is the
    signature for renderGraphiQL option of Yoga configuration

v5.17.1

Compare Source

Patch Changes

v5.17.0

Compare Source

Minor Changes
  • #​4288
    66c370c
    Thanks @​EmrysMyrddin! - Add experimental support for
    coordinate error attribute proposal.

    The coordinate attribute indicates the coordinate in the schema of the resolver which
    experienced the errors. It allows for an easier error source identification than with the path
    which can be difficult to walk, or even lead to unsolvable ambiguities when using Union or
    Interface types.

v5.16.2

Compare Source

Patch Changes
  • #​4270
    ba38629
    Thanks @​ardatan! - Fixes the bug where the error masking incorrectly
    sets http.unexpected instead of just unexpected.

    {
      "extensions": {
    -    "http": {
          "unexpected": true
    -    }
      }
    }

v5.16.1

Compare Source

Patch Changes

v5.16.0

Compare Source

Minor Changes
Patch Changes
  • #​4191
    0a7a635
    Thanks @​ardatan! - Fix workers' loading in online GraphiQL mode, so
    that Monaco features like autocomplete can work properly

v5.15.2

Compare Source

Patch Changes
  • e7b8906
    Thanks @​ardatan! - Bump URL Loader in GraphiQL to the latest to
    remove extra DOWNSTREAM_SERVICE_ERROR code in the errors

v5.15.1

Compare Source

Patch Changes

v5.15.0

Compare Source

Minor Changes
Patch Changes

v5.14.0

Compare Source

Minor Changes

v5.13.5

Compare Source

Patch Changes

v5.13.4

Compare Source

Patch Changes

v5.13.3

Compare Source

Patch Changes

v5.13.2

Compare Source

Patch Changes

v5.13.1

Compare Source

Patch Changes

v5.13.0

Compare Source

Minor Changes
  • #​3793
    63b78d5
    Thanks @​EmrysMyrddin! - Add new Instrumentation API

    Introduction of a new API allowing to instrument the graphql pipeline.

    This new API differs from already existing Hooks by not having access to input/output of phases.
    The goal of Instrumentation is to run allow running code before, after or around the whole
    process of a phase
    , including plugins hooks executions.

    The main use case of this new API is observability (monitoring, tracing, etc...).

Basic usage
import { createYoga } from 'graphql-yoga'
import Sentry from '@​sentry/node'
import schema from './schema'

const server = createYoga({
  schema,
  plugins: [
    {
      instrumentation: {
        request: ({ request }, wrapped) =>
          Sentry.startSpan({ name: 'Graphql Operation' }, async () => {
            try {
              await wrapped()
            } catch (err) {
              Sentry.captureException(err)
            }
          })
      }
    }
  ]
})
Multiple instrumentation plugins

It is possible to have multiple instrumentation plugins (Prometheus and Sentry for example), they
will be automatically composed by envelop in the same order than the plugin array (first is
outermost, last is inner most).

import { createYoga } from 'graphql-yoga'
import schema from './schema'

const server = createYoga({
  schema,
  plugins: [useSentry(), useOpentelemetry()]
})
Custom instrumentation ordering

If the default composition ordering doesn't suite your need, you can manually compose
instrumentation. This allows to have a different execution order of hooks and instrumentation.

import { composeInstrumentation, createYoga } from 'graphql-yoga'
import schema from './schema'

const { instrumentation: sentryInstrumentation, ...sentryPlugin } = useSentry()
const { instrumentation: otelInstrumentation, ...otelPlugin } = useOpentelemetry()
const instrumentation = composeInstrumentation([otelInstrumentation, sentryInstrumentation])

const server = createYoga({
  schema,
  plugins: [{ instrumentation }, useSentry(), useOpentelemetry()]
})
Patch Changes

v5.12.2

Compare Source

Patch Changes

v5.12.1

Patch Changes

v5.12.0

Minor Changes
Patch Changes

v5.11.0

Compare Source

Minor Changes
  • #​3727
    5fd15b8
    Thanks @​EmrysMyrddin! - Allow to configure the endpoint used by
    GraphiQL to send requests.

  • #​3736
    d13b8a4
    Thanks @​ardatan! - Now it is possible to replace or wrap the logic
    how GraphQLParams handled;

    By default Yoga calls Envelop to handle the parameters, but now you can replace it with your own
    logic.

    Example: Wrap the GraphQL handling pipeline in an AsyncLocalStorage

    function myPlugin(): Plugin {
      const context = new AsyncLocalStorage();
      return {
        onParams({ paramsHandler, setParamsHandler }) {
          const store = { foo: 'bar' }
          setParamsHandler(payload => context.run(store, paramsHandler, payload))
       }
    }

v5.10.11

Compare Source

Patch Changes

v5.10.10

Compare Source

Patch Changes

v5.10.9

Compare Source

Patch Changes

v5.10.8

Compare Source

Patch Changes
  • #​3588
    ed344ea
    Thanks @​ardatan! - Mark createLRUCache utility as deprecated, and
    export it as _createLRUCache marking it as an internal utility

v5.10.7

Compare Source

Patch Changes

v5.10.6

Compare Source

Patch Changes

v5.10.5

Compare Source

Patch Changes

v5.10.4

Compare Source

Patch Changes

v5.10.3

Compare Source

Patch Changes

v5.10.2

Compare Source

Patch Changes
  • #​3491
    7a413bc
    Thanks @​n1ru4l! - dependencies updates:

  • #​3491
    7a413bc
    Thanks @​n1ru4l! - Fix issue where context values being shared between
    batched requests.

    A bug within @whatwg-node/server caused properties assigned to a batched requests context to be
    propagated to all other batched requests contexts. It is resolved by updating the dependency of
    @whatwg-node/server to 0.9.55.


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.

🔕 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 force-pushed the renovate/graphql-yoga-5.x-lockfile branch from 9819031 to 970fe9f Compare August 10, 2025 12:37
@renovate renovate bot force-pushed the renovate/graphql-yoga-5.x-lockfile branch from 970fe9f to 02bccc4 Compare August 19, 2025 15:46
@renovate renovate bot force-pushed the renovate/graphql-yoga-5.x-lockfile branch from 02bccc4 to 9dcf4e4 Compare September 6, 2025 21:12
@renovate renovate bot changed the title fix(deps): update dependency graphql-yoga to v5.15.1 fix(deps): update dependency graphql-yoga to v5.15.2 Sep 6, 2025
@renovate renovate bot force-pushed the renovate/graphql-yoga-5.x-lockfile branch from 9dcf4e4 to 8918b4f Compare September 19, 2025 16:45
@renovate renovate bot changed the title fix(deps): update dependency graphql-yoga to v5.15.2 fix(deps): update dependency graphql-yoga to v5.16.0 Sep 19, 2025
@renovate renovate bot force-pushed the renovate/graphql-yoga-5.x-lockfile branch from 8918b4f to e981b4e Compare September 25, 2025 14:47
@renovate renovate bot changed the title fix(deps): update dependency graphql-yoga to v5.16.0 chore(deps): update dependency graphql-yoga to v5.16.0 Sep 25, 2025
@renovate renovate bot force-pushed the renovate/graphql-yoga-5.x-lockfile branch from e981b4e to d561def Compare October 21, 2025 16:13
@renovate renovate bot force-pushed the renovate/graphql-yoga-5.x-lockfile branch from d561def to cd75d73 Compare November 4, 2025 17:33
@renovate renovate bot changed the title chore(deps): update dependency graphql-yoga to v5.16.0 chore(deps): update dependency graphql-yoga to v5.16.1 Nov 4, 2025
@renovate renovate bot force-pushed the renovate/graphql-yoga-5.x-lockfile branch from cd75d73 to 1e72e3c Compare November 7, 2025 08:01
@renovate renovate bot changed the title chore(deps): update dependency graphql-yoga to v5.16.1 chore(deps): update dependency graphql-yoga to v5.16.2 Nov 7, 2025
@renovate renovate bot force-pushed the renovate/graphql-yoga-5.x-lockfile branch from 1e72e3c to 50f0eb7 Compare November 11, 2025 02:09
@renovate renovate bot force-pushed the renovate/graphql-yoga-5.x-lockfile branch from 50f0eb7 to 1403a09 Compare November 19, 2025 00:54
@renovate renovate bot force-pushed the renovate/graphql-yoga-5.x-lockfile branch from 1403a09 to 541746f Compare November 28, 2025 14:31
@renovate renovate bot changed the title chore(deps): update dependency graphql-yoga to v5.16.2 chore(deps): update dependency graphql-yoga to v5.17.0 Nov 28, 2025
@renovate renovate bot force-pushed the renovate/graphql-yoga-5.x-lockfile branch from 541746f to 6254071 Compare December 2, 2025 02:58
@renovate renovate bot changed the title chore(deps): update dependency graphql-yoga to v5.17.0 chore(deps): update dependency graphql-yoga to v5.17.1 Dec 2, 2025
@renovate renovate bot force-pushed the renovate/graphql-yoga-5.x-lockfile branch from 6254071 to 317a819 Compare December 18, 2025 15:09
@renovate renovate bot changed the title chore(deps): update dependency graphql-yoga to v5.17.1 chore(deps): update dependency graphql-yoga to v5.18.0 Dec 18, 2025
@renovate renovate bot force-pushed the renovate/graphql-yoga-5.x-lockfile branch from 317a819 to ad3002a Compare January 8, 2026 20:34
@renovate renovate bot force-pushed the renovate/graphql-yoga-5.x-lockfile branch from ad3002a to 1fe216a Compare January 23, 2026 18:55
@renovate renovate bot force-pushed the renovate/graphql-yoga-5.x-lockfile branch from 1fe216a to e354936 Compare February 12, 2026 13:52
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

Comments