From dba3d24cfbdf809b4f8d065381408c800dbace7a Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Fri, 18 Mar 2022 11:20:49 +0000 Subject: [PATCH] release: 1.5.8 --- CHANGELOG.md | 10 ++++++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8492b0326b..b91831ca3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 1.5.8 + +### Various fixes & improvements + +- feat(asgi): Add support for setting transaction name to path in FastAPI (#1349) by @tiangolo +- fix(sqlalchemy): Change context manager type to avoid race in threads (#1368) by @Fofanko +- fix(perf): Fix transaction setter on scope to use containing_transaction to match with getter (#1366) by @sl0thentr0py +- chore(ci): Change stale GitHub workflow to run once a day (#1367) by @kamilogorek +- feat(django): Make django middleware expose more wrapped attributes (#1202) by @MattFisher + ## 1.5.7 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 8a084fc1a5..945a382f39 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,7 @@ copyright = u"2019, Sentry Team and Contributors" author = u"Sentry Team and Contributors" -release = "1.5.7" +release = "1.5.8" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 0466164cae..fe3b2f05dc 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -101,7 +101,7 @@ def _get_default_options(): del _get_default_options -VERSION = "1.5.7" +VERSION = "1.5.8" SDK_INFO = { "name": "sentry.python", "version": VERSION, diff --git a/setup.py b/setup.py index 9969b83819..9488b790ca 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="1.5.7", + version="1.5.8", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",