File tree Expand file tree Collapse file tree 4 files changed +25
-3
lines changed Expand file tree Collapse file tree 4 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
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+
325## 2.9.0
426
527### Various fixes & improvements
Original file line number Diff line number Diff line change 2828copyright = "2019-{}, Sentry Team and Contributors" .format (datetime .now ().year )
2929author = "Sentry Team and Contributors"
3030
31- release = "2.9 .0"
31+ release = "2.10 .0"
3232version = "." .join (release .split ("." )[:2 ]) # The short X.Y version.
3333
3434
Original file line number Diff line number Diff line change @@ -562,4 +562,4 @@ def _get_default_options():
562562del _get_default_options
563563
564564
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):
2121
2222setup (
2323 name = "sentry-sdk" ,
24- version = "2.9 .0" ,
24+ version = "2.10 .0" ,
2525 author = "Sentry Team and Contributors" ,
2626 author_email = "hello@sentry.io" ,
2727 url = "https://github.com/getsentry/sentry-python" ,
You can’t perform that action at this time.
0 commit comments