aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/go-openapi (follow)
AgeCommit message (Collapse)AuthorFilesLines
2018-05-17Update kubernetes/client-go to v7.0.0 (#1808)Gravatar Yong Tang 84-14230/+0
This fix updates k8s' client-go to v7.0.0, which matches k8s 1.10. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2018-05-16Vendor update with github.com/ugorji/go and github.com/apache/thrift pinning ↵Gravatar Yong Tang 42-10507/+275
(#1805) This fix is an vendor update. Both ugorji and thrift have to be pinned to compile. The ugorji is from etcd and thrift is from zipkin. This fix fixes #1802. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2018-05-16Dep ensure (#1803)Gravatar Miek Gieben 29-0/+10393
* vendor: don't vendor the context stuff We don't need to vendor this anymore as we moved to the std lib for these. * new stuff showing up with dep ensure * remove go-shlex
2018-02-23Update go dep (#1560)Gravatar Yong Tang 6-93/+336
This fix updates go dep with `dep ensure --update` as well as the following: - Removed github.com/ugorji/go restriction in Gopkg.toml (fixes #1557) - Added github.com/flynn/go-shlex in Makefile (neede by Caddy, maybe removed later) This fix fixes #1557 Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2018-01-15Add route53 plugin (#1390)Gravatar Yong Tang 2-29/+24
* Update vendor Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add route53 plugin This fix adds route53 plugin so that it is possible to query route53 record through CoreDNS. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2018-01-03Update k8s client-go to v6.0.0 (#1340)Gravatar Yong Tang 60-11477/+16
* Update k8s client-go to v6.0.0 This fix updates k8s client-go to v6.0.0 as CoreDNS is supported in 1.9 and v6.0.0 is the recommended version. There are quite some massive changes that need to be made: 1. k8s.io/client-go/pkg/api/v1 has been changed to k8s.io/api/v1 (repo changed from `client-go` to `api`) 2. kubernetes.Clientset adds one extra layer, so that `kubernetes.Clientset.Services()` and like has been changed to `kubernetes.Clientset.CoreV1().Services()` Also, we have to stick with specific commits of `k8s.io/apimachinery` and the newly introduced `k8s.io/api` because go dep still could not figure out the right version to fetch. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Update vendor with `dep ensure --update` and `dep prune` Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2017-12-18Update apache/thrift to 0.11.0 and remove pinning (#1317)Gravatar Yong Tang 289-17743/+726
The `apache/thrift` recently released a new version of `0.11.0` several days ago. This release is compatible with other packages and as such, there is no need to pinning the `apache/thrift` to `master` anymore in Gopkg.toml. This fix removes the pinning of `apache/thrift` in Gopkg.toml, and updates all dependencies of coredns. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2017-12-14plugin/metrics: Switch to using promhttp instead of deprecated Handler (#1312)Gravatar James Hartig 278-0/+16914
prometheus.Handler is deprecated according to the godoc for the package so instead we're using promhttp. Additionally, we are exposing the Registry that metrics is using so other plugins that are not inside of coredns can read the registry. Otherwise, if we kept using the Default one, there's no way to access that from outside of the coredns repo since it is vendored.
2017-11-13Update Gopkg.toml to remove the constraint on zipkin-go-opentracing (#1231)Gravatar Yong Tang 4-5/+54
* Update vendor directory for latest changes. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Update Gopkg.toml to remove the constraint on zipkin-go-opentracing As the issue on zipkin-go-opentracing has been fixed. See #1193 for details. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2017-11-08Update zipkin to the newer version (#1205)Gravatar Yong Tang 1-0/+1
* Update zipkin to the newer version Also update thrift to use head commit Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Update vendor directory. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2017-11-03Update vendor libraries except client-go, apimachinery and ugorji/go (#1197)Gravatar Yong Tang 7-11/+587
This fix updates vendor libraries except client-go, apimachinery and ugorji/go, as github.com/ugorji/go/codec is causing compatibilities issues. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2017-09-29plugin/kubernetes: Enable protobuf, Update client api package (#1114)Gravatar Chris O'Haver 59-0/+11171
* vendor * code
2017-08-28dep ensure -update (#1001)Gravatar Miek Gieben 5-61/+127
* dep ensure -update Run "dep ensure -update` to update all dependencies. No code changes; just the dependencies. * dep prune * add new venderod
2017-06-03Drop caddy from vendor (#700)Gravatar Miek Gieben 2-30/+138
* Removed caddy * new stuff * Now need to go get caddy * Duh
2017-06-01update deps (#686)Gravatar Miek Gieben 25-9910/+0
2017-04-28Update vendor with `go dep`Gravatar Yong Tang 107-0/+23334
This fix updates vendor with `go dep` Signed-off-by: Yong Tang <yong.tang.github@outlook.com>