yext / edward

A tool for managing local microservice instances
http://engblog.yext.com/edward/
MIT License
171 stars 32 forks source link

Upgrade docker/docker dep & remove Sirupsen/logrus dep #187

Closed atavakoliyext closed 3 years ago

atavakoliyext commented 3 years ago

This change bumps github.com/docker/docker to v17.09.1-ce and its transitive dep, github.com/docker/distribution, to v2.7.0, based on the vendor.conf of github.com/docker/docker at the above version. All other changes are due to go mod tidy.

This removes the dependency on github.com/Sirupsen/logrus, which is the deprecated module name for github.com/sirupsen/logrus, as the former's inclusion in the dependency graph was preventing projects that use bazel+gazelle from importing this repository, due to the two modules' go_repositorys resolving to the same name, @com_github_sirupsen_logrus.

Note that v1.4.2-0.20200323100004-d8554bd58666, used for the go.mod entry of github.com/docker/docker, is the semver-compatible pseudoversion for v17.09.1-ce, as the maintainers have opted out of semver version tagging required for Go module support (see https://github.com/moby/moby/issues/39056).