packages feed

http-client 0.7.2 → 0.7.2.1

raw patch · 3 files changed

+6/−2 lines, 3 files

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for http-client +## 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.
Network/HTTP/Client/Manager.hs view
@@ -296,7 +296,7 @@ useProxySecureWithoutConnect :: Proxy -> ProxyOverride useProxySecureWithoutConnect p = ProxyOverride $   const $ return $ \req -> req { proxy = Just p,-                                 proxySecureMode = ProxySecureWithConnect }+                                 proxySecureMode = ProxySecureWithoutConnect }  -- | Get the proxy settings from the default environment variable (@http_proxy@ -- for insecure, @https_proxy@ for secure). If no variable is set, then fall
http-client.cabal view
@@ -1,5 +1,5 @@ name:                http-client-version:             0.7.2+version:             0.7.2.1 synopsis:            An HTTP client engine 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