Skip to content

Commit

Permalink
release: 2.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Jul 15, 2024
1 parent 5bad5c6 commit c45640b
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## 2.10.0

### Various fixes & improvements

- feat(openai): Make tiktoken encoding name configurable + tiktoken usage opt-in (#3289) by @colin-sentry
- feat(pymongo): Send query description as valid JSON (#3291) by @0Calories
- OpenAI: Lazy initialize tiktoken to avoid http at import time (#3287) by @colin-sentry
- ref(consts): Remove Python 2 compatibility code (#3284) by @szokeasaurusrex
- docs(init): Fix `sentry_sdk.init` type hint (#3283) by @szokeasaurusrex
- Add the client cert and key support to HttpTransport (#3258) by @grammy-jiang
- ref(profiling): Deprecate `hub` in `Profile` (#3270) by @szokeasaurusrex
- ref(init): Stop using `Hub` in `init` (#3275) by @szokeasaurusrex
- ref(hub): Delete `_should_send_default_pii` (#3274) by @szokeasaurusrex
- test: Remove `Hub` usage in `conftest` (#3273) by @szokeasaurusrex
- ref(debug): Rename debug logging filter (#3260) by @szokeasaurusrex
- ref(tracing): Update `NoOpSpan.finish` signature (#3267) by @szokeasaurusrex
- ref(tracing): Remove `Hub` in `Transaction.finish` (#3267) by @szokeasaurusrex
- ref: Remove Hub from `capture_internal_exception` logic (#3264) by @szokeasaurusrex
- ref(scope): Improve `Scope._capture_internal_exception` type hint (#3264) by @szokeasaurusrex
- ref(types): Correct `ExcInfo` type (#3266) by @szokeasaurusrex
- ref: Stop using `Hub` in `tracing_utils` (#3269) by @szokeasaurusrex

## 2.9.0

### Various fixes & improvements
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year)
author = "Sentry Team and Contributors"

release = "2.9.0"
release = "2.10.0"
version = ".".join(release.split(".")[:2]) # The short X.Y version.


Expand Down
2 changes: 1 addition & 1 deletion sentry_sdk/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -562,4 +562,4 @@ def _get_default_options():
del _get_default_options


VERSION = "2.9.0"
VERSION = "2.10.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def get_file_text(file_name):

setup(
name="sentry-sdk",
version="2.9.0",
version="2.10.0",
author="Sentry Team and Contributors",
author_email="[email protected]",
url="https://github.com/getsentry/sentry-python",
Expand Down

0 comments on commit c45640b

Please sign in to comment.