Skip to content

Commit b2fc801

Browse files
author
getsentry-bot
committed
Merge branch 'release/2.21.0'
2 parents 2f51db7 + dc1460a commit b2fc801

File tree

4 files changed

+40
-3
lines changed

4 files changed

+40
-3
lines changed

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
11
# Changelog
22

3+
## 2.21.0
4+
5+
### Various fixes & improvements
6+
7+
- Fix incompatibility with new Strawberry version (#4026) by @sentrivana
8+
- Add `failed_request_status_codes` to Litestar (#4021) by @vrslev
9+
10+
See https://docs.sentry.io/platforms/python/integrations/litestar/ for details.
11+
- Deprecate `enable_tracing` option (#3935) by @antonpirker
12+
13+
The `enable_tracing` option is now deprecated. Please use `traces_sample_rate` instead. See https://docs.sentry.io/platforms/python/configuration/options/#traces_sample_rate for more information.
14+
- Explicitly use `None` default when checking metadata (#4039) by @mpurnell1
15+
- Fix bug where concurrent accesses to the flags property could raise a `RuntimeError` (#4034) by @cmanallen
16+
- Add more min versions of frameworks (#3973) by @sentrivana
17+
- Set level based on status code for HTTP client breadcrumbs (#4004) by @sentrivana
18+
- Don't set transaction status to error on `sys.exit(0)` (#4025) by @sentrivana
19+
- Continuous profiling sample rate (#4002) by @Zylphrex
20+
- Track and report spans that were dropped (#4005) by @constantinius
21+
- Change continuous profile buffer size (#3987) by @Zylphrex
22+
- Handle `MultiPartParserError` to avoid internal sentry crash (#4001) by @orhanhenrik
23+
- Handle `None` lineno in `get_source_context` (#3925) by @sentrivana
24+
- Add support for Python 3.12 and 3.13 to AWS Lambda integration (#3965) by @antonpirker
25+
- Add `propagate_traces` deprecation warning (#3899) by @mgaligniana
26+
- Check that `__module__` is `str` (#3942) by @szokeasaurusrex
27+
- Add `__repr__` to `Baggage` (#4043) by @szokeasaurusrex
28+
- Fix a typo (#3923) by @antonpirker
29+
- Fix various CI errors on master (#4009) by @Zylphrex
30+
- Split gevent tests off (#3964) by @sentrivana
31+
- Add tox generation script, but don't use it yet (#3971) by @sentrivana
32+
- Use `httpx_mock` in `test_httpx` (#3967) by @sl0thentr0py
33+
- Fix typo in test name (#4036) by @szokeasaurusrex
34+
- Fix mypy (#4019) by @sentrivana
35+
- Test Celery's latest RC (#3938) by @sentrivana
36+
- Bump `actions/create-github-app-token` from `1.11.2` to `1.11.3` (#4023) by @dependabot
37+
- Bump `actions/create-github-app-token` from `1.11.1` to `1.11.2` (#4015) by @dependabot
38+
- Bump `codecov/codecov-action` from `5.1.2` to `5.3.1` (#3995) by @dependabot
39+
340
## 2.20.0
441

542
- **New integration:** Add [Typer](https://typer.tiangolo.com/) integration (#3869) by @patrick91

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year)
3232
author = "Sentry Team and Contributors"
3333

34-
release = "2.20.0"
34+
release = "2.21.0"
3535
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3636

3737

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,4 +582,4 @@ def _get_default_options():
582582
del _get_default_options
583583

584584

585-
VERSION = "2.20.0"
585+
VERSION = "2.21.0"

setup.py

Lines changed: 1 addition & 1 deletion
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="2.20.0",
24+
version="2.21.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)