diff options
| author | Dmitri Shuralyov <dmitshur@golang.org> | 2025-08-08 22:06:27 -0400 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2025-08-13 07:15:41 -0700 |
| commit | f10a82b76ff92b3c506203485b158191de4b3090 (patch) | |
| tree | 8dd5979b9c1aa3918e864dd6402e5c50f7d65f2e /src/cmd/go.mod | |
| parent | 3bea95b2778312dd733c0f13fe9ec20bd2bf2d13 (diff) | |
| download | go-f10a82b76ff92b3c506203485b158191de4b3090.tar.xz | |
all: update vendored dependencies [generated]
The tree has opened for Go 1.26 development. This is a time to update
all golang.org/x/... module versions that contribute packages to the
std and cmd modules in the standard library to latest master versions.
For #36905.
[git-generate]
go install golang.org/x/build/cmd/updatestd@latest
go install golang.org/x/tools/cmd/bundle@latest
updatestd -goroot=$(pwd) -branch=master
# Update a cmd/vet test case.
patch <<EOF
--- src/cmd/vet/testdata/assign/assign.go
+++ src/cmd/vet/testdata/assign/assign.go
@@ -18 +18 @@ func (s *ST) SetX(x int, ch chan int) {
- x = x // ERROR "self-assignment of x to x"
+ x = x // ERROR "self-assignment of x"
@@ -20 +20 @@ func (s *ST) SetX(x int, ch chan int) {
- s.x = s.x // ERROR "self-assignment of s.x to s.x"
+ s.x = s.x // ERROR "self-assignment of s.x"
@@ -22 +22 @@ func (s *ST) SetX(x int, ch chan int) {
- s.l[0] = s.l[0] // ERROR "self-assignment of s.l.0. to s.l.0."
+ s.l[0] = s.l[0] // ERROR "self-assignment of s.l.0."
EOF
Change-Id: I3fc77d49fa7b47803d363287910b0e37bedefb60
Reviewed-on: https://go-review.googlesource.com/c/go/+/694536
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: David Chase <drchase@google.com>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Diffstat (limited to 'src/cmd/go.mod')
| -rw-r--r-- | src/cmd/go.mod | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/cmd/go.mod b/src/cmd/go.mod index 5624b81cc5..dcea08e015 100644 --- a/src/cmd/go.mod +++ b/src/cmd/go.mod @@ -1,21 +1,21 @@ module cmd -go 1.25 +go 1.26 require ( github.com/google/pprof v0.0.0-20250208200701-d0013a598941 - golang.org/x/arch v0.18.1-0.20250605182141-b2f4e2807dec - golang.org/x/build v0.0.0-20250606033421-8c8ff6f34a83 - golang.org/x/mod v0.25.0 - golang.org/x/sync v0.15.0 - golang.org/x/sys v0.33.0 - golang.org/x/telemetry v0.0.0-20250606142133-60998feb31a8 - golang.org/x/term v0.32.0 - golang.org/x/tools v0.34.0 + golang.org/x/arch v0.20.1-0.20250808194827-46ba08e3ae58 + golang.org/x/build v0.0.0-20250806225920-b7c66c047964 + golang.org/x/mod v0.27.0 + golang.org/x/sync v0.16.0 + golang.org/x/sys v0.35.0 + golang.org/x/telemetry v0.0.0-20250807160809-1a19826ec488 + golang.org/x/term v0.34.0 + golang.org/x/tools v0.36.1-0.20250808220315-8866876b956f ) require ( github.com/ianlancetaylor/demangle v0.0.0-20240912202439-0a2b6291aafd // indirect - golang.org/x/text v0.26.0 // indirect + golang.org/x/text v0.28.0 // indirect rsc.io/markdown v0.0.0-20240306144322-0bf8f97ee8ef // indirect ) |
