From 500af5d47138a5dca0f321966b9e8e244736e0cc Mon Sep 17 00:00:00 2001 From: Austin Clements Date: Fri, 27 Dec 2024 13:51:49 -0500 Subject: [PATCH] _content/doc/go1.24: link to in-tree GOCACHEPROG docs Currently the release notes link to the proposal for GOCACHEPROG, which isn't ideal and is also slightly outdated. CL 638995 moves the protocol documentation to its own package that we can link to and that can't get out of date, so point the release notes at this documentation. For golang/go#71032 Change-Id: I8d4db0a0153333b40f9021f030a36184546bfe51 Reviewed-on: https://go-review.googlesource.com/c/website/+/638378 Auto-Submit: Austin Clements LUCI-TryBot-Result: Go LUCI Reviewed-by: Dmitri Shuralyov Reviewed-by: Dmitri Shuralyov --- _content/doc/go1.24.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_content/doc/go1.24.md b/_content/doc/go1.24.md index 30f93190fe..e039f87202 100644 --- a/_content/doc/go1.24.md +++ b/_content/doc/go1.24.md @@ -141,7 +141,7 @@ The `cmd/go` internal binary and test caching mechanism can now be implemented by child processes implementing a JSON protocol between the `cmd/go` tool and the child process named by the `GOCACHEPROG` environment variable. This was previously behind a GOEXPERIMENT. -For protocol details, see [#59719](/issue/59719). +For protocol details, see [the documentation](/cmd/go/internal/cacheprog). ## Runtime {#runtime}