Skip to content

Commit cfe3167

Browse files
author
getsentry-bot
committed
Merge branch 'release/2.17.0'
2 parents 365d9cf + e44c9ee commit cfe3167

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## 2.17.0
4+
5+
### Various fixes & improvements
6+
7+
- Add support for async calls in Anthropic and OpenAI integration (#3497) by @vetyy
8+
- Allow custom transaction names in ASGI (#3664) by @sl0thentr0py
9+
- Langchain: Handle case when parent span wasn't traced (#3656) by @rbasoalto
10+
- Fix Anthropic integration when using tool calls (#3615) by @kwnath
11+
- More defensive Django Spotlight middleware injection (#3665) by @BYK
12+
- Remove `ensure_integration_enabled_async` (#3632) by @sentrivana
13+
- Test with newer Falcon version (#3644, #3653, #3662) by @sentrivana
14+
- Fix mypy (#3657) by @sentrivana
15+
- Fix flaky transport test (#3666) by @sentrivana
16+
- Remove pin on `sphinx` (#3650) by @sentrivana
17+
- Bump `actions/checkout` from `4.2.0` to `4.2.1` (#3651) by @dependabot
18+
319
## 2.16.0
420

521
### Integrations

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

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"

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)