From 7bee75f86d9c4cd0d33be1c9e49cf202ab8bd9b9 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Tue, 1 Oct 2024 12:38:19 +0000 Subject: [PATCH] release: 2.15.0 --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 34 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fa0621afb..13e3edf902 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # Changelog +## 2.15.0 + +### Various fixes & improvements + +- Configure HTTP methods to capture in WSGI middleware and frameworks (#3531) by @antonpirker +- XFail one of the Lambda tests (#3592) by @antonpirker +- allowing ASGI to use drf_request in DjangoRequestExtractor (#3572) by @PakawiNz +- fix(tracing): Fix `add_query_source` with modules outside of project root (#3313) by @rominf +- build(deps): bump actions/checkout from 4.1.7 to 4.2.0 (#3585) by @dependabot +- Test more integrations on 3.13 (#3578) by @sentrivana +- Fix trailing whitespace (#3579) by @sentrivana +- test(aiohttp): Delete test which depends on AIOHTTP behavior (#3568) by @szokeasaurusrex +- feat(starlette): Support new `failed_request_status_codes` (#3563) by @szokeasaurusrex +- ref(aiohttp): Make `DEFUALT_FAILED_REQUEST_STATUS_CODES` private (#3558) by @szokeasaurusrex +- fix(starlette): Fix `failed_request_status_codes=[]` (#3561) by @szokeasaurusrex +- test(starlette): Remove invalid `failed_request_status_code` tests (#3560) by @szokeasaurusrex +- test(starlette): Refactor shared test parametrization (#3562) by @szokeasaurusrex +- feat(aiohttp): Add `failed_request_status_codes` (#3551) by @szokeasaurusrex +- ref(client): Improve `get_integration` typing (#3550) by @szokeasaurusrex +- test: Make import-related tests stable (#3548) by @BYK +- fix: Fix breadcrumb timestamp casting and its tests (#3546) by @BYK +- fix(aiohttp): Handle invalid responses (#3554) by @szokeasaurusrex +- fix(django): Don't let RawPostDataException bubble up (#3553) by @sentrivana +- fix: Don't use deprecated logger.warn (#3552) by @sentrivana +- ci: update actions/upload-artifact to v4 with merge (#3545) by @joshuarli +- tests: Fix cohere API change (#3549) by @BYK +- fixed message (#3536) by @antonpirker +- Removed experimental explain_plan feature. (#3534) by @antonpirker + +_Plus 6 more_ + ## 2.14.0 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 875dfcb575..c1a219e278 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.14.0" +release = "2.15.0" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 803b159299..b0be144659 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -566,4 +566,4 @@ def _get_default_options(): del _get_default_options -VERSION = "2.14.0" +VERSION = "2.15.0" diff --git a/setup.py b/setup.py index c11b6b771e..b5be538292 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="2.14.0", + version="2.15.0", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",