]> Cypherpunks repositories - gostls13.git/commit
cmd/go: avoid +incompatible major versions if a go.mod file exists in a subdirectory...
authorBryan C. Mills <bcmills@google.com>
Wed, 23 Feb 2022 16:55:08 +0000 (11:55 -0500)
committerBryan Mills <bcmills@google.com>
Thu, 24 Feb 2022 22:09:17 +0000 (22:09 +0000)
commit5a9fc946b42cc987db41eabcfcbaffd2fb310d94
treea42617d58ec30f391f23585bd3eb48359f92add9
parent4edefe95689c31846a73e36b3e0723c924def45d
cmd/go: avoid +incompatible major versions if a go.mod file exists in a subdirectory for that version

Previous versions of the 'go' command would reject a pseudo-version
passed to 'go get' if that pseudo-version had a mismatched major
version and lacked a "+incompatible" suffix. However, they would
erroneously accept a version *with* a "+incompatible" suffix even if
the repo contained a vN/go.mod file for the same major version, and
would generate a "+incompatible" pseudo-version or version if the user
requested a tag, branch, or commit hash.

This change uniformly rejects "vN.…" without "+incompatible", and also
avoids resolving to "vN.…+incompatible", when vN/go.mod exists.
To maintain compatibility with existing go.mod files, it still accepts
"vN.…+incompatible" if the version is requested explicitly as such
and the repo root lacks a go.mod file.

Fixes #51324
Updates #36438

Change-Id: I2b16150c73fc2abe4d0a1cd34cb1600635db7139
Reviewed-on: https://go-review.googlesource.com/c/go/+/387675
Trust: Bryan Mills <bcmills@google.com>
Reviewed-by: Michael Matloob <matloob@golang.org>
src/cmd/go/internal/modfetch/coderepo.go
src/cmd/go/internal/modfetch/coderepo_test.go