packages feed

network-conduit-tls 1.3.0 → 1.3.1

raw patch · 3 files changed

+6/−11 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -1,3 +1,7 @@+## 1.3.1++* Use the default ciphersuite from TLS+ ## 1.3.0  * Upgrade to conduit 1.3.0
Data/Conduit/Network/TLS.hs view
@@ -130,7 +130,7 @@     params = def         { TLS.serverWantClientCert = False         , TLS.serverSupported = def-            { TLS.supportedCiphers = ciphers+            { TLS.supportedCiphers = TLSExtra.ciphersuite_default             , TLS.supportedVersions = [TLS.SSL3,TLS.TLS10,TLS.TLS11,TLS.TLS12]             }         , TLS.serverShared = def@@ -239,15 +239,6 @@     , appCloseConnection' = TLS.contextClose ctx     , appRawSocket' = Nothing     }---- taken from stunnel example in tls-extra-ciphers :: [TLS.Cipher]-ciphers =-    [ TLSExtra.cipher_AES128_SHA1-    , TLSExtra.cipher_AES256_SHA1-    , TLSExtra.cipher_RC4_128_MD5-    , TLSExtra.cipher_RC4_128_SHA1-    ]  readCreds :: TlsCertData -> IO TLS.Credentials readCreds (TlsCertData iocert iochains iokey) =
network-conduit-tls.cabal view
@@ -1,5 +1,5 @@ name:                network-conduit-tls-version:             1.3.0+version:             1.3.1 synopsis:            Create TLS-aware network code with conduits description:         Uses the tls package for a pure-Haskell implementation. homepage:            https://github.com/snoyberg/conduit