File tree 4 files changed +24
-3
lines changed
4 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 2.26.0
4
+
5
+ ### Various fixes & improvements
6
+
7
+ - fix(debug): Do not consider parent loggers for debug logging (#4286) by @szokeasaurusrex
8
+ - test(tracing): Simplify static/classmethod tracing tests (#4278) by @szokeasaurusrex
9
+ - feat(transport): Add a timeout (#4252) by @sentrivana
10
+ - meta: Change CODEOWNERS back to Python SDK owners (#4269) by @sentrivana
11
+ - feat(logs): Add sdk name and version as log attributes (#4262) by @AbhiPrasad
12
+ - feat(logs): Add server.address to logs (#4257) by @AbhiPrasad
13
+ - chore: Deprecate `same_process_as_parent` (#4244) by @sentrivana
14
+ - feat(logs): Add sentry.origin attribute for log handler (#4250) by @AbhiPrasad
15
+ - feat(tests): Add optional cutoff to toxgen (#4243) by @sentrivana
16
+ - toxgen: Retry & fail if we fail to fetch PyPI data (#4251) by @sentrivana
17
+ - build(deps): bump actions/create-github-app-token from 1.12.0 to 2.0.2 (#4248) by @dependabot
18
+ - Trying to prevent the grpc setup from being flaky (#4233) by @antonpirker
19
+ - feat(breadcrumbs): add `_meta` information for truncation of breadcrumbs (#4007) by @shellmayr
20
+ - tests: Move django under toxgen (#4238) by @sentrivana
21
+ - fix: Handle JSONDecodeError gracefully in StarletteRequestExtractor (#4226) by @moodix
22
+ - fix(asyncio): Remove shutdown handler (#4237) by @sentrivana
23
+
3
24
## 2.25.1
4
25
5
26
### Various fixes & improvements
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.25.1 "
34
+ release = "2.26.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 @@ -966,4 +966,4 @@ def _get_default_options():
966
966
del _get_default_options
967
967
968
968
969
- VERSION = "2.25.1 "
969
+ VERSION = "2.26.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.25.1 " ,
24
+ version = "2.26.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