Skip to content

Releases: urgrue/java-async-http

Release 2.1.2

01 Jul 04:40
Compare
Choose a tag to compare

Changelog

  • Files can now be downloaded and progress tracked asynchronously with onProgressChanged()
  • User can now specify whether to automatically follow redirects (3xx status codes)
  • Added HTTP Basic Authentication support
  • onStart() and onFinish() callbacks added. onStart() is called after setup but before making the request. onFinish() is called after the request is made and response has been read.
  • File uploads now supported through RequestParams
  • Improved Javadoc documentation

Release #2

10 May 04:17
Compare
Choose a tag to compare

Changelog

  • HttpResponse has been removed. All relevant response data is now sent individually in the callback method signature.
  • Responses are now read as byte arrays rather than Strings. Use StringHttpResponseHandler for String callbacks.
  • Response content encoding is now honored. Strings will be automatically encoded prior to callbacks.
  • HttpClient is now abstract. Use SyncHttpClient for synchronous HTTP requests.
  • RequestParams now accepts primitives as values when calling put() and will convert them to string before storing them.

Initial

05 May 10:37
Compare
Choose a tag to compare

Initial release. Design is primarily aimed at consuming RESTful API's.