Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package podman for openSUSE:Factory checked in at 2025-05-13 20:12:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/podman (Old) and /work/SRC/openSUSE:Factory/.podman.new.30101 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "podman" Tue May 13 20:12:14 2025 rev:158 rq:1276770 version:5.4.2 Changes: -------- --- /work/SRC/openSUSE:Factory/podman/podman.changes 2025-04-07 17:35:22.001685417 +0200 +++ /work/SRC/openSUSE:Factory/.podman.new.30101/podman.changes 2025-05-13 20:12:34.264720295 +0200 @@ -1,0 +2,18 @@ +Wed May 7 15:50:54 UTC 2025 - Danish Prakash <danish.prak...@suse.com> + +- Downgrade criu from Requires to Recommends. It's provides optional + functionality and shouldn't be a hard requires. + +------------------------------------------------------------------- +Mon Apr 28 11:37:21 UTC 2025 - Madhankumar Chellamuthu <madhankumar.chellamu...@suse.com> + +- Added patch to remove using rw as a default mount option (bsc#1239776) + * 0001-remove-appending-rw-as-the-default-mount-option.patch + +------------------------------------------------------------------- +Fri Apr 11 15:31:49 UTC 2025 - Danish Prakash <danish.prak...@suse.com> + +- Remove iptables dependency (bsc#1231424) +- Hard require criu for checkpointing functionality. + +------------------------------------------------------------------- New: ---- 0001-remove-appending-rw-as-the-default-mount-option.patch BETA DEBUG BEGIN: New:- Added patch to remove using rw as a default mount option (bsc#1239776) * 0001-remove-appending-rw-as-the-default-mount-option.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ podman.spec ++++++ --- /var/tmp/diff_new_pack.ZrLZcb/_old 2025-05-13 20:12:35.700780567 +0200 +++ /var/tmp/diff_new_pack.ZrLZcb/_new 2025-05-13 20:12:35.704780735 +0200 @@ -31,6 +31,7 @@ Source0: %{name}-%{version}.tar.gz Source1: podman.conf Patch0: 0001-CVE-2025-22869-ssh-limit-the-size-of-the-internal-pa.patch +Patch1: 0001-remove-appending-rw-as-the-default-mount-option.patch BuildRequires: man BuildRequires: bash-completion BuildRequires: device-mapper-devel @@ -62,8 +63,8 @@ Recommends: gvisor-tap-vsock Requires: catatonit >= 0.1.7 Requires: conmon >= 2.0.24 +Recommends: criu Requires: fuse-overlayfs -Requires: iptables Requires: libcontainers-common >= 20230214 %if 0%{?sle_version} && 0%{?sle_version} <= 150500 # Build podman with CNI support for SLE-15-SP5 and lower ++++++ 0001-remove-appending-rw-as-the-default-mount-option.patch ++++++ >From 31a4b1040e04d711c6863f70561bde234f06f05a Mon Sep 17 00:00:00 2001 From: rcmadhankumar <madhankumar.chellamu...@suse.com> Date: Mon, 28 Apr 2025 17:40:28 +0530 Subject: [PATCH] remove appending rw as the default mount option --- pkg/util/mount_opts.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkg/util/mount_opts.go b/pkg/util/mount_opts.go index c9a773093e..4e37fd74a0 100644 --- a/pkg/util/mount_opts.go +++ b/pkg/util/mount_opts.go @@ -191,9 +191,6 @@ func processOptionsInternal(options []string, isTmpfs bool, sourcePath string, g newOptions = append(newOptions, opt) } - if !foundWrite { - newOptions = append(newOptions, "rw") - } if !foundProp { if recursiveBind { newOptions = append(newOptions, "rprivate") -- 2.49.0