aboutsummaryrefslogtreecommitdiff
path: root/go.sum
AgeCommit message (Collapse)Author
2026-02-10go.mod: pembaruan semua dependensiShulhan
2026-02-02local: add support for socket based activation with systemdShulhan
The tour program now can be activated by systemd.socket(5).
2026-02-02go.mod: update all dependenciesShulhan
2024-09-15go.mod: pembaruan dependensiShulhan
2024-07-14go.mod: perbarui semua dependensi modulShulhan
2023-11-12Merge commit '3891a3eb15c0'Shulhan
Merge commit dari upstream sebelum semua berkas dihapus karena digabung dengan golang.org/x/website di commit 241d4738f53e9d
2023-03-03all: update all dependencies and the minimum Go to 1.18Shulhan
While at it, add the command to changes the active gcloud configuration on task deploy.
2021-05-26all: go get golang.org/x/tools@a3eb095d6ae && go mod tidyRuss Cox
Bring in CL 293449 (and more) to remove /share playground proxy. Change-Id: I761ddb0797e3032f79ac3fd91e3f5c4bd4307eda Reviewed-on: https://go-review.googlesource.com/c/tour/+/296371 Trust: Russ Cox <rsc@golang.org> Run-TryBot: Russ Cox <rsc@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
2021-03-04tour: build snippets in module modeDmitri Shuralyov
We want to start building snippets in module mode rather than legacy legacy GOPATH mode, to make tour work well when there's no tour code in GOPATH/src and to be more future-proof. Building in module mode means we need to specify a go.mod file to use for each snippet. The tour web UI design predates the module mode and its go.mod files. Txtar-based multi-file support was added to the playground (that the tour uses for executing snippets) in golang.org/issue/32040, but the web UI hasn't been updated to have first-class separate <textarea> elements or tabs for editing multiple files. For now, we can get by with providing a default go.mod file for all tour snippets, since they only need some packages in the tour module. Update to a newer version of the golang.org/x/tools/playground/socket package which includes multi-file snippet support added in CL 204237. For golang/go#44243. Change-Id: Ib05725c52fbe43658b2f22ac728b1e901e635824 Reviewed-on: https://go-review.googlesource.com/c/tour/+/291889 Trust: Dmitri Shuralyov <dmitshur@golang.org> Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Russ Cox <rsc@golang.org>
2019-03-12all: add go.modBryan C. Mills
Commands run: go mod init go mod edit -go=1.11 go mod tidy go list -m all go test ./... Updates golang/go#30228 Change-Id: I3d7e4f59a98822691177973ec2d7a55a6216b78c Reviewed-on: https://go-review.googlesource.com/c/tour/+/167181 Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>