| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-07-06 | 1.4 kB | |
| v0.18.0 source code.tar.gz | 2026-07-06 | 49.2 kB | |
| v0.18.0 source code.zip | 2026-07-06 | 72.0 kB | |
| Totals: 3 Items | 122.6 kB | 0 | |
What's Changed
- feat: Add W3C trace context support by @sriemer in https://github.com/ledgetech/lua-resty-http/pull/340 (fixed in https://github.com/ledgetech/lua-resty-http/pull/345)
- fix: Gate W3C trace support to request phases with ngx.var access by @mtrop-godaddy in https://github.com/ledgetech/lua-resty-http/pull/345
- feat: Add timer context support for get_client_body_reader by @zhuizhuhaomeng in https://github.com/ledgetech/lua-resty-http/pull/336
- perf: Avoid pcall when validating the Connection response header by @zhuizhuhaomeng in https://github.com/ledgetech/lua-resty-http/pull/335
- fix: http: send_request: Amend EXPECTING_BODY nil by @chensunny in https://github.com/ledgetech/lua-resty-http/pull/344
- fix: Make connection pool name logging optional by @piotrp in https://github.com/ledgetech/lua-resty-http/pull/322
- several development improvements by @chensunny, @sriemer, and @mtrop-godaddy
Full Changelog: https://github.com/ledgetech/lua-resty-http/compare/v0.17.2...v0.18.0
Migration
- check your LUA code for
POST,PUT, andPATCHrequests withoutbodyset (bodyisnil) - set
body = ""(empty body) for those requests
The previous behavior to let those HTTP requests through violates HTTP specs and those requests fail now. See https://github.com/ledgetech/lua-resty-http/pull/344 for details.