Merge pull request #19 from camlow325/maint/master/clj-http-client-0.2.8-release

Updated changelog for 0.2.8 release
This commit is contained in:
Chris Price 2014-10-01 14:27:40 -07:00
commit 7bd7aacda2

View file

@ -1,7 +1,16 @@
## 0.2.8
This is a bugfix release.
* Fix a bug in the Java client API that caused a file descriptor leak each time
a client was created for a new request.
## 0.2.7
This is a bugfix release.
* Fix a bug where the character encoding was always being set to ISO-8859-1 w/o a charset ever being explicitly specified in the Content-Type header. We now honor the existing charset if there is one in the header, and otherwise we use UTF-8 and explicitly add the charset to the header.
* Fix a bug where the character encoding was always being set to ISO-8859-1 w/o
a charset ever being explicitly specified in the Content-Type header. We now
honor the existing charset if there is one in the header, and otherwise we
use UTF-8 and explicitly add the charset to the header.
## 0.2.6
* Add :follow-redirects and :force-redirects options to the clojure client.
@ -11,7 +20,8 @@
* Add an overloaded constructor for `RequestOptions` that accepts a String uri
## 0.2.4
* Fix a bug in the Java client API that caused an NPE if a Content-Type header did not specify a charset
* Fix a bug in the Java client API that caused an NPE if a Content-Type header
did not specify a charset
## 0.2.3
* No changes
@ -20,8 +30,8 @@
* Add back in support for query-params map in Clojure API
## 0.2.1
* Upgrade to Apache HttpAsyncClient v4.0.2 (fixes a bug where headers don't get included
when following redirects).
* Upgrade to Apache HttpAsyncClient v4.0.2 (fixes a bug where headers don't get
included when following redirects).
## 0.2.0
* Port the code to use the Apache HttpAsyncClient library instead of
@ -35,7 +45,8 @@
* Explicitly target JDK6 when building release jars
## 0.1.6
* Add support for configuring client SSL context with a CA cert without a client cert/key
* Add support for configuring client SSL context with a CA cert without a
client cert/key
## 0.1.5
* Update to latest version of puppetlabs/kitchensink