Description
At the moment, we validate that the major version through which a module was resolved matches the major-version suffix of the path declared in its go.mod
file.
However, we perform that validation only sporadically (#31428), the resulting failure message (if any) can be difficult to understand in context (#30499, #30636), and a mismatch — even one involving mismatched major-version components — isn't even obviously correct if the module is involved in a replace
directive (#26904, #27171 (comment)).
I suspect that we should simply not validate module paths at all when fetching a module, and instead do the validation consistently only at loading time (when we resolve explicit package imports).
At that point:
- If a module is used to replace the source code of another module, we should ensure that its path — including the major-version component — matches the module whose code it replaces.
- Due to existing
replace
usage, we might need to relax this to allow the module path to also match the path and version from which the source code was fetched, but ideally only if thego.mod
file specifiesgo 1.12
or earlier.
- Due to existing
- If a module is used as an alias from another module path and version (cmd/go: allow replacement modules to alias other active modules #26904), then we should resolve it at the path to which the alias points during package loading, and thus the module path and major version should match that path (and the major version at which it is
require
d). - If a module is downloaded using
go mod download
, we don't know how it is going to be used, and thus should not validate anything about its path.
CC @rsc @jayconrod @heschik @hyangah @katiehockman @leitzler @tbpg
Activity