Skip to content

Commit

Permalink
Change log update.
Browse files Browse the repository at this point in the history
  • Loading branch information
neotyk committed Apr 11, 2011
1 parent 796c504 commit 730fe83
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions changelog.org
Expand Up @@ -4,6 +4,37 @@
#+INFOJS_OPT: view:info toc:1
#+OPTIONS: H:4

* Release 0.2.3
** Upgrade async-http-client to v1.6.3
** Control over preemptive authentication
Patch provided by xeqi.
** Explicit client usage
Now following functions require client as first argument:
- GET
- PUT
- POST
- DELETE
- HEAD
- OPTIONS
- request-stream
- stream-seq
- execute-request
You still create client with create-client function.
** Removed with-client macro
This didn't really bring much value.
Migration procedure.
From:
#+begin_src clojure
(with-client {:key val}
;; client usage
(let [resp (GET url)]))
#+end_src
To:
#+begin_src clojure
(with-open [client (create-client :key val)]
;; client usage
(let [resp (GET client url)]))
#+end_src
* Release 0.2.2
** get-encoding helper works w/o Content-Type header
** Upgrade async-http-client to v.1.5.0
Expand Down

0 comments on commit 730fe83

Please sign in to comment.