Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gitleaks for openSUSE:Factory checked in at 2025-11-21 16:54:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gitleaks (Old) and /work/SRC/openSUSE:Factory/.gitleaks.new.2061 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gitleaks" Fri Nov 21 16:54:41 2025 rev:31 rq:1318775 version:8.29.1 Changes: -------- --- /work/SRC/openSUSE:Factory/gitleaks/gitleaks.changes 2025-11-05 16:23:47.999941497 +0100 +++ /work/SRC/openSUSE:Factory/.gitleaks.new.2061/gitleaks.changes 2025-11-21 16:55:22.211052780 +0100 @@ -1,0 +2,7 @@ +Thu Nov 20 05:48:20 UTC 2025 - Johannes Kastl <[email protected]> + +- Update to version 8.29.1: + * thats a paddlin + * feat: document stdout report path (#1990) + +------------------------------------------------------------------- Old: ---- gitleaks-8.29.0.obscpio New: ---- gitleaks-8.29.1.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gitleaks.spec ++++++ --- /var/tmp/diff_new_pack.bzDiD8/_old 2025-11-21 16:55:25.567194205 +0100 +++ /var/tmp/diff_new_pack.bzDiD8/_new 2025-11-21 16:55:25.571194373 +0100 @@ -18,7 +18,7 @@ Name: gitleaks -Version: 8.29.0 +Version: 8.29.1 Release: 0 Summary: Protect and discover secrets using Gitleaks License: MIT ++++++ _service ++++++ --- /var/tmp/diff_new_pack.bzDiD8/_old 2025-11-21 16:55:25.603195722 +0100 +++ /var/tmp/diff_new_pack.bzDiD8/_new 2025-11-21 16:55:25.607195891 +0100 @@ -3,7 +3,7 @@ <param name="url">https://github.com/zricethezav/gitleaks</param> <param name="scm">git</param> <param name="exclude">.git</param> - <param name="revision">v8.29.0</param> + <param name="revision">v8.29.1</param> <param name="versionformat">@PARENT_TAG@</param> <param name="versionrewrite-pattern">v(.*)</param> <param name="changesgenerate">enable</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.bzDiD8/_old 2025-11-21 16:55:25.631196902 +0100 +++ /var/tmp/diff_new_pack.bzDiD8/_new 2025-11-21 16:55:25.635197070 +0100 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/zricethezav/gitleaks</param> - <param name="changesrevision">ed65b65095eb699c614aa5ac058f6724539fb03f</param></service></servicedata> + <param name="changesrevision">fb5d707e08fe0d2578b155458fdd53b6782dcab2</param></service></servicedata> (No newline at EOF) ++++++ gitleaks-8.29.0.obscpio -> gitleaks-8.29.1.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gitleaks-8.29.0/Dockerfile new/gitleaks-8.29.1/Dockerfile --- old/gitleaks-8.29.0/Dockerfile 2025-10-24 19:30:33.000000000 +0200 +++ new/gitleaks-8.29.1/Dockerfile 2025-11-19 22:11:04.000000000 +0100 @@ -2,7 +2,7 @@ WORKDIR /go/src/github.com/zricethezav/gitleaks COPY . . RUN VERSION=$(git describe --tags --abbrev=0) && \ -CGO_ENABLED=0 go build -o bin/gitleaks -ldflags "-X=github.com/zricethezav/gitleaks/v8/cmd.Version=${VERSION}" +CGO_ENABLED=0 go build -o bin/gitleaks -ldflags "-X=github.com/zricethezav/gitleaks/v8/version.Version=${VERSION}" FROM alpine:3.19 RUN apk add --no-cache bash git openssh-client diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gitleaks-8.29.0/Makefile new/gitleaks-8.29.1/Makefile --- old/gitleaks-8.29.0/Makefile 2025-10-24 19:30:33.000000000 +0200 +++ new/gitleaks-8.29.1/Makefile 2025-11-19 22:11:04.000000000 +0100 @@ -2,7 +2,7 @@ PKG=github.com/zricethezav/gitleaks VERSION := `git fetch --tags && git tag | sort -V | tail -1` -LDFLAGS=-ldflags "-X=github.com/zricethezav/gitleaks/v8/cmd.Version=$(VERSION)" +LDFLAGS=-ldflags "-X=github.com/zricethezav/gitleaks/v8/version.Version=$(VERSION)" COVER=--cover --coverprofile=cover.out test-cover: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gitleaks-8.29.0/cmd/root.go new/gitleaks-8.29.1/cmd/root.go --- old/gitleaks-8.29.0/cmd/root.go 2025-10-24 19:30:33.000000000 +0200 +++ new/gitleaks-8.29.1/cmd/root.go 2025-11-19 22:11:04.000000000 +0100 @@ -74,7 +74,7 @@ cobra.OnInitialize(initLog) rootCmd.PersistentFlags().StringP("config", "c", "", configDescription) rootCmd.PersistentFlags().Int("exit-code", 1, "exit code when leaks have been encountered") - rootCmd.PersistentFlags().StringP("report-path", "r", "", "report file") + rootCmd.PersistentFlags().StringP("report-path", "r", "", "report file (use \"-\" for stdout)") rootCmd.PersistentFlags().StringP("report-format", "f", "", "output format (json, csv, junit, sarif, template)") rootCmd.PersistentFlags().StringP("report-template", "", "", "template file used to generate the report (implies --report-format=template)") rootCmd.PersistentFlags().StringP("baseline-path", "b", "", "path to baseline with issues that can be ignored") ++++++ gitleaks.obsinfo ++++++ --- /var/tmp/diff_new_pack.bzDiD8/_old 2025-11-21 16:55:26.247222861 +0100 +++ /var/tmp/diff_new_pack.bzDiD8/_new 2025-11-21 16:55:26.251223030 +0100 @@ -1,5 +1,5 @@ name: gitleaks -version: 8.29.0 -mtime: 1761327033 -commit: ed65b65095eb699c614aa5ac058f6724539fb03f +version: 8.29.1 +mtime: 1763586664 +commit: fb5d707e08fe0d2578b155458fdd53b6782dcab2 ++++++ vendor.tar.gz ++++++
