From 74d366f4844026494e777638caffaf94255166dc Mon Sep 17 00:00:00 2001
From: Jay Conrod GOINSECURE
is a comma-separated list of glob patterns.
+ When module-aware mode is enabled explicitly (by setting
+ GO111MODULE=on
), most module commands have more
+ limited functionality if no go.mod
file is present. For
+ example, go
build
,
+ go
run
, and other build commands can only build
+ packages in the standard library and packages specified as .go
+ files on the command line.
+
+ Previously, the go
command would resolve each package path
+ to the latest version of a module but would not record the module path
+ or version. This resulted in slow,
+ non-reproducible builds.
+
+ go
get
continues to work as before, as do
+ go
mod
download
and
+ go
list
-m
with explicit version
+ patterns.
+
+incompatible
versions