File tree Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -14,12 +14,13 @@ pull request or open an issue if you have any problems
1414[ Clojars] ( http://clojars.org/clj-http ) :
1515
1616``` clojure 
17- [clj-http " 0.4.2 "  ]
17+ [clj-http " 0.4.3 "  ]
1818``` 
1919
2020Previous versions available as
2121
2222``` clojure 
23+ [clj-http " 0.4.2"  ]
2324[clj-http " 0.4.1"  ]
2425[clj-http " 0.4.0"  ]
2526[clj-http " 0.3.6"  ]
@@ -249,6 +250,18 @@ options:
249250(client/get  " http://foo.com"   {:proxy-host  " 127.0.0.1"   :proxy-port  8118 })
250251```
251252
253+ ### Keystores and Trust-stores
254+ 
255+ When sending a request, you can specify your own keystore/trust-store
256+ to be used:
257+ 
258+ ```clojure
259+ (client/get  " https://example.com"   {:keystore  " /path/to/keystore.ks" 
260+                                    :keystore-pass  " secretpass" 
261+                                    :trust-store  " /path/to/trust-store.ks" 
262+                                    :trust-store-pass  " trustpass})
263+ ``` 
264+ 
252265### Cookie stores 
253266
254267clj-http can simplify the maintenance of cookies across requests if it 
Original file line number Diff line number Diff line change 11* Changelog
22  List of changes that have gone into each release
3+ ** 0.4.3
4+    - support custom x509 keystore/trust-stores
35** 0.4.2
46   - fixed an issue where multiple link headers would cause an
57     exception to be thrown
151153* Work log
152154  Log of merges/issues/work that's gone in so I know what to put in
153155  the changelog for the next release
156+ ** Release 0.4.3
157+ ** 2012-06-07
158+    - merged https://github.com/dakrone/clj-http/pull/77 to support
159+      custom x509 keystore/trust-stores
160+    - merged https://github.com/dakrone/clj-http/pull/78 for x509 tests
154161** Release 0.4.2
155162** 2012-05-30
156163   - fixed an issue where multiple link headers would cause an
Original file line number Diff line number Diff line change 1- (defproject  clj-http  " 0.4.3-SNAPSHOT " 
1+ (defproject  clj-http  " 0.4.3" 
22  :description  " A Clojure HTTP library wrapping the Apache HttpComponents client." 
33  :url  " https://github.com/dakrone/clj-http/" 
44  :repositories  {" sona"   " http://oss.sonatype.org/content/repositories/snapshots"  }
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments