Skip to content

Commit 0a8ef92

Browse files
committed
release: 2.18.0
1 parent dd1117d commit 0a8ef92

File tree

4 files changed

+32
-3
lines changed

4 files changed

+32
-3
lines changed

CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Changelog
22

3+
## 2.18.0
4+
5+
### Various fixes & improvements
6+
7+
- Add LaunchDarkly and OpenFeature integration (#3648) by @cmanallen
8+
- docs(hub): Correct typo in a comment (#3726) by @szokeasaurusrex
9+
- fix(tracing): End http.client span on timeout (#3723) by @Zylphrex
10+
- test: Fix UTC assuming test (#3722) by @BYK
11+
- fix(http2): Check for h2 existence (#3690) by @BYK
12+
- fix(profiling): Use `type()` instead when extracting frames (#3716) by @Zylphrex
13+
- test(tornado): Unpin `pytest` for `tornado-latest` tests (#3714) by @szokeasaurusrex
14+
- fix(starlette): Prefer python_multipart import over multipart (#3710) by @musicinmybrain
15+
- test(redis): Install `pytest-asyncio` for `redis` tests (Python 3.12-13) (#3706) by @szokeasaurusrex
16+
- ci: Clarify that only pinned tests are required (#3713) by @szokeasaurusrex
17+
- test(rq): Remove accidentally-committed print (#3712) by @szokeasaurusrex
18+
- test: Disable broken RQ test in newly-released RQ 2.0 (#3708) by @szokeasaurusrex
19+
- test(tox): Unpin `pytest` for `celery` tests (#3701) by @szokeasaurusrex
20+
- test(tox): Unpin `pytest` on Python 3.8+ `gevent` tests (#3700) by @szokeasaurusrex
21+
- ci(tox): Unpin `pytest` for Python 3.8+ `common` tests (#3697) by @szokeasaurusrex
22+
- ci: Run license compliance action on all PRs (#3699) by @szokeasaurusrex
23+
- ci: Run CodeQL action on all PRs (#3698) by @szokeasaurusrex
24+
- build: Remove pytest pin in requirements-devenv.txt (#3696) by @szokeasaurusrex
25+
- ci(tox): Exclude fakeredis 2.26.0 on py3.6 and 3.7 (#3695) by @szokeasaurusrex
26+
- fix(profiling): Update active thread for asgi (#3669) by @Zylphrex
27+
- tests: Test with Falcon 4.0 (#3684) by @sentrivana
28+
- fix(HTTP2Transport): Only enable HTTP2 when DSN is HTTPS (#3678) by @BYK
29+
- fix(strawberry): prepare for upstream extension removal (#3649) by @DoctorJohn
30+
- docs(sdk): Enhance README with improved clarity and developer-friendly examples (#3667) by @UTSAVS26
31+
332
## 2.17.0
433

534
### Various fixes & improvements

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year)
3232
author = "Sentry Team and Contributors"
3333

34-
release = "2.17.0"
34+
release = "2.18.0"
3535
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3636

3737

sentry_sdk/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -575,4 +575,4 @@ def _get_default_options():
575575
del _get_default_options
576576

577577

578-
VERSION = "2.17.0"
578+
VERSION = "2.18.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.17.0",
24+
version="2.18.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)