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
|
# Changelog for http-client
## 0.7.17
* Add `managerSetMaxHeaderLength` to `Client` to change `ManagerSettings` `MaxHeaderLength`.
## 0.7.16
* Add `responseEarlyHints` field to `Response`, containing a list of all HTTP 103 Early Hints headers received from the server.
* Add `earlyHintHeadersReceived` callback to `Request`, which will be called on each HTTP 103 Early Hints header section received.
## 0.7.15
* Adds `shouldStripHeaderOnRedirectIfOnDifferentHostOnly` option to `Request` [#520](https://github.com/snoyberg/http-client/pull/520)
## 0.7.14
* Allow customizing max header length [#514](https://github.com/snoyberg/http-client/pull/514)
## 0.7.13
* Create the ability to redact custom header values to censor sensitive information
## 0.7.12
* Fix premature connection closing due to weak reference lifetimes [#490](https://github.com/snoyberg/http-client/pull/490)
## 0.7.11
* Allow making requests to raw IPv6 hosts [#477](https://github.com/snoyberg/http-client/pull/477)
* Catch "resource vanished" exception on initial response read [#480](https://github.com/snoyberg/http-client/pull/480)
* Search for reachable IP addresses asynchronously (RFC 6555, 8305) after calling `getAddrInfo` to reduce latency [#472](https://github.com/snoyberg/http-client/pull/472).
## 0.7.10
* Consume trailers and last CRLF of chunked body. The trailers are not exposed,
unless the raw body is requested.
## 0.7.9
* Exceptions from streamed request body now cause the request to fail. Previously they were
routed through onRequestBodyException and, by default, the IOExceptions were discarded.
## 0.7.8
* Include the original `Request` in the `Response`. Expose it via `getOriginalRequest`.
## 0.7.7
* Allow secure cookies for localhost without HTTPS [#460](https://github.com/snoyberg/http-client/pull/460)
## 0.7.6
* Add `applyBearerAuth` function [#457](https://github.com/snoyberg/http-client/pull/457/files)
## 0.7.5
* Force closing connections in case of exceptions throwing [#454](https://github.com/snoyberg/http-client/pull/454).
## 0.7.4
* Depend on base64-bytestring instead of memory [#453](https://github.com/snoyberg/http-client/pull/453)
## 0.7.3
* Added `withSocket` to `Network.HTTP.Client.Connection`.
## 0.7.2.1
* Fix bug in `useProxySecureWithoutConnect`.
## 0.7.2
* Add a new proxy mode, proxySecureWithoutConnect, for sending HTTPS requests in plain text to a proxy without using the CONNECT method.
## 0.7.1
* Remove `AI_ADDRCONFIG` [#400](https://github.com/snoyberg/http-client/issues/400)
## 0.7.0
* Remove Eq instances for Cookie, CookieJar, Response, Ord instance for Cookie [#435](https://github.com/snoyberg/http-client/pull/435)
## 0.6.4.1
* Win32 2.8 support [#430](https://github.com/snoyberg/http-client/pull/430)
## 0.6.4
* Avoid throwing an exception when a malformed HTTP header is received,
to be as robust as commonly used HTTP clients.
See [#398](https://github.com/snoyberg/http-client/issues/398)
## 0.6.3
* Detect response body termination before reading an extra null chunk
when possible. This allows connections to be reused in some corner
cases. See
[#395](https://github.com/snoyberg/http-client/issues/395)
## 0.6.2
* Add `shouldStripHeaderOnRedirect` option to `Request` [#300](https://github.com/snoyberg/http-client/issues/300)
## 0.6.1.1
* Ensure that `Int` parsing doesn't overflow [#383](https://github.com/snoyberg/http-client/issues/383)
## 0.6.1
* Add `setUriEither` to `Network.HTTP.Client.Internal`
## 0.6.0
* Generalize `renderParts` over arbitrary applicative functors. One particular
use case that is enabled by this change is that now `renderParts` can be used
in pure code by using it in combination with `runIdentity`.
## 0.5.14
* Omit port for `getUri` when protocol is `http` and port is `80`, or when
protocol is `https` and port is `443`
* Sending requests with invalid headers now throws InvalidRequestHeader exception
## 0.5.13.1
* Add a workaround for a cabal bug [haskell-infra/hackage-trustees#165](https://github.com/haskell-infra/hackage-trustees/issues/165)
## 0.5.13
* Adds `setRequestCheckStatus` and `throwErrorStatusCodes` functions.
See [#304](https://github.com/snoyberg/http-client/issues/304)
* Add `withConnection` function.
See [#352](https://github.com/snoyberg/http-client/pull/352).
## 0.5.12.1
* Make the chunked transfer-encoding detection case insensitive
[#303](https://github.com/snoyberg/http-client/pull/303)
* Remove some unneeded language extensions
* Mark older versions of GHC as unsupported
## 0.5.12
* Added `requestFromURI` and `requestFromURI_` functions.
* Fixed non-TLS connections going though proxy [#337](https://github.com/snoyberg/http-client/issues/337)
## 0.5.11
* Replaced `base64-bytestring` dependency with `memory`.
## 0.5.10
* New function to partial escape query strings
## 0.5.9
* Add `Semigroup` instances for GHC 8.4 [#320](https://github.com/snoyberg/http-client/pull/320)
## 0.5.8
* Switch to the new STM-based manager
[#254](https://github.com/snoyberg/http-client/pull/254)
* Redact sensitive headers [#318](https://github.com/snoyberg/http-client/pull/318)
## 0.5.7.1
* Code cleanup/delete dead code
* Compat with Win32 2.6 [#309](https://github.com/snoyberg/http-client/issues/309)
## 0.5.7.0
* Support for Windows system proxy settings
[#274](https://github.com/snoyberg/http-client/pull/274)
## 0.5.6.1
* Revert socks5 and socks5h support from
[#262](https://github.com/snoyberg/http-client/pull/262); the support was
untested and did not work as intended.
## 0.5.6
* Added socks5 and socks5h support [#262](https://github.com/snoyberg/http-client/pull/262)
## 0.5.5
* http-client should allow to log requests and responses [#248](https://github.com/snoyberg/http-client/issues/248)
## 0.5.4
* Derive ‘Eq’ for ‘ResponseTimeout’ [#239](https://github.com/snoyberg/http-client/pull/239)
## 0.5.3.4
* Doc improvements
## 0.5.3.3
* Add missing colon in Host header [#235](https://github.com/snoyberg/http-client/pull/235)
## 0.5.3.2
* Minor doc updates
## 0.5.3.1
* The closeConnection method for tls connections should not be called multiple
times [#225](https://github.com/snoyberg/http-client/issues/225)
## 0.5.3
* Expose `makeConnection` and `socketConnection` as a stable API [#223](https://github.com/snoyberg/http-client/issues/223)
## 0.5.2
* Enable rawConnectionModifySocketSize to expose openSocketConnectionSize [#218](https://github.com/snoyberg/http-client/pull/218)
## 0.5.1
* Enable managerModifyRequest to modify redirectCount [#208](https://github.com/snoyberg/http-client/pull/208)
## 0.5.0.1
* Doc fix
## 0.5.0
* Remove `instance Default Request`
* Modify `instance IsString Request` to use `parseRequest` instead of `parseUrlThrow`
* Clean up the `HttpException` constructors
* Rename `checkStatus` to `checkResponse` and modify type
* Fix the ugly magic constant workaround for responseTimeout
* Remove `getConnectionWrapper`
* Add the `HttpExceptionRequest` wrapper so that all exceptions related to a
request are thrown with that request's information
## 0.4.31
* Added length validation for RequestBodyStream [#205](https://github.com/snoyberg/http-client/pull/205)
## 0.4.30
* Initial implementation of [#193](https://github.com/snoyberg/http-client/issues/193)
* Deprecate `parseUrl`
* Add `parseUrlThrow`, `parseRequest`, and `parseRequest_`
## 0.4.29
* Changed the order of connecting a socket and tweaking a socket, such that the socket tweaking callback now happen before connecting.
* add setRequestIgnoreStatus [#201](https://github.com/snoyberg/http-client/pull/201)
* Added missing Host: HTTP header for https CONNECT [#192](https://github.com/snoyberg/http-client/pull/192)
* Fix: Redirects will be followed in httpRaw' when reusing a dead connection [#195](https://github.com/snoyberg/http-client/issues/195)
## 0.4.28
* Add support for including request method in URL
* `requestManagerOverride`
* `RequestBodyIO`
## 0.4.27.1
* Incorrect idle connection count in HTTP manager [#185](https://github.com/snoyberg/http-client/issues/185)
## 0.4.27
* Enable managerModifyRequest to modify checkStatus [#179](https://github.com/snoyberg/http-client/pull/179)
## 0.4.26.2
* Fix compilation for GHC 7.4
## 0.4.26.1
* Fix compilation for GHC < 7.10
## 0.4.26
* Make sure we never read from or write to closed socket [#170](https://github.com/snoyberg/http-client/pull/170)
## 0.4.25
* Don't error out when response body flushing fails [#169](https://github.com/snoyberg/http-client/issues/169)
## 0.4.24
* Use a new `TlsExceptionHostPort` exception to indicate the host and port of the server we were trying to connect to when a TLS exception occurred. See [commercialhaskell/stack#1010](https://github.com/commercialhaskell/stack/issues/1010)
## 0.4.23
* Case insensitive cookie domains [#158](https://github.com/snoyberg/http-client/issues/158)
## 0.4.22
* ProxyConnectException now returns Right HttpException. [#155](https://github.com/snoyberg/http-client/pull/155)
## 0.4.21
* Support `no_proxy` environment variable. [#140](https://github.com/snoyberg/http-client/issues/140) [#145](https://github.com/snoyberg/http-client/pull/145)
## 0.4.20
* Expose `brReadSome`
## 0.4.19
* Move HasHttpManager from http-conduit to http-client [#147](https://github.com/snoyberg/http-client/pull/147)
* Chunked request bodies use less TCP packets [#149](https://github.com/snoyberg/http-client/issues/149)
## 0.4.18
* Deprecate closeManager [#136](https://github.com/snoyberg/http-client/issues/136) [#137](https://github.com/snoyberg/http-client/issues/137)
## 0.4.17
* Case insensitive proxy environment variables [#135](https://github.com/snoyberg/http-client/issues/135)
## 0.4.16
* Proxy auth for HTTPS [#132](https://github.com/snoyberg/http-client/issues/132)
## 0.4.15
* Support proxy authentication in environment variables [#129](https://github.com/snoyberg/http-client/issues/129)
## 0.4.14
* Ignore empty `http_proxy` [#128](https://github.com/snoyberg/http-client/pull/128)
## 0.4.13
* Support for auth via url [#124](https://github.com/snoyberg/http-client/pull/124)
## 0.4.12
* Added `IsString RequestBody` instance [#126](https://github.com/snoyberg/http-client/pull/126)
## 0.4.11.3
* Fix getUri to insert "?" to uriQuery when necessary. [#123](https://github.com/snoyberg/http-client/pull/123)
## 0.4.11.2
* Removed publicsuffixlist dependency, see [Github discussion](https://github.com/litherum/publicsuffixlist/pull/7)
## 0.4.11.1
* Disable custom timeout code [#116](https://github.com/snoyberg/http-client/issues/116)
## 0.4.11
* Ignore the 'Content-Length' header if the body contains chunked data [#115](https://github.com/snoyberg/http-client/pull/115)
## 0.4.10
* Expect: 100-continue [#114](https://github.com/snoyberg/http-client/pull/114)
## 0.4.9
* Add RequestBody smart constructors `streamFile` and `streamFileObserved`, the latter with accompanying type `StreamFileStatus`.
## 0.4.8.1
* Automatically call withSocketsDo everywhere [#107](https://github.com/snoyberg/http-client/issues/107)
## 0.4.8
* Add the `ResponseLengthAndChunkingBothUsed` exception constructor [#108](https://github.com/snoyberg/http-client/issues/108)
## 0.4.7.2
* Improved `timeout` implementation for high contention cases [#98](https://github.com/snoyberg/http-client/issues/98)
## 0.4.7.1
* Fix for shared connections in proxy servers [#103](https://github.com/snoyberg/http-client/issues/103)
## 0.4.7
* [Support http\_proxy and https\_proxy environment variables](https://github.com/snoyberg/http-client/issues/94)
## 0.4.6.1
Separate tests not requiring internet access. [#93](https://github.com/snoyberg/http-client/pull/93)
## 0.4.6
Add `onRequestBodyException` to `Request` to allow for recovering from
exceptions when sending the request. Most useful for servers which terminate
the connection after sending a response body without flushing the request body.
## 0.4.5
Add `openSocketConnectionSize` and increase default chunk size to 8192.
## 0.4.4
Add `managerModifyRequest` field to `ManagerSettings`.
## 0.4.3
Add `requestVersion` field to `Request`.
## 0.4.2
The reaper thread for a manager will go to sleep completely when there are no connection to manage. See: https://github.com/snoyberg/http-client/issues/70
## 0.4.1
* Provide the `responseOpenHistory`/`withResponseHistory` API. See: https://github.com/snoyberg/http-client/pull/79
## 0.4.0
* Hide the `Part` constructor, and allow for additional headers. See: https://github.com/snoyberg/http-client/issues/76
|