From 4c1ea7adb4390eb05e16b7f48e09e40afe472fb9 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Tue, 13 Aug 2024 12:35:40 +0000 Subject: [PATCH] release: 2.13.0 --- CHANGELOG.md | 20 ++++++++++++++++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c741e1224..77e4da5058 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## 2.13.0 + +### Various fixes & improvements + +- feat: Add ray integration support (#2400) (#2444) by @glowskir +- Expose custom_repr function that precedes safe_repr invocation in serializer (#3438) by @sl0thentr0py +- ref(sessions): Deprecate hub-based `sessions.py` logic (#3419) by @szokeasaurusrex +- ref(sessions): Deprecate `is_auto_session_tracking_enabled` (#3428) by @szokeasaurusrex +- Add note to generated yaml files (#3423) by @sentrivana +- test(sessions): Remove unnecessary line (#3418) by @szokeasaurusrex +- Dramatiq integration from @jacobsvante (#3397) by @antonpirker +- Serialize vars early to avoid living references (#3409) by @sl0thentr0py +- feat(profiling): Add client sdk info to profile chunk (#3386) by @Zylphrex +- Link to persistent banner in README (#3399) by @sentrivana +- feat(integrations): Update StarliteIntegration to be more in line with new LitestarIntegration (#3384) by @KellyWalker +- feat(integrations): Add litestar and starlite to get_sdk_name (#3385) by @KellyWalker +- feat(integrations): Support Litestar (#2413) (#3358) by @KellyWalker +- Use new banner in readme (#3390) by @sentrivana +- meta: Slim down PR template (#3382) by @sentrivana + ## 2.12.0 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 884b977e7f..c30f18c8a8 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.12.0" +release = "2.13.0" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 167c503b00..83fe9ae6e8 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -567,4 +567,4 @@ def _get_default_options(): del _get_default_options -VERSION = "2.12.0" +VERSION = "2.13.0" diff --git a/setup.py b/setup.py index 68da68a52b..ee1d52b2e8 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="2.12.0", + version="2.13.0", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",