Skip to content

Commit

Permalink
Updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
antonpirker committed Jan 23, 2023
1 parent f095df7 commit 8c4a19a
Showing 1 changed file with 32 additions and 12 deletions.
44 changes: 32 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,39 @@

### Various fixes & improvements

- Removed code coverage target (#1862) by @antonpirker
- feat(profiling): Add profile context to transaction (#1860) by @Zylphrex
- Always remove Django session related cookies. (#1842) by @antonpirker
- Make sure to noop when there is no DSN (#1852) by @antonpirker
- feat(profiling): Use co_qualname in python 3.11 (#1831) by @Zylphrex
- Fix middleware being patched multiple times when using FastAPI (#1841) by @JohnnyDeuss
- fix(opentelemetry): Use dict for sentry-trace context instead of tuple (#1847) by @AbhiPrasad
- fix extra dependency (#1825) by @bernardotorres
- Avoid import of pkg_resource with Starlette integration (#1836) by @mgu
- Add `before_send_transaction` (#1840) by @antonpirker
- feat(profiling): Enable profiling for ASGI frameworks (#1824) by @Zylphrex
- feat(profiling): Better gevent support (#1822) by @Zylphrex
- fix(otel): NoOpSpan updates scope (#1834) by @Zylphrex

Adds a hook (similar to `before_send`) that is called for all transaction events (performance releated data).

Usage:

```python
import sentry_sdk

def strip_sensitive_data(event, hint):
# modify event here (or return `None` if you want to drop the event entirely)
return event

sentry_sdk.init(
# ...
before_send_transaction=strip_sensitive_data,
)
```

See also: https://docs.sentry.io/platforms/python/configuration/filtering/#using-platformidentifier-namebefore-send-transaction-

- Django: Always remove values of Django session related cookies. (#1842) by @antonpirker
- Profiling: Enable profiling for ASGI frameworks (#1824) by @Zylphrex
- Profiling: Better gevent support (#1822) by @Zylphrex
- Profiling: Add profile context to transaction (#1860) by @Zylphrex
- Profiling: Use co_qualname in python 3.11 (#1831) by @Zylphrex
- OpenTelemetry: fix Use dict for sentry-trace context instead of tuple (#1847) by @AbhiPrasad
- OpenTelemetry: fix extra dependency (#1825) by @bernardotorres
- OpenTelemetry: fix NoOpSpan updates scope (#1834) by @Zylphrex
- OpenTelemetry: Make sure to noop when there is no DSN (#1852) by @antonpirker
- FastAPI: Fix middleware being patched multiple times (#1841) by @JohnnyDeuss
- Starlette: Avoid import of pkg_resource with Starlette integration (#1836) by @mgu
- Removed code coverage target (#1862) by @antonpirker

## 1.13.0

Expand Down

0 comments on commit 8c4a19a

Please sign in to comment.