* WebsocketConsumer now has a http_user option for auto user sessions.
* consumer_started and consumer_finished signals are now available under channels.signals.
* Database connections are closed whenever a consumer finishes.
0.16.0
-------------------
* 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
-------------------
* Class based consumers now have a self.kwargs
* Fixed bug where empty streaming responses did not send headers or status code
0.15.0
-------------------
* Query strings are now decoded entirely by Django. Must be used with Daphne 0.13 or higher.
0.14.3
-------------------
* + signs in query strings are no longer double-decoded
* Message now has .values(), .keys() and .items() to match dict
0.14.2
-------------------
* Class based consumers now have built-in channel_session and channel_session_user support