From 29d66ee53ead1ec70aa4b9bfee5aea2ec18f0a6e Mon Sep 17 00:00:00 2001 From: Alan Donovan Date: Fri, 3 Jan 2025 15:08:03 -0500 Subject: [PATCH] gopls: update toolchain to go1.23.4 This fixes a serious miscompilation of range-over-func (see golang/go#70035, and the symptom at CL 640035). Change-Id: I843785a276c8181c5d6b799506d2808a5e7626ae Reviewed-on: https://go-review.googlesource.com/c/tools/+/640036 Auto-Submit: Alan Donovan LUCI-TryBot-Result: Go LUCI Reviewed-by: Robert Findley --- gopls/go.mod | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gopls/go.mod b/gopls/go.mod index 4c04f38a726..fdf9f7b7c92 100644 --- a/gopls/go.mod +++ b/gopls/go.mod @@ -1,8 +1,8 @@ module golang.org/x/tools/gopls -// go 1.23.1 fixes some bugs in go/types Alias support. -// (golang/go#68894 and golang/go#68905). -go 1.23.1 +// go 1.23.1 fixes some bugs in go/types Alias support (golang/go#68894, golang/go#68905). +// go 1.23.4 fixes a miscompilation of range-over-func (golang/go#70035). +go 1.23.4 require ( github.com/google/go-cmp v0.6.0