http-client 0.5.3.1 → 0.5.3.2
raw patch · 5 files changed
+11/−3 lines, 5 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- Network/HTTP/Client.hs +1/−1
- Network/HTTP/Client/Request.hs +4/−0
- README.md +1/−1
- http-client.cabal +1/−1
ChangeLog.md view
@@ -1,3 +1,7 @@+## 0.5.3.2++* Minor doc updates+ ## 0.5.3.1 * The closeConnection method for tls connections should not be called multiple
Network/HTTP/Client.hs view
@@ -12,7 +12,7 @@ -- support for things like JSON request and response bodies. For most users, -- this will be an easier place to start. You can read the tutorial at: ----- https://github.com/commercialhaskell/jump/blob/master/doc/http-client.md+-- https://haskell-lang.org/library/http-client -- -- = Lower-level API --
Network/HTTP/Client/Request.hs view
@@ -273,6 +273,10 @@ -- -- > applyBasicAuth "user" "pass" $ parseRequest_ url --+-- NOTE: The function @applyDigestAuth@ is provided by the @http-client-tls@+-- package instead of this package due to extra dependencies. Please use that+-- package if you need to use digest authentication.+-- -- Since 0.1.0 applyBasicAuth :: S.ByteString -> S.ByteString -> Request -> Request applyBasicAuth user passwd req =
README.md view
@@ -2,7 +2,7 @@ =========== Full tutorial docs are available at:-https://github.com/commercialhaskell/jump/blob/master/doc/http-client.md+https://haskell-lang.org/library/http-client An HTTP client engine, intended as a base layer for more user-friendly packages.
http-client.cabal view
@@ -1,5 +1,5 @@ name: http-client-version: 0.5.3.1+version: 0.5.3.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