All Versions
34
Latest Version
Avg Release Cycle
148 days
Latest Release
2140 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v2.4.2 Changes
June 15, 2019๐ release: 15 June 2019
- Scala 2.13 support
- Removed Java 1.6 workaround that was causing security manager issue (@odisseus)
-
v2.4.1 Changes
July 28, 2018๐ release: 29 July 2018
- Fix for oauth signing of multi-part posts
-
v2.4.0 Changes
April 29, 2018๐ release: 29 April 2018
- Suport for digest authentication via .digestAuth method on HttpRequest
- Support for proxy authentication via .proxyAuth method on HttpRequest
- Honor explicitly set Content-Type header on multipart requests. Thanks @pelamfi
- Follow 307 redirects. Thanks @dmaicher
- A bunch of of documenation, formatting, typo, and library version updates (including scala 2.13 support) from @xuwei-k. Thank you!
-
v2.3.0 Changes
April 02, 2016๐ handle redirects from http <-> https correctly. see #92 thanks @jirihelmich for reporting
-
v2.2.2 Changes
April 02, 2016๐ release: 2 April 2016
- Allow .equals comparisons around different HttpRequests to work correctly by using instances of case classes over anonymous functions for Connect and Url functions. thanks @heldersantosmoreira for reporting
- .asString will now use the charset in the response Content-Type header first, and then fall back to the charset configured in the request. thanks @JustAHappyKid for reporting
- new HttpRequest.put methods for first class support of PUT. thanks @matanster
-
v2.2.1 Changes
January 05, 2016๐ release: 5 January 2016
- Bug fix: Pass proxyConfig from BaseHttp to HttpRequest
-
v2.2.0 Changes
December 09, 2015๐ release: 9 December 2015
- HttpResonse.throwError HttpResonse.throwServerError to bubble up an exception if you don't want to check the status code and just want to bubble up an exception instead
-
v2.1.0 Changes
December 04, 2015๐ release: 4 December 2015
- Methods on HttpResonse and HttpRequest for dealing with cookies
-
v2.0.0 Changes
November 11, 2015๐ release: 11 November 2015
๐ฅ BREAKING CHANGES:
- HttpResponse.headers is now a Map[String, IndexedSeq[String]] this is a more correct way to access the headers. Previous behavior was to join duplicate headers with a ",".
-
v1.1.6 Changes
October 24, 2015๐ release: 24 October 2015
- Fix for Google App Engine reflection security exception. thanks @mukel