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
+52Lines changed: 52 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,6 +83,58 @@
83
83
- Passing a function to `sentry_sdk.init`'s `transport` keyword argument has been deprecated. If you wish to provide a custom transport, please pass a `sentry_sdk.transport.Transport` instance or a subclass.
84
84
- The parameter `propagate_hub` in `ThreadingIntegration()` was deprecated and renamed to `propagate_scope`.
85
85
86
+
## 1.41.0
87
+
88
+
### Various fixes & improvements
89
+
90
+
- Add recursive scrubbing to `EventScrubber` (#2755) by @Cheapshot003
91
+
92
+
By default, the `EventScrubber` will not search your events for potential
93
+
PII recursively. With this release, you can enable this behavior with:
94
+
95
+
```python
96
+
import sentry_sdk
97
+
from sentry_sdk.scrubber import EventScrubber
98
+
99
+
sentry_sdk.init(
100
+
# ...your usual settings...
101
+
event_scrubber=EventScrubber(recursive=True),
102
+
)
103
+
```
104
+
105
+
- Expose `socket_options` (#2786) by @sentrivana
106
+
107
+
If the SDK is experiencing connection issues (connection resets, server
108
+
closing connection without response, etc.) while sending events to Sentry,
109
+
tweaking the default `urllib3` socket options to the following can help:
0 commit comments