diff options
author | 2019-08-19 11:06:51 -0700 | |
---|---|---|
committer | 2019-08-19 18:06:51 +0000 | |
commit | eae97e84ae69ff5550e43a88021baf96a88bc0e1 (patch) | |
tree | 7bade8c085abc4b0d2f20fe0e1dbdf155a2b344f /go.mod | |
parent | 297299e308f23ecdda75bd729da02caee2846f78 (diff) | |
download | coredns-eae97e84ae69ff5550e43a88021baf96a88bc0e1.tar.gz coredns-eae97e84ae69ff5550e43a88021baf96a88bc0e1.tar.zst coredns-eae97e84ae69ff5550e43a88021baf96a88bc0e1.zip |
Update replace statement in go.mod: (#3157)
```
replace github.com/miekg/dns v1.1.3 => github.com/miekg/dns v1.1.16
```
so that we only end up with one version of github.com/miekg/dns
(caddy still use 1.1.3)
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -10,6 +10,7 @@ require ( github.com/Azure/go-autorest/autorest/azure/auth v0.3.0 github.com/Azure/go-autorest/autorest/to v0.2.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.23.3 github.com/caddyserver/caddy v1.0.3 github.com/coredns/federation v0.0.0-20190818181423-e032b096babe @@ -73,4 +74,4 @@ require ( sigs.k8s.io/yaml v1.1.0 // indirect ) -replace github.com/miekg/dns v1.1.3 => github.com/miekg/dns v1.1.15 +replace github.com/miekg/dns v1.1.3 => github.com/miekg/dns v1.1.16 |