Skip to content

Commit 251777f

Browse files
authored
Merge pull request #1183 from go-kit/go1.17
Go1.17 updates
2 parents e7eea80 + 189ad70 commit 251777f

File tree

3 files changed

+419
-79
lines changed

3 files changed

+419
-79
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
name: Build
1212
runs-on: ubuntu-latest
1313
strategy:
14-
matrix: # Support latest and one minor back
15-
go: ['1.15', '1.16']
14+
matrix: # Support latest and one minor back
15+
go: ["1.16", "1.17"]
1616
env:
1717
GOFLAGS: -mod=readonly
1818

@@ -47,7 +47,7 @@ jobs:
4747
- name: Set up Go
4848
uses: actions/[email protected]
4949
with:
50-
stable: 'false'
50+
stable: "false"
5151
go-version: ${{ matrix.go }}
5252

5353
- name: Checkout code

go.mod

Lines changed: 68 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
module github.com/go-kit/kit
22

3-
go 1.13
3+
go 1.17
44

55
require (
66
github.com/VividCortex/gohistogram v1.0.0
77
github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5
8-
github.com/aws/aws-sdk-go v1.38.68
9-
github.com/aws/aws-sdk-go-v2 v1.7.0
10-
github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.5.0
11-
github.com/casbin/casbin/v2 v2.31.6
12-
github.com/go-kit/log v0.1.0
8+
github.com/aws/aws-sdk-go v1.40.45
9+
github.com/aws/aws-sdk-go-v2 v1.9.1
10+
github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.8.1
11+
github.com/casbin/casbin/v2 v2.37.0
12+
github.com/go-kit/log v0.2.0
1313
github.com/go-zookeeper/zk v1.0.2
1414
github.com/golang-jwt/jwt/v4 v4.0.0
15-
github.com/hashicorp/consul/api v1.8.1
15+
github.com/hashicorp/consul/api v1.10.1
1616
github.com/hudl/fargo v1.4.0
1717
github.com/influxdata/influxdb1-client v0.0.0-20200827194710-b269163b24ab
18-
github.com/nats-io/nats-server/v2 v2.2.6
19-
github.com/nats-io/nats.go v1.11.0
18+
github.com/nats-io/nats-server/v2 v2.5.0
19+
github.com/nats-io/nats.go v1.12.1
2020
github.com/opentracing/opentracing-go v1.2.0
2121
github.com/openzipkin/zipkin-go v0.2.5
2222
github.com/performancecopilot/speed/v4 v4.0.0
@@ -29,9 +29,65 @@ require (
2929
go.etcd.io/etcd/client/v2 v2.305.0
3030
go.etcd.io/etcd/client/v3 v3.5.0
3131
go.opencensus.io v0.23.0
32-
go.uber.org/zap v1.17.0
32+
go.uber.org/zap v1.19.1
3333
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
34-
golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1
35-
google.golang.org/grpc v1.38.0
34+
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac
35+
google.golang.org/grpc v1.40.0
3636
google.golang.org/protobuf v1.27.1
3737
)
38+
39+
require (
40+
github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect
41+
github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible // indirect
42+
github.com/armon/go-metrics v0.3.9 // indirect
43+
github.com/aws/smithy-go v1.8.0 // indirect
44+
github.com/beorn7/perks v1.0.1 // indirect
45+
github.com/cenkalti/backoff/v4 v4.1.1 // indirect
46+
github.com/cespare/xxhash/v2 v2.1.2 // indirect
47+
github.com/clbanning/mxj v1.8.4 // indirect
48+
github.com/coreos/go-semver v0.3.0 // indirect
49+
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
50+
github.com/edsrzf/mmap-go v1.0.0 // indirect
51+
github.com/fatih/color v1.12.0 // indirect
52+
github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8 // indirect
53+
github.com/go-logfmt/logfmt v0.5.1 // indirect
54+
github.com/gogo/protobuf v1.3.2 // indirect
55+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
56+
github.com/golang/protobuf v1.5.2 // indirect
57+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
58+
github.com/hashicorp/go-hclog v0.16.2 // indirect
59+
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
60+
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
61+
github.com/hashicorp/golang-lru v0.5.4 // indirect
62+
github.com/hashicorp/serf v0.9.5 // indirect
63+
github.com/jmespath/go-jmespath v0.4.0 // indirect
64+
github.com/json-iterator/go v1.1.12 // indirect
65+
github.com/klauspost/compress v1.13.6 // indirect
66+
github.com/mattn/go-colorable v0.1.8 // indirect
67+
github.com/mattn/go-isatty v0.0.14 // indirect
68+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
69+
github.com/miekg/dns v1.1.43 // indirect
70+
github.com/minio/highwayhash v1.0.2 // indirect
71+
github.com/mitchellh/go-homedir v1.1.0 // indirect
72+
github.com/mitchellh/mapstructure v1.4.2 // indirect
73+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
74+
github.com/modern-go/reflect2 v1.0.2 // indirect
75+
github.com/nats-io/jwt/v2 v2.0.3 // indirect
76+
github.com/nats-io/nkeys v0.3.0 // indirect
77+
github.com/nats-io/nuid v1.0.1 // indirect
78+
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7 // indirect
79+
github.com/pkg/errors v0.9.1 // indirect
80+
github.com/prometheus/client_model v0.2.0 // indirect
81+
github.com/prometheus/common v0.30.0 // indirect
82+
github.com/prometheus/procfs v0.7.3 // indirect
83+
go.etcd.io/etcd/api/v3 v3.5.0 // indirect
84+
go.uber.org/atomic v1.9.0 // indirect
85+
go.uber.org/multierr v1.7.0 // indirect
86+
golang.org/x/crypto v0.0.0-20210915214749-c084706c2272 // indirect
87+
golang.org/x/net v0.0.0-20210917221730-978cfadd31cf // indirect
88+
golang.org/x/sys v0.0.0-20210917161153-d61c044b1678 // indirect
89+
golang.org/x/text v0.3.7 // indirect
90+
google.golang.org/genproto v0.0.0-20210917145530-b395a37504d4 // indirect
91+
gopkg.in/gcfg.v1 v1.2.3 // indirect
92+
gopkg.in/warnings.v0 v0.1.2 // indirect
93+
)

0 commit comments

Comments
 (0)