Codebase list haskell-xss-sanitize / 8b29c2c
http-client: Upgrading from 0.5.7.0 to 0.5.7.1 Clint Adams 6 years ago
2 changed file(s) with 10 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
0 haskell-http-client (0.5.7.0-2) UNRELEASED; urgency=medium
0 haskell-http-client (0.5.7.1-1) unstable; urgency=medium
11
2 [ Ilias Tsitsimpis ]
23 * Change Priority to optional. Since Debian Policy version 4.0.1,
34 priority extra has been deprecated.
45 * Use the HTTPS form of the copyright-format URL
56 * Modify d/watch and Source field in d/copyright to use HTTPS
67 * Declare compliance with Debian policy 4.1.1
78
8 -- Ilias Tsitsimpis <iliastsi@debian.org> Wed, 01 Nov 2017 12:14:28 +0200
9 [ Clint Adams ]
10 * New upstream release
11
12 -- Clint Adams <clint@debian.org> Fri, 24 Nov 2017 15:49:37 -0500
913
1014 haskell-http-client (0.5.7.0-1) unstable; urgency=medium
1115
00 --- a/test/Network/HTTP/ClientSpec.hs
11 +++ b/test/Network/HTTP/ClientSpec.hs
2 @@ -15,83 +15,4 @@
2 @@ -14,83 +14,4 @@ main :: IO ()
33 main = hspec spec
44
55 spec :: Spec
66 -spec = describe "Client" $ do
7 - it "works" $ withSocketsDo $ do
7 - it "works" $ do
88 - req <- parseUrlThrow "http://httpbin.org/"
99 - man <- newManager defaultManagerSettings
1010 - res <- httpLbs req man
1111 - responseStatus res `shouldBe` status200
1212 -
1313 - describe "method in URL" $ do
14 - it "success" $ withSocketsDo $ do
14 - it "success" $ do
1515 - req <- parseUrlThrow "POST http://httpbin.org/post"
1616 - man <- newManager defaultManagerSettings
1717 - res <- httpLbs req man
1818 - responseStatus res `shouldBe` status200
1919 -
20 - it "failure" $ withSocketsDo $ do
20 - it "failure" $ do
2121 - req <- parseRequest "PUT http://httpbin.org/post"
2222 - man <- newManager defaultManagerSettings
2323 - res <- httpLbs req man