Skip to content

Commit a7bb857

Browse files
Merge branch 'release/2.66.0'
2 parents 5ba869c + 5179f60 commit a7bb857

4 files changed

Lines changed: 29 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3+
## 2.66.0
4+
5+
New documentation for enabling streamed spans in the SDK can be found [here](https://docs.sentry.io/platforms/python/tracing/streamed-spans).
6+
7+
### New Features ✨
8+
9+
- (tracing) Promote trace_lifecycle and ignore_spans to top-level options by @ericapisani in [#6821](https://github.com/getsentry/sentry-python/pull/6821)
10+
11+
### Bug Fixes 🐛
12+
13+
#### Tracing
14+
15+
- Skip child span creation in streaming path when no current span (HTTP clients) by @sentrivana in [#6811](https://github.com/getsentry/sentry-python/pull/6811)
16+
- Skip child span creation in streaming path when no current span (task queues) by @sentrivana in [#6814](https://github.com/getsentry/sentry-python/pull/6814)
17+
- Skip child span creation in streaming path when no current span (misc) by @sentrivana in [#6815](https://github.com/getsentry/sentry-python/pull/6815)
18+
- Skip child span creation in streaming path when no current span (databases) by @sentrivana in [#6808](https://github.com/getsentry/sentry-python/pull/6808)
19+
- Skip child span creation in streaming path when no current span (web frameworks) by @sentrivana in [#6810](https://github.com/getsentry/sentry-python/pull/6810)
20+
- Skip child span creation in streaming path when no current span (django) by @sentrivana in [#6809](https://github.com/getsentry/sentry-python/pull/6809)
21+
22+
### Internal Changes 🔧
23+
24+
- (logging) Fix flaky test_logging_captured_warnings by @ericapisani in [#6824](https://github.com/getsentry/sentry-python/pull/6824)
25+
- Remove flaky no cyclic garbage test by @alexander-alderman-webb in [#6817](https://github.com/getsentry/sentry-python/pull/6817)
26+
- Remove Claude permission settings by @cleptric in [#6806](https://github.com/getsentry/sentry-python/pull/6806)
27+
- Move `nullcontext` to `sentry_sdk.utils` by @sentrivana in [#6805](https://github.com/getsentry/sentry-python/pull/6805)
28+
329
## 2.65.0
430

531
### New Features ✨

docs/conf.py

Lines changed: 1 addition & 1 deletion
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.65.0"
34+
release = "2.66.0"
3535
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3636

3737

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1807,4 +1807,4 @@ def _get_default_options() -> "dict[str, Any]":
18071807
del _get_default_options
18081808

18091809

1810-
VERSION = "2.65.0"
1810+
VERSION = "2.66.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def get_file_text(file_name):
2222

2323
setup(
2424
name="sentry-sdk",
25-
version="2.65.0",
25+
version="2.66.0",
2626
author="Sentry Team and Contributors",
2727
author_email="hello@sentry.io",
2828
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)