Skip to content

Commit 573d321

Browse files
committed
release: 2.2.0
1 parent 06efff3 commit 573d321

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## 2.2.0
4+
5+
### Various fixes & improvements
6+
7+
- Add tags + data passing functionality to @ai_track (#3071) by @colin-sentry
8+
- feat: Add `last_event_id` to top-level api (#3064) by @szokeasaurusrex
9+
- feat(scope): Add last_event_id to Scope (#3064) by @szokeasaurusrex
10+
- fix(tracing): Only propagate headers from spans within transactions (#3070) by @szokeasaurusrex
11+
- feat(celery): Set "messaging.system" on span (#3024) by @szokeasaurusrex
12+
- feat(celery): Set task ID on span (#3015) by @szokeasaurusrex
13+
- feat: Send Celery retry count (#2971) by @szokeasaurusrex
14+
- feat(celery): Send queue name to Sentry (#2984) by @szokeasaurusrex
15+
- ref(metrics): Improve type hints for set metrics (#3048) by @elramen
16+
- feat(ai-monitoring): Cohere integration (#3055) by @colin-sentry
17+
- ref(scope): Fix `get_client` typing (#3063) by @szokeasaurusrex
18+
- Auto-enable Anthropic integration + gate imports (#3054) by @colin-sentry
19+
- Made MeasurementValue.unit NotRequired (#3051) by @antonpirker
20+
321
## 2.1.1
422

523
- Fix trace propagation in Celery tasks started by Celery Beat. (#3047) by @antonpirker

docs/conf.py

+1-1
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.1.1"
31+
release = "2.2.0"
3232
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3333

3434

sentry_sdk/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -488,4 +488,4 @@ def _get_default_options():
488488
del _get_default_options
489489

490490

491-
VERSION = "2.1.1"
491+
VERSION = "2.2.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="2.1.1",
24+
version="2.2.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)