mirror of
https://github.com/django/daphne.git
synced 2025-07-14 01:42:17 +03:00
Releasing 0.9.3
This commit is contained in:
parent
b129adf4a4
commit
cdde27b55a
|
@ -1,3 +1,11 @@
|
||||||
|
0.9.3 (2016-02-28)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
* Static file serving is significantly faster thanks to larger chunk size
|
||||||
|
|
||||||
|
* `runworker` now refuses to start if an in memory layer is configured
|
||||||
|
|
||||||
|
|
||||||
0.9.2 (2016-02-28)
|
0.9.2 (2016-02-28)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
__version__ = "0.9.2"
|
__version__ = "0.9.3"
|
||||||
|
|
||||||
default_app_config = 'channels.apps.ChannelsConfig'
|
default_app_config = 'channels.apps.ChannelsConfig'
|
||||||
DEFAULT_CHANNEL_LAYER = 'default'
|
DEFAULT_CHANNEL_LAYER = 'default'
|
||||||
|
|
|
@ -35,4 +35,3 @@ Contents:
|
||||||
integration-plan
|
integration-plan
|
||||||
faqs
|
faqs
|
||||||
asgi
|
asgi
|
||||||
releases/index
|
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
0.8 (2015-09-10)
|
|
||||||
----------------
|
|
||||||
|
|
||||||
This release reworks a few of the core concepts to make the channel layer
|
|
||||||
more efficient and user friendly:
|
|
||||||
|
|
||||||
* Channel names now do not start with ``django``, and are instead just ``http.request``, etc.
|
|
||||||
|
|
||||||
* HTTP headers/GET/etc are only sent with ``websocket.connect`` rather than all websocket requests,
|
|
||||||
to save a lot of bandwidth in the channel layer.
|
|
||||||
|
|
||||||
* The session/user decorators were renamed, and a ``@channel_session_user`` and ``transfer_user`` set of functions
|
|
||||||
added to allow moving the user details from the HTTP session to the channel session in the ``connect`` consumer.
|
|
||||||
|
|
||||||
* A ``@linearize`` decorator was added to help ensure a ``connect``/``receive`` pair are not executed
|
|
||||||
simultaneously on two different workers.
|
|
||||||
|
|
||||||
* Channel backends gained locking mechanisms to support the ``linearize`` feature.
|
|
||||||
|
|
||||||
* ``runwsserver`` will use asyncio rather than Twisted if it's available.
|
|
||||||
|
|
||||||
* Message formats have been made a bit more consistent.
|
|
|
@ -1,7 +0,0 @@
|
||||||
Release Notes
|
|
||||||
-------------
|
|
||||||
|
|
||||||
.. toctree::
|
|
||||||
:maxdepth: 1
|
|
||||||
|
|
||||||
0.8
|
|
Loading…
Reference in New Issue
Block a user