diff options
| author | Dmitri Shuralyov <dmitshur@golang.org> | 2023-06-02 10:16:56 -0400 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2023-10-26 17:53:40 +0000 |
| commit | 7546c79e91f4a7abe3959a61e01e2d244dc5c440 (patch) | |
| tree | f0575f6882f2cfc63ab993fdebd34122b3c89514 /src/cmd/go.mod | |
| parent | 0046c1414c4910dfe54abfcdbe18e565dd5a60f6 (diff) | |
| download | go-7546c79e91f4a7abe3959a61e01e2d244dc5c440.tar.xz | |
cmd: update vendored golang.org/x/mod
Pull in CL 500335. It teaches modfile.IsDirectoryPath to recognize all
relative paths that begin with a "." or ".." path element as a valid
directory path (rather than a module path). This allows removing the
path == "." check that CL 389298 added to modload.ToDirectoryPath.
go get golang.org/x/mod@6e58e47c # CL 500335
go mod tidy
go mod vendor
Updates #51448.
Fixes #60572.
Change-Id: Ide99c728c8dac8fd238e13f6d6a0c3917d7aea2d
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest
Reviewed-on: https://go-review.googlesource.com/c/go/+/500355
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Bryan Mills <bcmills@google.com>
Diffstat (limited to 'src/cmd/go.mod')
| -rw-r--r-- | src/cmd/go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/go.mod b/src/cmd/go.mod index b1c26063d3..1e94f5dab0 100644 --- a/src/cmd/go.mod +++ b/src/cmd/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/google/pprof v0.0.0-20230811205829-9131a7e9cc17 golang.org/x/arch v0.5.1-0.20231011141335-a6bdeed49307 - golang.org/x/mod v0.13.0 + golang.org/x/mod v0.13.1-0.20231025225536-6e58e47c7bd6 golang.org/x/sync v0.4.1-0.20231011140417-10739b037d36 golang.org/x/sys v0.13.1-0.20231011215430-1bfbee0e20e3 golang.org/x/term v0.13.1-0.20231011140651-6a610bc55bff |
