Skip to content

Commit b382f4a

Browse files
release: 2.69.2
1 parent efd9e7f commit b382f4a

4 files changed

Lines changed: 46 additions & 3 deletions

File tree

CHANGELOG.md

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

3+
## 2.69.2
4+
5+
### Bug Fixes 🐛
6+
7+
- (aws-lambda) Attach user info when streaming spans by @sentrivana in [#7429](https://github.com/getsentry/sentry-python/pull/7429)
8+
- (bottle) Avoid infinite serializing loop by @sentrivana in [#7511](https://github.com/getsentry/sentry-python/pull/7511)
9+
- (clickhouse_driver) Only set `db.result` in breadcrumb with sensitive data opt-in by @alexander-alderman-webb in [#7432](https://github.com/getsentry/sentry-python/pull/7432)
10+
- (google-genai) Tolerate `None` candidates by @alexander-alderman-webb in [#7519](https://github.com/getsentry/sentry-python/pull/7519)
11+
- (pydantic-ai) Stop capturing tool execution spans when validation fails by @alexander-alderman-webb in [#7448](https://github.com/getsentry/sentry-python/pull/7448)
12+
- (serializer) Add type annotations to databag limits by @8rulerstar in [#7505](https://github.com/getsentry/sentry-python/pull/7505)
13+
- (tracing) Make `functions_to_trace` work when streaming spans by @sentrivana in [#7430](https://github.com/getsentry/sentry-python/pull/7430)
14+
- (typing) Fix `disabled_integrations` type by @sentrivana in [#7506](https://github.com/getsentry/sentry-python/pull/7506)
15+
- Don't attach stacktrace to check-ins by @sentrivana in [#7497](https://github.com/getsentry/sentry-python/pull/7497)
16+
17+
### Documentation 📚
18+
19+
- Update span streaming docstrings by @sentrivana in [#7463](https://github.com/getsentry/sentry-python/pull/7463)
20+
21+
### Internal Changes 🔧
22+
23+
#### Huggingface Hub
24+
25+
- Parametrize tests on the streaming trace lifecycle by @alexander-alderman-webb in [#7436](https://github.com/getsentry/sentry-python/pull/7436)
26+
- Only check relevant data with `ApproxDict` by @alexander-alderman-webb in [#7434](https://github.com/getsentry/sentry-python/pull/7434)
27+
28+
#### Pydantic Ai
29+
30+
- Remove vacuous `_set_model_data()` tests by @alexander-alderman-webb in [#7453](https://github.com/getsentry/sentry-python/pull/7453)
31+
- Remove vacuous `_set_agent_data()` tests by @alexander-alderman-webb in [#7450](https://github.com/getsentry/sentry-python/pull/7450)
32+
33+
#### Other
34+
35+
- (deps) Lock file maintenance by @renovate in [#7302](https://github.com/getsentry/sentry-python/pull/7302)
36+
- (django) Fix flaky cache tests by using uuid for cache LOCATION by @sentry-junior in [#7444](https://github.com/getsentry/sentry-python/pull/7444)
37+
- (pymongo) Raise `maxWireVersion` by @alexander-alderman-webb in [#7473](https://github.com/getsentry/sentry-python/pull/7473)
38+
- Remove unused base64 utils by @sentrivana in [#7495](https://github.com/getsentry/sentry-python/pull/7495)
39+
- 🤖 Update test matrix with new releases (09/14) by @github-actions in [#7486](https://github.com/getsentry/sentry-python/pull/7486)
40+
- 🤖 Update test matrix with new releases (09/07) by @github-actions in [#7399](https://github.com/getsentry/sentry-python/pull/7399)
41+
42+
### Other
43+
44+
- Skip formatting log records when Sentry logs are off by @gyanu2507 in [#7422](https://github.com/getsentry/sentry-python/pull/7422)
45+
346
## 2.69.1
447

548
### 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.69.1"
34+
release = "2.69.2"
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
@@ -1848,4 +1848,4 @@ def _get_default_options() -> "dict[str, Any]":
18481848
del _get_default_options
18491849

18501850

1851-
VERSION = "2.69.1"
1851+
VERSION = "2.69.2"

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