Commit 5be47b0e authored by Wandenberg's avatar Wandenberg

update version to 0.4.1

parent e6f12845
h1(#changelog). Changelog h1(#changelog). Changelog
h2. Version 0.4.1
* Fix to not send a trailing comma on jsonp object
* Fix pushstream.js log messages when firebug is opened after the page was loaded on Firefox
* Changed pushstream.js license to MIT
* Fix DoS on message formatter when text contains huge number of template patterns (Thanks _Buglloc_)
* Fix send messages through WebSocket connection when the server is using kqueue
* Ensure all queue members are initialized to not produce errors on calling remove function, without insert them on a queue
* Fix to be possible compile with clang
* Fix stuck connections when sending only header responses
* Fix socket leak on reload process for sockets used in inter process communication and connections
h2. Version 0.4.0 h2. Version 0.4.0
* Added support to use variables as value on push_stream_allowed_origins directive * Added support to use variables as value on push_stream_allowed_origins directive
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#ifndef NGX_HTTP_PUSH_STREAM_MODULE_VERSION_H_ #ifndef NGX_HTTP_PUSH_STREAM_MODULE_VERSION_H_
#define NGX_HTTP_PUSH_STREAM_MODULE_VERSION_H_ #define NGX_HTTP_PUSH_STREAM_MODULE_VERSION_H_
static const ngx_str_t NGX_HTTP_PUSH_STREAM_TAG = ngx_string("0.4.0"); static const ngx_str_t NGX_HTTP_PUSH_STREAM_TAG = ngx_string("0.4.1");
static const ngx_str_t NGX_HTTP_PUSH_STREAM_COMMIT = ngx_string("022a5c4188e4b3df03c8c173647d88e81093f136"); static const ngx_str_t NGX_HTTP_PUSH_STREAM_COMMIT = ngx_string("e6f1284577495b070e9f2fc51be21fad53606311");
#endif /* NGX_HTTP_PUSH_STREAM_MODULE_VERSION_H_ */ #endif /* NGX_HTTP_PUSH_STREAM_MODULE_VERSION_H_ */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment