소스 검색

Fixed #31182 -- Adjusted release notes for ASGI support.

Adam Johnson 5 년 전
부모
커밋
a6b3938afc
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      docs/releases/3.0.txt

+ 5 - 0
docs/releases/3.0.txt

@@ -54,6 +54,11 @@ This is in addition to our existing WSGI support. Django intends to support
 both for the foreseeable future. Async features will only be available to
 applications that run under ASGI, however.
 
+At this stage async support only applies to the outer ASGI application.
+Internally everything remains synchronous. Asynchronous middleware, views, etc.
+are not yet supported. You can, however, use ASGI middleware around Django's
+application, allowing you to combine Django with other ASGI frameworks.
+
 There is no need to switch your applications over unless you want to start
 experimenting with asynchronous code, but we have
 :doc:`documentation on deploying with ASGI </howto/deployment/asgi/index>` if