Skip to content

Commit 7aa1331

Browse files
author
getsentry-bot
committed
Merge branch 'release/1.33.0'
2 parents e0d7bb7 + 83bf819 commit 7aa1331

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## 1.33.0
4+
5+
### Various fixes & improvements
6+
7+
- New: Added `error_sampler` option (#2456) by @szokeasaurusrex
8+
- Python 3.12: Detect interpreter in shutdown state on thread spawn (#2468) by @mitsuhiko
9+
- Patch eventlet under Sentry SDK (#2464) by @szokeasaurusrex
10+
- Mitigate CPU spikes when sending lots of events with lots of data (#2449) by @antonpirker
11+
- Make `debug` option also configurable via environment (#2450) by @antonpirker
12+
- Make sure `get_dsn_parameters` is an actual function (#2441) by @sentrivana
13+
- Bump pytest-localserver, add compat comment (#2448) by @sentrivana
14+
- AWS Lambda: Update compatible runtimes for AWS Lambda layer (#2453) by @antonpirker
15+
- AWS Lambda: Load AWS Lambda secrets in Github CI (#2153) by @antonpirker
16+
- Redis: Connection attributes in `redis` database spans (#2398) by @antonpirker
17+
- Falcon: Falcon integration checks response status before reporting error (#2465) by @szokeasaurusrex
18+
- Quart: Support Quart 0.19 onwards (#2403) by @pgjones
19+
- Sanic: Sanic integration initial version (#2419) by @szokeasaurusrex
20+
- Django: Fix parsing of Django `path` patterns (#2452) by @sentrivana
21+
- Django: Add Django 4.2 to test suite (#2462) by @sentrivana
22+
- Polish changelog (#2434) by @sentrivana
23+
- Update CONTRIBUTING.md (#2443) by @krishvsoni
24+
- Update README.md (#2435) by @sentrivana
25+
326
## 1.32.0
427

528
### Various fixes & improvements

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year)
3131
author = "Sentry Team and Contributors"
3232

33-
release = "1.32.0"
33+
release = "1.33.0"
3434
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3535

3636

sentry_sdk/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -286,4 +286,4 @@ def _get_default_options():
286286
del _get_default_options
287287

288288

289-
VERSION = "1.32.0"
289+
VERSION = "1.33.0"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def get_file_text(file_name):
2121

2222
setup(
2323
name="sentry-sdk",
24-
version="1.32.0",
24+
version="1.33.0",
2525
author="Sentry Team and Contributors",
2626
author_email="[email protected]",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)