-
Notifications
You must be signed in to change notification settings - Fork 373
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
Makefile fixes, bump golang protobuf #227
Makefile fixes, bump golang protobuf #227
Conversation
@jdef so as I understand it, this will potentially break again if something changes in |
We *could* lock down the dependency. There have been several attempts to do
so (read: lock down upstream dependencies, not just this one), none of
which has been officially approved. It's an ongoing issue. This PR is a
short-term band-aid.
…On Tue, May 1, 2018 at 9:23 AM, Hemant Kumar ***@***.***> wrote:
@jdef <https://github.com/jdef> so as I understand it, this will
potentially break again if something changes in protobuf/golang branch we
are tracking? Looks like - it is time we lock down protobuf/golang
dependency rather than letting it float?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#227 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ACPVLM5rOiOzN4B0pyq6DYEyfBe15Z-Bks5tuGHRgaJpZM4Ttzpr>
.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
fixes #226
The upstream golang/protobuf project just landed, onto master, a ton of changes from their development branch and it significantly changes the generated bindings. This PR re-generates the bindings using the latest golang protoc plugin. Also included, a fix for the Makefile's so that running
make clobber
works as expected (and allows one to easily regenerate bindings locally, using the latest binaries).