From 60daf813092809dddc8596a21308339df13155d5 Mon Sep 17 00:00:00 2001 From: Alba Mendez Date: Sun, 5 Apr 2026 15:19:10 +0200 Subject: [PATCH] doc: go: mention edge case that needs proxyVendor Closes #506926. --- doc/languages-frameworks/go.section.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/languages-frameworks/go.section.md b/doc/languages-frameworks/go.section.md index 77b6d67e83d5..565884597553 100644 --- a/doc/languages-frameworks/go.section.md +++ b/doc/languages-frameworks/go.section.md @@ -101,6 +101,7 @@ If `true`, the intermediate fetcher downloads dependencies from the This is useful if your code depends on C code and `go mod tidy` does not include the needed sources to build or if any dependency has case-insensitive conflicts which will produce platform-dependent `vendorHash` checksums. +It may also be needed if the module targets language version 1.16 or earlier, since vendoring compiles all dependencies against language version 1.16 in this case. Defaults to `false`.