All Versions
34
Latest Version
Avg Release Cycle
148 days
Latest Release
1749 days ago

Changelog History
Page 2

  • v1.1.5 Changes

    ๐Ÿš€ release: 1 July 2015

    • fix integer overflow on multi-part upload byte counter. thanks @takiri
    • Allow a None proxy to use Java's default proxy. thanks @caspark
  • v1.1.4 Changes

    ๐Ÿš€ release: 9 February 2015

    • fix for regression in gzip decompression. thanks @mhow
  • v1.1.3 Changes

    ๐Ÿš€ release: 2 February 2015

    • fixed missing query string params on postData. thanks @mhow
  • v1.1.2 Changes

    ๐Ÿš€ release: 1 February 2015

    • fixed npe on empty gzip/deflate response. thanks @fntzr
  • v1.1.1 Changes

    ๐Ÿš€ release: 28 January 2015

    • fixed bug with gzip decompression due to incorrect assumption that headers are case sensitive
    • HttpRequest.headers are now a case-insensitive Map
  • v1.1.0 Changes

    ๐Ÿš€ release: 6 December 2014

    Possibly breaking changes

    • .execute method only takes one parameter, streaming parameter was removed
    • new .exec method that takes a parser function that will be passed responseCode, headers, inputStream
    • renamed HttpRequest.exec field to connectFunc
    • isXXX convenience methods on HttpResponse for checking response codes
    • http compression is now configuration with .compress(Boolean) method on HttpRequest or via BaseHttp
    • fixed bug where .method(String) didn't set the method field in HttpRequest
  • v1.0.1 Changes

    ๐Ÿš€ release: 28 November 2014

    • fix for NPE in error cases where InputStreams are null
    • restored varargs for params, headers and options methods on HttpRequest
    • .timeout(connTimeout, readTimeout) method on HttpRequest
  • v1.0.0 Changes

    ๐Ÿš€ release: 27 November 2014

    ๐Ÿ†• NEW MAJOR VERSION!! syntactically and behaviorally different than the 0.x.x versions

    • Executing the request always returns a HttpResponse[T] instance the contains the response code, headers, and body
    • Exceptions are no longer thrown for 4xx and 5xx response codes. Yay!
    • Http(url) is the starting point for every type of request (post, get, multi, etc)
    • You can easily create your own singleton instance to set your own defaults (timeouts, proxies, etc)
    • Sends "Accept-Encoding: gzip,deflate" request header and gunzip/inflates as needed
  • v0.3.16 Changes

    ๐Ÿš€ release: 10 July 2014

    • bumped cross compile scala version to 2.11.1
    • fix for CLOSE_WAIT leak when calling responseCode
    • fix for method not found in scala 2.11 (@vmorarian)
  • v0.3.15 Changes

    ๐Ÿš€ release: 27 April 2014

    • artifacts for scala 2.11.0 final
    • also bumped cross compiled versions to 2.9.3 and 2.10.4