packages feed

net-mqtt 0.8.6.0 → 0.8.6.1

raw patch · 3 files changed

+11/−2 lines, 3 filesdep +data-default-classPVP ok

version bump matches the API change (PVP)

Dependencies added: data-default-class

API changes (from Hackage documentation)

Files

Changelog.md view
@@ -1,5 +1,9 @@ # Changelog for net-mqtt +## 0.8.6.1++Use `def` for TLS settings.+ ## 0.8.6.0  Can forget in-flight and correlation data over time.
net-mqtt.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           net-mqtt-version:        0.8.6.0+version:        0.8.6.1 synopsis:       An MQTT Protocol Implementation. description:    Please see the README on GitHub at <https://github.com/dustin/mqtt-hs#readme> category:       Network@@ -49,6 +49,7 @@     , conduit-extra >=1.3.0 && <1.5     , containers >=0.5.0 && <0.7     , crypton-connection >=0.3.0+    , data-default-class >=0.1.2     , deepseq >=1.4.3.0 && <1.5     , monad-loops >=0.4.3     , network-conduit-tls ==1.4.*@@ -78,6 +79,7 @@     , conduit-extra >=1.3.0 && <1.5     , containers >=0.5.0 && <0.7     , crypton-connection >=0.3.0+    , data-default-class >=0.1.2     , deepseq >=1.4.3.0 && <1.5     , monad-loops >=0.4.3     , net-mqtt@@ -108,6 +110,7 @@     , conduit-extra >=1.3.0 && <1.5     , containers >=0.5.0 && <0.7     , crypton-connection >=0.3.0+    , data-default-class >=0.1.2     , deepseq >=1.4.3.0 && <1.5     , monad-loops >=0.4.3     , net-mqtt@@ -147,6 +150,7 @@     , conduit-extra >=1.3.0 && <1.5     , containers >=0.5.0 && <0.7     , crypton-connection >=0.3.0+    , data-default-class >=0.1.2     , deepseq >=1.4.3.0 && <1.5     , lens     , monad-loops >=0.4.3
src/Network/MQTT/Client.hs view
@@ -56,6 +56,7 @@ import qualified Data.Conduit.Combinators   as C import           Data.Conduit.Network       (AppData, appSink, appSource, clientSettings, runTCPClient) import           Data.Conduit.Network.TLS   (runTLSClient, tlsClientConfig, tlsClientTLSSettings)+import           Data.Default.Class         (def) import           Data.Foldable              (traverse_) import           Data.Map.Strict            (Map) import qualified Data.Map.Strict            as Map@@ -157,7 +158,7 @@                         _msgCB=NoCallback,                         _protocol=Protocol311, _connProps=mempty,                         _connectTimeout=180000000,-                        _tlsSettings=TLSSettingsSimple False False False,+                        _tlsSettings=def,                         _pingPeriod=30000000,                         _pingPatience=90000000}