Skip to content

Commit 7570e39

Browse files
committed
release: 1.45.0
1 parent e22abb6 commit 7570e39

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
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

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year)
3131
author = "Sentry Team and Contributors"
3232

33-
release = "1.44.1"
33+
release = "1.45.0"
3434
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3535

3636

sentry_sdk/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -335,4 +335,4 @@ def _get_default_options():
335335
del _get_default_options
336336

337337

338-
VERSION = "1.44.1"
338+
VERSION = "1.45.0"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def get_file_text(file_name):
2121

2222
setup(
2323
name="sentry-sdk",
24-
version="1.44.1",
24+
version="1.45.0",
2525
author="Sentry Team and Contributors",
2626
author_email="[email protected]",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)