Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Network/HTTP/Req.hs
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ globalManager = unsafePerformIO $ do
let settings =
L.mkManagerSettingsContext
(Just context)
(NC.TLSSettingsSimple False False False def)
def
Nothing
manager <- L.newManager settings
newIORef manager
Expand Down
4 changes: 2 additions & 2 deletions req.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
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>
Expand Down Expand Up @@ -40,7 +40,7 @@ library
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,
Expand Down