Skip to content

Tags: oopos/lua-nginx-module

Tags

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.

v0.5.0rc10

Toggle v0.5.0rc10's commit message
Merge branch 'master' of github.com:chaoslawful/lua-nginx-module

v0.5.0rc9

Toggle v0.5.0rc9's commit message
bugfix: now we require the SHA1 library in the "config" file.

v0.5.0rc8

Toggle v0.5.0rc8's commit message
Merge branch 'devel'

v0.5.0rc7

Toggle v0.5.0rc7's commit message
bugfix: cosocket API could not be used before ngx.location.capture an…

…d its friends for fast network access: tcpsock:send() method did not reset u->waiting properly. thanks 欧远宁.