Skip to content

December 12, 2023

Compare
Choose a tag to compare
@theguild-bot theguild-bot released this 12 Dec 10:05
· 87 commits to main since this release
a978d73

@envelop/sentry@8.0.0

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>({
          //...
        })
      ]
    })