packages feed

http-client 0.4.7 → 0.4.7.1

raw patch · 4 files changed

+7/−3 lines, 4 files

Files

ChangeLog.md view
@@ -1,3 +1,7 @@+## 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)
Network/HTTP/Client/Manager.hs view
@@ -391,7 +391,7 @@     -- https://github.com/snoyberg/http-client/issues/40#issuecomment-39117909     | S8.null h = throwIO $ InvalidDestinationHost h     | otherwise =-        getManagedConn m (ConnKey connKeyHost connport (secure req)) $+        getManagedConn m (ConnKey connKeyHost connport (host req) (port req) (secure req)) $             wrapConnectExc $ go connaddr connhost connport   where     h = host req
Network/HTTP/Client/Types.hs view
@@ -590,5 +590,5 @@  -- | @ConnKey@ consists of a hostname, a port and a @Bool@ -- specifying whether to use SSL.-data ConnKey = ConnKey ConnHost Int Bool+data ConnKey = ConnKey ConnHost Int S.ByteString Int Bool     deriving (Eq, Show, Ord, T.Typeable)
http-client.cabal view
@@ -1,5 +1,5 @@ name:                http-client-version:             0.4.7+version:             0.4.7.1 synopsis:            An HTTP client engine, intended as a base layer for more user-friendly packages. description:         Hackage documentation generation is not reliable. For up to date documentation, please see: <http://www.stackage.org/package/http-client>. homepage:            https://github.com/snoyberg/http-client