mirror of
https://github.com/django/daphne.git
synced 2025-04-20 08:42:18 +03:00
Releasing 0.16.0
This commit is contained in:
parent
d37f9d1ab3
commit
9cebff05ab
|
@ -1,3 +1,13 @@
|
|||
0.16.0 (2016-07-06)
|
||||
-------------------
|
||||
|
||||
* websocket.connect and websocket.receive are now consumed by a no-op consumer
|
||||
by default if you don't specify anything to consume it, to bring Channels in
|
||||
line with the ASGI rules on WebSocket backpressure.
|
||||
|
||||
* You no longer need to call super's setUp in ChannelTestCase.
|
||||
|
||||
|
||||
0.15.1 (2016-06-29)
|
||||
-------------------
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
__version__ = "0.15.1"
|
||||
__version__ = "0.16.0"
|
||||
|
||||
default_app_config = 'channels.apps.ChannelsConfig'
|
||||
DEFAULT_CHANNEL_LAYER = 'default'
|
||||
|
|
|
@ -708,7 +708,7 @@ Connection
|
|||
|
||||
Sent when the client initially opens a connection and completes the
|
||||
WebSocket handshake. If sending this raises ``ChannelFull``, the interface
|
||||
server must drop the WebSocket connection and send no more messages about it.
|
||||
server must close the WebSocket connection with error code 1013.
|
||||
|
||||
Channel: ``websocket.connect``
|
||||
|
||||
|
@ -749,7 +749,8 @@ Receive
|
|||
'''''''
|
||||
|
||||
Sent when a data frame is received from the client. If ``ChannelFull`` is
|
||||
raised, wait and try again.
|
||||
raised, you may retry sending it but if it does not send the socket must
|
||||
be closed with websocket error code 1013.
|
||||
|
||||
Channel: ``websocket.receive``
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user