-
Notifications
You must be signed in to change notification settings - Fork 17.7k
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: mod tidy reports toolchain not available with 'go 1.21' #62278
Comments
how did you end up with |
I can't remember exactly, but I think it was rather manual like: |
I am seeing this problem on linux/ppc64le.
|
@matthewhughes-uw, this is as expected: In general if you want to specify a development version in the go 1.21.0 or go 1.21
toolchain go1.21.0 |
@laboger, the problem you are seeing is similar. In particular, if you are working within |
As far as I can tell this is all working as designed. @matthewhughes-uw, are there specific documentation changes that would have helped you solve or avoid this problem? |
👍
I think the main issue was my assumption that, previously I could just specify a language version (per https://go.dev/doc/toolchain#version) i.e.
and within the linked page
so I guess it wasn't clear to me that a "language version" != a "Go release version" (though it was true for every language version before Go 1.21)
🤔 Maybe it's worth documenting something like "If you want to specify a 'language version' in |
S. golang/go#62278 (comment) for details
Set golang version to `v1.21.0`, s. golang/go#62278 (comment)
Set golang version to `v1.21.0`, s. golang/go#62278 (comment)
To add to this: what really happened here that causes a bit of confusion is that the value of Before 1.21 release With 1.21 release you most likely want to put So the way I see it we went from Having now also |
According to [1] as of Go 1.21 we either need to specify the full toolchain version in the `go` directive or add a `toolchain` directive with the concrete toolchain version. Opt for the former and make sure it's kept up to date by renovate bot. [1] golang/go#62278 (comment) Signed-off-by: Tobias Klauser <tobias@cilium.io>
According to [1] as of Go 1.21 we either need to specify the full toolchain version in the `go` directive or add a `toolchain` directive with the concrete toolchain version. Opt for the former and make sure it's kept up to date by renovate bot. [1] golang/go#62278 (comment) Signed-off-by: Tobias Klauser <tobias@cilium.io>
go 1.22 is a development version for which there is no downloadable release, and so 'go' cannot install a proper toolchain for it. See: golang/go#62278 (comment)
This also uses 1.23.0 as go version instead of 1.23. The latter is an invalid version as there is no release. Hence, building will fail. See golang/go#62278.
If this is the case, I think that the Go docs/blogs/reference should recommend it. Right now, I think that the documentation explains well how the Go modules + Go toolchain are supposed to work, but it misses clear recommendations that the Go developers should follow. Examples that may even to discourage putting
However, I am not sure if this would be a correct recommendation. What would be wrong if the
This way:
At the same time
also does not look wrong. Having guidelines maybe would also reduce the risk of having issues like this one: grpc/grpc-go#7831 Moreover, I am not sure it this was a good change in |
Note: I think this is a question of: is "
go 1.21
" a valid go directive? since there was no1.21
release, only1.21.0
, perhaps notWhat version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes, reproduced on Go 1.21.0
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Given a basic
go.mod
Then run:
What did you expect to see?
go mod tidy
runs successfully. I guess I expect it would pickgo1.21.0
as the toolchain if no toolchain is available as1.21
What did you see instead?
The error output above with a non-zero exit code
More details
The issue was seen when running
dependabot
on a repo with ago 1.21
directive ingo.mod
, theGOTOOLCHAIN
above was taken from their usage https://github.com/dependabot/dependabot-core/blob/08ac25ebd773cede0c00be9a98e5bb03b680870b/go_modules/Dockerfile#L34Running the above command with
GODEBUG=http2debug=1
I see it:go.dev/dl/mod/golang.org/toolchain/@v/v0.0.1-go1.21.linux-amd64.zip
which returnsLocation: https://go.dev/dl/mod/golang.org/toolchain/@v/v0.0.1-go1.21.linux-amd64.zip
location: https://dl.google.com/go/v0.0.1-go1.21.linux-amd64.zip
Updating the directive to:
go 1.21.0
will permit things to run fine.Update: closed per #62278 (comment)
The text was updated successfully, but these errors were encountered: