-
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
cmd/go: get doesn't select dependencies limited to go@version #67574
Comments
the current behavior also breaks tools like go-mod-upgrade completely that use go get. |
I can reproduce this. We should fix it. I'm not totally sure if it justifies getting in after the freeze or to be backported, but it might? |
hey, @matloob just following up. Have you had any luck attempting to fix this issue? |
Hi sorry I haven't had a chance to start work on this yet. |
$ go get -u ./...
go: github.com/ory/client-go@v1.17.2 requires go >= 1.24.0 (running go 1.23.6; GOTOOLCHAIN=local) I use Fedora 41 on my work laptop. Currently this is the latest version of Fedora and it will never get Go 1.24.x but in the future Fedora 42 that is planned for release after about two months from now. I'm also not planing to upgrade my Fedora to version 42 at the day 1 after it will be released, so it will happen even later. I can run |
For me, I install latest stable from the Go project anyway, using dev containers and Github actions. Works and keeps me perfectly covered security-wise. If there is anything that doesn't work anymore, then that's the distro packers for technology that rapidly evolves. |
Summary: Our suggestion was not correct and the current behavior is working as intended. We would have to change the semantics of I'll have to admit that we were mistaken on this: the suggestion in #59886 (comment) was not correct and is not supposed to work, even when the Go command used to run it is new enough. We got confused by this because while The meaning of The meaning of the command is then to pin all the deps at specific (either the current required or latest) versions. If any of these depend on the others at a different version, there will be a conflict, resulting in an error saying that the versions conflict with each other. These conflicts can also occur with the minimum required go versions, which are treated similarly to module requirements. You'll get the conflict error if your go command is at or above the go version in the go.mod file for the When the go command is older than the minimum version of go required by the So there are two issues with using To address the first issue, if your go command is new enough, you should get each of the dependencies with a separate go command, and then use a final go command to downgrade your go version. That would look like
The first three commands will add the requirements on dep1, dep2, and dep3, potentially adding requirements on newer versions of go. The final command will cause Go to make the necessary downgrades to the work module's dependencies so that the module's requirement can be set to go1.21. The second issue is a bit harder to address. Our recommendation to users is to use
We understand that that is not something that users are able to or want to do. But if it is possible, it will have the best results. @alexander-bachmann Is that something you can do? Can you use newer versions of go only to manage dependencies while continuing to use the previous version of go for your development and builds? @rosti-il If you can, I'd recommend allowing upgrades to later versions of go. Fedora sets the value of GOTOOLCHAIN to To allow an older version of Go to be able to update dependencies with an upper bound go requirement lesser than or equal to its own version, we'd have to add another option or mode to the Go command. And given the complexity of the options that already exist (for example the |
@matloob This is not my personal project, and I can't decide on my own which version of Go to use or if |
matloob, thank you very much for your detailed and helpful explanation! I wonder if you would like to publish it on the go blog with some minor edits if possible? In my case doing a final |
Go version
go version go1.21.8 darwin/amd64
Output of
go env
in your module/workspace:What did you do?
we would like to stay on golang version 1.21 and still be able to update our dependencies using
go get -u ./...
the problem is that
go get
doesn’t respect the local toolchain version and attempts to pull in module versions that are newer than the local toolchainwe found this solution #59886 (comment) but it doesn’t seem to work as seen in the example below:
I also attempted with
go get k8s.io/client-go go@1.21
andgo get k8s.io/client-go go@1.20
What did you see happen?
not download compatible module version
What did you expect to see?
download compatible module version
The text was updated successfully, but these errors were encountered: