From 88dd524292de46ad176ad051f703c57943046abf Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Thu, 23 May 2024 08:21:43 +0000 Subject: [PATCH 1/3] release: 2.3.0 --- CHANGELOG.md | 9 +++++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 422fefd1b6..80484ee356 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 2.3.0 + +### Various fixes & improvements + +- Redis Cache Module - 1 - Prepare Code (#3073) by @antonpirker +- Django caching instrumentation update (#3009) by @antonpirker +- Fix `cohere` testsuite for new release of `cohere`. (#3098) by @antonpirker +- fix(clickhouse): `_sentry_span` might be missing (#3096) by @sentrivana + ## 2.2.1 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 57450a636c..4fb97bb48a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,7 +28,7 @@ copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year) author = "Sentry Team and Contributors" -release = "2.2.1" +release = "2.3.0" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 3829d1278a..5a68a47434 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -508,4 +508,4 @@ def _get_default_options(): del _get_default_options -VERSION = "2.2.1" +VERSION = "2.3.0" diff --git a/setup.py b/setup.py index 24d63c2dbb..ca0a14b674 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="2.2.1", + version="2.3.0", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python", From fadd2773ed79e76afe81e350afc78e5952477b9d Mon Sep 17 00:00:00 2001 From: Ivana Kellyerova Date: Thu, 23 May 2024 10:23:31 +0200 Subject: [PATCH 2/3] Update CHANGELOG.md --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80484ee356..028e8a0759 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,10 @@ ### Various fixes & improvements -- Redis Cache Module - 1 - Prepare Code (#3073) by @antonpirker +- Redis cache module (#3073) by @antonpirker - Django caching instrumentation update (#3009) by @antonpirker -- Fix `cohere` testsuite for new release of `cohere`. (#3098) by @antonpirker -- fix(clickhouse): `_sentry_span` might be missing (#3096) by @sentrivana +- Fix `cohere` testsuite for new release of `cohere` (#3098) by @antonpirker +- Fix ClickHouse integration where `_sentry_span` might be missing (#3096) by @sentrivana ## 2.2.1 From 4e74f9137a25cfcc97cea9583480db557412b54c Mon Sep 17 00:00:00 2001 From: Anton Pirker Date: Thu, 23 May 2024 10:26:07 +0200 Subject: [PATCH 3/3] Updated Changelog --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 028e8a0759..f85d657d31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,8 @@ ### Various fixes & improvements -- Redis cache module (#3073) by @antonpirker -- Django caching instrumentation update (#3009) by @antonpirker +- NEW: Redis integration supports now Sentry Caches module. See https://docs.sentry.io/product/performance/caches/ (#3073) by @antonpirker +- NEW: Django integration supports now Sentry Caches module. See https://docs.sentry.io/product/performance/caches/ (#3009) by @antonpirker - Fix `cohere` testsuite for new release of `cohere` (#3098) by @antonpirker - Fix ClickHouse integration where `_sentry_span` might be missing (#3096) by @sentrivana