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
+18-6Lines changed: 18 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5,12 +5,24 @@
5
5
### Various fixes & improvements
6
6
7
7
- Add `cache.hit` and `cache.item_size` to Django (#2057) by @antonpirker
8
-
- Use functools.wrap for ThreadingIntegration patches to fix attributes (#2080) by @EpicWink
9
-
- Handle non-int exc.status_code in starlette (#2075) by @sentrivana
10
-
- fix(crons): Fix KeyError in capture_checkin if SDK is not initialized (#2073) by @antonpirker
11
-
- Handle sqlalchemy engine.name being bytes (#2074) by @sentrivana
12
-
- feat: Use `http.method` instead of `method` (#2054) by @AbhiPrasad
13
-
- Pin urllib3 to <2.0.0 for now (#2069) by @sl0thentr0py
8
+
9
+
_Note:_ This will add spans for all requests to the caches configured in Django. This will probably add some overhead to your server an also add multiple spans to your performance waterfall diagrams. If you do not want this, you can disable this feature in the DjangoIntegration:
10
+
11
+
```python
12
+
sentry_sdk.init(
13
+
dsn="...",
14
+
integrations=[
15
+
DjangoIntegration(cache_spans=False),
16
+
]
17
+
)
18
+
```
19
+
20
+
- Use `http.method` instead of `method` (#2054) by @AbhiPrasad
21
+
- Handle non-int `exc.status_code` in Starlette (#2075) by @sentrivana
22
+
- Handle SQLAlchemy `engine.name` being bytes (#2074) by @sentrivana
23
+
- Fix `KeyError` in `capture_checkin` if SDK is not initialized (#2073) by @antonpirker
24
+
- Use `functools.wrap` for `ThreadingIntegration` patches to fix attributes (#2080) by @EpicWink
25
+
- Pin `urllib3` to <2.0.0 for now (#2069) by @sl0thentr0py
0 commit comments