Skip to content

Commit e600e9d

Browse files
committed
release: 2.0.0rc4
1 parent 1c229f2 commit e600e9d

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed

CHANGELOG.md

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

3+
## 2.0.0rc4
4+
5+
### Better async support (ongoing)
6+
7+
By: @sentrivana (#2912)
8+
9+
### Various fixes & improvements
10+
11+
- feat(crons): Allow to upsert monitors (#2929) by @sentrivana
12+
- fix(types): Fixed `Event | None` runtime `TypeError` (#2928) by @szokeasaurusrex
13+
- docs: Document top-level `start_transaction` function (#2924) by @colin-sentry
14+
- ref(integrations): Use `ensure_integration_enabled` decorator (#2906) by @sentrivana
15+
- docs: Document Transaction and Span kwargs typed dicts (#2923) by @colin-sentry
16+
- ref(otel): Use new scopes API (#2865) by @sentrivana
17+
- docs: Document arguments for `Span` (#2919) by @colin-sentry
18+
- docs: Move transaction __init__ doc comment content (#2918) by @colin-sentry
19+
- Update and cleanup Celery integration (#2891) by @antonpirker
20+
- ref: Remove deprecated `Transaction` creation method (#2917) by @colin-sentry
21+
- Revert "ref: Remove deprecated `Transaction` creation method" (#2911) by @colin-sentry
22+
- ref: Remove deprecated `Transaction` creation method (#2911) by @colin-sentry
23+
- ref: Correct `api.start_transaction` method signature (#2905) by @szokeasaurusrex
24+
- Update CHANGELOG.md (4d8db718) by @szokeasaurusrex
25+
- release: 1.44.0 (a4e44fa6) by @getsentry-bot
26+
- ref(tornado): Use new scopes API (#2907) by @sentrivana
27+
- ref(socket): Use new scopes API (#2915) by @colin-sentry
28+
- ref: Define types at runtime (#2914) by @szokeasaurusrex
29+
- Explicit reexport of types (#2866) (#2913) by @szokeasaurusrex
30+
- ref(beam): Use new scopes API (#2879) by @sentrivana
31+
- ref(starlite): Use new scopes API (#2876) by @sentrivana
32+
- ref(sanic): Use new scopes API (#2875) by @sentrivana
33+
- ref: `ensure_integration_enabled` without original function (#2893) by @szokeasaurusrex
34+
- ref(arq): Use new scopes API (#2878) by @sentrivana
35+
36+
_Plus 30 more_
37+
338
## 2.0.0rc3
439

540
### Various fixes & improvements

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.0rc3"
31+
release = "2.0.0rc4"
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
@@ -343,4 +343,4 @@ def _get_default_options():
343343
del _get_default_options
344344

345345

346-
VERSION = "2.0.0rc3"
346+
VERSION = "2.0.0rc4"

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.0rc3",
24+
version="2.0.0rc4",
2525
author="Sentry Team and Contributors",
2626
author_email="[email protected]",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)