Skip to content

Commit ee30db3

Browse files
committed
release: 2.17.0
1 parent 365d9cf commit ee30db3

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

Diff for: CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## 2.17.0
4+
5+
### Various fixes & improvements
6+
7+
- Fix flaky transport test (#3666) by @sentrivana
8+
- Add support for async calls in Anthropic and OpenAI integration (#3497) by @vetyy
9+
- fix(spotlight): More defensive Django spotlight middleware injection (#3665) by @BYK
10+
- Allow custom transaction names in asgi (#3664) by @sl0thentr0py
11+
- tests: Falcon RC1 (#3662) by @sentrivana
12+
- build(deps): Remove pin on sphinx (#3650) by @dependabot
13+
- build(deps): bump actions/checkout from 4.2.0 to 4.2.1 (#3651) by @dependabot
14+
- fix(langchain): handle case when parent span wasn't traced (#3656) by @rbasoalto
15+
- Fix mypy (#3657) by @sentrivana
16+
- Fix Anthropic integration when using tool calls (#3615) by @kwnath
17+
- Test with newer Falcon version (#3653) by @sentrivana
18+
- feat(falcon): Run test suite with Falcon 4.0.0b3 (#3644) by @sentrivana
19+
- Remove ensure_integration_enabled_async (#3632) by @sentrivana
20+
321
## 2.16.0
422

523
### Integrations

Diff for: 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.16.0"
34+
release = "2.17.0"
3535
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3636

3737

Diff for: sentry_sdk/consts.py

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

576576

577-
VERSION = "2.16.0"
577+
VERSION = "2.17.0"

Diff for: 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.16.0",
24+
version="2.17.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)