All Versions
182
Latest Version
Avg Release Cycle
10 days
Latest Release
28 days ago

Changelog History
Page 6

  • v1.9.2 Changes

    ๐Ÿ›  Various fixes & improvements

    • ๐Ÿšš chore: remove quotes (#1545) by @vladanpaunovic
  • v1.9.1 Changes

    ๐Ÿ›  Various fixes & improvements

    • ๐Ÿ›  Fix FastAPI issues (#1532) ( #1514) (#1532) by @antonpirker
    • โž• Add deprecation warning for 3.4, 3.5 (#1541) by @sl0thentr0py
    • โœ… Fast tests (#1504) by @antonpirker
    • ๐Ÿ‘ท Replace Travis CI badge with GitHub Actions badge (#1538) by @153957
    • โšก๏ธ chore(deps): update urllib3 minimum version with environment markers (#1312) by @miketheman
    • โšก๏ธ Update Flask and Quart integrations (#1520) by @pgjones
    • ๐Ÿšš chore: Remove ancient examples from tracing prototype (#1528) by @sl0thentr0py
    • ๐Ÿ›  fix(django): Send correct "url" transaction source if Django resolver fails to resolve (#1525) by @sl0thentr0py
  • v1.9.0 Changes

    ๐Ÿ›  Various fixes & improvements

    • feat(profiler): Add experimental profiler under experiments.enable_profiling (#1481) by @szokeasaurusrex
    • ๐Ÿ›  Fixed problem with broken response and python-multipart (#1516) by @antonpirker
  • v1.8.0 Changes

    ๐Ÿ›  Various fixes & improvements

    • feat(starlette): add Starlette integration (#1441) by @sl0thentr0py

      Important: Remove manual usage of SentryAsgiMiddleware! This is now done by the Starlette integration.

      Usage:

      from starlette.applications import Starlette
      
      from sentry_sdk.integrations.starlette import StarletteIntegration
      
      sentry_sdk.init(
          dsn="...", 
          integrations=[StarletteIntegration()],
      )
      
      app = Starlette(debug=True, routes=[...])
      
    • feat(fastapi): add FastAPI integration (#829) by @antonpirker

      Important: Remove manual usage of SentryAsgiMiddleware! This is now done by the FastAPI integration.

      Usage:

      from fastapi import FastAPI
      
      from sentry_sdk.integrations.starlette import StarletteIntegration
      from sentry_sdk.integrations.fastapi import FastApiIntegration
      
      sentry_sdk.init(
          dsn="...", 
          integrations=[StarletteIntegration(), FastApiIntegration()],
      )
      
      app = FastAPI()
      

      Yes, you have to add both, the StarletteIntegration AND the FastApiIntegration!

    • ๐Ÿ›  fix: avoid sending empty Baggage header (#1507) by @intgr

    • ๐Ÿ›  fix: properly freeze Baggage object (#1508) by @intgr

    • ๐Ÿ“„ docs: fix simple typo, collecter -> collector (#1505) by @timgates42

  • v1.7.2 Changes

    ๐Ÿ›  Various fixes & improvements

    • feat(transactions): Transaction Source (#1490) by @antonpirker
    • โœ‚ Removed (unused) sentry_timestamp header (#1494) by @antonpirker
  • v1.7.1 Changes

    ๐Ÿ›  Various fixes & improvements

    • Skip malformed baggage items (#1491) by @robyoung
  • v1.7.0 Changes

    ๐Ÿ›  Various fixes & improvements

    • feat(tracing): Dynamic Sampling Context / Baggage continuation (#1485) by @sl0thentr0py

    The SDK now propagates the W3C Baggage Header from incoming transactions to outgoing requests.
    It also extracts Sentry specific sampling information and adds it to the transaction headers to enable Dynamic Sampling in the product.

  • v1.6.0 Changes

    ๐Ÿ›  Various fixes & improvements

    • ๐Ÿ›  Fix Deployment (#1474) by @antonpirker
    • Serverless V2 (#1450) by @antonpirker
    • ๐ŸŒฒ Use logging levelno instead of levelname. Levelnames can be overridden (#1449) by @rrauenza
  • v1.5.12 Changes

    ๐Ÿ›  Various fixes & improvements

    • feat(measurements): Add experimental set_measurement api on transaction (#1359) by @sl0thentr0py
    • ๐Ÿ›  fix: Remove incorrect usage from flask helper example (#1434) by @BYK
  • v1.5.11 Changes

    ๐Ÿ›  Various fixes & improvements

    • chore: Bump mypy and fix abstract ContextManager typing (#1421) by @sl0thentr0py
    • ๐Ÿ‘ chore(issues): add link to Sentry support (#1420) by @vladanpaunovic
    • ๐Ÿ›  fix: replace git.io links with redirect targets (#1412) by @asottile-sentry
    • โšก๏ธ ref: Update error verbose for sentry init (#1361) by @targhs
    • ๐Ÿ›  fix(sessions): Update session also for non sampled events and change filter order (#1394) by @adinauer