File tree Expand file tree Collapse file tree 4 files changed +21
-3
lines changed Expand file tree Collapse file tree 4 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.14.0
4
+
5
+ ### Various fixes & improvements
6
+
7
+ - Removed code coverage target (#1862 ) by @antonpirker
8
+ - feat(profiling): Add profile context to transaction (#1860 ) by @Zylphrex
9
+ - Always remove Django session related cookies. (#1842 ) by @antonpirker
10
+ - Make sure to noop when there is no DSN (#1852 ) by @antonpirker
11
+ - feat(profiling): Use co_qualname in python 3.11 (#1831 ) by @Zylphrex
12
+ - Fix middleware being patched multiple times when using FastAPI (#1841 ) by @JohnnyDeuss
13
+ - fix(opentelemetry): Use dict for sentry-trace context instead of tuple (#1847 ) by @AbhiPrasad
14
+ - fix extra dependency (#1825 ) by @bernardotorres
15
+ - Avoid import of pkg_resource with Starlette integration (#1836 ) by @mgu
16
+ - Add ` before_send_transaction ` (#1840 ) by @antonpirker
17
+ - feat(profiling): Enable profiling for ASGI frameworks (#1824 ) by @Zylphrex
18
+ - feat(profiling): Better gevent support (#1822 ) by @Zylphrex
19
+ - fix(otel): NoOpSpan updates scope (#1834 ) by @Zylphrex
20
+
3
21
## 1.13.0
4
22
5
23
### 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.13 .0"
32
+ release = "1.14 .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 @@ -144,4 +144,4 @@ def _get_default_options():
144
144
del _get_default_options
145
145
146
146
147
- VERSION = "1.13 .0"
147
+ VERSION = "1.14 .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.13 .0" ,
24
+ version = "1.14 .0" ,
25
25
author = "Sentry Team and Contributors" ,
26
26
author_email = "hello@sentry.io" ,
27
27
url = "https://github.com/getsentry/sentry-python" ,
You can’t perform that action at this time.
0 commit comments