File tree 4 files changed +25
-3
lines changed
4 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 2.10.0
4
+
5
+ ### Various fixes & improvements
6
+
7
+ - feat(openai): Make tiktoken encoding name configurable + tiktoken usage opt-in (#3289) by @colin-sentry
8
+ - feat(pymongo): Send query description as valid JSON (#3291) by @0Calories
9
+ - OpenAI: Lazy initialize tiktoken to avoid http at import time (#3287) by @colin-sentry
10
+ - ref(consts): Remove Python 2 compatibility code (#3284) by @szokeasaurusrex
11
+ - docs(init): Fix `sentry_sdk.init` type hint (#3283) by @szokeasaurusrex
12
+ - Add the client cert and key support to HttpTransport (#3258) by @grammy-jiang
13
+ - ref(profiling): Deprecate `hub` in `Profile` (#3270) by @szokeasaurusrex
14
+ - ref(init): Stop using `Hub` in `init` (#3275) by @szokeasaurusrex
15
+ - ref(hub): Delete `_should_send_default_pii` (#3274) by @szokeasaurusrex
16
+ - test: Remove `Hub` usage in `conftest` (#3273) by @szokeasaurusrex
17
+ - ref(debug): Rename debug logging filter (#3260) by @szokeasaurusrex
18
+ - ref(tracing): Update `NoOpSpan.finish` signature (#3267) by @szokeasaurusrex
19
+ - ref(tracing): Remove `Hub` in `Transaction.finish` (#3267) by @szokeasaurusrex
20
+ - ref: Remove Hub from `capture_internal_exception` logic (#3264) by @szokeasaurusrex
21
+ - ref(scope): Improve `Scope._capture_internal_exception` type hint (#3264) by @szokeasaurusrex
22
+ - ref(types): Correct `ExcInfo` type (#3266) by @szokeasaurusrex
23
+ - ref: Stop using `Hub` in `tracing_utils` (#3269) by @szokeasaurusrex
24
+
3
25
## 2.9.0
4
26
5
27
### Various fixes & improvements
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.9 .0"
31
+ release = "2.10 .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 @@ -562,4 +562,4 @@ def _get_default_options():
562
562
del _get_default_options
563
563
564
564
565
- VERSION = "2.9 .0"
565
+ VERSION = "2.10 .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.9 .0" ,
24
+ version = "2.10 .0" ,
25
25
author = "Sentry Team and Contributors" ,
26
26
27
27
url = "https://github.com/getsentry/sentry-python" ,
You can’t perform that action at this time.
0 commit comments