packages feed

http-conduit 2.1.5.1 → 2.1.6

raw patch · 4 files changed

+9/−1 lines, 4 files

Files

+ ChangeLog.md view
@@ -0,0 +1,3 @@+## 2.1.6++* Deprecate `withManager` and `withManagerSettings`
Network/HTTP/Conduit.hs view
@@ -287,6 +287,7 @@             => (Manager -> ResourceT m a)             -> m a withManager = withManagerSettings conduitManagerSettings+{-# DEPRECATED withManager "Please new newManager conduitManagerSettings" #-}  withManagerSettings :: (MonadIO m, MonadBaseControl IO m)                     => ManagerSettings@@ -296,6 +297,7 @@     (liftIO $ newManager set)     (liftIO . closeManager)     (runResourceT . f)+{-# DEPRECATED withManagerSettings "Please new newManager" #-}  setConnectionClose :: Request -> Request setConnectionClose req = req{requestHeaders = ("Connection", "close") : requestHeaders req}
+ README.md view
@@ -0,0 +1,1 @@+Make HTTP requests using the conduit library for a streaming interface.
http-conduit.cabal view
@@ -1,5 +1,5 @@ name:            http-conduit-version:         2.1.5.1+version:         2.1.6 license:         BSD3 license-file:    LICENSE author:          Michael Snoyman <michael@snoyman.com>@@ -20,6 +20,8 @@                   , nyan.gif                   , certificate.pem                   , key.pem+                  , README.md+                  , ChangeLog.md  library     build-depends: base                  >= 4       && < 5