1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
|
Archived entries from file /Users/hinmanm/src/clj/clj-http/changelog.org
* Archived Tasks
** 0.7.8
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- Added the `proxy-ignore-hosts` option to allow specifying a list
of hosts where a proxy should be ignored
- merged https://github.com/dakrone/clj-http/pull/166 to fix some
small whitespace and reflection stuff
- Close the body of a response in wrap-redirects since all bodies
are streams now. Otherwise, the body is kept open indefinitely.
** 0.7.7
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- merged https://github.com/dakrone/clj-http/pull/162 to pass
through json opts for form-param encoding
- bumped dependencies
- fix #159 - issue with :decode-body-headers introduced with
streaming bodies
- merged https://github.com/dakrone/clj-http/pull/156 to add
`:raw-headers` option to return an additional
untouched :raw-headers map
- merged https://github.com/dakrone/clj-http/pull/154 to handle
query-params not clobbering query-params in the URL string
- bump main deps
- merged https://github.com/dakrone/clj-http/pull/151 to prevent
shutting down a reusable connection manager when an error occurs
** 0.7.6
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- add logging config for local testing only
- remove "content-encoding" header if the body is automatically
decompressed to allow for pass-through. If header is removed,
assoc :orig-content-encoding to response map.
- merged https://github.com/dakrone/clj-http/pull/149 to fix
closing the stream when coerced to byte array
- merged https://github.com/dakrone/clj-http/pull/146 to correctly
reference parameter names
** 0.7.5
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- Only redirect if a "location" header is actually, present, avoiding an
NPE in the event it's missing. (fixes #145)
** 0.7.4
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- merged https://github.com/dakrone/clj-http/pull/143 for fixing some
weirdness around body streams and inflation
- streams everywhere, all bodies coming out of core.clj are now streams, so
{:as :stream} truly streams the response, keeping it out of memory
- remove some more reflection
** 0.7.3
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- correctly close single client connection manager if {:as :stream} is used, fixes #142
- merged https://github.com/dakrone/clj-http/pull/138 to preserve
http method for 307 redirect
- merged in parse-url parameters into follow-redirect so request
map is not inconsistent
- bumped http* deps to 4.2.5
- fixed cookie compact-map not to remove falsey values, only nil
ones
- merged https://github.com/dakrone/clj-http/pull/135 to fix
discard always defaulting to true
- add *current-middleware* to see available middleware during a
with-middleware request (for nesting)
** 0.7.2
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- merged https://github.com/dakrone/clj-http/pull/127 to allow
custom cookie policies
- allow specifying :length for mulitpart inputstream bodies to
avoid chunked transfer encoding
- bumped cheshire to 5.1.1
- merged https://github.com/dakrone/clj-http/pull/133 to remove
some reflection
** 0.7.1
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- clarify :throw-exceptions in documentation
- define default-middleware for use in wrap-request, remove bad
all-middleware method
- merged https://github.com/dakrone/clj-http/pull/130 to encode
query-params
- merged https://github.com/dakrone/clj-http/pull/124 to handle
URL-encoding invalid characters in the URI
- bump cheshire to 5.1.0
- Switch from deprecated SingleClientConnManager to BasicClientConnectionManager
- merged https://github.com/dakrone/clj-http/pull/126 to bump
httpcore version
- bump dependencies to latest versions
** 0.7.0
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- merged https://github.com/dakrone/clj-http/pull/122 for
using *data-readers* when using tools.reader to parse EDN
- fix an issue with 1.3 where *data-readers* is not available
- merged https://github.com/dakrone/clj-http/pull/121 to fix
auto-coercion with json
- support application/edn as an auto-coercion type
- add tools.reader as an optional dependency, edn/read will be
used if available, otherwise read-string with *read-eval* bound
to false is used. See https://github.com/dakrone/clj-http/pull/120
- Bump clojure to 1.5.1
** 0.6.5
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- allow json coercion for exception cases based on :coerce setting,
can be either :always, :exceptional or :unexceptional
- Update clojure to 1.5
- Move SingleClientConnManager shutdown into finally block
- bind *read-eval* to false when reading for {:as :clojure}
- bump cheshire to 5.0.2
** 0.6.4
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- merged https://github.com/dakrone/clj-http/pull/113 to update
the connection pooling code
- refactor pooled connection managers to allow specifying
the :connection-manager option
- merged https://github.com/dakrone/clj-http/pull/112 to allow
json coercion on error responses when :as :auto is used
- allow redirects when :url is not set in the request
- merged https://github.com/dakrone/clj-http/pull/110 to handle the
case when the server-side uses deflate incorrectly
- added `with-middleware` to allow running requests with a custom
middleware list
- added `all-middleware` var listing all the wrap-* middleware that
clj-http knows of
- clj-http.client/request is now marked as dynamic for rebinding
** 0.6.3
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- Remove wrap-cookie-store middleware, CookieStore headers are
automatically added by Apache
- set the SINGLE_COOKIE_HEADER value to true to ensure Apache sends
only one "Cookie:" header
- Do not add CookieStore or Cookie header if there are no cookies
in the cookie jar
** 0.6.2
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- merged https://github.com/dakrone/clj-http/pull/106 to remove
query params for redirection.
- whitespace fixes; fix test that wasn't working correctly
** 0.6.1
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- bump httpcore to 4.2.3
- Fix an issue (#105) related to the "Content-Length" header being
automatically added to GET requests
** 0.6.0
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
(bumped to 0.6.0 since Cheshire has changed major versions)
- Update Cheshire to 5.0.1
- Add type hint for getting headers from body (michaelklishin)
** 0.5.8
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- add buffering for HttpEntity, with ability to turn off if needed,
fixes lein issue with repeatable requests
** 0.5.7
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- create a custom X509HostnameVerifier for the :insecure? option
- explicitly require httpcore instead of leaving it to a transitive dep
- update httpcomponents to 4.2.2
- implement HTML5 charset header reading from body
** 0.5.6
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- bump Crouton to 0.1.1 for faster speeds
- add feature to decode body headers, merging them into response
headers if they are present
- merged https://github.com/dakrone/clj-http/pull/98 to add
optional :default-per-route to with-connection-pool
** 0.5.5
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- bump cheshire to fix json encoding bug
** 0.5.4
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- merged https://github.com/dakrone/clj-http/pull/95 to add support
for setting aribtrary client params to the http client
- Merged https://github.com/dakrone/clj-http/pull/94 to remove some
reflection
- update cheshire dep, make clojure a dev-dependency
- allow overriding the multipart part name with :part-name
** 0.5.3
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- merged https://github.com/dakrone/clj-http/pull/91 to add support
for :digest-auth
- added request timing middleware to add :request-time key for
request timing
- add wrap-cookie-store to send cookie-store cookies with a request
automatically
- merged https://github.com/dakrone/clj-http/pull/90 to standardize
on lower-case headers for HTTP requests
** 0.5.2
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- merged https://github.com/dakrone/clj-http/pull/88 to add chunked encoding
support (=:length= no longer required along with input stream =:body=)
** 0.5.1
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- fix clojure 1.3's exception wrapping for some exceptions
- merged https://github.com/dakrone/clj-http/pull/87 to allow using
http.nonProxyHosts
- mark json-encode and json-decode dynamic, so they could be
rebound if desired
- update httpclient and httpmime to 4.2.1
- update commons-codec to 1.6
- update common-io to 2.4
- change body decompression to be optional, if desired
- make the :content-type and :character-encoding options part of
middleware, not the core request
- document all the middleware
- merged https://github.com/dakrone/clj-http/pull/85 to allow
low-level callback for debugging
** 0.5.0
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- rewrite multipart body entity creation to use different map
format, allowing :mime-type and :encoding keys in some cases
** 0.4.4
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- bump cheshire to 4.0.1 and slingshot to 0.10.3
- fix an issue where cookies were encoded and should not be
- merged https://github.com/dakrone/clj-http/pull/80 to allow
specifying the keystore type
- merged https://github.com/dakrone/clj-http/pull/79 to allow
pluggable output coercion (multimethod)
** 0.4.3
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- support custom x509 keystore/trust-stores
** 0.4.2
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- fixed an issue where multiple link headers would cause an
exception to be thrown
** 0.4.1
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- added :debug-body that adds plaintext body information to
the :debug output
- fix json encoded form params with nested maps
- fix attempted json coercion when a bad status is received
- merged https://github.com/dakrone/clj-http/pull/69 to add support
for :oauth-token authentication
- merged https://github.com/dakrone/clj-http/pull/70 to save the
apache Http object when :save-request? is true
- merged https://github.com/dakrone/clj-http/pull/68 to support
additional options/delete/copy/move HTTP methods
- add support for the :patch method type
** 0.4.0
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- merged https://github.com/dakrone/clj-http/pull/66 to add support
for 'Link' header
- added ability to specify your own retry-handler for IOExceptions
if desired
- bumped httpclient and httpmime to 4.1.3
- bump to released version of clojure (1.4)
- added documentation about ipv6 requests
- fixed https://github.com/dakrone/clj-http/issues/57 by have
wrap-redirects redirect according to the RFC and adding
the :force-redirects option to be more browser-like
- merged https://github.com/dakrone/clj-http/pull/61 to add support
for nested param maps
** 0.3.6
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- fixed an issue where urls like http://user:pass@foo.com didn't
work correctly for basic-auth
- added support for cookie stores
- added utility methods to retrieve cookies as a map from the
cookie store
- set the default maximum number of redirects to 20
** 0.3.5
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- same as 0.3.4, but with a newer cheshire that doesn't interfere
with clj-json
** 0.3.4
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- improved commit from pull/55 to make the predicate more generalized to
any kind of entity request
- make Cheshire an optional dependency, only for {:as :json} and
json form-params
- merged https://github.com/dakrone/clj-http/pull/55 to fix HEAD
requests with body contents
- merged https://github.com/dakrone/clj-http/pull/53 to add status
functions into the clj-http.client namespace
- added the ability to specify {:as :clojure} to get back a clojure
datastructure, or {:as :auto} with content-type=application/clojure
- merged https://github.com/dakrone/clj-http/pull/52 to support
json-encoded form params
- added a test for json-encoded form params as request body
** 0.3.3
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- merged https://github.com/dakrone/clj-http/pull/51 to
allow :form-params on PUT requests
- bump Cheshire and slingshot deps
- add the :throw-entire-message? option to include resp in
Exception message
- throw an IllegalArgumentException instead of a regulor Exception
on nil urls
- add ability to redirect to relative paths (ngrunwald)
** 0.3.2
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- merged https://github.com/dakrone/clj-http/pull/48 to fix :stream
bodies (to make sure they are not coerced on output)
- merged https://github.com/dakrone/clj-http/pull/49 to check for
nil URLs when using client functions
- switch from assertions to exceptions for nil URLs
- merged https://github.com/dakrone/clj-http/pull/46 to
add :trace-redirects to the response map
- merged https://github.com/dakrone/clj-http/pull/47 to allow GET
requests with a :body set
- merged https://github.com/dakrone/clj-http/pull/44 to add ability
to specify maximum number of redirects
- add tests for max-redirects
- merged https://github.com/dakrone/clj-http/pull/42 to allow
strings or keywords for :scheme in requests
- added test for different :schemes
** 0.3.1
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- merged https://github.com/dakrone/clj-http/pull/40 to allow
per-request proxy settings
- remove a few more reflections
- added ablity to return the body as a stream with {:as :stream}
- general code cleanup
** 0.3.0
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- add ability to ignore unknown host if desired ({:ignore-unknown-host? true})
- use much better Enitity's for the body, depending on type
- bump all dependencies
- test re-org to make better sense (and allow C-c t in emacs)
- merged https://github.com/dakrone/clj-http/pull/36 to fix
url-encoding of multiple query params using the same key
- merged https://github.com/dakrone/clj-http/pull/34 to fix
decoding cookies that don't follow RFC spec
- Add better coercion, adding {:as :json}, {:as :json-string-keys}
and {:as :auto}
** 0.2.7
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- merged https://github.com/dakrone/clj-http/pull/31 to remove more
reflection warnings
- some whitespace changes
- merged https://github.com/dakrone/clj-http/pull/30 to remove more
reflection warnings
- removed swank from dev deps
- bump 1.4 to alpha3 in multi deps
** 0.2.6
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- don't use :server-port unless required (fixes problem with some
web servers)
- smaller error message on exceptions (thrown object is still the same)
- added the :save-request? option to return the request object in
a :request key in the response map
- multiple headers with the same name are now preserved when they
have differing cases
** 0.2.5
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- multipart form uploads
- bump slingshot to 0.9.0
** 0.2.4
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- Got a functioning reusable connection method,
(with-connection-pool ...)
- upgrade slingshot to 0.8.0
- upgrade commons-io to 2.1
- merged https://github.com/dakrone/clj-http/pull/20 to
allow :basic-auth as a string
** 0.2.3
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- added :insecure? flag
- fix AOT by requiring clojure.pprint
- wrap-redirects now handles recursive redirects
** 0.2.2
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- wrap-exceptions now uses Slingshot to throw a much more useful
exception when there was a problem with the request
- fixed an issue when malformed server responses could NPE the
decompression middleware
- added a :debug flag to pretty-print the request map and object
to stdout before performing the request to aid in debugging
** 0.2.1
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- decode cookies from response into :cookies (thanks r0man)
- redone redirects, they can now be toggled with {:follow-redirects
false} in the request
- decompression of responses has been fixed (thanks senior)
- accept Content-Encoding or content-encoding from responses
(thanks senior)
- added ability to specify sending a url-encoded :body of form
params using {:form-params {:key value}} (thanks senior)
** 0.2.0
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- updated dependencies to be the latest versions
- added ability to use system proxy for connections (thanks jou4)
- added ability to specify socket and connection timeouts in
request (thanks zkim)
** 0.1.3
:PROPERTIES:
:ARCHIVE_TIME: 2014-03-05 Wed 16:32
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Changelog
:ARCHIVE_CATEGORY: changelog
:END:
- see: https://github.com/mmcgrana/clj-http
** Released 0.7.8
:PROPERTIES:
:ARCHIVE_TIME: 2015-04-22 Wed 23:13
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Work log
:ARCHIVE_CATEGORY: changelog
:END:
** 2014-01-03
:PROPERTIES:
:ARCHIVE_TIME: 2015-04-22 Wed 23:13
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Work log
:ARCHIVE_CATEGORY: changelog
:END:
- bump dependencies to their latest
- Merged https://github.com/dakrone/clj-http/pull/172 to update .gitignore file
and clean up whitespace for new clojure-mode
- Merged https://github.com/dakrone/clj-http/pull/171 to support SOCKS proxies
** 2014-01-15
:PROPERTIES:
:ARCHIVE_TIME: 2015-04-22 Wed 23:13
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Work log
:ARCHIVE_CATEGORY: changelog
:END:
- Merged https://github.com/dakrone/clj-http/pull/175 to add {:as :json-strict}
for output coercion
- Added {:as :json-strict-string-keys} output coercion
** 2014-01-21
:PROPERTIES:
:ARCHIVE_TIME: 2015-04-22 Wed 23:13
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Work log
:ARCHIVE_CATEGORY: changelog
:END:
- Merged https://github.com/dakrone/clj-http/pull/177 to update apache HTTP deps
** 2014-01-27
:PROPERTIES:
:ARCHIVE_TIME: 2015-04-22 Wed 23:13
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Work log
:ARCHIVE_CATEGORY: changelog
:END:
- Merged https://github.com/dakrone/clj-http/pull/178 to eliminate test
reflection
** 2014-01-28
:PROPERTIES:
:ARCHIVE_TIME: 2015-04-22 Wed 23:13
:ARCHIVE_FILE: ~/src/clj/clj-http/changelog.org
:ARCHIVE_OLPATH: Work log
:ARCHIVE_CATEGORY: changelog
:END:
- Merged https://github.com/dakrone/clj-http/pull/181 to fix some tests
|