Skip to content

Releases: threadly/litesockets-http

0.17 Release

07 May 20:33
Compare
Choose a tag to compare

Added support for multiple (duplicate) query parameter values, and improved javadocs.

0.16 Release

03 May 16:55
Compare
Choose a tag to compare

Fixed bug in HttpClient as described in PR #23

0.15 Release

02 May 18:41
Compare
Choose a tag to compare

Changes included in this release:

  • The API for http request "types" has updated to reference "methods". This includes renaming the enum HTTPRequestType to HTTPRequestMethod, and functions like setRequestType have been updated to setRequestMethod
  • 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

30 Apr 19:51
Compare
Choose a tag to compare

HttpClient API improvements, as well as HttpClient connection pooling improvements (Allows a maximum idle timeout to be specified)

release-0.13

24 Oct 17:51
Compare
Choose a tag to compare
fixed issue with chunked responses that have spaces in the length field

Minor fix when query param without key is specified

16 Oct 20:13
Compare
Choose a tag to compare
Merge pull request #14 from threadly/httpUtilsImprovements

HTTPUtils minor fixes / improvements

0.11 release - HttpHeader duplication fix

31 Aug 21:20
Compare
Choose a tag to compare

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

03 Aug 16:09
Compare
Choose a tag to compare
Expanded known response codes with other possible codes.

release-0.8: Minor performance improvements

03 Aug 15:22
Compare
Choose a tag to compare

Minor performance improvements as well as parameter verification improvements.

release-0.10: Minor heap optimizations by storing emptyEmpty if possible

03 Aug 17:31
Compare
Choose a tag to compare
Also contains a possible bug fix in HTTPHeaders when there is an empty header value.