Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package restic for openSUSE:Factory checked in at 2026-06-10 15:51:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/restic (Old) and /work/SRC/openSUSE:Factory/.restic.new.2375 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "restic" Wed Jun 10 15:51:33 2026 rev:37 rq:1358248 version:0.19.0 Changes: -------- --- /work/SRC/openSUSE:Factory/restic/restic.changes 2026-05-30 23:02:42.427541901 +0200 +++ /work/SRC/openSUSE:Factory/.restic.new.2375/restic.changes 2026-06-10 15:51:52.541541803 +0200 @@ -1,0 +2,64 @@ +Tue Jun 9 17:27:56 UTC 2026 - Marcus Rueckert <[email protected]> + +- update to 0.19.0 (boo#1266795 boo#1266211) + For all the details see: + https://github.com/restic/restic/releases/tag/v0.19.0 + + - Fix #2034: Support serving a restic mount of a Windows system + via Samba + - Fix #4447: Use mode 0700 for repository directories created + over SFTP + - Fix #4467: Exit with code 3 when some backup source paths do + not exist + - Fix #4759: Error out when environment variables hold invalid + values + - Fix #5233: Return exit code 3 when failing to remove snapshots + - Fix #5258: Exit with code 130 on SIGINT + - Fix #5280: Reject impossible find time bounds immediately + - Fix #5280: Make find --pack list blobs for tree packs + - Fix #5354: Allow rclone and sftp backends when running in + background + - Fix #5427: Correctly restore ACL inheritance state on Windows + - Fix #5477: Password prompt was sometimes not shown for backup + -v + - Fix #5487: Mark repository files read-only when using the SFTP + backend + - Fix #5586: Correctly handle snapshots --group-by with --latest + - Fix #5595: Avoid spurious chmod errors on certain file backends + - Fix #5683: Prevent backup --stdin-from-command from hanging + - Fix #5757: Respect --user and --host in key passwd + - Fix #21820: Correct handling of duplicate index entries + - Fix #21820: Correctly handle pack files missing from the index + - Chg #5293: Prune small packfiles more aggressively + - Chg #5767: Prevent excluding paths explicitly passed to backup + - Chg #21791: Update dependencies and require Go 1.25 or newer + - Enh #3326: Limit check to snapshots selected by filters + - Enh #3572: Support restoring ownership by name on UNIX systems + - Enh #3738: Optional GitHub token for self-update API requests + - Enh #4278: Support include filters in the rewrite command + - Enh #4728: Support zstd compression levels fastest and better + - Enh #4868: Include repository ID in the filesystem name used by + mount + - Enh #5175: Add status counters to copy in verbose text output + - Enh #5352: Support excluding cloud-backed files on macOS + - Enh #5383: Reduce progress bar refresh rates to decrease energy + usage + - Enh #5424: Enable Windows filesystem privileges before file + access + - Enh #5440: Make --host override environment variable + RESTIC_HOST + - Enh #5448: Support configuring nice and ionice in the Docker + image + - Enh #5453: Copy multiple snapshots in batches + - Enh #5523: Add Open Container Initiative labels to release + Docker image + - Enh #5531: Reduce Azure storage costs by optimizing uploads + - Enh #5562: Rewrite only changed status lines each frame + - Enh #5588: Show timezone context in snapshots output + - Enh #5610: Reduce check, copy, diff and stats memory usage + - Enh #5689: Show more detailed progress for stats + - Enh #5713: Significantly speed up index loading + - Enh #5718: Stricter and earlier validation of the mount point +- refresh disable-selfupdate.patch + +------------------------------------------------------------------- Old: ---- restic-0.18.1.tar.gz restic-0.18.1.tar.gz.asc New: ---- restic-0.19.0.tar.gz restic-0.19.0.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ restic.spec ++++++ --- /var/tmp/diff_new_pack.OWpufY/_old 2026-06-10 15:51:55.373659164 +0200 +++ /var/tmp/diff_new_pack.OWpufY/_new 2026-06-10 15:51:55.377659330 +0200 @@ -20,7 +20,7 @@ %bcond_without run_tests Name: restic -Version: 0.18.1 +Version: 0.19.0 Release: 0 Summary: Backup program with deduplication and encryption License: BSD-2-Clause ++++++ _service ++++++ --- /var/tmp/diff_new_pack.OWpufY/_old 2026-06-10 15:51:55.433661651 +0200 +++ /var/tmp/diff_new_pack.OWpufY/_new 2026-06-10 15:51:55.441661982 +0200 @@ -1,8 +1,4 @@ <services> - <service name="go_modules" mode="manual"> - <param name="replace"> - golang.org/x/net=golang.org/x/[email protected] - </param> - </service> + <service name="go_modules" mode="manual" /> </services> ++++++ disable-selfupdate.patch ++++++ --- /var/tmp/diff_new_pack.OWpufY/_old 2026-06-10 15:51:55.461662811 +0200 +++ /var/tmp/diff_new_pack.OWpufY/_new 2026-06-10 15:51:55.465662977 +0200 @@ -1,14 +1,14 @@ -Index: restic-0.18.0/build.go +Index: restic-0.19.0/build.go =================================================================== ---- restic-0.18.0.orig/build.go -+++ restic-0.18.0/build.go -@@ -58,7 +58,7 @@ var config = Config{ +--- restic-0.19.0.orig/build.go ++++ restic-0.19.0/build.go +@@ -57,7 +57,7 @@ var config = Config{ Main: "./cmd/restic", // package name for the main package // disable_grpc_modules is necessary to reduce the binary size since cloud.google.com/go/storage v1.44.0 // see https://github.com/googleapis/google-cloud-go/issues/11448 - DefaultBuildTags: []string{"selfupdate", "disable_grpc_modules"}, // specify build tags which are always used + DefaultBuildTags: []string{"disable_grpc_modules"}, // specify build tags which are always used Tests: []string{"./..."}, // tests to run - MinVersion: GoVersion{Major: 1, Minor: 23, Patch: 0}, // minimum Go version supported + MinVersion: GoVersion{Major: 1, Minor: 25, Patch: 0}, // minimum Go version supported } ++++++ restic-0.18.1.tar.gz -> restic-0.19.0.tar.gz ++++++ /work/SRC/openSUSE:Factory/restic/restic-0.18.1.tar.gz /work/SRC/openSUSE:Factory/.restic.new.2375/restic-0.19.0.tar.gz differ: char 12, line 1 ++++++ vendor.tar.gz ++++++ /work/SRC/openSUSE:Factory/restic/vendor.tar.gz /work/SRC/openSUSE:Factory/.restic.new.2375/vendor.tar.gz differ: char 12, line 1
