* Remove version pinning of thrift, ugoriji/go, and etcd For incompatibility reasons at one point, we were forced to pining the version of thrift, ugoriji/go, and etcd to very specific versions (some are not versioned commits) to get around the build issues. It looks like those incompatibility issues are gone so we could remove the pinning of thrift, ugoriji/go, and etcd. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Update Gopkg.lock Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Update vendor library Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
35 lines
1.2 KiB
TOML
35 lines
1.2 KiB
TOML
ignored = [
|
|
"github.com/mholt/caddy",
|
|
"github.com/mholt/caddy/caddyfile",
|
|
"github.com/mholt/caddy/startupshutdown",
|
|
"github.com/mholt/caddy/onevent",
|
|
"github.com/miekg/dns",
|
|
"github.com/prometheus/client_golang/prometheus",
|
|
"github.com/prometheus/client_golang/prometheus/promhttp",
|
|
]
|
|
|
|
[prune]
|
|
go-tests = true
|
|
non-go = true
|
|
unused-packages = true
|
|
|
|
# client-go v10.0.0 uses apimachinery 2b1284ed4c93a43499e781493253e2ac5959c4fd
|
|
# and api 89a74a8d264df0e993299876a8cde88379b940ee,
|
|
# and introduced klog 8139d8cb77af419532b33dfa7dd09fbc5f1d344f
|
|
# and yaml fd68e9863619f6ec2fdd8625fe1f02e7c877e480 (see Godep.json).
|
|
# go dep is unable to match Godep.json automatically so have to specify here.
|
|
[[constraint]]
|
|
name = "k8s.io/client-go"
|
|
version = "v10.0.0"
|
|
[[override]]
|
|
name = "k8s.io/apimachinery"
|
|
revision = "2b1284ed4c93a43499e781493253e2ac5959c4fd"
|
|
[[override]]
|
|
name = "k8s.io/api"
|
|
revision = "89a74a8d264df0e993299876a8cde88379b940ee"
|
|
[[override]]
|
|
name = "k8s.io/klog"
|
|
revision = "8139d8cb77af419532b33dfa7dd09fbc5f1d344f"
|
|
[[override]]
|
|
name = "sigs.k8s.io/yaml"
|
|
revision = "fd68e9863619f6ec2fdd8625fe1f02e7c877e480"
|