From 76f9aa324fc78a698e2d52b6b2130ef28b1bc0bb Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Tue, 31 Oct 2023 11:53:25 +0000 Subject: [PATCH 1/2] release: 1.33.0 --- CHANGELOG.md | 23 +++++++++++++++++++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 26 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75ea45c4a0..93b881fadc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## 1.33.0 + +### Various fixes & improvements + +- feat: Detect interpreter in shutdown state on thread spawn (#2468) by @mitsuhiko +- Load AWS Lambda secrets in Github CI (#2153) by @antonpirker +- Fix parsing of Django `path` patterns (#2452) by @sentrivana +- fix(integrations): Falcon integration checks response status before reporting error (#2465) by @szokeasaurusrex +- Patch eventlet under Sentry SDK (#2464) by @szokeasaurusrex +- Add Django 4.2 to test suite (#2462) by @sentrivana +- feat(api): Added `error_sampler` option (#2456) by @szokeasaurusrex +- Update compatible runtimes for AWS Lambda layer (#2453) by @antonpirker +- Make sure `get_dsn_parameters` is an actual function (#2441) by @sentrivana +- Mitigate CPU spikes when sending lots of events with lots of data (#2449) by @antonpirker +- Make `debug` option also configurable via environment (#2450) by @antonpirker +- Bump pytest-localserver, add compat comment (#2448) by @sentrivana +- Update CONTRIBUTING.md (#2443) by @krishvsoni +- Support Quart 0.19 onwards (#2403) by @pgjones +- Sanic integration initial version (#2419) by @szokeasaurusrex +- Update README.md (#2435) by @sentrivana +- Connection attributes in `redis` database spans (#2398) by @antonpirker +- Polish changelog (#2434) by @sentrivana + ## 1.32.0 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 56c4ea1ab3..801bd2beb7 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.32.0" +release = "1.33.0" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 60cb65bc15..85cd632f94 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -286,4 +286,4 @@ def _get_default_options(): del _get_default_options -VERSION = "1.32.0" +VERSION = "1.33.0" diff --git a/setup.py b/setup.py index a815df7d61..950a97493c 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="1.32.0", + version="1.33.0", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python", From 83bf81909582326ea0096ed078cebefa980f96af Mon Sep 17 00:00:00 2001 From: Anton Pirker Date: Tue, 31 Oct 2023 12:58:11 +0100 Subject: [PATCH 2/2] Updated changelog --- CHANGELOG.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93b881fadc..84c0153111 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,24 +4,24 @@ ### Various fixes & improvements -- feat: Detect interpreter in shutdown state on thread spawn (#2468) by @mitsuhiko -- Load AWS Lambda secrets in Github CI (#2153) by @antonpirker -- Fix parsing of Django `path` patterns (#2452) by @sentrivana -- fix(integrations): Falcon integration checks response status before reporting error (#2465) by @szokeasaurusrex +- New: Added `error_sampler` option (#2456) by @szokeasaurusrex +- Python 3.12: Detect interpreter in shutdown state on thread spawn (#2468) by @mitsuhiko - Patch eventlet under Sentry SDK (#2464) by @szokeasaurusrex -- Add Django 4.2 to test suite (#2462) by @sentrivana -- feat(api): Added `error_sampler` option (#2456) by @szokeasaurusrex -- Update compatible runtimes for AWS Lambda layer (#2453) by @antonpirker -- Make sure `get_dsn_parameters` is an actual function (#2441) by @sentrivana - Mitigate CPU spikes when sending lots of events with lots of data (#2449) by @antonpirker - Make `debug` option also configurable via environment (#2450) by @antonpirker +- Make sure `get_dsn_parameters` is an actual function (#2441) by @sentrivana - Bump pytest-localserver, add compat comment (#2448) by @sentrivana +- AWS Lambda: Update compatible runtimes for AWS Lambda layer (#2453) by @antonpirker +- AWS Lambda: Load AWS Lambda secrets in Github CI (#2153) by @antonpirker +- Redis: Connection attributes in `redis` database spans (#2398) by @antonpirker +- Falcon: Falcon integration checks response status before reporting error (#2465) by @szokeasaurusrex +- Quart: Support Quart 0.19 onwards (#2403) by @pgjones +- Sanic: Sanic integration initial version (#2419) by @szokeasaurusrex +- Django: Fix parsing of Django `path` patterns (#2452) by @sentrivana +- Django: Add Django 4.2 to test suite (#2462) by @sentrivana +- Polish changelog (#2434) by @sentrivana - Update CONTRIBUTING.md (#2443) by @krishvsoni -- Support Quart 0.19 onwards (#2403) by @pgjones -- Sanic integration initial version (#2419) by @szokeasaurusrex - Update README.md (#2435) by @sentrivana -- Connection attributes in `redis` database spans (#2398) by @antonpirker -- Polish changelog (#2434) by @sentrivana ## 1.32.0