File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
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)
You can’t perform that action at this time.
0 commit comments