From 917ef8faa03c73cae397a9d8b20cb3a8ff9c6829 Mon Sep 17 00:00:00 2001 From: Anton Pirker Date: Fri, 5 May 2023 13:58:44 +0200 Subject: [PATCH] Updated changelog --- CHANGELOG.md | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0904557e05..61327a82a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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