Skip to content

Commit

Permalink
Tag v1.15.15 (#3001)
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>
  • Loading branch information
dominikschulz authored Nov 24, 2024
1 parent 2650117 commit c5c64d1
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 1.15.15 / 2024-11-24

* [BUGFIX] Replace ~ with user homedir if `$GOPASS_HOMEDIR` is not set (#2961)
* [CLEANUP] Replace experimental `maps` and `slices` with stdlib (#2993)
* [CLEANUP] remove unreachable code (#2977)
* [DEPRECATION] Remove references to deprecated rand.Seed (#2953)
* [ENHANCEMENT] Allow for whitespace-trailing passwords (#2873) (#2954)
* [FEATURE] Adding support for `age.Plugin` identities (#2960)
* [FEATURE] Allow for non-interactive age setup (#2970)
* [FEATURE] Ask for setup if not initialized (#2975)
* [bugfix] Copy with trailing slash at destination. (#2966)
* [chore] use the same version of golangci-lint (#2948)

## 1.15.14 / 2024-08-03

* [bugfix] Fix parsing of key-value pairs according to the gitconfig (#2911)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.15.14
1.15.15
10 changes: 9 additions & 1 deletion gopass.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

.TH GOPASS "1" "August 2024" "gopass (github.com/gopasspw/gopass) 1.15.14" "User Commands"
.TH GOPASS "1" "November 2024" "gopass (github.com/gopasspw/gopass) 1.15.15" "User Commands"
.SH NAME
gopass - The standard Unix password manager
.SH SYNOPSIS
Expand Down Expand Up @@ -33,6 +33,9 @@ Display only the password. Takes precedence over all other flags.
\fB\-\-qr\fR,
Print the password as a QR Code
.TP
\fB\-\-qrbody\fR,
Print the body as a QR Code
.TP
\fB\-\-revision\fR,
\fB\-r\fR,
Show a past revision. Does NOT support RCS specific shortcuts. Use exact revision or -<N> to select the Nth oldest revision of this entry.
Expand All @@ -53,6 +56,8 @@ age commands

Built-in commands for the age backend.
These allow limited interactions with the gopass specific age identities.
Added identities are automatically added as recipient to your secrets when encrypting, but not toyour recipients, make sure to keep your recipients and identities in sync as you want to.
All age identities, including plugin ones should be supported. We also still support githubidentities despite them being deprecated by age, we do so by falling back to the ssh identitiesfor these and keeping a local cache of ssh keys for a given github identity.
.SS alias
Print domain aliases

Expand Down Expand Up @@ -541,6 +546,9 @@ Display only the password. Takes precedence over all other flags.
\fB\-\-qr\fR,
Print the password as a QR Code
.TP
\fB\-\-qrbody\fR,
Print the body as a QR Code
.TP
\fB\-\-revision\fR,
\fB\-r\fR,
Show a past revision. Does NOT support RCS specific shortcuts. Use exact revision or -<N> to select the Nth oldest revision of this entry.
Expand Down
2 changes: 1 addition & 1 deletion pkg/pwgen/pwrules/pwrules_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func getVersion() semver.Version {
return semver.Version{
Major: 1,
Minor: 15,
Patch: 14,
Patch: 15,
Pre: []semver.PRVersion{
{VersionStr: "git"},
},
Expand Down

0 comments on commit c5c64d1

Please sign in to comment.