You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+35
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,40 @@
1
1
# Changelog
2
2
3
+
## 1.21.0
4
+
5
+
### Various fixes & improvements
6
+
7
+
- Better handling of redis span/breadcrumb data (#2033) by @antonpirker
8
+
9
+
_Note:_ With this release we will limit the description of redis db spans and the data in breadcrumbs represting redis db operations to 1024 characters.
10
+
11
+
This can can lead to truncated data. If you do not want this there is a new parameter `max_data_size` in `RedisIntegration`. You can set this to `None` for disabling trimming.
12
+
13
+
Example for **disabling** trimming of redis commands in spans or breadcrumbs:
14
+
15
+
```python
16
+
sentry_sdk.init(
17
+
integrations=[
18
+
RedisIntegration(max_data_size=None),
19
+
]
20
+
)
21
+
```
22
+
23
+
Example for custom trim size of redis commands in spans or breadcrumbs:
24
+
25
+
```python
26
+
sentry_sdk.init(
27
+
integrations=[
28
+
RedisIntegration(max_data_size=50),
29
+
]
30
+
)`
31
+
32
+
```
33
+
34
+
- Add `db.system` to redis and SQLAlchemy db spans (#2037, #2038, #2039) (#2037) by @AbhiPrasad
35
+
- Upgraded linting tooling (#2026) by @antonpirker
36
+
- Made code more resilient. (#2031) by @antonpirker
0 commit comments