Skip to content
This repository was archived by the owner on Feb 16, 2023. It is now read-only.

Commit 5060d8f

Browse files
Merge pull request #376 from secrethub/release/v0.42.0
Release v0.42.0
2 parents 59c7c09 + 02b9cbc commit 5060d8f

124 files changed

Lines changed: 5416 additions & 1612 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.circleci/config.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,24 @@ jobs:
55
- image: golangci/golangci-lint:v1.23.8-alpine
66
steps:
77
- checkout
8+
- restore_cache:
9+
keys:
10+
- go-modules-{{ checksum "go.mod" }}
11+
- run: go mod download
12+
- save_cache:
13+
key: go-modules-{{ checksum "go.mod" }}
14+
paths:
15+
- /go/pkg/mod
16+
- restore_cache:
17+
keys:
18+
- golangci-lint-{{ .Branch }}
19+
- golangci-lint-develop
820
- run: golangci-lint run
21+
- save_cache:
22+
key: golangci-lint-{{ .Branch }}
23+
paths:
24+
- ~/.cache/golangci-lint
25+
- ~/.cache/go-build
926
verify-build:
1027
parameters:
1128
os:

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Ignore binary
2+
/secrethub

.golangci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,5 @@ linters:
2424
- unconvert
2525
disable-all: true
2626
exclude-use-defaults: false
27+
run:
28+
timeout: 5m

.goreleaser.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ archives:
4848
format: zip
4949
files:
5050
- LICENSE
51+
- CREDITS.md
5152

5253
checksum:
5354
name_template: "secrethub-{{ .Tag }}-checksums.txt"

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<hr/>
2+
<p align="center">
3+
<sub><img src="https://1password.com/img/logo-v1.svg" alt="1Password" width="20" /></sub> <b>SecretHub has joined 1Password!</b> Find out more on the <a href="https://secrethub.io/blog/secrethub-joins-1password/">SecretHub blog</a>. 🎉
4+
</p>
5+
<hr/>
6+
17
<p align="center">
28
<img src="https://secrethub.io/img/github-banner.png?v4" alt="SecretHub" width="400">
39
</p>

cmd/secrethub/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
)
99

1010
func main() {
11-
err := secrethub.NewApp().Version(secrethub.Version, secrethub.Commit).Run(os.Args[1:])
11+
err := secrethub.NewApp().Version(secrethub.Version, secrethub.Commit).Run()
1212
if err != nil {
1313
handleError(err)
1414
}

go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ go 1.14
44

55
require (
66
bitbucket.org/zombiezen/cardcpx v0.0.0-20150417151802-902f68ff43ef
7-
cloud.google.com/go v0.57.0 // indirect
8-
github.com/alecthomas/kingpin v1.3.8-0.20200323085623-b6657d9477a6
97
github.com/atotto/clipboard v0.1.2
108
github.com/aws/aws-sdk-go v1.25.49
119
github.com/docker/go-units v0.3.3
@@ -15,14 +13,16 @@ require (
1513
github.com/mattn/go-isatty v0.0.7
1614
github.com/mitchellh/go-homedir v1.1.0
1715
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
18-
github.com/pkg/errors v0.9.1 // indirect
19-
github.com/secrethub/demo-app v0.1.0
16+
github.com/secrethub/demo-app v0.5.1-0.20210105185858-ad55afc2cb87
2017
github.com/secrethub/secrethub-go v0.31.0
18+
github.com/spf13/cobra v1.0.0
19+
github.com/spf13/pflag v1.0.5
2120
github.com/zalando/go-keyring v0.0.0-20190208082241-fbe81aec3a07
2221
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550
23-
golang.org/x/sys v0.0.0-20200501052902-10377860bb8e
22+
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68
23+
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf
2424
golang.org/x/text v0.3.2
2525
google.golang.org/api v0.26.0
26-
gopkg.in/yaml.v2 v2.2.2
26+
gopkg.in/yaml.v2 v2.4.0
2727
gotest.tools v2.2.0+incompatible
2828
)

go.sum

Lines changed: 101 additions & 27 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)