From 20af4e31b401c6589daeac26fbca89e1b512da97 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Wed, 1 Feb 2017 12:03:57 -0800 Subject: [PATCH] Releasing 1.0.3 --- CHANGELOG.txt | 17 +++++++++++++++++ channels/__init__.py | 2 +- docs/releases/1.0.3.rst | 26 ++++++++++++++++++++++++++ docs/releases/index.rst | 1 + 4 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 docs/releases/1.0.3.rst diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 692c470..079c411 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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) ------------------ diff --git a/channels/__init__.py b/channels/__init__.py index 3ba52f8..f3e910f 100644 --- a/channels/__init__.py +++ b/channels/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.0.2" +__version__ = "1.0.3" default_app_config = 'channels.apps.ChannelsConfig' DEFAULT_CHANNEL_LAYER = 'default' diff --git a/docs/releases/1.0.3.rst b/docs/releases/1.0.3.rst new file mode 100644 index 0000000..8179168 --- /dev/null +++ b/docs/releases/1.0.3.rst @@ -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. diff --git a/docs/releases/index.rst b/docs/releases/index.rst index 856f565..f4f57a5 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -7,3 +7,4 @@ Release Notes 1.0.0 1.0.1 1.0.2 + 1.0.3