Skip to content

Commit

Permalink
release: 2.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Jul 24, 2024
1 parent 0812858 commit fe91f38
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 3 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

## 2.11.0

### Various fixes & improvements

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

## 2.10.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 @@ -28,7 +28,7 @@
copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year)
author = "Sentry Team and Contributors"

release = "2.10.0"
release = "2.11.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 @@ -563,4 +563,4 @@ def _get_default_options():
del _get_default_options


VERSION = "2.10.0"
VERSION = "2.11.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="2.10.0",
version="2.11.0",
author="Sentry Team and Contributors",
author_email="hello@sentry.io",
url="https://github.com/getsentry/sentry-python",
Expand Down

0 comments on commit fe91f38

Please sign in to comment.