File tree 4 files changed +20
-3
lines changed
4 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.17.0
4
+
5
+ ### Various fixes & improvements
6
+
7
+ - Add support for Sentry Crons to Celery Beat (#1935 ) by @antonpirker
8
+ - Add decorator for Sentry tracing (#1089 ) by @ynouri
9
+ - Added top level API to get current span (#1954 ) by @antonpirker
10
+ - feat(profiling): Add profiler options to init (#1947 ) by @Zylphrex
11
+ - Start a real http server instead of mocking libs (#1938 ) by @antonpirker
12
+ - feat(profiling): Set active thread id for quart (#1830 ) by @Zylphrex
13
+ - 🎨 Fix type annotation for ignore_errors in sentry_sdk.init() (#1928 ) by @tiangolo
14
+ - Update get_json function call for werkzeug 2.1.0+ (#1939 ) by @michielderoos
15
+ - fix: Rename MYPY to TYPE_CHECKING (#1934 ) by @untitaker
16
+ - Rename 'with_locals' to 'include_local_variables' (#1924 ) by @antonpirker
17
+ - Returning the tasks result. (#1931 ) by @antonpirker
18
+ - Make Django signals tracing optional (#1929 ) by @antonpirker
19
+
3
20
## 1.16.0
4
21
5
22
### Various fixes & improvements
Original file line number Diff line number Diff line change 29
29
copyright = "2019, Sentry Team and Contributors"
30
30
author = "Sentry Team and Contributors"
31
31
32
- release = "1.16 .0"
32
+ release = "1.17 .0"
33
33
version = "." .join (release .split ("." )[:2 ]) # The short X.Y version.
34
34
35
35
Original file line number Diff line number Diff line change @@ -156,4 +156,4 @@ def _get_default_options():
156
156
del _get_default_options
157
157
158
158
159
- VERSION = "1.16 .0"
159
+ VERSION = "1.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 = "1.16 .0" ,
24
+ version = "1.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