Skip to content

2.36.0

Compare
Choose a tag to compare
@sentry-release-bot sentry-release-bot released this 04 Sep 07:56

Various fixes & improvements

  • New integration: Unraisable exceptions (#4733) by @alexander-alderman-webb

    Add the unraisable exception integration to your sentry_sdk.init call:

import sentry_sdk
from sentry_sdk.integrations.unraisablehook import UnraisablehookIntegration

sentry_sdk.init(
    dsn="...",
    integrations=[
        UnraisablehookIntegration(),
    ]
)