diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d6050b50e..52a91fa911 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/docs/conf.py b/docs/conf.py index ed2fe5b452..fc485b9d9a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index d09802bdd6..9a7823dbfb 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -563,4 +563,4 @@ def _get_default_options(): del _get_default_options -VERSION = "2.10.0" +VERSION = "2.11.0" diff --git a/setup.py b/setup.py index f419737d36..0cea2dd51d 100644 --- a/setup.py +++ b/setup.py @@ -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",