packages feed

http-client 0.5.1 → 0.5.2

raw patch · 4 files changed

+9/−4 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Network.HTTP.Client: rawConnectionModifySocketSize :: (Socket -> IO ()) -> IO (Int -> Maybe HostAddress -> String -> Int -> IO Connection)
+ Network.HTTP.Client.Internal: rawConnectionModifySocketSize :: (Socket -> IO ()) -> IO (Int -> Maybe HostAddress -> String -> Int -> IO Connection)

Files

ChangeLog.md view
@@ -1,3 +1,7 @@+## 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)
Network/HTTP/Client.hs view
@@ -126,6 +126,7 @@     , responseTimeoutDefault       -- *** Helpers     , rawConnectionModifySocket+    , rawConnectionModifySocketSize       -- * Request     , parseUrl     , parseUrlThrow
Network/HTTP/Client/Manager.hs view
@@ -12,6 +12,7 @@     , getConn     , defaultManagerSettings     , rawConnectionModifySocket+    , rawConnectionModifySocketSize     , proxyFromRequest     , noProxy     , useProxy@@ -66,14 +67,13 @@                           -> IO (Maybe NS.HostAddress -> String -> Int -> IO Connection) rawConnectionModifySocket = return . openSocketConnection -{- FIXME was this intended to be exported? -- | Same as @rawConnectionModifySocket@, but also takes in a chunk size. ----- Since 0.4.5+-- @since 0.5.2 rawConnectionModifySocketSize :: (NS.Socket -> IO ())                               -> IO (Int -> Maybe NS.HostAddress -> String -> Int -> IO Connection) rawConnectionModifySocketSize = return . openSocketConnectionSize--}+  -- | Default value for @ManagerSettings@. --
http-client.cabal view
@@ -1,5 +1,5 @@ name:                http-client-version:             0.5.1+version:             0.5.2 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