Skip to content

Releases: getsentry/sentry-python

0.13.5

05 Dec 17:09

Choose a tag to compare

  • Fix trace continuation bugs in APM.
  • No longer report asyncio.CancelledError as part of AIOHTTP integration.

0.13.4

26 Nov 17:05

Choose a tag to compare

  • Fix package classifiers to mark this package as supporting Python 3.8. The SDK supported 3.8 before though.
  • Update schema sent for transaction events (transaction status).
  • Fix a bug where None inside request data was skipped/omitted.

0.13.3

25 Nov 09:10

Choose a tag to compare

  • Fix an issue with the ASGI middleware that would cause Uvicorn to infer the wrong ASGI versions and call the wrapped application with the wrong argument count.
  • Do not ignore the tornado.application logger.
  • The Redis integration now instruments Redis blaster for breadcrumbs and transaction spans.

0.13.2

08 Nov 12:17

Choose a tag to compare

  • Fix a bug in APM that would cause wrong durations to be displayed on non-UTC servers.

0.13.1

25 Oct 08:28

Choose a tag to compare

  • Add new global functions for setting scope/context data.
  • Fix a bug that would make Django 1.11+ apps crash when using function-based middleware.

0.13.0

17 Oct 16:18

Choose a tag to compare

  • Remove an old deprecation warning (behavior itself already changed since a long time).
  • The AIOHTTP integration now attaches the request body to crash reports. Thanks to Vitali Rebkavets!
  • Add an experimental PySpark integration.
  • First release to be tested under Python 3.8. No code changes were necessary though, so previous releases also might have worked.

0.12.3

02 Oct 14:48

Choose a tag to compare

  • Various performance improvements to event sending.
  • Avoid crashes when scope or hub is racy.
  • Revert a change that broke applications using gevent and channels (in the same virtualenv, but different processes).
  • Fix a bug that made the SDK crash on unicode in SQL.

0.12.2

21 Sep 01:17

Choose a tag to compare

  • Fix a crash with ASGI (Django Channels) when the ASGI request type is neither HTTP nor Websockets.

0.12.1

19 Sep 15:31

Choose a tag to compare

  • Temporarily remove sending of SQL parameters (as part of breadcrumbs or spans for APM) to Sentry to avoid memory consumption issues.

0.12.0

18 Sep 13:14

Choose a tag to compare

  • Sentry now has a Discord server! Join the server to get involved into SDK development and ask questions.
  • Fix a bug where the response object for httplib (or requests) was held onto for an unnecessarily long amount of time.
  • APM: Add spans for more methods on subprocess.Popen objects.
  • APM: Add spans for Django middlewares.
  • APM: Add spans for ASGI requests.
  • Automatically inject the ASGI middleware for Django Channels 2.0. This will break your Channels 2.0 application if it is running on Python 3.5 or 3.6 (while previously it would "only" leak a lot of memory for each ASGI request). Install aiocontextvars from PyPI to make it work again.