Skip to content

Commit

Permalink
release: 1.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Oct 31, 2023
1 parent e0d7bb7 commit 76f9aa3
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.


Expand Down
2 changes: 1 addition & 1 deletion sentry_sdk/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,4 +286,4 @@ def _get_default_options():
del _get_default_options


VERSION = "1.32.0"
VERSION = "1.33.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 76f9aa3

Please sign in to comment.