Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package passt for openSUSE:Factory checked in at 2025-05-20 09:31:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/passt (Old) and /work/SRC/openSUSE:Factory/.passt.new.30101 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "passt" Tue May 20 09:31:17 2025 rev:27 rq:1277837 version:20250512.8ec1341 Changes: -------- --- /work/SRC/openSUSE:Factory/passt/passt.changes 2025-05-06 16:39:33.643483889 +0200 +++ /work/SRC/openSUSE:Factory/.passt.new.30101/passt.changes 2025-05-20 09:31:22.000392131 +0200 @@ -1,0 +2,13 @@ +Tue May 13 15:02:15 UTC 2025 - dcer...@suse.com + +- Update to version 20250512.8ec1341: + * flow: close socket fd on error + * flow: fix wrong macro name in comments + +------------------------------------------------------------------- +Fri May 09 12:44:10 UTC 2025 - dcer...@suse.com + +- Update to version 20250507.eea8a76: + * flow: fix podman issue #26073 + +------------------------------------------------------------------- Old: ---- passt-20250503.587980c.tar.zst New: ---- passt-20250512.8ec1341.tar.zst ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ passt.spec ++++++ --- /var/tmp/diff_new_pack.NHUr7g/_old 2025-05-20 09:31:22.668419617 +0200 +++ /var/tmp/diff_new_pack.NHUr7g/_new 2025-05-20 09:31:22.672419781 +0200 @@ -45,7 +45,7 @@ %global selinuxtype targeted Name: passt -Version: 20250503.587980c +Version: 20250512.8ec1341 Release: 0 Summary: User-mode networking daemons for virtual machines and namespaces License: GPL-2.0-or-later AND BSD-3-Clause ++++++ _service ++++++ --- /var/tmp/diff_new_pack.NHUr7g/_old 2025-05-20 09:31:22.700420933 +0200 +++ /var/tmp/diff_new_pack.NHUr7g/_new 2025-05-20 09:31:22.700420933 +0200 @@ -4,7 +4,7 @@ <param name="scm">git</param> <param name="changesgenerate">enable</param> <param name="versionformat">%cs.%h</param> - <param name="revision">2025_05_03.587980c</param> + <param name="revision">2025_05_12.8ec1341</param> </service> <service mode="manual" name="recompress"> <param name="file">*.tar</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.NHUr7g/_old 2025-05-20 09:31:22.720421756 +0200 +++ /var/tmp/diff_new_pack.NHUr7g/_new 2025-05-20 09:31:22.724421921 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://passt.top/passt</param> - <param name="changesrevision">587980ca1e9d5645f6738f67ec3f15cc61a7efa3</param></service></servicedata> + <param name="changesrevision">8ec134109eb136432a29bdf5a14f8b1fd4e46208</param></service></servicedata> (No newline at EOF) ++++++ passt-20250503.587980c.tar.zst -> passt-20250512.8ec1341.tar.zst ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/passt-20250503.587980c/flow.c new/passt-20250512.8ec1341/flow.c --- old/passt-20250503.587980c/flow.c 2025-05-03 10:21:20.000000000 +0200 +++ new/passt-20250512.8ec1341/flow.c 2025-05-12 21:04:57.000000000 +0200 @@ -81,7 +81,7 @@ * * Free cluster list * flow_first_free gives the index of the first (lowest index) free cluster. - * Each free cluster has the index of the next free cluster, or MAX_FLOW if + * Each free cluster has the index of the next free cluster, or FLOW_MAX if * it is the last free cluster. Together these form a linked list of free * clusters, in strictly increasing order of index. * diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/passt-20250503.587980c/udp_flow.c new/passt-20250512.8ec1341/udp_flow.c --- old/passt-20250503.587980c/udp_flow.c 2025-05-03 10:21:20.000000000 +0200 +++ new/passt-20250512.8ec1341/udp_flow.c 2025-05-12 21:04:57.000000000 +0200 @@ -87,6 +87,10 @@ if (flowside_connect(c, s, pif, side) < 0) { int rc = -errno; + + epoll_del(c, s); + close(s); + flow_dbg_perror(uflow, "Couldn't connect flow socket"); return rc; }