Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-http-client for openSUSE:Factory checked in at 2024-03-28 13:54:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-http-client (Old) and /work/SRC/openSUSE:Factory/.ghc-http-client.new.1905 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "ghc-http-client" Thu Mar 28 13:54:53 2024 rev:54 rq:1163161 version:0.7.17 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-http-client/ghc-http-client.changes 2024-01-08 23:45:10.178109841 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-http-client.new.1905/ghc-http-client.changes 2024-03-28 14:27:36.682778299 +0100 @@ -1,0 +2,8 @@ +Wed Mar 20 04:42:26 UTC 2024 - Peter Simons <psimons@suse.com> + +- Update http-client to version 0.7.17. + ## 0.7.17 + + * Add `managerSetMaxHeaderLength` to `Client` to change `ManagerSettings` `MaxHeaderLength`. + +------------------------------------------------------------------- Old: ---- http-client-0.7.16.tar.gz New: ---- http-client-0.7.17.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-http-client.spec ++++++ --- /var/tmp/diff_new_pack.QFIKFZ/_old 2024-03-28 14:27:45.599106284 +0100 +++ /var/tmp/diff_new_pack.QFIKFZ/_new 2024-03-28 14:27:45.599106284 +0100 @@ -1,7 +1,7 @@ # # spec file for package ghc-http-client # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -20,7 +20,7 @@ %global pkgver %{pkg_name}-%{version} %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.7.16 +Version: 0.7.17 Release: 0 Summary: An HTTP client engine License: MIT ++++++ http-client-0.7.16.tar.gz -> http-client-0.7.17.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/http-client-0.7.16/ChangeLog.md new/http-client-0.7.17/ChangeLog.md --- old/http-client-0.7.16/ChangeLog.md 2023-12-31 08:19:15.000000000 +0100 +++ new/http-client-0.7.17/ChangeLog.md 2024-03-20 05:42:23.000000000 +0100 @@ -1,5 +1,9 @@ # Changelog for http-client +## 0.7.17 + +* Add `managerSetMaxHeaderLength` to `Client` to change `ManagerSettings` `MaxHeaderLength`. + ## 0.7.16 * Add `responseEarlyHints` field to `Response`, containing a list of all HTTP 103 Early Hints headers received from the server. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/http-client-0.7.16/Network/HTTP/Client.hs new/http-client-0.7.17/Network/HTTP/Client.hs --- old/http-client-0.7.16/Network/HTTP/Client.hs 2023-12-31 08:19:15.000000000 +0100 +++ new/http-client-0.7.17/Network/HTTP/Client.hs 2024-03-20 05:42:23.000000000 +0100 @@ -112,6 +112,7 @@ , managerSetProxy , managerSetInsecureProxy , managerSetSecureProxy + , managerSetMaxHeaderLength , ProxyOverride , proxyFromRequest , noProxy @@ -320,6 +321,11 @@ managerSetProxy :: ProxyOverride -> ManagerSettings -> ManagerSettings managerSetProxy po = managerSetInsecureProxy po . managerSetSecureProxy po +-- @since 0.7.17 +managerSetMaxHeaderLength :: Int -> ManagerSettings -> ManagerSettings +managerSetMaxHeaderLength l manager = manager + { managerMaxHeaderLength = Just $ MaxHeaderLength l } + -- $example1 -- = Example Usage -- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/http-client-0.7.16/http-client.cabal new/http-client-0.7.17/http-client.cabal --- old/http-client-0.7.16/http-client.cabal 2023-12-31 08:19:15.000000000 +0100 +++ new/http-client-0.7.17/http-client.cabal 2024-03-20 05:42:23.000000000 +0100 @@ -1,5 +1,5 @@ name: http-client -version: 0.7.16 +version: 0.7.17 synopsis: An HTTP client engine description: Hackage documentation generation is not reliable. For up to date documentation, please see: <http://www.stackage.org/package/http-client>. homepage: https://github.com/snoyberg/http-client