We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Using protolock v0.15.0, with the following proto:
syntax="proto3"; enum Foo { BAR = 0; BAZ = 1; }
After committing the lockfile, and making the following (backwards compatible) changes:
syntax="proto3"; enum Foo { option allow_alias = true; BAR = 0; BAZ = 1; QUUX = 1; }
Running protolock status, we get the following error:
protolock status
→ protolock status CONFLICT: "Foo" field: "QUUX" integer: 1 has an updated name, previously "BAZ" [foo.proto]
The text was updated successfully, but these errors were encountered:
For details on enum aliasing: https://developers.google.com/protocol-buffers/docs/proto3#enum
Sorry, something went wrong.
thanks for reporting, I will take a look asap. turns out I configured github to stop notifying me for all repos? oops.
quick update -- I haven't had a chance to really dig in here.. if anyone else feels like they want to give it a shot, please do!
adding the help wanted label
help wanted
No branches or pull requests
Using protolock v0.15.0, with the following proto:
After committing the lockfile, and making the following (backwards compatible) changes:
Running
protolock status
, we get the following error:The text was updated successfully, but these errors were encountered: