Skip to content

Commit 74f641b

Browse files
authored
Update dependencies (especially k8s.io/helm version) (#229)
New Helm 2 version has a lot of bug fixes, e.g. correct conditional on subcharts, etc.
1 parent add9cf7 commit 74f641b

File tree

2 files changed

+256
-19
lines changed

2 files changed

+256
-19
lines changed

go.mod

Lines changed: 26 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,39 @@ go 1.14
44

55
require (
66
github.com/Masterminds/goutils v1.1.0 // indirect
7-
github.com/Masterminds/semver v1.3.1
7+
github.com/Masterminds/semver v1.5.0
88
github.com/Masterminds/sprig v2.22.0+incompatible // indirect
9-
github.com/aryann/difflib v0.0.0-20170226194404-a1a4dd44eb11
10-
github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680
9+
github.com/aryann/difflib v0.0.0-20170710044230-e206f873d14a
10+
github.com/cyphar/filepath-securejoin v0.2.2 // indirect
11+
github.com/ghodss/yaml v1.0.0
1112
github.com/gobwas/glob v0.2.3 // indirect
1213
github.com/gogo/protobuf v1.3.1 // indirect
13-
github.com/golang/protobuf v1.3.4 // indirect
14+
github.com/golang/protobuf v1.4.2 // indirect
1415
github.com/google/gofuzz v1.1.0 // indirect
1516
github.com/google/uuid v1.1.1 // indirect
16-
github.com/huandu/xstrings v1.3.0 // indirect
17-
github.com/imdario/mergo v0.3.8 // indirect
17+
github.com/huandu/xstrings v1.3.2 // indirect
18+
github.com/imdario/mergo v0.3.10 // indirect
1819
github.com/inconshreveable/mousetrap v1.0.0 // indirect
19-
github.com/json-iterator/go v1.1.9 // indirect
20-
github.com/mattn/go-colorable v0.1.6 // indirect
21-
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b
20+
github.com/json-iterator/go v1.1.10 // indirect
21+
github.com/mattn/go-colorable v0.1.7 // indirect
22+
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
2223
github.com/mitchellh/copystructure v1.0.0 // indirect
23-
github.com/spf13/cobra v0.0.3-0.20180412120829-615425954c3b
24-
github.com/spf13/pflag v1.0.1
24+
github.com/mitchellh/reflectwalk v1.0.1 // indirect
25+
github.com/pkg/errors v0.9.1 // indirect
26+
github.com/spf13/cobra v1.0.0
27+
github.com/spf13/pflag v1.0.5
2528
github.com/stretchr/testify v1.5.1
26-
golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4 // indirect
27-
golang.org/x/net v0.0.0-20200301022130-244492dfa37a // indirect
28-
google.golang.org/grpc v1.28.0
29+
golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899 // indirect
30+
golang.org/x/net v0.0.0-20200707034311-ab3426394381 // indirect
31+
golang.org/x/sys v0.0.0-20200724161237-0e2f3a69832c // indirect
32+
golang.org/x/text v0.3.3 // indirect
33+
google.golang.org/genproto v0.0.0-20200726014623-da3ae01ef02d // indirect
34+
google.golang.org/grpc v1.30.0
35+
google.golang.org/protobuf v1.25.0 // indirect
2936
gopkg.in/inf.v0 v0.9.1 // indirect
30-
gopkg.in/yaml.v2 v2.2.2
31-
k8s.io/api v0.0.0-20180712090710-2d6f90ab1293
32-
k8s.io/apimachinery v0.0.0-20180621070125-103fd098999d
33-
k8s.io/client-go v0.0.0-20180718001006-59698c7d9724
34-
k8s.io/helm v2.11.0+incompatible
37+
gopkg.in/yaml.v2 v2.3.0
38+
k8s.io/api v0.18.6
39+
k8s.io/apimachinery v0.18.6
40+
k8s.io/client-go v11.0.0+incompatible
41+
k8s.io/helm v2.16.9+incompatible
3542
)

0 commit comments

Comments
 (0)