File tree 4 files changed +20
-3
lines changed
4 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
20
## 2.1.1
4
21
5
22
- Fix trace propagation in Celery tasks started by Celery Beat. (#3047) by @antonpirker
Original file line number Diff line number Diff line change 28
28
copyright = "2019-{}, Sentry Team and Contributors" .format (datetime .now ().year )
29
29
author = "Sentry Team and Contributors"
30
30
31
- release = "2.1.1 "
31
+ release = "2.2.0 "
32
32
version = "." .join (release .split ("." )[:2 ]) # The short X.Y version.
33
33
34
34
Original file line number Diff line number Diff line change @@ -488,4 +488,4 @@ def _get_default_options():
488
488
del _get_default_options
489
489
490
490
491
- VERSION = "2.1.1 "
491
+ VERSION = "2.2.0 "
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ def get_file_text(file_name):
21
21
22
22
setup (
23
23
name = "sentry-sdk" ,
24
- version = "2.1.1 " ,
24
+ version = "2.2.0 " ,
25
25
author = "Sentry Team and Contributors" ,
26
26
author_email = "hello@sentry.io" ,
27
27
url = "https://github.com/getsentry/sentry-python" ,
You can’t perform that action at this time.
0 commit comments