Skip to content

Commit 6cacac1

Browse files
dmitshurgopherbot
authored andcommitted
go.mod: update tagx:ignore'd golang.org/x dependencies
These dependencies aren't yet automatically updated due to cycles, leaving them to be maintained manually. They haven't been updated in some time. Do that now. Updating to a newer x/tools version fixes a build error at Go tip: $ go version go version go1.25-devel_eebae283b6 Mon Jun 2 15:28:33 2025 -0700 darwin/arm64 # CL 675736 $ go test -c -o=/dev/null ./... # golang.org/x/tools/internal/tokeninternal $GOMODCACHE/golang.org/x/[email protected]/internal/tokeninternal/tokeninternal.go:64:9: invalid array length -delta * delta (constant -256 of type int64) FAIL golang.org/x/text/cmd/gotext [build failed] For golang/go#73264. For golang/go#73205. Change-Id: Ie6be2f827ba7e49f6d8469e9a53f314b4247759d Reviewed-on: https://go-review.googlesource.com/c/text/+/679115 Reviewed-by: Dmitri Shuralyov <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Carlos Amedee <[email protected]>
1 parent 700cc20 commit 6cacac1

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

go.mod

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ module golang.org/x/text
22

33
go 1.23.0
44

5-
require golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // tagx:ignore
5+
require golang.org/x/tools v0.33.0 // tagx:ignore
66

7-
require golang.org/x/mod v0.17.0 // indirect; tagx:ignore
8-
9-
require golang.org/x/sync v0.14.0 // indirect
7+
require (
8+
golang.org/x/mod v0.25.0 // indirect; tagx:ignore
9+
golang.org/x/sync v0.14.0 // indirect
10+
)

go.sum

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA=
2-
golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
1+
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
2+
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
3+
golang.org/x/mod v0.25.0 h1:n7a+ZbQKQA/Ysbyb0/6IbB1H/X41mKgbhfv7AfG/44w=
4+
golang.org/x/mod v0.25.0/go.mod h1:IXM97Txy2VM4PJ3gI61r1YEk/gAj6zAHN3AdZt6S9Ww=
35
golang.org/x/sync v0.14.0 h1:woo0S4Yywslg6hp4eUFjTVOyKt0RookbpAHG4c1HmhQ=
46
golang.org/x/sync v0.14.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
5-
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d h1:vU5i/LfpvrRCpgM/VPfJLg5KjxD3E+hfT1SH+d9zLwg=
6-
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk=
7+
golang.org/x/tools v0.33.0 h1:4qz2S3zmRxbGIhDIAgjxvFutSvH5EfnsYrRBj0UI0bc=
8+
golang.org/x/tools v0.33.0/go.mod h1:CIJMaWEY88juyUfo7UbgPqbC8rU2OqfAV1h2Qp0oMYI=

0 commit comments

Comments
 (0)