Skip to content

Commit e20c226

Browse files
release: 2.66.1
1 parent 4524b65 commit e20c226

4 files changed

Lines changed: 27 additions & 3 deletions

File tree

CHANGELOG.md

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

3+
## 2.66.1
4+
5+
### New Features ✨
6+
7+
- (tracing) Send `sentry.segment.name.source` instead of `sentry.span.source` attribute by @Lms24 in [#6835](https://github.com/getsentry/sentry-python/pull/6835)
8+
9+
### Bug Fixes 🐛
10+
11+
#### Tracing
12+
13+
- Stop setting `NoOpSpan` on scope in the streaming trace lifecycle by @alexander-alderman-webb in [#6844](https://github.com/getsentry/sentry-python/pull/6844)
14+
- Handle exceptions raised within traces_sampler and other callbacks by @ericapisani in [#6853](https://github.com/getsentry/sentry-python/pull/6853)
15+
16+
### Internal Changes 🔧
17+
18+
- Use top-level `trace_lifecycle` and `ignore_spans` options in tests by @sentrivana in [#6855](https://github.com/getsentry/sentry-python/pull/6855)
19+
- Use old sampling context format in span streaming by @sentrivana in [#6848](https://github.com/getsentry/sentry-python/pull/6848)
20+
- Add streaming tests to `test_http_headers` by @sentrivana in [#6785](https://github.com/getsentry/sentry-python/pull/6785)
21+
- Fix flaky decorator test by @sl0thentr0py in [#6830](https://github.com/getsentry/sentry-python/pull/6830)
22+
23+
### Other
24+
25+
- remove span streaming docs in changelog by @ericapisani in [#6831](https://github.com/getsentry/sentry-python/pull/6831)
26+
327
## 2.66.0
428

529
### 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.66.0"
34+
release = "2.66.1"
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.66.0"
1810+
VERSION = "2.66.1"

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.66.0",
25+
version="2.66.1",
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)