Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package zli for openSUSE:Factory checked in at 2026-08-06 16:20:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/zli (Old) and /work/SRC/openSUSE:Factory/.zli.new.16738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "zli" Thu Aug 6 16:20:50 2026 rev:18 rq:1369657 version:2.1.20 Changes: -------- --- /work/SRC/openSUSE:Factory/zli/zli.changes 2026-08-04 22:43:11.971686455 +0200 +++ /work/SRC/openSUSE:Factory/.zli.new.16738/zli.changes 2026-08-06 16:22:53.349878384 +0200 @@ -1,0 +2,6 @@ +Wed Aug 05 05:49:59 UTC 2026 - Johannes Kastl <[email protected]> + +- Update to version 2.1.20: + No zli-related changes or dependency updates + +------------------------------------------------------------------- Old: ---- zli-2.1.19.obscpio New: ---- zli-2.1.20.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ zli.spec ++++++ --- /var/tmp/diff_new_pack.3alHJC/_old 2026-08-06 16:22:54.393914760 +0200 +++ /var/tmp/diff_new_pack.3alHJC/_new 2026-08-06 16:22:54.397914899 +0200 @@ -17,7 +17,7 @@ Name: zli -Version: 2.1.19 +Version: 2.1.20 Release: 0 Summary: CLI for the Zot container registry License: Apache-2.0 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.3alHJC/_old 2026-08-06 16:22:54.437916292 +0200 +++ /var/tmp/diff_new_pack.3alHJC/_new 2026-08-06 16:22:54.445916572 +0200 @@ -3,7 +3,7 @@ <param name="url">https://github.com/project-zot/zot.git</param> <param name="scm">git</param> <param name="exclude">.git</param> - <param name="revision">refs/tags/v2.1.19</param> + <param name="revision">refs/tags/v2.1.20</param> <param name="versionformat">@PARENT_TAG@</param> <param name="versionrewrite-pattern">v(.*)</param> <param name="changesgenerate">enable</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.3alHJC/_old 2026-08-06 16:22:54.485917970 +0200 +++ /var/tmp/diff_new_pack.3alHJC/_new 2026-08-06 16:22:54.493918249 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/project-zot/zot.git</param> - <param name="changesrevision">3521f81d92a43a2e57aecff991285bf8fc12a423</param></service></servicedata> + <param name="changesrevision">3b5796d834e8661ea661a5fcc47add8d4405aebf</param></service></servicedata> (No newline at EOF) ++++++ vendor.tar.gz ++++++ /work/SRC/openSUSE:Factory/zli/vendor.tar.gz /work/SRC/openSUSE:Factory/.zli.new.16738/vendor.tar.gz differ: char 15, line 1 ++++++ zli-2.1.19.obscpio -> zli-2.1.20.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zli-2.1.19/Makefile new/zli-2.1.20/Makefile --- old/zli-2.1.19/Makefile 2026-08-03 21:45:53.000000000 +0200 +++ new/zli-2.1.20/Makefile 2026-08-04 19:31:11.000000000 +0200 @@ -28,7 +28,7 @@ ACTION_VALIDATOR := $(TOOLSDIR)/bin/action-validator ACTION_VALIDATOR_VERSION := v0.5.3 ZUI_BUILD_PATH := "" -ZUI_VERSION := commit-a446689 +ZUI_VERSION := commit-fbbd359 ZUI_REPO_OWNER := project-zot ZUI_REPO_NAME := zui SWAGGER_VERSION := v1.16.6 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zli-2.1.19/test/blackbox/helpers_zot.bash new/zli-2.1.20/test/blackbox/helpers_zot.bash --- old/zli-2.1.19/test/blackbox/helpers_zot.bash 2026-08-03 21:45:53.000000000 +0200 +++ new/zli-2.1.20/test/blackbox/helpers_zot.bash 2026-08-04 19:31:11.000000000 +0200 @@ -6,6 +6,7 @@ ZOT_MINIMAL_PATH=${ROOT_DIR}/bin/zot-${OS}-${ARCH}-minimal ZB_PATH=${ROOT_DIR}/bin/zb-${OS}-${ARCH} TEST_DATA_DIR=${BATS_FILE_TMPDIR}/test/data +ZOT_RELEASE_VERSION="v2.1.18" AUTH_USER=poweruser AUTH_PASS=sup*rSecr9T # additional creds for sha256/sha512 based password hashes @@ -28,17 +29,28 @@ echo -n "$! " >> ${BATS_FILE_TMPDIR}/zot.pid } +function zot_download_base_url() { + local base="https://github.com/project-zot/zot/releases" + local url_version_path="${ZOT_RELEASE_VERSION}/download" + if [[ "${ZOT_RELEASE_VERSION}" != "latest" ]]; then + url_version_path="download/${ZOT_RELEASE_VERSION}" + fi + + echo "${base}/${url_version_path}" +} + function zot_rel_serve() { local config_file=${1} local zot_path=${BATS_FILE_TMPDIR}/zot-rel-${OS}-${ARCH} + local base_url=$(zot_download_base_url) if [ ! -f "${zot_path}" ]; then - if ! curl -f -L -o "${zot_path}" https://github.com/project-zot/zot/releases/latest/download/zot-${OS}-${ARCH}; then + if ! curl -f -L -o "${zot_path}" "${base_url}/zot-${OS}-${ARCH}"; then echo "ERROR: Failed to download zot binary from GitHub." >&2 return 1 fi # Download checksum file and verify integrity - checksum_url="https://github.com/project-zot/zot/releases/latest/download/checksums.sha256.txt" + checksum_url="${base_url}/checksums.sha256.txt" checksum_file="${BATS_FILE_TMPDIR}/zot-sha256sums.txt" curl -L -o "${checksum_file}" "${checksum_url}" expected_sum=$(grep "zot-${OS}-${ARCH}$" "${checksum_file}" | awk '{print $1}') @@ -62,14 +74,15 @@ function zot_rel_min_serve() { local config_file=${1} local zot_path=${BATS_FILE_TMPDIR}/zot-rel-${OS}-${ARCH}-minimal + local base_url=$(zot_download_base_url) if [ ! -f "${zot_path}" ]; then - if ! curl -f -L -o "${zot_path}" https://github.com/project-zot/zot/releases/latest/download/zot-${OS}-${ARCH}-minimal; then + if ! curl -f -L -o "${zot_path}" "${base_url}/zot-${OS}-${ARCH}-minimal"; then echo "ERROR: Failed to download zot binary from GitHub." >&2 return 1 fi # Download checksum file and verify integrity - checksum_url="https://github.com/project-zot/zot/releases/latest/download/checksums.sha256.txt" + checksum_url="${base_url}/checksums.sha256.txt" checksum_file="${BATS_FILE_TMPDIR}/zot-sha256sums.txt" curl -L -o "${checksum_file}" "${checksum_url}" expected_sum=$(grep "zot-${OS}-${ARCH}-minimal$" "${checksum_file}" | awk '{print $1}') ++++++ zli.obsinfo ++++++ --- /var/tmp/diff_new_pack.3alHJC/_old 2026-08-06 16:22:55.893967188 +0200 +++ /var/tmp/diff_new_pack.3alHJC/_new 2026-08-06 16:22:55.901967468 +0200 @@ -1,5 +1,5 @@ name: zli -version: 2.1.19 -mtime: 1785786353 -commit: 3521f81d92a43a2e57aecff991285bf8fc12a423 +version: 2.1.20 +mtime: 1785864671 +commit: 3b5796d834e8661ea661a5fcc47add8d4405aebf
