File tree Expand file tree Collapse file tree 4 files changed +27
-3
lines changed Expand file tree Collapse file tree 4 files changed +27
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.9.9
4
+
5
+ ### Django update (ongoing)
6
+
7
+ * Support Django 4.0
8
+ * include other Django enhancements brought up by the community
9
+
10
+ By: @BeryJu (#1526 )
11
+
12
+ ### Various fixes & improvements
13
+
14
+ - fix(profiling): Profiler mode type hints (#1633 ) by @Zylphrex
15
+ - New ASGIMiddleware tests (#1600 ) by @antonpirker
16
+ - build(deps): bump mypy from 0.961 to 0.971 (#1517 ) by @dependabot
17
+ - build(deps): bump black from 22.3.0 to 22.8.0 (#1596 ) by @dependabot
18
+ - build(deps): bump sphinx from 5.0.2 to 5.1.1 (#1524 ) by @dependabot
19
+ - ref: upgrade linters to flake8 5.x (#1610 ) by @asottile-sentry
20
+ - feat(profiling): Introduce different profiler schedulers (#1616 ) by @Zylphrex
21
+ - fix(profiling): Check transaction sampled status before profiling (#1624 ) by @Zylphrex
22
+ - Wrap Baggage ser/deser in capture_internal_exceptions (#1630 ) by @sl0thentr0py
23
+ - Faster Tests (DjangoCon) (#1602 ) by @antonpirker
24
+ - feat(profiling): Add support for profiles_sample_rate (#1613 ) by @Zylphrex
25
+ - feat(profiling): Support for multithreaded profiles (#1570 ) by @Zylphrex
26
+
3
27
## 1.9.8
4
28
5
29
### 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.9.8 "
32
+ release = "1.9.9 "
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 @@ -104,7 +104,7 @@ def _get_default_options():
104
104
del _get_default_options
105
105
106
106
107
- VERSION = "1.9.8 "
107
+ VERSION = "1.9.9 "
108
108
SDK_INFO = {
109
109
"name" : "sentry.python" ,
110
110
"version" : VERSION ,
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.9.8 " ,
24
+ version = "1.9.9 " ,
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