-
Notifications
You must be signed in to change notification settings - Fork 17.8k
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: need to backport relaxing of go.mod go verb constraints to 1.11 series #28974
Comments
I don't think this is significant enough to be worth backporting. If the problem is that stuff tagged Note that ~no code in the wild today should be tagged |
Assigning to @ianlancetaylor for decision, since it's his patch we'd need to backport. (I'm leaning “no”.) |
The problem is that when you |
I think it makes sense to backport just the part of the patch that lets the build go through, and gives an appropriate warning if it fails. I'll send a CL for the 1.11 branch. |
I believe this is resolved by https://golang.org/cl/151358 (“[release-branch.go1.11] cmd/go: don't fail if requested Go version is later than current one”). @ianlancetaylor, please reopen if I'm mistaken. |
This is an ongoing pain for me. Really hoping for go1.11.3 soon :) |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes.
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Go 1.12 attempts to build/test/whatever a module with a
go
verb specifying the next or higher>= 1.13
. However, this is a hard failure for Go 1.11.What did you expect to see?
I think we will need a Go 1.11 release in order for modules created with Go 1.12 to be usable by those who don't immediately upgrade to 1.12.
What did you see instead?
Failures as above.
cc @rsc @bcmills @ianlancetaylor
The text was updated successfully, but these errors were encountered: