-
Notifications
You must be signed in to change notification settings - Fork 514
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(integrations): Support Django 5.0 #2490
Conversation
…try/sentry-python into antonpirker/django_asgi_read_body
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, besides the small comments I left regarding deprecated portions of typing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Please consider something similar for Django v5.1b1 which was released today. |
Run our Django test suite on Django 5.0 (beta) and make sure the tests pass.
Fix the way we wrap signal receivers: Django 5.0 introduced async receivers and changed the signature of the
Signal._live_receivers
method to return both sync and async receivers. We are just ignoring the async receivers in this PR (and not wrapping them to create spans) since ASGI Django doesn't create transactions.We'll need to change the Django version in tox.ini to 5.0 once it's been released. At the moment we're using the 5.0b1 release.
See #2489
Closes #2383