From 654cbac77ea07819ed3bcf1ce6410be0211c0f1a Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Tue, 13 Aug 2019 13:37:54 +0200 Subject: [PATCH] websockify 0.9.0 --- CHANGES.txt | 17 +++++++++++++++++ setup.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index 10f1ca8..a440576 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,23 @@ Changes ======= +0.9.0 +----- + +* Base64 support removed and binary mode is now required +* Low level WebSocket protocol handling now has its own class +* Authentication now optionally required for web server +* Server hostname can be used as the token +* JWT/JWS/JWE can be used for the token +* redis can be used for the token +* Can now log to syslog +* Improved latency by disabling Nagle for proxied connection +* Added client certificate authentication +* Support for password protected certificate key file +* TLS ciphers and options are now configurable +* Can be invoked via inetd +* Lots of minor fixes... + 0.8.0 ----- diff --git a/setup.py b/setup.py index defccd7..b487172 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = '0.8.0' +version = '0.9.0' name = 'websockify' long_description = open("README.md").read() + "\n" + \ open("CHANGES.txt").read() + "\n"