-
Notifications
You must be signed in to change notification settings - Fork 191
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
Remove patch version in go.mod's #1192
Comments
Given go tooling adds the patch version by default, it's really hard (almost impossible) to try to keep it out of individual modules. I'd suggest resolving that in go tooling before trying to chase the whole internet of dependencies to keep patch versions out |
It is being discussed: golang/go#65847. If you don't want to make the change, I respect that. |
@johanbrandhorst Per commentary on golang/go#65847, it seems to me that declaring a |
I think staying at |
We will try our best to maintain the |
9fdb1ca updated the
go
stanza in thego.mod
files in this repo to1.23.0
. In some cases, it was changed fromgo 1.22
togo 1.23.0
. That might seem insignificant, but it turns out that this can cause all kinds of annoying problems for downstream problems (see discussion on grpc-go/grpc repo) and ideally libraries should (for now at least) not use the patch version at all. Please consider changing togo 1.23
consistently.The text was updated successfully, but these errors were encountered: