-
Notifications
You must be signed in to change notification settings - Fork 71
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
Add buf.build #59
Add buf.build #59
Conversation
proto/confio/v1/proofs.proto
Outdated
@@ -1,16 +1,18 @@ | |||
syntax = "proto3"; | |||
|
|||
package ics23; | |||
package confio.v1.ics23; |
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.
this will need to be regenerated, want to double check if its okay before doing so.
DO NOT MERGE
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.
Sure, we can rename this.
Let's make sure this gets into a 0.7.0 release as it is breaking for the client.
I assume the wire format doesn't change, which we do try to avoid.
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.
correct wire format does not change. Would you be up for cutting 1.0?
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.
Looks like a nice cleanup.
Curious why the CI doesn't run
proto/confio/v1/proofs.proto
Outdated
@@ -1,16 +1,18 @@ | |||
syntax = "proto3"; | |||
|
|||
package ics23; | |||
package confio.v1.ics23; |
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.
Sure, we can rename this.
Let's make sure this gets into a 0.7.0 release as it is breaking for the client.
I assume the wire format doesn't change, which we do try to avoid.
this is ready for go. For js, its unclear to me what I need to run? Rust, is panicking |
Ooh, sounds like fun. I will come back to this when I have a bit of time. |
But provides a layout to the repo that is common amongst Protobuf repos. This helps with registering proto types in the proto registry.
In ibc, proofs.proto is imported via confio/proofs.proto, which fails in grace reflection as its not correct in the proto registry
closes #32