Skip to content

Commit b96b473

Browse files
committed
release: 2.0.0rc5
1 parent ddac03c commit b96b473

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3+
## 2.0.0rc5
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: Remove outdated version pins (#2690) by @sentrivana
14+
- ref(tests): Remove `debug=True` from tests (#2934) by @sentrivana
15+
- feat(integrations): Add django signals_denylist to filter signals that are attached to by signals_span (#2758) by @lieryan
16+
- build(deps): bump types-protobuf from 4.24.0.20240311 to 4.24.0.20240408 (#2941) by @dependabot
17+
- ref(crons): Remove deprecated `typing` imports (#2945) by @szokeasaurusrex
18+
- fix(crons): Fix type hints for monitor decorator (#2944) by @szokeasaurusrex
19+
- Suppress prompt spawned by subprocess when using pythonw (#2936) by @antonpirker
20+
- fix(integrations): Handle None-value in GraphQL query #2715 (#2762) by @czyber
21+
- feat: incr -> increment for metrics (#2588) by @mitsuhiko
22+
- Disable Codecov Check Run Annotations (#2537) by @eliatcodecov
23+
- Add devenv-requirements.txt and update env setup instructions (#2761) by @arr-ee
24+
- Do not send "quiet" Sanic exceptions to Sentry. (#2821) by @hamedsh
25+
- feat(metrics): Implement metric_bucket rate limits (#2933) by @cleptric
26+
- Update CHANGELOG.md (#2963) by @sentrivana
27+
- release: 1.44.1 (#2963) by @sentrivana
28+
329
## 2.0.0rc4
430

531
## New Features

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year)
2929
author = "Sentry Team and Contributors"
3030

31-
release = "2.0.0rc4"
31+
release = "2.0.0rc5"
3232
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3333

3434

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,4 +345,4 @@ def _get_default_options():
345345
del _get_default_options
346346

347347

348-
VERSION = "2.0.0rc4"
348+
VERSION = "2.0.0rc5"

setup.py

Lines changed: 1 addition & 1 deletion
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="2.0.0rc4",
24+
version="2.0.0rc5",
2525
author="Sentry Team and Contributors",
2626
author_email="hello@sentry.io",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)