Closed abronan closed 5 years ago
@victorcoder Will get this one in if you don't mind the process skip. Not a huge change from a feature/usability PoV and will allow people to use valkeyrie with embedded etcd without the issue due to ugorji/codec
.
@abronan sorry for the late response, LGTM
@victorcoder This updates the etcd dependency to
v3.3.13
.In short, the current version pinned uses
ugorji/codec
and if running a project that uses bothvalkeyrie
and embedded etcd (https://godoc.org/github.com/coreos/etcd/embed), and if that same project uses another dependency that itself requiresugorji/codec
at a version incompatible with the pinned version, you won't be able to build the project (see https://github.com/etcd-io/etcd/issues/10325).v3.3.13
removes the use ofugorji/codec
and thus should help with those transient dependency issues with go modules.Signed-off-by: Alexandre Beslic abeslic@abronan.com