Skip to content

Commit 54d2c7e

Browse files
committed
release: 2.26.0
1 parent 5689bc0 commit 54d2c7e

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## 2.26.0
4+
5+
### Various fixes & improvements
6+
7+
- fix(debug): Do not consider parent loggers for debug logging (#4286) by @szokeasaurusrex
8+
- test(tracing): Simplify static/classmethod tracing tests (#4278) by @szokeasaurusrex
9+
- feat(transport): Add a timeout (#4252) by @sentrivana
10+
- meta: Change CODEOWNERS back to Python SDK owners (#4269) by @sentrivana
11+
- feat(logs): Add sdk name and version as log attributes (#4262) by @AbhiPrasad
12+
- feat(logs): Add server.address to logs (#4257) by @AbhiPrasad
13+
- chore: Deprecate `same_process_as_parent` (#4244) by @sentrivana
14+
- feat(logs): Add sentry.origin attribute for log handler (#4250) by @AbhiPrasad
15+
- feat(tests): Add optional cutoff to toxgen (#4243) by @sentrivana
16+
- toxgen: Retry & fail if we fail to fetch PyPI data (#4251) by @sentrivana
17+
- build(deps): bump actions/create-github-app-token from 1.12.0 to 2.0.2 (#4248) by @dependabot
18+
- Trying to prevent the grpc setup from being flaky (#4233) by @antonpirker
19+
- feat(breadcrumbs): add `_meta` information for truncation of breadcrumbs (#4007) by @shellmayr
20+
- tests: Move django under toxgen (#4238) by @sentrivana
21+
- fix: Handle JSONDecodeError gracefully in StarletteRequestExtractor (#4226) by @moodix
22+
- fix(asyncio): Remove shutdown handler (#4237) by @sentrivana
23+
324
## 2.25.1
425

526
### Various fixes & improvements

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year)
3232
author = "Sentry Team and Contributors"
3333

34-
release = "2.25.1"
34+
release = "2.26.0"
3535
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3636

3737

sentry_sdk/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -966,4 +966,4 @@ def _get_default_options():
966966
del _get_default_options
967967

968968

969-
VERSION = "2.25.1"
969+
VERSION = "2.26.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.25.1",
24+
version="2.26.0",
2525
author="Sentry Team and Contributors",
2626
author_email="hello@sentry.io",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)