File tree Expand file tree Collapse file tree 4 files changed +26
-3
lines changed Expand file tree Collapse file tree 4 files changed +26
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
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+
326## 1.44.1
427
528### Various fixes & improvements
Original file line number Diff line number Diff line change 3030copyright = "2019-{}, Sentry Team and Contributors" .format (datetime .now ().year )
3131author = "Sentry Team and Contributors"
3232
33- release = "1.44.1 "
33+ release = "1.45.0 "
3434version = "." .join (release .split ("." )[:2 ]) # The short X.Y version.
3535
3636
Original file line number Diff line number Diff line change @@ -335,4 +335,4 @@ def _get_default_options():
335335del _get_default_options
336336
337337
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):
2121
2222setup (
2323 name = "sentry-sdk" ,
24- version = "1.44.1 " ,
24+ version = "1.45.0 " ,
2525 author = "Sentry Team and Contributors" ,
2626 author_email = "hello@sentry.io" ,
2727 url = "https://github.com/getsentry/sentry-python" ,
You can’t perform that action at this time.
0 commit comments