Skip to content

Tags: raybejjani/lua-nginx-module

Tags

v0.7.6rc2

Toggle v0.7.6rc2's commit message
bugfix: the "light thread" object created by ngx.thread.spawn() might… … be prematurely collected by the Lua GC because we did not correctly register its coroutine object into the Lua regsitry table. this bug may crash the Lua VM and nginx workers under load. thanks Zhu Dejiang for reporting this issue.

v0.7.6rc1

Toggle v0.7.6rc1's commit message
bugfix: ngx.thread.wait() might hang infinitely when more than 4 user… … "light threads" are created in the same request handler due to the incorrect use of ngx_array_t for ngx_list_t. thanks Junwei Shi for reporting this issue.

v0.7.5

Toggle v0.7.5's commit message
bumped version to 0.7.5. 

v0.7.5rc1

Toggle v0.7.5rc1's commit message
bugfix: ngx.log() would truncate the log messages with a null charact… …er (\0) in it. thanks Wang Xi for reporting this issue.

v0.7.4

Toggle v0.7.4's commit message
documented lua_check_client_abort and ngx.on_abort; also bumped versi… …on to 0.7.4.

v0.7.3

Toggle v0.7.3's commit message
documented the new shdict:get_keys() API. also bumped version to 0.7.3. 

v0.7.2

Toggle v0.7.2's commit message
bumped version to 0.7.2. 

v0.7.1

Toggle v0.7.1's commit message
docs: massive wording improvements from Dayo. also bumped version to … …0.7.1.

v0.7.1rc1

Toggle v0.7.1rc1's commit message
bugfix: ngx.re.gsub() might throw out the "attempt to call a string v… …alue" exception when the "replace" argument is a Lua function and the subject string is large. thanks Zhu Maohai for reporting this issue.

v0.7.0

Toggle v0.7.0's commit message
docs: documented the new ngx.thread API. also fixed the __newindex me… …tamethod definition for catching writes to undeclared global varaibles in a Lua module.