Hello community,

here is the log from the commit of package ghc-http-conduit for 
openSUSE:Factory checked in at 2018-12-06 12:16:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-http-conduit (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-http-conduit.new.19453 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-http-conduit"

Thu Dec  6 12:16:53 2018 rev:15 rq:653442 version:2.3.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-http-conduit/ghc-http-conduit.changes        
2018-10-25 08:26:29.215798154 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-http-conduit.new.19453/ghc-http-conduit.changes 
    2018-12-06 12:16:55.401545156 +0100
@@ -1,0 +2,18 @@
+Mon Nov 26 03:01:45 UTC 2018 - [email protected]
+
+- Update http-conduit to version 2.3.4.
+  Upstream has edited the change log file since the last release in
+  a non-trivial way, i.e. they did more than just add a new entry
+  at the top. You can review the file at:
+  http://hackage.haskell.org/package/http-conduit-2.3.4/src/ChangeLog.md
+
+-------------------------------------------------------------------
+Sat Nov 24 03:01:48 UTC 2018 - [email protected]
+
+- Update http-conduit to version 2.3.3.
+  ## 2.3.3
+
+  * Reexport Header, QueryItem and RequestHeaders from Network.HTTP.Types
+  * Rewrite a type signature of setRequestHeaders with RequestHeaders
+
+-------------------------------------------------------------------

Old:
----
  http-conduit-2.3.2.tar.gz
  http-conduit.cabal

New:
----
  http-conduit-2.3.4.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-http-conduit.spec ++++++
--- /var/tmp/diff_new_pack.cxTeZS/_old  2018-12-06 12:16:56.185544314 +0100
+++ /var/tmp/diff_new_pack.cxTeZS/_new  2018-12-06 12:16:56.189544309 +0100
@@ -19,14 +19,13 @@
 %global pkg_name http-conduit
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        2.3.2
+Version:        2.3.4
 Release:        0
 Summary:        HTTP client package with conduit interface and HTTPS support
 License:        BSD-2-Clause
 Group:          Development/Libraries/Haskell
 URL:            https://hackage.haskell.org/package/%{pkg_name}
 Source0:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-aeson-devel
 BuildRequires:  ghc-bytestring-devel
@@ -78,7 +77,6 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
-cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ http-conduit-2.3.2.tar.gz -> http-conduit-2.3.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/http-conduit-2.3.2/ChangeLog.md 
new/http-conduit-2.3.4/ChangeLog.md
--- old/http-conduit-2.3.2/ChangeLog.md 2018-07-01 03:15:12.000000000 +0200
+++ new/http-conduit-2.3.4/ChangeLog.md 2018-11-25 07:22:28.000000000 +0100
@@ -1,3 +1,13 @@
+## 2.3.4
+
+* Reexport RequestHeaders from Network.HTTP.Types (what was intended in last 
version)
+* Fix mistake in ChangeLog
+
+## 2.3.3
+
+* Reexport Header, QueryItem and ResponseHeaders from Network.HTTP.Types
+* Rewrite a type signature of setRequestHeaders with RequestHeaders
+
 ## 2.3.2
 
 * Adds `parseRequestThrow`, `parseRequestThrow_`, and
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/http-conduit-2.3.2/Network/HTTP/Simple.hs 
new/http-conduit-2.3.4/Network/HTTP/Simple.hs
--- old/http-conduit-2.3.2/Network/HTTP/Simple.hs       2018-07-01 
03:15:12.000000000 +0200
+++ new/http-conduit-2.3.4/Network/HTTP/Simple.hs       2018-11-25 
07:22:28.000000000 +0100
@@ -28,9 +28,13 @@
     , httpSource
     , withResponse
       -- * Types
+    , H.Header
     , H.Query
+    , H.QueryItem
     , H.Request
+    , H.RequestHeaders
     , H.Response
+    , H.ResponseHeaders
     , JSONException (..)
     , H.HttpException (..)
     , H.Proxy (..)
@@ -328,7 +332,7 @@
 -- __first__.
 --
 -- @since 2.1.10
-setRequestHeaders :: [(H.HeaderName, S.ByteString)] -> H.Request -> H.Request
+setRequestHeaders :: H.RequestHeaders -> H.Request -> H.Request
 setRequestHeaders x req = req { H.requestHeaders = x }
 
 -- | Get the query string parameters
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/http-conduit-2.3.2/http-conduit.cabal 
new/http-conduit-2.3.4/http-conduit.cabal
--- old/http-conduit-2.3.2/http-conduit.cabal   2018-07-02 07:58:27.000000000 
+0200
+++ new/http-conduit-2.3.4/http-conduit.cabal   2018-11-25 07:22:28.000000000 
+0100
@@ -1,5 +1,5 @@
 name:            http-conduit
-version:         2.3.2
+version:         2.3.4
 license:         BSD3
 license-file:    LICENSE
 author:          Michael Snoyman <[email protected]>
@@ -29,7 +29,7 @@
                  , conduit               >= 1.2
                  , conduit-extra         >= 1.1
                  , http-types            >= 0.7
-                 , http-client           >= 0.5     && < 0.6
+                 , http-client           >= 0.5.13  && < 0.6
                  , http-client-tls       >= 0.3     && < 0.4
                  , mtl
                  , unliftio-core


Reply via email to