Skip to content

Commit 0e10015

Browse files
committed
fix: update Go and modules to fix security vulns
Working to address issue kelseyhightower#106
1 parent 8a76b9a commit 0e10015

File tree

500 files changed

+29218
-15657
lines changed

Some content is hidden

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

500 files changed

+29218
-15657
lines changed

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
golang 1.17.8
1+
golang 1.18.6

cmd/confd/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package main
22

3-
const Version = "0.19.0"
3+
const Version = "0.19.1"
44

55
// We want to replace this variable at build time with "-ldflags -X main.GitSHA=xxx", where const is not supported.
66
var GitSHA = ""

go.mod

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
module github.com/abtreece/confd
22

3-
go 1.17
3+
go 1.18
44

55
require (
6-
github.com/BurntSushi/toml v1.1.0
7-
github.com/armon/go-metrics v0.3.9 // indirect
8-
github.com/aws/aws-sdk-go v1.44.66
6+
github.com/BurntSushi/toml v1.2.0
7+
github.com/armon/go-metrics v0.4.1 // indirect
8+
github.com/aws/aws-sdk-go v1.44.93
99
github.com/coreos/go-semver v0.3.0 // indirect
10-
github.com/fatih/color v1.10.0 // indirect
10+
github.com/fatih/color v1.13.0 // indirect
1111
github.com/fsnotify/fsnotify v1.5.4
12-
github.com/garyburd/redigo v1.6.3
1312
github.com/go-zookeeper/zk v1.0.3
14-
github.com/hashicorp/consul/api v1.13.1
13+
github.com/gomodule/redigo v1.8.9
14+
github.com/hashicorp/consul/api v1.14.0
1515
github.com/hashicorp/vault/api v1.7.2
1616
github.com/kelseyhightower/memkv v0.1.1
1717
github.com/sirupsen/logrus v1.9.0
@@ -21,53 +21,53 @@ require (
2121

2222
require (
2323
github.com/armon/go-radix v1.0.0 // indirect
24-
github.com/cenkalti/backoff/v3 v3.0.0 // indirect
24+
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
2525
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
2626
github.com/gogo/protobuf v1.3.2 // indirect
2727
github.com/golang/protobuf v1.5.2 // indirect
2828
github.com/golang/snappy v0.0.4 // indirect
2929
github.com/hashicorp/errwrap v1.1.0 // indirect
3030
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
31-
github.com/hashicorp/go-hclog v0.16.2 // indirect
31+
github.com/hashicorp/go-hclog v1.3.0 // indirect
3232
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
3333
github.com/hashicorp/go-multierror v1.1.1 // indirect
34-
github.com/hashicorp/go-plugin v1.4.3 // indirect
35-
github.com/hashicorp/go-retryablehttp v0.6.6 // indirect
34+
github.com/hashicorp/go-plugin v1.4.5 // indirect
35+
github.com/hashicorp/go-retryablehttp v0.7.1 // indirect
3636
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
37-
github.com/hashicorp/go-secure-stdlib/mlock v0.1.1 // indirect
38-
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.6 // indirect
37+
github.com/hashicorp/go-secure-stdlib/mlock v0.1.2 // indirect
38+
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.7 // indirect
3939
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
4040
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
41-
github.com/hashicorp/go-uuid v1.0.2 // indirect
42-
github.com/hashicorp/go-version v1.2.0 // indirect
41+
github.com/hashicorp/go-uuid v1.0.3 // indirect
42+
github.com/hashicorp/go-version v1.6.0 // indirect
4343
github.com/hashicorp/golang-lru v0.5.4 // indirect
4444
github.com/hashicorp/hcl v1.0.0 // indirect
45-
github.com/hashicorp/serf v0.9.6 // indirect
46-
github.com/hashicorp/vault/sdk v0.5.1 // indirect
47-
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect
45+
github.com/hashicorp/serf v0.10.0 // indirect
46+
github.com/hashicorp/vault/sdk v0.5.3 // indirect
47+
github.com/hashicorp/yamux v0.1.1 // indirect
4848
github.com/jmespath/go-jmespath v0.4.0 // indirect
49-
github.com/mattn/go-colorable v0.1.8 // indirect
50-
github.com/mattn/go-isatty v0.0.12 // indirect
51-
github.com/mitchellh/copystructure v1.0.0 // indirect
49+
github.com/mattn/go-colorable v0.1.13 // indirect
50+
github.com/mattn/go-isatty v0.0.16 // indirect
51+
github.com/mitchellh/copystructure v1.2.0 // indirect
5252
github.com/mitchellh/go-homedir v1.1.0 // indirect
53-
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
53+
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
5454
github.com/mitchellh/mapstructure v1.5.0 // indirect
55-
github.com/mitchellh/reflectwalk v1.0.0 // indirect
56-
github.com/oklog/run v1.0.0 // indirect
57-
github.com/pierrec/lz4 v2.5.2+incompatible // indirect
55+
github.com/mitchellh/reflectwalk v1.0.2 // indirect
56+
github.com/oklog/run v1.1.0 // indirect
57+
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
5858
github.com/ryanuber/go-glob v1.0.0 // indirect
5959
go.etcd.io/etcd/api/v3 v3.5.4 // indirect
6060
go.etcd.io/etcd/client/pkg/v3 v3.5.4 // indirect
61-
go.uber.org/atomic v1.9.0 // indirect
62-
go.uber.org/multierr v1.6.0 // indirect
63-
go.uber.org/zap v1.21.0 // indirect
64-
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
65-
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
66-
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
61+
go.uber.org/atomic v1.10.0 // indirect
62+
go.uber.org/multierr v1.8.0 // indirect
63+
go.uber.org/zap v1.23.0 // indirect
64+
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90 // indirect
65+
golang.org/x/net v0.0.0-20220907135653-1e95f45603a7 // indirect
66+
golang.org/x/sys v0.0.0-20220908164124-27713097b956 // indirect
6767
golang.org/x/text v0.3.7 // indirect
68-
golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1 // indirect
69-
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c // indirect
70-
google.golang.org/grpc v1.44.0 // indirect
71-
google.golang.org/protobuf v1.26.0 // indirect
72-
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
68+
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect
69+
google.golang.org/genproto v0.0.0-20220908141613-51c1cc9bc6d0 // indirect
70+
google.golang.org/grpc v1.49.0 // indirect
71+
google.golang.org/protobuf v1.28.1 // indirect
72+
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
7373
)

0 commit comments

Comments
 (0)