req 3.13.2 → 3.13.3
raw patch · 3 files changed
+9/−3 lines, 3 filesdep +data-default-classdep ~containersdep ~crypton-connectiondep ~template-haskell
Dependencies added: data-default-class
Dependency ranges changed: containers, crypton-connection, template-haskell
Files
- CHANGELOG.md +4/−0
- Network/HTTP/Req.hs +2/−1
- req.cabal +3/−2
CHANGELOG.md view
@@ -1,3 +1,7 @@+## Req 3.13.3++* Works with `crypton-connection-0.4` and newer.+ ## Req 3.13.2 * Disable the problematic `httpbin-tests` test suite by default. Only enable
Network/HTTP/Req.hs view
@@ -236,6 +236,7 @@ import Data.ByteString.Lazy qualified as BL import Data.CaseInsensitive qualified as CI import Data.Data (Data)+import Data.Default.Class (def) import Data.Function (on) import Data.IORef import Data.Kind (Constraint, Type)@@ -606,7 +607,7 @@ let settings = L.mkManagerSettingsContext (Just context)- (NC.TLSSettingsSimple False False False)+ (NC.TLSSettingsSimple False False False def) Nothing manager <- L.newManager settings newIORef manager
req.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: req-version: 3.13.2+version: 3.13.3 license: BSD-3-Clause license-file: LICENSE.md maintainer: Mark Karpov <markkarpov92@gmail.com>@@ -40,7 +40,8 @@ bytestring >=0.10.8 && <0.13, case-insensitive >=0.2 && <1.3, containers >=0.5 && <0.7,- crypton-connection >=0.2.2 && <0.4,+ crypton-connection >=0.4 && <0.5,+ data-default-class, exceptions >=0.6 && <0.11, http-api-data >=0.2 && <0.7, http-client >=0.7.13.1 && <0.8,