From 05e0bba35ea4899198e3214573485c290136b147 Mon Sep 17 00:00:00 2001 From: Botberry Date: Mon, 18 Nov 2024 13:43:19 +0000 Subject: [PATCH] =?UTF-8?q?Release=20=F0=9F=8D=93=200.249.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 13 +++++++++++++ RELEASE.md | 8 -------- pyproject.toml | 2 +- 3 files changed, 14 insertions(+), 9 deletions(-) delete mode 100644 RELEASE.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e545ef591..af92861f8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ CHANGELOG ========= +0.249.0 - 2024-11-18 +-------------------- + +After a year-long deprecation period, the `SentryTracingExtension` has been +removed in favor of the official Sentry SDK integration. + +To migrate, remove the `SentryTracingExtension` from your Strawberry schema and +then follow the +[official Sentry SDK integration guide](https://docs.sentry.io/platforms/python/integrations/strawberry/). + +Contributed by [Jonathan Ehwald](https://github.com/DoctorJohn) via [PR #3672](https://github.com/strawberry-graphql/strawberry/pull/3672/) + + 0.248.1 - 2024-11-08 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 7aef45f4d0..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,8 +0,0 @@ -Release type: minor - -After a year-long deprecation period, the `SentryTracingExtension` has been -removed in favor of the official Sentry SDK integration. - -To migrate, remove the `SentryTracingExtension` from your Strawberry schema and -then follow the -[official Sentry SDK integration guide](https://docs.sentry.io/platforms/python/integrations/strawberry/). diff --git a/pyproject.toml b/pyproject.toml index 06ef141d92..48bb1523b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.248.1" +version = "0.249.0" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"