Skip to content

Commit 7bee75f

Browse files
committed
release: 2.15.0
1 parent 1c64ff7 commit 7bee75f

File tree

4 files changed

+34
-3
lines changed

4 files changed

+34
-3
lines changed

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Changelog
22

3+
## 2.15.0
4+
5+
### Various fixes & improvements
6+
7+
- Configure HTTP methods to capture in WSGI middleware and frameworks (#3531) by @antonpirker
8+
- XFail one of the Lambda tests (#3592) by @antonpirker
9+
- allowing ASGI to use drf_request in DjangoRequestExtractor (#3572) by @PakawiNz
10+
- fix(tracing): Fix `add_query_source` with modules outside of project root (#3313) by @rominf
11+
- build(deps): bump actions/checkout from 4.1.7 to 4.2.0 (#3585) by @dependabot
12+
- Test more integrations on 3.13 (#3578) by @sentrivana
13+
- Fix trailing whitespace (#3579) by @sentrivana
14+
- test(aiohttp): Delete test which depends on AIOHTTP behavior (#3568) by @szokeasaurusrex
15+
- feat(starlette): Support new `failed_request_status_codes` (#3563) by @szokeasaurusrex
16+
- ref(aiohttp): Make `DEFUALT_FAILED_REQUEST_STATUS_CODES` private (#3558) by @szokeasaurusrex
17+
- fix(starlette): Fix `failed_request_status_codes=[]` (#3561) by @szokeasaurusrex
18+
- test(starlette): Remove invalid `failed_request_status_code` tests (#3560) by @szokeasaurusrex
19+
- test(starlette): Refactor shared test parametrization (#3562) by @szokeasaurusrex
20+
- feat(aiohttp): Add `failed_request_status_codes` (#3551) by @szokeasaurusrex
21+
- ref(client): Improve `get_integration` typing (#3550) by @szokeasaurusrex
22+
- test: Make import-related tests stable (#3548) by @BYK
23+
- fix: Fix breadcrumb timestamp casting and its tests (#3546) by @BYK
24+
- fix(aiohttp): Handle invalid responses (#3554) by @szokeasaurusrex
25+
- fix(django): Don't let RawPostDataException bubble up (#3553) by @sentrivana
26+
- fix: Don't use deprecated logger.warn (#3552) by @sentrivana
27+
- ci: update actions/upload-artifact to v4 with merge (#3545) by @joshuarli
28+
- tests: Fix cohere API change (#3549) by @BYK
29+
- fixed message (#3536) by @antonpirker
30+
- Removed experimental explain_plan feature. (#3534) by @antonpirker
31+
32+
_Plus 6 more_
33+
334
## 2.14.0
435

536
### Various fixes & improvements

docs/conf.py

+1-1
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.14.0"
31+
release = "2.15.0"
3232
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3333

3434

sentry_sdk/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -566,4 +566,4 @@ def _get_default_options():
566566
del _get_default_options
567567

568568

569-
VERSION = "2.14.0"
569+
VERSION = "2.15.0"

setup.py

+1-1
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.14.0",
24+
version="2.15.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)