File tree 4 files changed +26
-3
lines changed
4 files changed +26
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.45.0
4
+
5
+ ### Various fixes & improvements
6
+
7
+ - fix(metrics): Change `data_category` from `statsd` to `metric_bucket` (#2954) by @cleptric
8
+ - feat(metrics): New normalization of keys, values, units (#2946) by @sentrivana
9
+ - feat(typing): Make monitor_config a TypedDict (#2931) by @sentrivana
10
+ - feat(metrics): Add value, unit to before_emit_metric (#2958) by @sentrivana
11
+ - chore: Remove experimental metric summary options (#2957) by @sentrivana
12
+ - fix(profiler): Accessing __mro__ might throw a ValueError (#2952) by @sentrivana
13
+ - feat(integrations): Add django signals_denylist to filter signals that are attached to by signals_span (#2758) by @lieryan
14
+ - build(deps): bump types-protobuf from 4.24.0.20240311 to 4.24.0.20240408 (#2941) by @dependabot
15
+ - ref(crons): Remove deprecated `typing` imports (#2945) by @szokeasaurusrex
16
+ - fix(crons): Fix type hints for monitor decorator (#2944) by @szokeasaurusrex
17
+ - Suppress prompt spawned by subprocess when using pythonw (#2936) by @antonpirker
18
+ - fix(integrations): Handle None-value in GraphQL query #2715 (#2762) by @czyber
19
+ - feat: incr -> increment for metrics (#2588) by @mitsuhiko
20
+ - Disable Codecov Check Run Annotations (#2537) by @eliatcodecov
21
+ - Add devenv-requirements.txt and update env setup instructions (#2761) by @arr-ee
22
+ - Do not send "quiet" Sanic exceptions to Sentry. (#2821) by @hamedsh
23
+ - feat(metrics): Implement metric_bucket rate limits (#2933) by @cleptric
24
+ - feat(crons): Allow to upsert monitors (#2929) by @sentrivana
25
+
3
26
## 1.44.1
4
27
5
28
### Various fixes & improvements
Original file line number Diff line number Diff line change 30
30
copyright = "2019-{}, Sentry Team and Contributors" .format (datetime .now ().year )
31
31
author = "Sentry Team and Contributors"
32
32
33
- release = "1.44.1 "
33
+ release = "1.45.0 "
34
34
version = "." .join (release .split ("." )[:2 ]) # The short X.Y version.
35
35
36
36
Original file line number Diff line number Diff line change @@ -335,4 +335,4 @@ def _get_default_options():
335
335
del _get_default_options
336
336
337
337
338
- VERSION = "1.44.1 "
338
+ VERSION = "1.45.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.44.1 " ,
24
+ version = "1.45.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