From aa5e7dd48f98d34ac0a0556a6550dfeefe1e3bc2 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Sun, 8 Jan 2017 17:14:28 -0800 Subject: [PATCH] Releasing 1.0.0 --- CHANGELOG.txt | 21 +++++++++++++++++++++ daphne/__init__.py | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 6c794e7..ea287ad 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,24 @@ +1.0.0 (2017-01-08) +------------------ + +* BREAKING CHANGE: Daphne now requires acceptance of WebSocket connections + before it finishes the socket handshake and relays incoming packets. + You must upgrade to at least Channels 1.0.0 as well; see + http://channels.readthedocs.io/en/latest/releases/1.0.0.html for more. + +* http.disconnect now has a `path` key + +* WebSockets can now be closed with a specific code + +* X-Forwarded-For header support; defaults to X-Forwarded-For, override with + --proxy-headers on the commandline. + +* Twisted endpoint description string support with `-e` on the command line + (allowing for SNI/ACME support, among other things) + +* Logging/error verbosity fixes and access log flushes properly + + 0.15.0 (2016-08-28) ------------------- diff --git a/daphne/__init__.py b/daphne/__init__.py index 9da2f8f..5becc17 100755 --- a/daphne/__init__.py +++ b/daphne/__init__.py @@ -1 +1 @@ -__version__ = "0.15.0" +__version__ = "1.0.0"