Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-network-control for
openSUSE:Factory checked in at 2025-01-28 16:41:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-network-control (Old)
and /work/SRC/openSUSE:Factory/.ghc-network-control.new.2316 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-network-control"
Tue Jan 28 16:41:08 2025 rev:3 rq:1240780 version:0.1.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-network-control/ghc-network-control.changes
2024-11-12 19:20:41.193620558 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-network-control.new.2316/ghc-network-control.changes
2025-01-28 16:41:20.727464700 +0100
@@ -1,0 +2,8 @@
+Tue Jan 28 04:36:16 UTC 2025 - Peter Simons <[email protected]>
+
+- Update network-control to version 0.1.4.
+ ## 0.1.4
+
+ * Using Integer instead of Int in LRUCache.
+
+-------------------------------------------------------------------
Old:
----
network-control-0.1.3.tar.gz
New:
----
network-control-0.1.4.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-network-control.spec ++++++
--- /var/tmp/diff_new_pack.7qhh9V/_old 2025-01-28 16:41:21.267486974 +0100
+++ /var/tmp/diff_new_pack.7qhh9V/_new 2025-01-28 16:41:21.271487138 +0100
@@ -1,7 +1,7 @@
#
# spec file for package ghc-network-control
#
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 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.1.3
+Version: 0.1.4
Release: 0
Summary: Library to control network protocols
License: BSD-3-Clause
++++++ network-control-0.1.3.tar.gz -> network-control-0.1.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/network-control-0.1.3/Changelog.md
new/network-control-0.1.4/Changelog.md
--- old/network-control-0.1.3/Changelog.md 2001-09-09 03:46:40.000000000
+0200
+++ new/network-control-0.1.4/Changelog.md 2001-09-09 03:46:40.000000000
+0200
@@ -1,5 +1,9 @@
# Revision history for network-control
+## 0.1.4
+
+* Using Integer instead of Int in LRUCache.
+
## 0.1.3
* Simplify `maybeOpenRxWindow` and improve docs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/network-control-0.1.3/Network/Control/LRUCache.hs
new/network-control-0.1.4/Network/Control/LRUCache.hs
--- old/network-control-0.1.3/Network/Control/LRUCache.hs 2001-09-09
03:46:40.000000000 +0200
+++ new/network-control-0.1.4/Network/Control/LRUCache.hs 2001-09-09
03:46:40.000000000 +0200
@@ -14,7 +14,7 @@
import Data.OrdPSQ (OrdPSQ)
import qualified Data.OrdPSQ as PSQ
-type Priority = Int
+type Priority = Integer
-- | Sized cache based on least recently used.
data LRUCache k v = LRUCache
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/network-control-0.1.3/network-control.cabal
new/network-control-0.1.4/network-control.cabal
--- old/network-control-0.1.3/network-control.cabal 2001-09-09
03:46:40.000000000 +0200
+++ new/network-control-0.1.4/network-control.cabal 2001-09-09
03:46:40.000000000 +0200
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: network-control
-version: 0.1.3
+version: 0.1.4
license: BSD-3-Clause
license-file: LICENSE
maintainer: [email protected]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/network-control-0.1.3/test/Network/Control/FlowSpec.hs
new/network-control-0.1.4/test/Network/Control/FlowSpec.hs
--- old/network-control-0.1.3/test/Network/Control/FlowSpec.hs 2001-09-09
03:46:40.000000000 +0200
+++ new/network-control-0.1.4/test/Network/Control/FlowSpec.hs 2001-09-09
03:46:40.000000000 +0200
@@ -89,7 +89,7 @@
[ -- Take a prefix (starting with the same initialFlow)
Trace initialFlow <$> init (inits steps)
, -- Take a suffix (starting with a later initialFlow)
- map shiftInitialFlow $ tail (tails steps)
+ map shiftInitialFlow $ drop 1 (tails steps)
]
where
shiftInitialFlow :: [(Int, Step OpWithResult, RxFlow)] -> Trace