Skip to content

Commit c45640b

Browse files
committed
release: 2.10.0
1 parent 5bad5c6 commit c45640b

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
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

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.9.0"
31+
release = "2.10.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
@@ -562,4 +562,4 @@ def _get_default_options():
562562
del _get_default_options
563563

564564

565-
VERSION = "2.9.0"
565+
VERSION = "2.10.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.9.0",
24+
version="2.10.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)