Skip to content

Commit cc419d3

Browse files
Upgrade Consul client to v1.27 (VPS-10853)
1 parent 332929e commit cc419d3

File tree

3 files changed

+237
-44
lines changed

3 files changed

+237
-44
lines changed

cli/api/stores/consul/consul_store.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package consul
22

33
import (
44
"github.com/hashicorp/consul/api"
5-
"github.com/hashicorp/consul/watch"
5+
"github.com/hashicorp/consul/api/watch"
66
"github.com/vsco/dcdr/cli/api/stores"
77
"github.com/vsco/dcdr/cli/printer"
88
"github.com/vsco/dcdr/config"

go.mod

Lines changed: 30 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,45 @@
11
module github.com/vsco/dcdr
22

3-
go 1.14
3+
go 1.18
44

55
require (
6-
github.com/PagerDuty/godspeed v0.0.0-20180224001232-122876cde329 // indirect
7-
github.com/armon/go-radix v1.0.0 // indirect
86
github.com/coreos/etcd v3.0.0-beta.0.0.20160528191156-a86ae1d96912+incompatible
9-
github.com/davecgh/go-spew v1.1.1 // indirect
10-
github.com/fatih/color v0.0.0-20160317093153-533cd7fd8a85
7+
github.com/fatih/color v1.14.1
118
github.com/fsnotify/fsnotify v1.3.0
129
github.com/garyburd/redigo v1.0.1-0.20160525165706-b8dc90050f24
13-
github.com/gorilla/context v0.0.0-20160525203319-aed02d124ae4 // indirect
1410
github.com/gorilla/handlers v0.0.0-20160410185317-66e6c6f01d8d
1511
github.com/gorilla/mux v0.0.0-20160525140913-bd09be08ed43
16-
github.com/hashicorp/consul v0.6.5-0.20160317180627-0e41fa5340de
17-
github.com/hashicorp/go-cleanhttp v0.0.0-20160217214820-875fb671b3dd // indirect
18-
github.com/hashicorp/go-msgpack v1.1.5 // indirect
19-
github.com/hashicorp/golang-lru v0.5.4 // indirect
12+
github.com/hashicorp/consul/api v1.27.0
2013
github.com/hashicorp/hcl v0.0.0-20160119202737-578dd9746824
21-
github.com/hashicorp/serf v0.7.1-0.20160124182025-e4ec8cc423bb // indirect
22-
github.com/mattn/go-colorable v0.0.0-20160220075935-9cbef7c35391 // indirect
23-
github.com/mattn/go-isatty v0.0.0-20151211000621-56b76bdf51f7 // indirect
24-
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
25-
github.com/pmezard/go-difflib v1.0.0 // indirect
2614
github.com/rodaine/table v0.0.0-20151010055857-c35ded4ccfec
27-
github.com/stretchr/testify v1.1.4-0.20160305165446-6fe211e49392
15+
github.com/stretchr/testify v1.8.3
2816
github.com/theckman/godspeed v0.0.0-20160207214103-ef757b820a7d
2917
github.com/tucnak/climax v0.0.0-20160110101300-4c021a579dda
30-
github.com/ugorji/go v0.0.0-20160328060740-a396ed22fc04 // indirect
3118
github.com/vsco/http-test v0.0.0-20160424235822-3e41d6201903
32-
golang.org/x/net v0.0.0-20190311183353-d8887717615a
33-
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
19+
golang.org/x/net v0.17.0
20+
)
21+
22+
require (
23+
github.com/PagerDuty/godspeed v0.0.0-20180224001232-122876cde329 // indirect
24+
github.com/armon/go-metrics v0.4.1 // indirect
25+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
26+
github.com/gorilla/context v0.0.0-20160525203319-aed02d124ae4 // indirect
27+
github.com/hashicorp/errwrap v1.1.0 // indirect
28+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
29+
github.com/hashicorp/go-hclog v1.5.0 // indirect
30+
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
31+
github.com/hashicorp/go-msgpack v1.1.5 // indirect
32+
github.com/hashicorp/go-multierror v1.1.1 // indirect
33+
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
34+
github.com/hashicorp/golang-lru v0.5.4 // indirect
35+
github.com/hashicorp/serf v0.10.1 // indirect
36+
github.com/mattn/go-colorable v0.1.13 // indirect
37+
github.com/mattn/go-isatty v0.0.17 // indirect
38+
github.com/mitchellh/go-homedir v1.1.0 // indirect
39+
github.com/mitchellh/mapstructure v1.5.0 // indirect
40+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
41+
github.com/ugorji/go v0.0.0-20160328060740-a396ed22fc04 // indirect
42+
golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect
43+
golang.org/x/sys v0.15.0 // indirect
44+
gopkg.in/yaml.v3 v3.0.1 // indirect
3445
)

0 commit comments

Comments
 (0)