websockify 0.9.0
This commit is contained in:
parent
4ed68eab97
commit
654cbac77e
17
CHANGES.txt
17
CHANGES.txt
|
|
@ -1,6 +1,23 @@
|
||||||
Changes
|
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
|
0.8.0
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -1,6 +1,6 @@
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
version = '0.8.0'
|
version = '0.9.0'
|
||||||
name = 'websockify'
|
name = 'websockify'
|
||||||
long_description = open("README.md").read() + "\n" + \
|
long_description = open("README.md").read() + "\n" + \
|
||||||
open("CHANGES.txt").read() + "\n"
|
open("CHANGES.txt").read() + "\n"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue