req 3.13.3 → 3.13.4
raw patch · 3 files changed
+15/−7 lines, 3 filesdep ~containersdep ~crypton-connectiondep ~data-default-class
Dependency ranges changed: containers, crypton-connection, data-default-class, http-api-data, http-client-tls, template-haskell, time
Files
- CHANGELOG.md +6/−0
- Network/HTTP/Req.hs +1/−1
- req.cabal +8/−6
CHANGELOG.md view
@@ -1,3 +1,9 @@+## Req 3.13.4++* Fixed empty ciphersuite list when compiling against `tls < 2.0.6`+ (see [PR 175](https://github.com/mrkkrp/req/pull/175)). As a side effect, now+ compatible with older versions of `crypton-connection` (>= 0.3).+ ## Req 3.13.3 * Works with `crypton-connection-0.4` and newer.
Network/HTTP/Req.hs view
@@ -607,7 +607,7 @@ let settings = L.mkManagerSettingsContext (Just context)- (NC.TLSSettingsSimple False False False def)+ def Nothing manager <- L.newManager settings newIORef manager
req.cabal view
@@ -1,11 +1,11 @@ cabal-version: 2.4 name: req-version: 3.13.3+version: 3.13.4 license: BSD-3-Clause license-file: LICENSE.md maintainer: Mark Karpov <markkarpov92@gmail.com> author: Mark Karpov <markkarpov92@gmail.com>-tested-with: ghc ==9.4.7 ghc ==9.6.3 ghc ==9.8.1+tested-with: ghc ==9.6.3 ghc ==9.8.2 ghc ==9.10.1 homepage: https://github.com/mrkkrp/req bug-reports: https://github.com/mrkkrp/req/issues synopsis: HTTP client library@@ -40,7 +40,7 @@ bytestring >=0.10.8 && <0.13, case-insensitive >=0.2 && <1.3, containers >=0.5 && <0.7,- crypton-connection >=0.4 && <0.5,+ crypton-connection >=0.3 && <0.5, data-default-class, exceptions >=0.6 && <0.11, http-api-data >=0.2 && <0.7,@@ -51,14 +51,16 @@ monad-control >=1.0 && <1.1, mtl >=2.0 && <3.0, retry >=0.8 && <0.10,- template-haskell >=2.19 && <2.22,+ template-haskell >=2.19 && <2.23, text >=0.2 && <2.2, transformers >=0.5.3.0 && <0.7, transformers-base, unliftio-core >=0.1.1 && <0.3 if flag(dev)- ghc-options: -Wall -Werror -Wpartial-fields -Wunused-packages+ ghc-options:+ -Wall -Werror -Wpartial-fields -Wunused-packages+ -Wno-unused-imports else ghc-options: -O2 -Wall@@ -85,7 +87,7 @@ modern-uri >=0.3 && <0.4, req, retry >=0.8 && <0.10,- template-haskell >=2.19 && <2.22,+ template-haskell >=2.19 && <2.23, text >=0.2 && <2.2, time >=1.2 && <1.13