# HG changeset patch # User Matthew Wild # Date 1598367544 -3600 # Node ID f103f59ea2b56453ad94a244bc308a2d12fa965c # Parent 160308b4b384105041ca4ccdd721afebcf398aac net.http: http.request() promise now resolves with response (breaking change) Promise mode is not (widely?) used, changing this now while we can, as it improves usability of the API. The request is now available as response.request, if needed. diff -r 160308b4b384 -r f103f59ea2b5 net/http.lua --- a/net/http.lua Tue Aug 25 15:57:39 2020 +0100 +++ b/net/http.lua Tue Aug 25 15:59:04 2020 +0100 @@ -293,7 +293,8 @@ if code == 0 then reject(http_errors.new(body, { request = a })); else - resolve({ request = b, response = a }); + a.request = b; + resolve(a); end end); end);