Hello community,
here is the log from the commit of package ghc-http-conduit for
openSUSE:Factory checked in at 2019-10-18 14:34:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-http-conduit (Old)
and /work/SRC/openSUSE:Factory/.ghc-http-conduit.new.2352 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-http-conduit"
Fri Oct 18 14:34:10 2019 rev:21 rq:737201 version:2.3.7.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-http-conduit/ghc-http-conduit.changes
2019-05-09 10:10:04.105141145 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-http-conduit.new.2352/ghc-http-conduit.changes
2019-10-18 14:34:13.124116683 +0200
@@ -1,0 +2,16 @@
+Thu Oct 10 10:02:33 UTC 2019 - [email protected]
+
+- Update http-conduit to version 2.3.7.3.
+ ## 2.3.7.3
+
+ * Relax test suite version bounds
+
+-------------------------------------------------------------------
+Tue Oct 8 02:02:21 UTC 2019 - [email protected]
+
+- Update http-conduit to version 2.3.7.2.
+ ## 2.3.7.2
+
+ * Add the `network3` flag
+
+-------------------------------------------------------------------
Old:
----
http-conduit-2.3.7.1.tar.gz
New:
----
http-conduit-2.3.7.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-http-conduit.spec ++++++
--- /var/tmp/diff_new_pack.aGbkVR/_old 2019-10-18 14:34:13.928114589 +0200
+++ /var/tmp/diff_new_pack.aGbkVR/_new 2019-10-18 14:34:13.932114579 +0200
@@ -19,7 +19,7 @@
%global pkg_name http-conduit
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 2.3.7.1
+Version: 2.3.7.3
Release: 0
Summary: HTTP client package with conduit interface and HTTPS support
License: BSD-2-Clause
++++++ http-conduit-2.3.7.1.tar.gz -> http-conduit-2.3.7.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/http-conduit-2.3.7.1/ChangeLog.md
new/http-conduit-2.3.7.3/ChangeLog.md
--- old/http-conduit-2.3.7.1/ChangeLog.md 2019-04-30 14:46:59.000000000
+0200
+++ new/http-conduit-2.3.7.3/ChangeLog.md 2019-10-10 06:02:46.000000000
+0200
@@ -1,5 +1,13 @@
# ChangeLog for http-conduit
+## 2.3.7.3
+
+* Relax test suite version bounds
+
+## 2.3.7.2
+
+* Add the `network3` flag
+
## 2.3.7.1
* Properly skip whitespace after JSON body
[#401](https://github.com/snoyberg/http-client/issues/401)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/http-conduit-2.3.7.1/http-conduit.cabal
new/http-conduit-2.3.7.3/http-conduit.cabal
--- old/http-conduit-2.3.7.1/http-conduit.cabal 2019-04-30 15:27:54.000000000
+0200
+++ new/http-conduit-2.3.7.3/http-conduit.cabal 2019-10-10 06:02:35.000000000
+0200
@@ -1,5 +1,5 @@
name: http-conduit
-version: 2.3.7.1
+version: 2.3.7.3
license: BSD3
license-file: LICENSE
author: Michael Snoyman <[email protected]>
@@ -65,9 +65,8 @@
, utf8-string
, case-insensitive
, unliftio
- , network
, wai >= 3.0 && < 3.3
- , warp >= 3.0.0.2 && < 3.3
+ , warp >= 3.0.0.2 && < 3.4
, wai-conduit
, http-types
, cookie
@@ -78,6 +77,7 @@
, aeson
, temporary
, resourcet
+ , network
source-repository head
type: git
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/http-conduit-2.3.7.1/test/main.hs
new/http-conduit-2.3.7.3/test/main.hs
--- old/http-conduit-2.3.7.1/test/main.hs 2019-04-30 14:46:31.000000000
+0200
+++ new/http-conduit-2.3.7.3/test/main.hs 2019-10-10 06:00:58.000000000
+0200
@@ -21,7 +21,6 @@
import qualified Data.IORef as I
import qualified Control.Exception as E (catch)
import qualified Network.Socket as NS
-import qualified Network.BSD
import CookieTest (cookieTest)
#if MIN_VERSION_conduit(1,1,0)
import Data.Conduit.Network (runTCPServer, serverSettings, appSink, appSource,
ServerSettings)
@@ -406,9 +405,8 @@
describe "hostAddress" $ do
it "overrides host" $ withApp app $ \port -> do
- entry <- Network.BSD.getHostByName "127.0.0.1"
req' <- parseUrlThrow $ "http://example.com:" ++ show port
- let req = req' { hostAddress = Just $ Network.BSD.hostAddress
entry }
+ let req = req' { hostAddress = Just 0x0100007f } -- 127.0.0.1
manager <- newManager tlsManagerSettings
res <- httpLbs req manager
responseBody res @?= "homepage for example.com"
@@ -617,7 +615,7 @@
] $
case pathInfo req of
[] -> A.encode jsonValue
- ["trailing"] -> A.encode jsonValue <> " \n\r\n\t "
+ ["trailing"] -> L.append (A.encode jsonValue) " \n\r\n\t "
x -> error $ "unsupported: " ++ show x
jsonValue :: A.Value