Envelop Versions Save

Envelop is a lightweight library allowing developers to easily develop, share, collaborate and extend their GraphQL execution layer. Envelop is the missing GraphQL plugin system.

release-1712060801989

1 month ago

@envelop/[email protected]

Patch Changes

@envelop/[email protected]

Minor Changes

@envelop/[email protected]

Major Changes

  • #2163 7686b33 Thanks @MarcelCutts! - Removed includedResolverArgs from SentryPluginOptions as it lead to no functionality.

release-1710798186838

2 months ago

@envelop/[email protected]

Patch Changes

release-1710338662498

2 months ago

@envelop/[email protected]

Minor Changes

release-1706105092997

3 months ago

@envelop/[email protected]

Patch Changes

release-1705591423823

4 months ago

@envelop/[email protected]

Minor Changes

release-1705589139129

4 months ago

@envelop/[email protected]

Minor Changes

  • #2142 4c11530 Thanks @ardatan! - - Ability to hide operationName and operationType in the labels
    • Count schema changes
    • Catch errors during the context creation

release-1705580006856

4 months ago

@envelop/[email protected]

Patch Changes

release-1705578230855

4 months ago

@envelop/[email protected]

Minor Changes

Patch Changes

release-1702375515497

5 months ago

@envelop/[email protected]

Major Changes

  • aff6ea0 Thanks @EmrysMyrddin! - Allow to provide the context type as a generic parameter

    Breaking Change: Since this introduces a typed context as a generic, TS will not always infer the correct type for you. If you have a custom Context type, please consider explicitly pass this context type as a generic argument:

    cont yoga = createYoga<CustomContext>({
      plugins: [
        useSentry<CustomContext>({
          //...
        })
      ]
    })
    

release-1702374913773

5 months ago

@envelop/[email protected]

Patch Changes

  • 398564c Thanks @EmrysMyrddin! - Revert the addition of a typed context since it is a breaking change. This will be re-added in a major release.