File tree Expand file tree Collapse file tree 3 files changed +20
-4
lines changed Expand file tree Collapse file tree 3 files changed +20
-4
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,15 @@ pull request or open an issue if you have any problems
1616[ Clojars] ( http://clojars.org/clj-http ) :
1717
1818``` clojure
19- [clj-http " 0.7.2 " ]
19+ [clj-http " 0.7.3 " ]
2020```
2121
2222Previous versions available as
2323
2424``` clojure
25+ [clj-http " 0.7.2" ]
2526[clj-http " 0.7.1" ]
2627[clj-http " 0.7.0" ]
27- [clj-http " 0.6.5" ]
2828```
2929
3030## Usage
@@ -522,7 +522,9 @@ functionality:
522522
523523To see available middleware, check the
524524`clj-http.client/default-middleware` var, which is a vector of the
525- default middleware that clj-http uses.
525+ default middleware that clj-http
526+ uses. `clj-http.client/*current-middleware*` is bound to the current
527+ list of middleware during request time.
526528
527529## Debugging
528530
Original file line number Diff line number Diff line change 11* Changelog
22 List of user-visible changes that have gone into each release
3+ ** 0.7.3
4+ - correctly close single client connection manager if {:as :stream} is used, fixes #142
5+ - merged https://github.com/dakrone/clj-http/pull/138 to preserve
6+ http method for 307 redirect
7+ - merged in parse-url parameters into follow-redirect so request
8+ map is not inconsistent
9+ - bumped http* deps to 4.2.5
10+ - fixed cookie compact-map not to remove falsey values, only nil
11+ ones
12+ - merged https://github.com/dakrone/clj-http/pull/135 to fix
13+ discard always defaulting to true
14+ - add *current-middleware* to see available middleware during a
15+ with-middleware request (for nesting)
316** 0.7.2
417 - merged https://github.com/dakrone/clj-http/pull/127 to allow
518 custom cookie policies
286299* Work log
287300 Log of merges/issues/work that's gone in so I know what to put in
288301 the changelog for the next release
302+ ** Released 0.7.3
289303** 2013-06-22
290304 - correctly close single client connection manager if {:as :stream} is used, fixes #142
291305** 2013-05-02
Original file line number Diff line number Diff line change 1- (defproject clj-http " 0.7.3-SNAPSHOT "
1+ (defproject clj-http " 0.7.3"
22 :description " A Clojure HTTP library wrapping the Apache HttpComponents client."
33 :url " https://github.com/dakrone/clj-http/"
44 :license {:name " The MIT License"
You can’t perform that action at this time.
0 commit comments