Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gopass for openSUSE:Factory checked in at 2025-04-22 17:28:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gopass (Old) and /work/SRC/openSUSE:Factory/.gopass.new.30101 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gopass" Tue Apr 22 17:28:16 2025 rev:6 rq:1271210 version:1.15.16 Changes: -------- --- /work/SRC/openSUSE:Factory/gopass/gopass.changes 2024-11-25 23:20:49.184971480 +0100 +++ /work/SRC/openSUSE:Factory/.gopass.new.30101/gopass.changes 2025-04-22 17:29:05.937138110 +0200 @@ -1,0 +2,58 @@ +Mon Apr 21 20:42:12 UTC 2025 - Marcus Rueckert <[email protected]> + +- Update to 1.15.16: + - [BUGFIX] Allow use of trailing slash for cp/mv command (#3080) + - [BUGFIX] Check if any usable key matches on clone (#3027) + - [BUGFIX] Fixed max length check for strings in create/wizard + (#3056) + - [BUGFIX] Fixed password not saving to clipboard with + safecontent and autoclip true (#3053) + - [BUGFIX] replace return of wrong error variable (#3015) + - [ENHANCEMENT] Add support for autocompletion with flags in REPL + mode (#3057) + - [ENHANCEMENT] Make it possible to override show.autoclip + (#3082) + - [FEATURE] Add option -r/--regex to find (#3083) + - [UX] Make single store sync more intuitive / verbose (#3076) + - [bugfix] Don't check for autosync on manual triggered sync + (#3026) (#3029) + - [chore] Add keep-sorted linter (#3130) + - [chore] Add tpl func tests and fix two small issues (#3058) + - [chore] Do not run linters twice (#3119) + - [chore] Migrate goreleaser config to v2 (#3122) + - [chore] Migrate to golangci-lint v2 (#3104) + - [chore] Move gitconfig to their own repo (#3131) + - [chore] Move set from internal to pkg (#3129) + - [chore] Update dependencies (#3120) + - [feat] Add conditional includes for gitconfig (#3128) + - [feat] Add unconditional includes for gitconfig (#3127) + - [feat] Remove expensive and unmaintained zxcvbn-go strength + checker (#3133) + - [feat] Replace clipboard library to support wl-copy args + (#3123) + - [fix] Add LICENSE, Changelog, manpage and shell completions to + deb and (#3121) + - [fix] Fix a flaky test (#3137) + - [fix] Fix debug.ModuleVersion (#3079) + - [fix] Fix test failure due to ambient variables (#3135) + - [fix] Fix test regressions (#3116) + - [fix] Fix this annoying test + - [fix] Include git commit hash in tarballs (#3124) + - [fix] Relase fixes (#3136) + - [fix] Update Makefile and fix lint violations (#3134) +- refresh do-not-strip.patch +- drop bd408d6cd47aaccdcc56fed606b21581d7ef63e4.patch + +------------------------------------------------------------------- +Wed Dec 18 18:56:27 UTC 2024 - Marcus Rueckert <[email protected]> + +- Update vendor tarball for (boo#1234562 CVE-2024-45337) + pulled bd408d6cd47aaccdcc56fed606b21581d7ef63e4.patch from + upstream and apply before regenerating the vendor tarball with a + shell script: + + #!/usr/bin/bash + export GOWORK=off + go mod vendor && (rm ../vendor.tar.xz ; bsdtar cfJ ../vendor.tar.xz vendor/ go.mod go.sum ) + +------------------------------------------------------------------- Old: ---- gopass-1.15.15.tar.gz New: ---- gopass-1.15.16.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gopass.spec ++++++ --- /var/tmp/diff_new_pack.NJwS4G/_old 2025-04-22 17:29:07.133188335 +0200 +++ /var/tmp/diff_new_pack.NJwS4G/_new 2025-04-22 17:29:07.133188335 +0200 @@ -1,7 +1,7 @@ # # spec file for package gopass # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # 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 @@ %global make_args PREFIX=%{_prefix} GOPASS_REVISION=v%{version} Name: gopass -Version: 1.15.15 +Version: 1.15.16 Release: 0 Summary: The slightly more awesome standard unix password manager for teams License: MIT ++++++ do-not-strip.patch ++++++ --- /var/tmp/diff_new_pack.NJwS4G/_old 2025-04-22 17:29:07.181190350 +0200 +++ /var/tmp/diff_new_pack.NJwS4G/_new 2025-04-22 17:29:07.197191022 +0200 @@ -1,12 +1,12 @@ -Index: gopass-1.15.3/Makefile +Index: gopass/Makefile =================================================================== ---- gopass-1.15.3.orig/Makefile -+++ gopass-1.15.3/Makefile +--- gopass.orig/Makefile ++++ gopass/Makefile @@ -11,7 +11,7 @@ ZSH_COMPLETION_OUTPUT := zsh.complet CLIPHELPERS ?= "" # Support reproducible builds by embedding date according to SOURCE_DATE_EPOCH if present DATE := $(shell date -u -d "@$(SOURCE_DATE_EPOCH)" '+%FT%T%z' 2>/dev/null || date -u '+%FT%T%z') --BUILDFLAGS_NOPIE := -tags=netgo -trimpath -ldflags="-s -w -X main.version=$(GOPASS_VERSION) -X main.commit=$(GOPASS_REVISION) -X main.date=$(DATE) $(CLIPHELPERS)" -gcflags="-trimpath=$(GOPATH)" -asmflags="-trimpath=$(GOPATH)" +-BUILDFLAGS_NOPIE := -buildvcs=true -tags=netgo -trimpath -ldflags="-s -w -X main.version=$(GOPASS_VERSION) -X main.commit=$(GOPASS_REVISION) -X main.date=$(DATE) $(CLIPHELPERS)" -gcflags="-trimpath=$(GOPATH)" -asmflags="-trimpath=$(GOPATH)" +BUILDFLAGS_NOPIE := -tags=netgo -trimpath -ldflags="-w -X main.version=$(GOPASS_VERSION) -X main.commit=$(GOPASS_REVISION) -X main.date=$(DATE) $(CLIPHELPERS)" -gcflags="-trimpath=$(GOPATH)" -asmflags="-trimpath=$(GOPATH)" BUILDFLAGS ?= $(BUILDFLAGS_NOPIE) -buildmode=pie TESTFLAGS ?= ++++++ gopass-1.15.15.tar.gz -> gopass-1.15.16.tar.gz ++++++ ++++ 12848 lines of diff (skipped) ++++++ vendor.tar.xz ++++++ ++++ 117028 lines of diff (skipped)
