CHANGES.txt 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. Changes
  2. =======
  3. 0.10.0
  4. ------
  5. * Python 3.4 or newer is now required
  6. * Empty message frames are now supported
  7. * Tokens can now specify a Unix domain socket file to connect to
  8. * Time limits on JWT tokens are now respected
  9. * Whitespace is better tolerated in token files
  10. * Lots of minor fixes...
  11. 0.9.0
  12. -----
  13. * Base64 support removed and binary mode is now required
  14. * Low level WebSocket protocol handling now has its own class
  15. * Authentication now optionally required for web server
  16. * Server hostname can be used as the token
  17. * JWT/JWS/JWE can be used for the token
  18. * redis can be used for the token
  19. * Can now log to syslog
  20. * Improved latency by disabling Nagle for proxied connection
  21. * Added client certificate authentication
  22. * Support for password protected certificate key file
  23. * TLS ciphers and options are now configurable
  24. * Can be invoked via inetd
  25. * Lots of minor fixes...
  26. 0.8.0
  27. -----
  28. * Make websockify properly terminate children on SIGTERM (#226)
  29. * Remove logging in signal handlers (this can cause Python to hang under certain conditions) (#219)
  30. * Make it easier to log to a file (#205)
  31. * Add support for IPv6 addresses in tokens in the TokenFile token plugins (#197)
  32. * Improve auth plugin framework to enable better support for HTTP auth (#194, #201)
  33. * Fix bug in JSONTokenAPI token plugin (#192)
  34. * Fix a missing variable in the exception handler (#178)
  35. 0.7.0
  36. -----
  37. * Python 3 support fixes (#140, #155, #159)
  38. * Generic token-parsing plugins support (#162)
  39. * Generic authentication plugins support (#172)
  40. * Fixed frame corruption on big-endian systems (#161)
  41. * Support heartbeats (via PING) and automatic responses to PONG (#169)
  42. * Automatically reject unmasked client frames by default (strict mode) (#174)
  43. * Automatically restart interrupted select calls (#175)
  44. * Make 'run' respect environment settings (including virtualenv) (#176)
  45. 0.6.1 - May 11, 2015
  46. --------------------
  47. * **PATCH RELEASE**: Fixes a bug causing file_only to not be passed properly
  48. 0.6.0 - Feb 18, 2014
  49. --------------------
  50. * **NOTE** : 0.6.0 will break existing code that sub-classes WebsocketProxy
  51. * Refactor to use standard SocketServer RequestHandler design
  52. * Fix zombie process bug on certain systems when using multiprocessing
  53. * Add better unit tests
  54. * Log information via python `logging` module
  55. 0.5.1 - Jun 27, 2013
  56. --------------------
  57. * use upstream einaros/ws (>=0.4.27) with websockify.js
  58. * file_only and no_parent security options for WSRequestHandler
  59. * Update build of web-socket-js (c0855c6cae)
  60. * add include/web-socket-js-project submodule to gimite/web-socket-js
  61. for DSFG compliance.
  62. * drop Hixie protocol support
  63. 0.4.1 - Mar 12, 2013
  64. --------------------
  65. * ***NOTE*** : 0.5.0 will drop Hixie protocol support
  66. * add include/ directory and remove some dev files from source
  67. distribution.
  68. 0.4.0 - Mar 12, 2013
  69. --------------------
  70. * ***NOTE*** : 0.5.0 will drop Hixie protocol support
  71. * use Buffer base64 support in Node.js implementation
  72. 0.3.0 - Jan 15, 2013
  73. --------------------
  74. * refactor into modules: websocket, websocketproxy
  75. * switch to web-socket-js that uses IETF 6455
  76. * change to MPL 2.0 license for include/*.js
  77. * fix session recording
  78. 0.2.1 - Oct 15, 2012
  79. --------------------
  80. * re-released with updated version number
  81. 0.2.0 - Sep 17, 2012
  82. --------------------
  83. * Binary data support in websock.js
  84. * Target config file/dir and multiple targets with token selector
  85. * IPv6 fixes
  86. * SSL target support
  87. * Proxy to/from unix socket
  88. 0.1.0 - May 11, 2012
  89. --------------------
  90. * Initial versioned release.