Skip to content

Commit

Permalink
Updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
antonpirker committed May 5, 2023
1 parent e073807 commit 917ef8f
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,24 @@
### Various fixes & improvements

- Add `cache.hit` and `cache.item_size` to Django (#2057) by @antonpirker
- Use functools.wrap for ThreadingIntegration patches to fix attributes (#2080) by @EpicWink
- Handle non-int exc.status_code in starlette (#2075) by @sentrivana
- fix(crons): Fix KeyError in capture_checkin if SDK is not initialized (#2073) by @antonpirker
- Handle sqlalchemy engine.name being bytes (#2074) by @sentrivana
- feat: Use `http.method` instead of `method` (#2054) by @AbhiPrasad
- Pin urllib3 to <2.0.0 for now (#2069) by @sl0thentr0py

_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:

```python
sentry_sdk.init(
dsn="...",
integrations=[
DjangoIntegration(cache_spans=False),
]
)
```

- Use `http.method` instead of `method` (#2054) by @AbhiPrasad
- Handle non-int `exc.status_code` in Starlette (#2075) by @sentrivana
- Handle SQLAlchemy `engine.name` being bytes (#2074) by @sentrivana
- Fix `KeyError` in `capture_checkin` if SDK is not initialized (#2073) by @antonpirker
- Use `functools.wrap` for `ThreadingIntegration` patches to fix attributes (#2080) by @EpicWink
- Pin `urllib3` to <2.0.0 for now (#2069) by @sl0thentr0py

## 1.21.1

Expand Down

0 comments on commit 917ef8f

Please sign in to comment.