2019-01-28 23:15:49 +03:00
|
|
|
module golang.org/x/website
|
|
|
|
|
2024-05-22 20:08:56 +03:00
|
|
|
go 1.21
|
2019-08-30 16:53:27 +03:00
|
|
|
|
2019-01-28 23:15:49 +03:00
|
|
|
require (
|
2023-10-05 23:12:16 +03:00
|
|
|
cloud.google.com/go/cloudbuild v1.14.0
|
2024-05-22 20:08:56 +03:00
|
|
|
cloud.google.com/go/datastore v1.13.0
|
|
|
|
cloud.google.com/go/storage v1.31.0
|
2021-12-14 00:19:45 +03:00
|
|
|
github.com/chromedp/cdproto v0.0.0-20211205231339-d2673e93eee4
|
|
|
|
github.com/chromedp/chromedp v0.7.6
|
2023-08-06 07:04:58 +03:00
|
|
|
github.com/evanw/esbuild v0.18.19
|
2019-01-28 23:15:49 +03:00
|
|
|
github.com/gomodule/redigo v2.0.0+incompatible
|
2024-05-06 20:52:32 +03:00
|
|
|
github.com/google/go-cmp v0.6.0
|
2021-12-14 00:19:45 +03:00
|
|
|
github.com/n7olkachev/imgdiff v1.0.2
|
2024-05-22 20:08:56 +03:00
|
|
|
github.com/yuin/goldmark v1.6.0
|
|
|
|
golang.org/x/build v0.0.0-20240520181858-75ff9ef337d5
|
2024-05-06 20:52:32 +03:00
|
|
|
golang.org/x/net v0.25.0
|
2024-04-05 01:17:56 +03:00
|
|
|
golang.org/x/sync v0.7.0
|
2024-05-06 20:52:32 +03:00
|
|
|
golang.org/x/tools v0.21.0
|
2024-05-22 20:08:56 +03:00
|
|
|
google.golang.org/api v0.136.0
|
2023-04-20 23:11:30 +03:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
cmd/golangorg: add doc/next page to preview draft release notes
The improved release note process is being used starting with Go 1.23.
That means instead of a single doc/go1.23.html draft file in the main
Go repository, doc/next contains a set of release note fragments.
Having small, orthogonal files avoids merge conflicts, and a release
note test requires that release notes are written and included in the
same CL that's adding new APIs. As a result, the set of completed
release notes even before we enter the release freeze is greater than
ever before.
While it's possible to view those fragments using tip.golang.org
(e.g., by visiting https://tip.golang.org/doc/next), reading them
that way isn't practical. The relnote generate tool exists to merge
fragments into a complete Markdown document, and this tool will be
used when eventually moving a complete draft of Go 1.23 release notes
to x/website.
To aid the remaining work of completing the release note draft, this
change adds a dynamic /doc/next page to preview what the relnote
generate tool will produce. Combined with existing functionality of
the -tip flag, it makes https://tip.golang.org/doc/next display a live
preview of the checked-in release notes draft.
It can also be used to preview release note draft locally. For example,
if $HOME/gotip is a Go checkout where one is editing doc/next content:
go run golang.org/x/website/cmd/golangorg@latest -goroot=$HOME/gotip
Will serve a live preview at http://localhost:6060/go.dev/doc/next.
It can be slightly more convenient to refresh a browser without having
to re-run 'relnote generate'.
For golang/go#64169.
For golang/go#65614.
Change-Id: Ie1d3650076421a95a691dd84a554a113dd1187b1
Reviewed-on: https://go-review.googlesource.com/c/website/+/587436
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: Jonathan Amsterdam <jba@google.com>
2024-05-08 23:09:16 +03:00
|
|
|
rsc.io/markdown v0.0.0-20240306144322-0bf8f97ee8ef
|
2019-01-28 23:15:49 +03:00
|
|
|
)
|
2022-12-09 22:47:06 +03:00
|
|
|
|
|
|
|
require (
|
2024-05-22 20:08:56 +03:00
|
|
|
cloud.google.com/go v0.110.7 // indirect
|
2024-05-06 20:52:32 +03:00
|
|
|
cloud.google.com/go/compute/metadata v0.3.0 // indirect
|
2024-05-22 20:08:56 +03:00
|
|
|
cloud.google.com/go/iam v1.1.2 // indirect
|
|
|
|
cloud.google.com/go/longrunning v0.5.1 // indirect
|
2022-12-09 22:47:06 +03:00
|
|
|
github.com/chromedp/sysutil v1.0.0 // indirect
|
|
|
|
github.com/gobwas/httphead v0.1.0 // indirect
|
|
|
|
github.com/gobwas/pool v0.2.1 // indirect
|
|
|
|
github.com/gobwas/ws v1.1.0 // indirect
|
2023-05-04 23:36:46 +03:00
|
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
2023-09-05 23:17:34 +03:00
|
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
|
|
github.com/google/s2a-go v0.1.4 // indirect
|
2024-05-22 20:08:56 +03:00
|
|
|
github.com/google/uuid v1.3.1 // indirect
|
2023-10-05 23:12:16 +03:00
|
|
|
github.com/googleapis/enterprise-certificate-proxy v0.2.5 // indirect
|
2024-05-22 20:08:56 +03:00
|
|
|
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
|
2022-12-09 22:47:06 +03:00
|
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
|
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
|
2023-09-05 23:17:34 +03:00
|
|
|
go.opencensus.io v0.24.0 // indirect
|
2024-05-06 20:52:32 +03:00
|
|
|
golang.org/x/crypto v0.23.0 // indirect
|
2024-04-05 01:17:56 +03:00
|
|
|
golang.org/x/mod v0.17.0 // indirect
|
2024-05-06 20:52:32 +03:00
|
|
|
golang.org/x/oauth2 v0.20.0 // indirect
|
|
|
|
golang.org/x/sys v0.20.0 // indirect
|
|
|
|
golang.org/x/text v0.15.0 // indirect
|
2022-12-09 22:47:06 +03:00
|
|
|
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
|
2023-10-05 23:12:16 +03:00
|
|
|
google.golang.org/appengine v1.6.8-0.20221117013220-504804fb50de // indirect
|
2024-05-22 20:08:56 +03:00
|
|
|
google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect
|
|
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect
|
|
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
|
|
|
|
google.golang.org/grpc v1.59.0 // indirect
|
2023-09-05 23:17:34 +03:00
|
|
|
google.golang.org/protobuf v1.31.0 // indirect
|
2022-12-09 22:47:06 +03:00
|
|
|
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
|
|
|
|
)
|