Update dependency asgiref to v3.6.0
This MR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| asgiref (changelog) |
==3.5.2 -> ==3.6.0
|
Release Notes
django/asgiref
v3.6.0
-
Two new functions are added to the
asgiref.syncmodule:iscoroutinefunction()andmarkcoroutinefunction().Python 3.12 deprecates
asyncio.iscoroutinefunction()as an alias forinspect.iscoroutinefunction(), whilst also removing the_is_coroutinemarker. The latter is replaced with theinspect.markcoroutinefunctiondecorator.The new
asgiref.syncfunctions are compatibility shims for these functions that can be used until Python 3.12 is the minimum supported version.Note that these functions are considered beta, and as such, whilst not likely, are subject to change in a point release, until the final release of Python 3.12. They are included in
asgirefnow so that they can be adopted by Django 4.2, in preparation for support of Python 3.12. -
The
loopargument toasgiref.timeout.timeoutis deprecated. As per otherasynciobased APIs, the running event loop is used by default. Note thatasyncioprovides timeout utilities from Python 3.11, and these should be preferred where available. -
Support for the
ASGI_THREADSenvironment variable, used bySyncToAsync, is removed. In general, a running event-loop is not available toasgirefat import time, and so the default thread pool executor cannot be configured. Protocol servers, or applications, should set the default executor as required when configuring the event loop at application startup.
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.