aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/golang (follow)
AgeCommit message (Collapse)AuthorFilesLines
2019-03-03Add `go mod` support (#2503)Gravatar Yong Tang 38-14837/+0
* Remove vendor and go-dep Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add go.mod Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Update Makefile and .travis.yml Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2018-12-16 Update client-go to v10.0.0 (Kubernetes 1.13) (#2382)Gravatar Yong Tang 14-2492/+0
* Update client-go to v10.0.0 (Kubernetes 1.13) This fix updates client-go to v10.0.0 which matches Kubernetes 1.13 (released several days ago). Other changes in Gopkg.yaml: - Updated apimachinary, api, klog, yaml associated with k8s version go dep will not automatically match the version. - Added [prune] field (otherwise go dep will not prune automatically) Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Updated Gopkg.lock Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Updated vendor for client-go v10.0.0 Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2018-09-29Dep helper (#2151)Gravatar Manuel Alejandro de Brito Fontes 21-10438/+0
* Add dep task to update go dependencies * Update go dependencies
2018-06-30Prune dependencies (#1917)Gravatar Yong Tang 94-29155/+0
When running `dep prune` explicitly, the following message show up: ``` dep prune Pruning is now performed automatically by dep ensure. ``` However, after the explicit `dep prune`, there are still many files deleted. (Guess `dep ensure` is not complete yet). This fix did a `dep prune` to clean up unneeded files. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2018-06-30Dep ensure -update (#1912)Gravatar Miek Gieben 3-3/+62
* dep ensure -update Signed-off-by: Miek Gieben <miek@miek.nl> * Add new files Signed-off-by: Miek Gieben <miek@miek.nl>
2018-06-30plugin/etcdv3: Add etcd v3 plugin (#1702)Gravatar Nitish Tiwari 93-0/+29107
* Update dependencies and add etcdv3 client * Update etcd plugin to support etcd v3 clients Fixes #341
2018-05-16Vendor update with github.com/ugorji/go and github.com/apache/thrift pinning ↵Gravatar Yong Tang 103-26302/+7564
(#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 61-0/+22851
* 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 1-0/+151
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>
2017-12-18Update apache/thrift to 0.11.0 and remove pinning (#1317)Gravatar Yong Tang 61-22851/+0
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 61-0/+22851
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-03Update vendor libraries except client-go, apimachinery and ugorji/go (#1197)Gravatar Yong Tang 8-0/+577
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-08-28dep ensure -update (#1001)Gravatar Miek Gieben 10-81/+104
* 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 14-3/+1148
* Removed caddy * new stuff * Now need to go get caddy * Duh
2017-06-01update deps (#686)Gravatar Miek Gieben 73-22329/+0
2017-04-28Update vendor with `go dep`Gravatar Yong Tang 128-0/+44076
This fix updates vendor with `go dep` Signed-off-by: Yong Tang <yong.tang.github@outlook.com>