Skip to content

Commit fe91f38

Browse files
committed
release: 2.11.0
1 parent 0812858 commit fe91f38

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

CHANGELOG.md

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

3+
## 2.11.0
4+
5+
### Various fixes & improvements
6+
7+
- feat(tests): Do not include type checking code in coverage report (#3327) by @antonpirker
8+
- feat(integrations): Add `disabled_integrations` (#3328) by @sentrivana
9+
- Add tests for @ai_track decorator (#3325) by @colin-sentry
10+
- ref(logging): Lower logger level for some messages (#3305) by @sentrivana
11+
- feat(hub): Emit deprecation warnings from `Hub` API (#3280) by @szokeasaurusrex
12+
- meta: Allow blank GitHub issues (#3311) by @szokeasaurusrex
13+
- test: Only assert warnings we are interested in (#3314) by @szokeasaurusrex
14+
- Make Django db spans have origin auto.db.django (#3319) by @antonpirker
15+
- docs: Clarify that `instrumenter` is internal-only (#3299) by @szokeasaurusrex
16+
- Sort breadcrumbs before sending (#3307) by @antonpirker
17+
- test: fix test_installed_modules (#3309) by @szokeasaurusrex
18+
- fix(integrations): KeyError('sentry-monitor-start-timestamp-s') (#3278) by @Mohsen-Khodabakhshi
19+
- Fixed failed tests setup (#3303) by @antonpirker
20+
- feat(pymongo): Set MongoDB tags directly on span data (#3290) by @0Calories
21+
- feat(integrations): Support Django 5.1 (#3207) by @sentrivana
22+
- ref(scope): Remove apparently unnecessary `if` (#3298) by @szokeasaurusrex
23+
- test: Allow passing of PostgreSQL port (#3281) by @rominf
24+
- feat: Preliminary support for Python 3.13 (#3200) by @sentrivana
25+
- feat(strawberry): Use operation name as transaction name (#3294) by @sentrivana
26+
- docs: Fix typos and grammar in a comment (#3293) by @szokeasaurusrex
27+
- ref(tests): Unhardcode integration list (#3240) by @rominf
28+
- ref(init): Move `sentry_sdk.init` out of `hub.py` (#3276) by @szokeasaurusrex
29+
- fix(wsgi): WSGI integrations respect SCRIPT_NAME env variable (#2622) by @sarvaSanjay
30+
331
## 2.10.0
432

533
### Various fixes & improvements

docs/conf.py

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

31-
release = "2.10.0"
31+
release = "2.11.0"
3232
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3333

3434

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,4 +563,4 @@ def _get_default_options():
563563
del _get_default_options
564564

565565

566-
VERSION = "2.10.0"
566+
VERSION = "2.11.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.10.0",
24+
version="2.11.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)