Skip to content

Commit 24f6bf7

Browse files
authored
Update CHANGELOG.md
1 parent f50bec5 commit 24f6bf7

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@
88
- Allow integrations to define control flow exceptions by @sentrivana in [#6425](https://github.com/getsentry/sentry-python/pull/6425)
99
- Disable string truncation for events by default by @alexander-alderman-webb in [#6290](https://github.com/getsentry/sentry-python/pull/6290)
1010

11+
Following a previous significant increase of the string truncation limit, we've now completely removed the limit by default.
12+
In case you have large strings in your events, you should now be able to see them.
13+
14+
In rare cases, if you have really long strings (or a lot of them), you might see envelopes being dropped because of their size.
15+
If that happens, you can set the `max_value_length` `init` option to the previous value of `100_000`:
16+
17+
```python
18+
sentry_sdk.init(
19+
...,
20+
max_value_length=100_000,
21+
)
22+
```
23+
1124
### Bug Fixes 🐛
1225

1326
#### Langchain
@@ -49,7 +62,7 @@
4962
triggering side-effects from custom `__iter__` implementations.
5063

5164
This might mean some objects might be serialized differently. If you want to continue serializing a specific
52-
custom sequence class, you can register it via `sentry_sdk.serializer.add_repr_sequence_type` (see
65+
custom sequence class the old way, you can register it via `sentry_sdk.serializer.add_repr_sequence_type` (see
5366
[here](https://github.com/getsentry/sentry-python/blob/54f768680cad8a40ab97be4dddd16c12c9cba493/sentry_sdk/serializer.py#L60-L61)).
5467

5568
- Memory leak in SentrySpanProcessor by @volodkindv in [#6271](https://github.com/getsentry/sentry-python/pull/6271)

0 commit comments

Comments
 (0)