Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use google.golang.org/grpc v1.29.1 to fix a dependency issue #394

Merged
merged 2 commits into from
Dec 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 8 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ require (
github.com/corpix/uarand v0.1.1 // indirect
github.com/google/uuid v1.1.2
github.com/icrowley/fake v0.0.0-20180203215853-4178557ae428
github.com/juju/ansiterm v0.0.0-20180109212912-720a0952cc2a // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/lunixbochs/vtclean v1.0.0 // indirect
github.com/manifoldco/promptui v0.8.0
github.com/pkg/errors v0.9.1
github.com/pquerna/otp v1.0.0
Expand All @@ -30,11 +28,18 @@ require (
golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897
golang.org/x/net v0.0.0-20201021035429-f5854403a974
golang.org/x/sys v0.0.0-20201022201747-fb209a7c41cd
google.golang.org/grpc/examples v0.0.0-20201013205100-7745e521ff61 // indirect
gopkg.in/square/go-jose.v2 v2.5.1
software.sslmate.com/src/go-pkcs12 v0.0.0-20201103104416-57fc603b7f52
)

// This is a temporal workaround to fix a dependency problem between etcd and
// gRPC. The gRPC v1.29.1 supports old and new interfaces, so it can be used by
// packages using the old (go.etcd.io/etcd) and new (cloud.google.com)
// interfaces.
//
// For more information see https://github.com/etcd-io/etcd/issues/12124
replace google.golang.org/grpc => google.golang.org/grpc v1.29.1

// replace github.com/smallstep/certificates => ../certificates
// replace github.com/smallstep/certinfo => ../certinfo
// replace go.step.sm/crypto => ../crypto