mirror of
https://github.com/django/daphne.git
synced 2025-06-05 13:43:27 +03:00
Releasing 1.0.3
This commit is contained in:
parent
6d71106c3c
commit
20af4e31b4
|
@ -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)
|
||||
------------------
|
||||
|
||||
|
|
|
@ -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
26
docs/releases/1.0.3.rst
Normal 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.
|
|
@ -7,3 +7,4 @@ Release Notes
|
|||
1.0.0
|
||||
1.0.1
|
||||
1.0.2
|
||||
1.0.3
|
||||
|
|
Loading…
Reference in New Issue
Block a user