Skip to content

Commit bab77b4

Browse files
Tag v1.15.8 (#2661)
Signed-off-by: Dominik Schulz <[email protected]>
1 parent edd2b52 commit bab77b4

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## 1.15.8 / 2023-09-11
4+
5+
* [BUGFIX] Use goreleaser build for crosscompile (#2635)
6+
* [bugfix] Allow fsck to check a single secret (#2659)
7+
* [bugfix] Do not remove unused keys on import by default (#2657)
8+
* [bugfix] Fix parsing of large secrets (#2654)
9+
* [chore] Update dependencies (#2660)
10+
* [docs] add/update choco, scoop, winget instructions (#2647)
11+
* [feat] Add --store option to gopass fsck (#2658)
12+
* [feat] Add XCKD pwgen config options (#2651)
13+
314
## 1.15.7 / 2023-08-04
415

516
* [BUGFIX] Fix build issues on various non-Linux platforms (#2630, #2633)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.15.7
1+
1.15.8

gopass.1

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
.TH GOPASS "1" "August 2023" "gopass (github.com/gopasspw/gopass) 1.15.7" "User Commands"
2+
.TH GOPASS "1" "September 2023" "gopass (github.com/gopasspw/gopass) 1.15.8" "User Commands"
33
.SH NAME
44
gopass - The standard Unix password manager
55
.SH SYNOPSIS
@@ -209,6 +209,9 @@ Check the integrity of the given sub-store or all stores if none are specified.
209209
.TP
210210
\fB\-\-decrypt\fR,
211211
Decrypt and reencrypt during fsck.
212+
.TP
213+
\fB\-\-store\fR,
214+
Limit fsck to this mount point
212215
.SS fscopy
213216
Copy files from or to the password store
214217

pkg/pwgen/pwrules/pwrules_gen.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ func getVersion() semver.Version {
1515
return semver.Version{
1616
Major: 1,
1717
Minor: 15,
18-
Patch: 7,
18+
Patch: 8,
1919
Pre: []semver.PRVersion{
2020
{VersionStr: "git"},
2121
},

zsh.completion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ _gopass () {
9393

9494
;;
9595
fsck)
96-
_arguments : "--decrypt[Decrypt and reencrypt during fsck.]"
96+
_arguments : "--decrypt[Decrypt and reencrypt during fsck.]" "--store[Limit fsck to this mount point]"
9797

9898

9999
;;

0 commit comments

Comments
 (0)