Skip to content

Commit 4bec867

Browse files
author
getsentry-bot
committed
Merge branch 'release/2.2.0'
2 parents 06efff3 + 1475b34 commit 4bec867

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CHANGELOG.md

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

3+
## 2.2.0
4+
5+
### New features
6+
7+
- Celery integration now sends additional data to Sentry to enable new features to guage the health of your queues
8+
- Added a new integration for Cohere
9+
- Reintroduced the `last_event_id` function, which had been removed in 2.0.0
10+
11+
### Other fixes & improvements
12+
13+
- Add tags + data passing functionality to @ai_track (#3071) by @colin-sentry
14+
- fix(tracing): Only propagate headers from spans within transactions (#3070) by @szokeasaurusrex
15+
- ref(metrics): Improve type hints for set metrics (#3048) by @elramen
16+
- ref(scope): Fix `get_client` typing (#3063) by @szokeasaurusrex
17+
- Auto-enable Anthropic integration + gate imports (#3054) by @colin-sentry
18+
- Made MeasurementValue.unit NotRequired (#3051) by @antonpirker
19+
320
## 2.1.1
421

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

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.1.1"
31+
release = "2.2.0"
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
@@ -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

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.1.1",
24+
version="2.2.0",
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)