diff --git a/.changeset/clever-rice-perform.md b/.changeset/clever-rice-perform.md deleted file mode 100644 index fe697b3b4c..0000000000 --- a/.changeset/clever-rice-perform.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -'@envelop/sentry': major ---- - -Make it possible to get the active span in the GraphQL resolver - -**Breaking Change:** With this change, this plugin now wraps the execute function. -This plugin should be placed last so that the execute function is not overwritten by another plugin. - -```ts -const yoga = createYoga({ - plugins: [ - ...otherPlugins, - useSentry({ - // ... - }) - ] -}) -``` diff --git a/packages/plugins/sentry/CHANGELOG.md b/packages/plugins/sentry/CHANGELOG.md index 0d367f9b35..cedd9588fb 100644 --- a/packages/plugins/sentry/CHANGELOG.md +++ b/packages/plugins/sentry/CHANGELOG.md @@ -1,5 +1,28 @@ # @envelop/sentry +## 12.0.0 + +### Major Changes + +- [#2323](https://github.com/n1ru4l/envelop/pull/2323) + [`2993773`](https://github.com/n1ru4l/envelop/commit/299377308c1c5901e5babeecd1715088977912d9) + Thanks [@Karibash](https://github.com/Karibash)! - Make it possible to get the active span in the + GraphQL resolver + + **Breaking Change:** With this change, this plugin now wraps the execute function. This plugin + should be placed last so that the execute function is not overwritten by another plugin. + + ```ts + const yoga = createYoga({ + plugins: [ + ...otherPlugins, + useSentry({ + // ... + }) + ] + }) + ``` + ## 11.0.0 ### Major Changes diff --git a/packages/plugins/sentry/package.json b/packages/plugins/sentry/package.json index 162f356577..5bc62db663 100644 --- a/packages/plugins/sentry/package.json +++ b/packages/plugins/sentry/package.json @@ -1,6 +1,6 @@ { "name": "@envelop/sentry", - "version": "11.0.0", + "version": "12.0.0", "type": "module", "repository": { "type": "git",