From 575cc93316f0574852efde56e5d61278f3a41232 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Mon, 19 Feb 2024 13:14:18 +0000 Subject: [PATCH 1/2] release: 1.40.5 --- 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 3df6e30d87..25c7b1579b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 1.40.5 + +### Various fixes & improvements + +- Deprecate `last_event_id()`. (#2749) by @antonpirker +- ref(uwsgi): Warn if uWSGI is set up without proper thread support (#2738) by @sentrivana +- fix(aiohttp): `parsed_url` can be `None` (#2734) by @sentrivana +- Python 3.7 is not supported anymore by Lambda, so removed it and added 3.12 (#2729) by @antonpirker + ## 1.40.4 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 45b465c615..8787c30934 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,7 +30,7 @@ copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year) author = "Sentry Team and Contributors" -release = "1.40.4" +release = "1.40.5" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index ad7b1099ae..e20625cfa1 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -316,4 +316,4 @@ def _get_default_options(): del _get_default_options -VERSION = "1.40.4" +VERSION = "1.40.5" diff --git a/setup.py b/setup.py index a118cfb20c..d1bdb16201 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="1.40.4", + version="1.40.5", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python", From 3a3e3803a2b83c35bef0380ebd4cebc84afec51a Mon Sep 17 00:00:00 2001 From: Ivana Kellyerova Date: Mon, 19 Feb 2024 14:14:50 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25c7b1579b..6eef10e114 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,15 @@ ### Various fixes & improvements - Deprecate `last_event_id()`. (#2749) by @antonpirker -- ref(uwsgi): Warn if uWSGI is set up without proper thread support (#2738) by @sentrivana -- fix(aiohttp): `parsed_url` can be `None` (#2734) by @sentrivana +- Warn if uWSGI is set up without proper thread support (#2738) by @sentrivana + + uWSGI has to be run in threaded mode for the SDK to run properly. If this is + not the case, the consequences could range from features not working unexpectedly + to uWSGI workers crashing. + + Please make sure to run uWSGI with both `--enable-threads` and `--py-call-uwsgi-fork-hooks`. + +- `parsed_url` can be `None` (#2734) by @sentrivana - Python 3.7 is not supported anymore by Lambda, so removed it and added 3.12 (#2729) by @antonpirker ## 1.40.4