File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
Changelog for Hoogle (* = API change, @ = database format change)
2
2
3
+ Require and support crypton-connection >= 0.4.1
3
4
5.0.18.4, released 2024-01-14
4
5
Don't test on GHC 9.2 or earlier
5
6
Fix up the output of /stats to account for API changes
Original file line number Diff line number Diff line change @@ -53,7 +53,8 @@ library
53
53
conduit >= 1.3.0 ,
54
54
conduit-extra >= 1.2.3.2 ,
55
55
containers >= 0.5 ,
56
- crypton-connection,
56
+ crypton-connection >= 0.4.1 ,
57
+ data-default-class,
57
58
deepseq,
58
59
directory,
59
60
extra >= 1.6.6 ,
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import System.FilePath
6
6
import Control.Monad.Extra
7
7
import System.Directory
8
8
import Data.Conduit.Binary (sinkFile )
9
+ import Data.Default.Class
9
10
import qualified Network.HTTP.Conduit as C
10
11
import Network.Connection
11
12
import qualified Data.Conduit as C
@@ -45,7 +46,8 @@ downloadFile insecure file url = do
45
46
(TLSSettingsSimple {
46
47
settingDisableCertificateValidation = insecure,
47
48
settingDisableSession = False ,
48
- settingUseServerName = False
49
+ settingUseServerName = False ,
50
+ settingClientSupported = def
49
51
}) Nothing
50
52
runResourceT $ do
51
53
response <- C. http request manager
You can’t perform that action at this time.
0 commit comments