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

Commit cd99b29

Browse files
authored
Merge pull request #295 from secrethub/release/v0.39.0
Release v0.39.0
2 parents 050ffbb + e9553d3 commit cd99b29

104 files changed

Lines changed: 2395 additions & 926 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
arch:
1414
type: string
1515
docker:
16-
- image: circleci/golang:1.13
16+
- image: circleci/golang:1.14
1717
steps:
1818
- checkout
1919
- run: GOOS=<< parameters.os >> GOARCH=<< parameters.arch >> go build ./cmd/secrethub
2020
test:
2121
docker:
22-
- image: circleci/golang:1.13
22+
- image: circleci/golang:1.14
2323
steps:
2424
- checkout
2525
- restore_cache:
@@ -33,7 +33,7 @@ jobs:
3333
- run: make test
3434
verify-goreleaser:
3535
docker:
36-
- image: goreleaser/goreleaser:v0.127
36+
- image: goreleaser/goreleaser:v0.133
3737
steps:
3838
- checkout
3939
- run: goreleaser check

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.13-alpine as build_base
1+
FROM golang:1.14-alpine as build_base
22
WORKDIR /build
33
ENV GO111MODULE=on
44
RUN apk add --update git

go.mod

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
module github.com/secrethub/secrethub-cli
22

3-
go 1.13
3+
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
78
github.com/alecthomas/kingpin v1.3.8-0.20200323085623-b6657d9477a6
9+
github.com/asaskevich/govalidator v0.0.0-20180720115003-f9ffefc3facf
810
github.com/atotto/clipboard v0.1.2
911
github.com/aws/aws-sdk-go v1.25.49
1012
github.com/docker/go-units v0.3.3
@@ -16,10 +18,12 @@ require (
1618
github.com/mitchellh/mapstructure v1.1.2
1719
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
1820
github.com/secrethub/demo-app v0.1.0
19-
github.com/secrethub/secrethub-go v0.28.0
21+
github.com/secrethub/secrethub-go v0.29.0
2022
github.com/zalando/go-keyring v0.0.0-20190208082241-fbe81aec3a07
21-
golang.org/x/crypto v0.0.0-20190313024323-a1f597ede03a
22-
golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223
23-
golang.org/x/text v0.3.0
23+
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550
24+
golang.org/x/sys v0.0.0-20200501052902-10377860bb8e
25+
golang.org/x/text v0.3.2
26+
google.golang.org/api v0.26.0
27+
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
2428
gopkg.in/yaml.v2 v2.2.2
2529
)

go.sum

Lines changed: 303 additions & 2 deletions
Large diffs are not rendered by default.

internals/cli/configuration/configuration.go

Lines changed: 0 additions & 193 deletions
This file was deleted.

internals/cli/configuration/migrater.go

Lines changed: 0 additions & 56 deletions
This file was deleted.

0 commit comments

Comments
 (0)