Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-hackage-security for
openSUSE:Factory checked in at 2025-07-02 12:08:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-hackage-security (Old)
and /work/SRC/openSUSE:Factory/.ghc-hackage-security.new.7067 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-hackage-security"
Wed Jul 2 12:08:22 2025 rev:43 rq:1288618 version:0.6.3.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-hackage-security/ghc-hackage-security.changes
2025-05-15 17:00:37.584314036 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-hackage-security.new.7067/ghc-hackage-security.changes
2025-07-02 12:09:06.261721307 +0200
@@ -1,0 +2,10 @@
+Wed Jun 18 17:56:00 UTC 2025 - Peter Simons <[email protected]>
+
+- Update hackage-security to version 0.6.3.1.
+ 0.6.3.1
+ -------
+
+ * Allow `QuickCheck-2.16`.
+ * Tested with GHC 8.4 - 9.12.
+
+-------------------------------------------------------------------
Old:
----
hackage-security-0.6.3.0.tar.gz
New:
----
hackage-security-0.6.3.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-hackage-security.spec ++++++
--- /var/tmp/diff_new_pack.HlnIGC/_old 2025-07-02 12:09:07.209760875 +0200
+++ /var/tmp/diff_new_pack.HlnIGC/_new 2025-07-02 12:09:07.209760875 +0200
@@ -20,7 +20,7 @@
%global pkgver %{pkg_name}-%{version}
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.6.3.0
+Version: 0.6.3.1
Release: 0
Summary: Hackage security library
License: BSD-3-Clause
++++++ hackage-security-0.6.3.0.tar.gz -> hackage-security-0.6.3.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/hackage-security-0.6.3.0/ChangeLog.md
new/hackage-security-0.6.3.1/ChangeLog.md
--- old/hackage-security-0.6.3.0/ChangeLog.md 2001-09-09 03:46:40.000000000
+0200
+++ new/hackage-security-0.6.3.1/ChangeLog.md 2001-09-09 03:46:40.000000000
+0200
@@ -1,5 +1,12 @@
See also http://pvp.haskell.org/faq
+0.6.3.1
+-------
+
+* Allow `QuickCheck-2.16`.
+* Tested with GHC 8.4 - 9.12.
+
+
0.6.3.0
-------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/hackage-security-0.6.3.0/hackage-security.cabal
new/hackage-security-0.6.3.1/hackage-security.cabal
--- old/hackage-security-0.6.3.0/hackage-security.cabal 2001-09-09
03:46:40.000000000 +0200
+++ new/hackage-security-0.6.3.1/hackage-security.cabal 2001-09-09
03:46:40.000000000 +0200
@@ -1,6 +1,6 @@
cabal-version: 1.12
name: hackage-security
-version: 0.6.3.0
+version: 0.6.3.1
synopsis: Hackage security library
description: The hackage security library provides both server and
@@ -32,7 +32,7 @@
tested-with:
GHC == 9.12.2
- GHC == 9.10.1
+ GHC == 9.10.2
GHC == 9.8.4
GHC == 9.6.7
GHC == 9.4.8
@@ -213,7 +213,7 @@
-- tasty-1.1.0.4 is the version in Stackage LTS 12.26
(GHC 8.4)
tasty-hunit == 0.10.*,
tasty-quickcheck >= 0.10 && < 1,
- QuickCheck >= 2.11 && < 2.16,
+ QuickCheck >= 2.11 && < 2.17,
aeson >= 1.4 && < 1.6 || >= 2.0 &&
< 2.3,
vector >= 0.12 && < 0.14,
unordered-containers >= 0.2.8.0 && < 0.3,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/hackage-security-0.6.3.0/tests/TestSuite.hs
new/hackage-security-0.6.3.1/tests/TestSuite.hs
--- old/hackage-security-0.6.3.0/tests/TestSuite.hs 2001-09-09
03:46:40.000000000 +0200
+++ new/hackage-security-0.6.3.1/tests/TestSuite.hs 2001-09-09
03:46:40.000000000 +0200
@@ -2,14 +2,14 @@
module Main (main) where
-- stdlib
-import Control.Exception
-import Control.Monad
+import Control.Exception ( handleJust )
+import Control.Monad ( unless )
import Data.Maybe (fromJust)
-import Data.Time
-import Network.URI (URI, parseURI)
-import Test.Tasty
-import Test.Tasty.HUnit
-import Test.Tasty.QuickCheck hiding (label)
+import Data.Time ( UTCTime, getCurrentTime )
+import Network.URI ( URI, parseURI )
+import Test.Tasty ( defaultMain, testGroup, TestTree )
+import Test.Tasty.HUnit ( testCase, (@?=), assertEqual, assertFailure,
Assertion )
+import Test.Tasty.QuickCheck ( testProperty )
import System.IO.Temp (withSystemTempDirectory)
import qualified Codec.Archive.Tar.Entry as Tar
import qualified Data.ByteString.Lazy.Char8 as BS