]> Cypherpunks.ru repositories - gostls13.git/commitdiff
doc/go1.22,cmd/go: document that 'go mod init' no longer imports from other vendoring...
authorBryan C. Mills <bcmills@google.com>
Mon, 11 Dec 2023 17:42:16 +0000 (12:42 -0500)
committerCarlos Amedee <carlos@golang.org>
Tue, 19 Dec 2023 15:51:46 +0000 (15:51 +0000)
This support was removed in CL 518776.

For #61422.
Fixes #53327.

Change-Id: I8ad0f76aed5f03e32c4c2c5c0001c3f06beb3c7d
Reviewed-on: https://go-review.googlesource.com/c/go/+/548877
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Than McIntosh <thanm@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>

doc/go1.22.html
src/cmd/go/alldocs.go
src/cmd/go/internal/modcmd/init.go

index 437e86e6b6da410715f4d4ba35a7353b09ab09ca..3bc0c092ed29c042d1aa3e0657d58b7ce946d6db 100644 (file)
@@ -94,7 +94,9 @@ func main() {
 
 <!-- CL 518776 -->
 <p>
-  <!-- cmd/go: remove conversion of legacy pre-module dependency configs -->
+  <code>go</code> <code>mod</code> <code>init</code> no longer attempts to import
+  module requirements from configuration files for other vendoring tools
+  (such as <code>Gopkg.lock</code>).
 </p>
 
 <!-- CL 495447 -->
index a40d0556ff142be4650a4bd4908059d4ab53176a..e61e865c84a8f77b06196c584f29f5f8bda3640b 100644 (file)
 // using import comments in .go files, vendoring tool configuration files (like
 // Gopkg.lock), and the current directory (if in GOPATH).
 //
-// If a configuration file for a vendoring tool is present, init will attempt to
-// import module requirements from it.
-//
 // See https://golang.org/ref/mod#go-mod-init for more about 'go mod init'.
 //
 // # Add missing and remove unused modules
index e4be73fab0bc96733cf1d2b1038ea4aa3ed1889d..facdaa9911c36514539e413e6778751191c5eb33 100644 (file)
@@ -25,9 +25,6 @@ module path argument is omitted, init will attempt to infer the module path
 using import comments in .go files, vendoring tool configuration files (like
 Gopkg.lock), and the current directory (if in GOPATH).
 
-If a configuration file for a vendoring tool is present, init will attempt to
-import module requirements from it.
-
 See https://golang.org/ref/mod#go-mod-init for more about 'go mod init'.
 `,
        Run: runInit,