-
New
keep_alive_timeout_msoption inserver_opts()to configure the
idle timeout of keep-alive connections. The default is 5000 ms, up from
the underlying CivetWeb default of 500 ms (#114). -
Handler functions may now declare a
localsargument, in which case
webfakes passesapp$localsto it directly, without having to access
it throughreq$app$locals(#112). -
webfakes now builds on platforms where
ardoes not writes a symbol
index by default (@barracuda156, #121). -
webfakes now parses HTTP date headers (e.g.
Date,Last-Modified,
Expires) correctly regardless of the user'sLC_TIMEsetting
(@lbm364dl, #124). -
Route matching now ignores trailing slashes. Use regular expressions
(new_regexp()) if you need exact trailing slash matching (#120). -
httpbin_app()'s/post,/put,/patch,/deleteand/anything*
endpoints now return the request body in thedatafield for any
Content-Type, matchinghttpbin.org(#115).