-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
golang.org/x/*: go directive of 1.23.0 is forcing toolchain directives in anything not using exactly go1.23.0 #71864
Comments
see https://go-review.googlesource.com/c/mod/+/642200 we consider this working as intended, 1.23.0 is the minimum version we support. |
I'm not familiar with the review process. What does that mean? I thought |
no, go1.23 means every development version after the go1.22.0 |
so... if I'm understanding this correctly, because of that, putting go 1.23.0 & forcing a toolchain into every go mod that uses the x packages is acceptable & intended? |
see #65847 |
Go version
go version go 1.23.2
Output of
go env
in your module/workspace:What did you do?
Tried to update dependencies for anything in golang.org/x/*
What did you see happen?
due to the 1.23.0 go directive in the x packages, the compiler is forcing a toolchain directive into my go.mod file unless I'm on exactly 1.23.0
What did you expect to see?
expected the x packages to have a go directive of 1.23 without the patch in it.
The text was updated successfully, but these errors were encountered: