mirror of
https://github.com/coredns/coredns.git
synced 2025-12-05 01:45:11 -05:00
This fix is an attempt to fix the issue raised #1192. The issue that a plain `dep -ensure update` fails is because the incompatibility of ugorji/go with the rest of packages (etcd, k8s etc) and the incompatibility of client-go vs. apimachinery. This fix fixed apimachinery and ugorji/go so that it is possible to use `dep -ensure update`. Previously updates has to be done individually, e.g., `dep -ensure update github.com/coreos/etcd` This fix fixes #1192. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
31 lines
900 B
TOML
31 lines
900 B
TOML
ignored = [
|
|
"github.com/mholt/caddy",
|
|
"github.com/mholt/caddy/caddyfile",
|
|
"github.com/mholt/caddy/startupshutdown",
|
|
"github.com/miekg/dns",
|
|
"golang.org/x/net/context",
|
|
"golang.org/x/net/context/ctxhttp",
|
|
"golang.org/x/net/http2",
|
|
"golang.org/x/net/http2/hpack",
|
|
"golang.org/x/net/idna",
|
|
"golang.org/x/net/internal/timeseries",
|
|
"golang.org/x/net/lex/httplex",
|
|
"golang.org/x/net/trace",
|
|
]
|
|
|
|
[[constraint]]
|
|
name = "github.com/openzipkin/zipkin-go-opentracing"
|
|
version = "v0.2.3"
|
|
|
|
[[override]]
|
|
name = "github.com/ugorji/go"
|
|
revision = "8c0409fcbb70099c748d71f714529204975f6c3f"
|
|
|
|
# client-go 4.0.0 uses apimachinery 1fd2e63a9a370677308a42f24fd40c86438afddf (see Godep.json)
|
|
[[constraint]]
|
|
name = "k8s.io/client-go"
|
|
version = "v4.0.0"
|
|
[[override]]
|
|
name = "k8s.io/apimachinery"
|
|
revision = "1fd2e63a9a370677308a42f24fd40c86438afddf"
|