-
Notifications
You must be signed in to change notification settings - Fork 143
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
Generate Google modules #353
Conversation
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.
seems reasonable and clean to me given the conversation in #21
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.
Finally having some time to go through these! I left a blocking comment but other than that this looks really good. Thank you @btkostner 💟
Co-authored-by: Andrea Leopardi <[email protected]>
Can you check the CI failure related to regenerating files? 🙃 |
@whatyouhide I can't see the CI failures from back then, but I merged main here and everything is green. Should we merge? |
Thanks folks! 💟 |
] | ||
end | ||
``` | ||
|
||
### Google Protos | ||
|
||
Since `:protobuf` version `0.13.0` we include all of the well known Google Protobuf modules. This conflicts with the deprecated `:google_protos` package. Please remove the `:google_protos` package from your dependencies and run `mix deps.unlock --unused`. |
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.
I don't think it's actually true 🤔 If I pull 0.13.0
now, it won't contain these new files. Perhaps you meant the next patch/minor version?
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.
That's right, fixed it on #381. Thank you for pointing out!
Fixes issue pointed out at #353
This includes the well known Google protobuf modules to deprecate the
google_protos
package. From this comment: elixir-protobuf/google-protos#21 (comment).