Skip to content

Tags: kprog/lua-nginx-module

Tags

v0.5.0rc20

Toggle v0.5.0rc20's commit message
fixed a coding style issue: we did not declare C variables at the beg…

…inning of the current code block in ngx_http_lua_del_thread, reported by runner-mei in github issue openresty#93.

v0.5.0rc19

Toggle v0.5.0rc19's commit message
updated docs to reflect recent changes.

v0.5.0rc18

Toggle v0.5.0rc18's commit message
optimize: now we recycle the special flush buf and chain link for ngx…

….flush() to prevent request-scoped memory leaks when emitting long data streams to the downstream.

v0.5.0rc17

Toggle v0.5.0rc17's commit message
bugfix: timestamp could overflow on 32-bit systems in the shared dict…

… API; now we use 64-bit integers.

v0.5.0rc16

Toggle v0.5.0rc16's commit message
updated docs to reflect recent changes.

v0.5.0rc15

Toggle v0.5.0rc15's commit message
bumped the version number in docs.

v0.5.0rc14

Toggle v0.5.0rc14's commit message
updated docs to reflect recent changes.

v0.5.0rc13

Toggle v0.5.0rc13's commit message
bugfix: when the parent request takes a request body, the subrequest …

…does not take any bodies, and the subrequest's method is neither "PUT" nor "POST", then the subrequest will no longer inherit the parent request's request body. thanks 欧远宁 for reporting this issue.

v0.5.0rc12

Toggle v0.5.0rc12's commit message
bugfix: data might be accidentally read into the lua space on idle so…

…ckets when the last operation is a read operation *and* a read event suddenly arrives for edge-triggered event models. the same might also apply to write operations too. bugfix: invalid reads might happen in the reading iterators returned by the receiveuntil() method which could lead to segfaults.

v0.5.0rc11

Toggle v0.5.0rc11's commit message
added tests for the various "lua socket blah blah timed out" error me…

…ssages; also tweaked other cosocket test cases for different test modes.