http-client-tls 0.3.5 → 0.3.5.1
raw patch · 3 files changed
+6/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- Network/HTTP/Client/TLS.hs +1/−0
- http-client-tls.cabal +1/−1
ChangeLog.md view
@@ -1,3 +1,7 @@+## 0.3.5.1++* Also catch TLSError exceptions [#273](https://github.com/snoyberg/http-client/pull/273)+ ## 0.3.5 * Add `newTlsManagerWith`
Network/HTTP/Client/TLS.hs view
@@ -97,6 +97,7 @@ let wrapper se | Just (_ :: IOException) <- fromException se = se' | Just (_ :: TLS.TLSException) <- fromException se = se'+ | Just (_ :: TLS.TLSError) <- fromException se = se' | Just (_ :: NC.LineTooLong) <- fromException se = se' #if MIN_VERSION_connection(0,2,7) | Just (_ :: NC.HostNotResolved) <- fromException se = se'
http-client-tls.cabal view
@@ -1,5 +1,5 @@ name: http-client-tls-version: 0.3.5+version: 0.3.5.1 synopsis: http-client backend using the connection package and tls library description: Hackage documentation generation is not reliable. For up to date documentation, please see: <https://www.stackage.org/package/http-client-tls>. homepage: https://github.com/snoyberg/http-client