Releasing 1.0.3

This commit is contained in:
Andrew Godwin 2017-02-01 12:03:57 -08:00
parent 6d71106c3c
commit 20af4e31b4
4 changed files with 45 additions and 1 deletions

View File

@ -2,6 +2,23 @@ Full release notes, with more details and upgrade information, are available at:
https://channels.readthedocs.io/en/latest/releases
1.0.2 (2017-02-01)
------------------
* Database connections are no longer force-closed after each test is run.
* Channel sessions are not re-saved if they're empty even if they're marked as
modified, allowing logout to work correctly.
* WebsocketDemultiplexer now correctly does sessions for the second/third/etc.
connect and disconnect handlers.
* Request reading timeouts now correctly return 408 rather than erroring out.
* The ``rundelay`` delay server now only polls the database once per second,
and this interval is configurable with the ``--sleep`` option.
1.0.2 (2017-01-12)
------------------

View File

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

26
docs/releases/1.0.3.rst Normal file
View File

@ -0,0 +1,26 @@
1.0.3 Release Notes
===================
Channels 1.0.3 is a minor bugfix release, released on 2017/02/01.
Changes
-------
* Database connections are no longer force-closed after each test is run.
* Channel sessions are not re-saved if they're empty even if they're marked as
modified, allowing logout to work correctly.
* WebsocketDemultiplexer now correctly does sessions for the second/third/etc.
connect and disconnect handlers.
* Request reading timeouts now correctly return 408 rather than erroring out.
* The ``rundelay`` delay server now only polls the database once per second,
and this interval is configurable with the ``--sleep`` option.
Backwards Incompatible Changes
------------------------------
None.

View File

@ -7,3 +7,4 @@ Release Notes
1.0.0
1.0.1
1.0.2
1.0.3