diff options
author | 2019-07-04 14:44:31 +0800 | |
---|---|---|
committer | 2019-07-04 07:44:31 +0100 | |
commit | 9b6e2aa5a6401a34b8aa5b66ce554caf5e9885ef (patch) | |
tree | 9b73de4ce4558a7a5b448647247044c14c8747a5 /go.mod | |
parent | 18304ce9b75a401ed510d270c013dc4fe6480420 (diff) | |
download | coredns-9b6e2aa5a6401a34b8aa5b66ce554caf5e9885ef.tar.gz coredns-9b6e2aa5a6401a34b8aa5b66ce554caf5e9885ef.tar.zst coredns-9b6e2aa5a6401a34b8aa5b66ce554caf5e9885ef.zip |
Update github.com/miekg/dns, github.com/aws/aws-sdk-go, and google.golang.org/grpc (#2960)
This fix updates:
- github.com/miekg/dns to 1.15 (#2947)
- github.com/aws/aws-sdk-go to 1.20.13 (#2953)
- google.golang.org/grpc to 1.22.0 (#2966)
This fix fixes #2947
This fix fixes #2953
This fix fixes #2966
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 21 |
1 files changed, 9 insertions, 12 deletions
@@ -3,10 +3,10 @@ module github.com/coredns/coredns go 1.12 require ( - cloud.google.com/go v0.40.0 // indirect + cloud.google.com/go v0.41.0 // indirect github.com/Shopify/sarama v1.21.0 // indirect github.com/apache/thrift v0.12.0 // indirect - github.com/aws/aws-sdk-go v1.20.5 + github.com/aws/aws-sdk-go v1.20.15 github.com/caddyserver/caddy v1.0.1 github.com/coreos/bbolt v1.3.2 // indirect github.com/coreos/etcd v3.3.13+incompatible @@ -20,7 +20,6 @@ require ( github.com/gogo/protobuf v1.2.1 // indirect github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef // indirect github.com/golang/protobuf v1.3.1 - github.com/google/btree v1.0.0 // indirect github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf // indirect github.com/googleapis/gnostic v0.2.0 // indirect github.com/gophercloud/gophercloud v0.0.0-20190307220656-fe1ba5ce12dd // indirect @@ -32,7 +31,7 @@ require ( github.com/jonboulle/clockwork v0.1.0 // indirect github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.1 - github.com/miekg/dns v1.1.14 + github.com/miekg/dns v1.1.15 github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492 // indirect github.com/opentracing/opentracing-go v1.1.0 github.com/openzipkin-contrib/zipkin-go-opentracing v0.3.5 // indirect @@ -52,13 +51,11 @@ require ( go.uber.org/atomic v1.3.2 // indirect go.uber.org/multierr v1.1.0 // indirect go.uber.org/zap v1.9.1 // indirect - golang.org/x/crypto v0.0.0-20190618222545-ea8f1a30c443 // indirect - golang.org/x/net v0.0.0-20190619014844-b5b0513f8c1b // indirect - golang.org/x/sys v0.0.0-20190618155005-516e3c20635f - golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect - google.golang.org/appengine v1.6.1 // indirect - google.golang.org/genproto v0.0.0-20190611190212-a7e196e89fd3 // indirect - google.golang.org/grpc v1.21.1 + golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 // indirect + golang.org/x/net v0.0.0-20190628185345-da137c7871d7 // indirect + golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb + google.golang.org/genproto v0.0.0-20190701230453-710ae3a149df // indirect + google.golang.org/grpc v1.22.0 gopkg.in/DataDog/dd-trace-go.v1 v1.15.0 gopkg.in/inf.v0 v0.9.1 // indirect k8s.io/api v0.0.0-20190313235455-40a48860b5ab @@ -70,4 +67,4 @@ require ( sigs.k8s.io/yaml v1.1.0 // indirect ) -replace github.com/miekg/dns v1.1.3 => github.com/miekg/dns v1.1.14 +replace github.com/miekg/dns v1.1.3 => github.com/miekg/dns v1.1.15 |