clj-http-client/CHANGELOG.md

67 lines
1.9 KiB
Markdown
Raw Normal View History

## 0.3.0
This is a feature release.
* Add configuration settings for SSL Protocols and Cipher Suites to both the
Java and Clojure clients.
2014-10-01 21:16:32 +00:00
## 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.
2014-09-19 01:34:14 +00:00
## 0.2.7
This is a bugfix release.
2014-10-01 21:16:32 +00:00
* 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.
2014-09-19 01:34:14 +00:00
2014-08-27 20:27:10 +00:00
## 0.2.6
* Add :follow-redirects and :force-redirects options to the clojure client.
* Add followRedirects and forceRedirects options to the Java client.
2014-08-22 22:35:02 +00:00
## 0.2.5
* Add an overloaded constructor for `RequestOptions` that accepts a String uri
2014-08-22 15:05:38 +00:00
## 0.2.4
2014-10-01 21:16:32 +00:00
* Fix a bug in the Java client API that caused an NPE if a Content-Type header
did not specify a charset
2014-08-22 15:05:38 +00:00
## 0.2.3
* No changes
2014-08-19 21:31:05 +00:00
## 0.2.2
* Add back in support for query-params map in Clojure API
2014-08-12 23:22:26 +00:00
## 0.2.1
2014-10-01 21:16:32 +00:00
* Upgrade to Apache HttpAsyncClient v4.0.2 (fixes a bug where headers don't get
included when following redirects).
2014-08-12 23:22:26 +00:00
2014-07-25 22:05:53 +00:00
## 0.2.0
* Port the code to use the Apache HttpAsyncClient library instead of
http-kit.
* The API around creating a persistent client has changed and
persistent clients are explicitly managed
* The available request options have changed. Some convenience options
have been removed.
2014-04-28 18:40:05 +00:00
## 0.1.7
* Explicitly target JDK6 when building release jars
2014-04-14 23:13:08 +00:00
## 0.1.6
2014-10-01 21:16:32 +00:00
* Add support for configuring client SSL context with a CA cert without a
client cert/key
2014-04-14 23:13:08 +00:00
## 0.1.5
2014-04-08 22:00:24 +00:00
* Update to latest version of puppetlabs/kitchensink
* Use puppetlabs/certificate-authority for SSL tasks
2014-04-14 23:13:08 +00:00
## 0.1.4
* Fix bug in sync.clj when excluding clojure.core/get
2014-04-01 18:46:20 +00:00
## 0.1.3
* Added a Java API for the synchronous client