Skip to content

cmd/go: consistently defer module path checks (including major-version matching) until import or build-list resolution #31662

Open
@bcmills

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 the go.mod file specifies go 1.12 or earlier.
  • 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 required).
  • 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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

No one assigned

    Labels

    NeedsInvestigationSomeone must examine and confirm this is a valid issue and not a duplicate of an existing one.early-in-cycleA change that should be done early in the 3 month dev cycle.modules

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions