File tree 4 files changed +21
-3
lines changed
4 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
21
## 2.16.0
4
22
5
23
### Integrations
Original file line number Diff line number Diff line change 31
31
copyright = "2019-{}, Sentry Team and Contributors" .format (datetime .now ().year )
32
32
author = "Sentry Team and Contributors"
33
33
34
- release = "2.16 .0"
34
+ release = "2.17 .0"
35
35
version = "." .join (release .split ("." )[:2 ]) # The short X.Y version.
36
36
37
37
Original file line number Diff line number Diff line change @@ -574,4 +574,4 @@ def _get_default_options():
574
574
del _get_default_options
575
575
576
576
577
- VERSION = "2.16 .0"
577
+ VERSION = "2.17 .0"
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ def get_file_text(file_name):
21
21
22
22
setup (
23
23
name = "sentry-sdk" ,
24
- version = "2.16 .0" ,
24
+ version = "2.17 .0" ,
25
25
author = "Sentry Team and Contributors" ,
26
26
27
27
url = "https://github.com/getsentry/sentry-python" ,
You can’t perform that action at this time.
0 commit comments