Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-flux-local for openSUSE:Factory checked in at 2025-08-07 16:49:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-flux-local (Old) and /work/SRC/openSUSE:Factory/.python-flux-local.new.1085 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-flux-local" Thu Aug 7 16:49:17 2025 rev:10 rq:1298054 version:7.8.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-flux-local/python-flux-local.changes 2025-07-28 14:59:25.513464538 +0200 +++ /work/SRC/openSUSE:Factory/.python-flux-local.new.1085/python-flux-local.changes 2025-08-07 16:51:04.185976566 +0200 @@ -1,0 +2,8 @@ +Thu Aug 7 05:28:37 UTC 2025 - Johannes Kastl <opensuse_buildserv...@ojkastl.de> + +- update to 7.8.0: + * fix: render out oci volume mount images by @buroa in #981 + * chore(deps): update actions/download-artifact action to v5 by + @renovate[bot] in #982 + +------------------------------------------------------------------- Old: ---- flux_local-7.7.1.tar.gz New: ---- flux_local-7.8.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-flux-local.spec ++++++ --- /var/tmp/diff_new_pack.jKESeh/_old 2025-08-07 16:51:04.794002055 +0200 +++ /var/tmp/diff_new_pack.jKESeh/_new 2025-08-07 16:51:04.794002055 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-flux-local # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2025 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-flux-local -Version: 7.7.1 +Version: 7.8.0 Release: 0 Summary: Set of tools for managing a flux gitops repository License: Apache-2.0 ++++++ flux_local-7.7.1.tar.gz -> flux_local-7.8.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/flux_local-7.7.1/PKG-INFO new/flux_local-7.8.0/PKG-INFO --- old/flux_local-7.7.1/PKG-INFO 2025-07-27 04:34:01.324500600 +0200 +++ new/flux_local-7.8.0/PKG-INFO 2025-08-06 14:59:19.006265900 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: flux_local -Version: 7.7.1 +Version: 7.8.0 Summary: flux-local is a set of tools and libraries for managing a local flux gitops repository focused on validation steps to help improve quality of commits, PRs, and general local testing. Author-email: Allen Porter <allen.por...@gmail.com> License-Expression: Apache-2.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/flux_local-7.7.1/flux_local/image.py new/flux_local-7.8.0/flux_local/image.py --- old/flux_local-7.7.1/flux_local/image.py 2025-07-27 04:33:55.000000000 +0200 +++ new/flux_local-7.8.0/flux_local/image.py 2025-08-06 14:59:14.000000000 +0200 @@ -41,6 +41,8 @@ for key, value in doc.items(): if key == image_key: + if isinstance(value, dict) and "reference" in value: + value = value.get("reference") # https://kubernetes.io/blog/2024/08/16/kubernetes-1-31-image-volume-source/ if not isinstance(value, str): raise ValueError( f"Expected string for image key '{image_key}', got type {type(value).__name__}: {value}" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/flux_local-7.7.1/flux_local.egg-info/PKG-INFO new/flux_local-7.8.0/flux_local.egg-info/PKG-INFO --- old/flux_local-7.7.1/flux_local.egg-info/PKG-INFO 2025-07-27 04:34:01.000000000 +0200 +++ new/flux_local-7.8.0/flux_local.egg-info/PKG-INFO 2025-08-06 14:59:18.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: flux_local -Version: 7.7.1 +Version: 7.8.0 Summary: flux-local is a set of tools and libraries for managing a local flux gitops repository focused on validation steps to help improve quality of commits, PRs, and general local testing. Author-email: Allen Porter <allen.por...@gmail.com> License-Expression: Apache-2.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/flux_local-7.7.1/pyproject.toml new/flux_local-7.8.0/pyproject.toml --- old/flux_local-7.7.1/pyproject.toml 2025-07-27 04:33:55.000000000 +0200 +++ new/flux_local-7.8.0/pyproject.toml 2025-08-06 14:59:14.000000000 +0200 @@ -4,7 +4,7 @@ [project] name = "flux_local" -version = "7.7.1" +version = "7.8.0" license = "Apache-2.0" license-files = ["LICENSE"] description = "flux-local is a set of tools and libraries for managing a local flux gitops repository focused on validation steps to help improve quality of commits, PRs, and general local testing." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/flux_local-7.7.1/tests/test_image.py new/flux_local-7.8.0/tests/test_image.py --- old/flux_local-7.7.1/tests/test_image.py 2025-07-27 04:33:55.000000000 +0200 +++ new/flux_local-7.8.0/tests/test_image.py 2025-08-06 14:59:14.000000000 +0200 @@ -19,7 +19,14 @@ [ ( CWD / "tests/testdata/cluster8", - {"flux-system/apps": {"alpine", "busybox"}}, + { + "flux-system/apps": { + "alpine", + "busybox", + "ghcr.io/buroa/qbrr:latest", + "ghcr.io/home-operations/qbittorrent:latest", + } + }, ), ( CWD / "tests/testdata/cluster7",