HaskellNet-SSL 0.3.3.0 → 0.3.4.0
raw patch · 2 files changed
+5/−4 lines, 2 filesdep ~connectiondep ~tlsPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: connection, tls
API changes (from Hackage documentation)
Files
HaskellNet-SSL.cabal view
@@ -1,6 +1,6 @@ name: HaskellNet-SSL synopsis: Helpers to connect to SSL/TLS mail servers with HaskellNet-version: 0.3.3.0+version: 0.3.4.0 description: This package ties together the HaskellNet and connection packages to make it easy to open IMAP and SMTP connections over SSL.@@ -35,15 +35,15 @@ build-depends: base >= 4, HaskellNet >= 0.3, tls >= 1.2,- connection >= 0.2,+ connection >= 0.2.7, network >= 2.4, bytestring, data-default else build-depends: base >= 4 && < 5, HaskellNet >= 0.3 && < 0.6,- tls >= 1.2 && < 1.4,- connection == 0.2.*,+ tls >= 1.2 && < 1.5,+ connection >= 0.2.7 && < 0.3, network >= 2.4 && < 2.7, bytestring, data-default
src/Network/HaskellNet/SSL/Internal.hs view
@@ -28,6 +28,7 @@ , bsClose = connectionClose c , bsIsOpen = return True , bsGetLine = connectionGetLine maxl c >>= withLog "RECV"+ , bsWaitForInput = connectionWaitForInput c } where maxl = sslMaxLineLength cfg withLog = if sslLogToConsole cfg then logToConsole else flip (const . return)