Releasing 0.16.0

This commit is contained in:
Andrew Godwin 2016-07-06 12:10:41 -07:00
parent d37f9d1ab3
commit 9cebff05ab
3 changed files with 14 additions and 3 deletions

View File

@ -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)
-------------------

View File

@ -1,4 +1,4 @@
__version__ = "0.15.1"
__version__ = "0.16.0"
default_app_config = 'channels.apps.ChannelsConfig'
DEFAULT_CHANNEL_LAYER = 'default'

View File

@ -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``