Releases: threadly/litesockets-http
Releases · threadly/litesockets-http
0.17 Release
Added support for multiple (duplicate) query parameter values, and improved javadocs.
0.16 Release
Fixed bug in HttpClient as described in PR #23
0.15 Release
Changes included in this release:
- The API for http request "types" has updated to reference "methods". This includes renaming the enum
HTTPRequestType
toHTTPRequestMethod
, and functions likesetRequestType
have been updated tosetRequestMethod
- Issue #12 has been fixed, allowing the HttpClient to now function correctly in
HEAD
requests that return a content length. - Similar to that issue, a bug in the HttpClient has been fixed where a
204
response is sent where no content-length is provided. In those requests the client would never recognize the request as complete.
0.14 Release
HttpClient API improvements, as well as HttpClient connection pooling improvements (Allows a maximum idle timeout to be specified)
release-0.13
fixed issue with chunked responses that have spaces in the length field
Minor fix when query param without key is specified
Merge pull request #14 from threadly/httpUtilsImprovements HTTPUtils minor fixes / improvements
0.11 release - HttpHeader duplication fix
An error not likely to be encountered by many. When HTTPHeaders was constructed using a map with duplicate entries, that stored headers rawHeader
/ string will contain the duplicates even though the internally stored map did not.
release-0.9
Expanded known response codes with other possible codes.
release-0.8: Minor performance improvements
Minor performance improvements as well as parameter verification improvements.
release-0.10: Minor heap optimizations by storing emptyEmpty if possible
Also contains a possible bug fix in HTTPHeaders when there is an empty header value.