浏览代码

Update Go documentation (1.25.0)

Entries: (520 KB, +6 KB)
  Updated: 6127
  Created: 65
    + ast.PreorderStack()
    + Command jsontext
    + Command v2
    + crypto.MessageSigner
    + crypto.SignMessage()
    + ecdsa.ParseRawPrivateKey()
    + ecdsa.ParseUncompressedPublicKey()
    + ecdsa.PrivateKey.Bytes()
    + ecdsa.PublicKey.Bytes()
    + fs.Lstat()
    + fs.ReadLink()
    + fs.ReadLinkFS
    + fstest.MapFS.Lstat()
    + fstest.MapFS.ReadLink()
    + hash.Cloner
    + hash.XOF
    + http.CrossOriginProtection
    + http.CrossOriginProtection.AddInsecureBypassPattern()
    + http.CrossOriginProtection.AddTrustedOrigin()
    + http.CrossOriginProtection.Check()
    + http.CrossOriginProtection.Handler()
    + http.CrossOriginProtection.SetDenyHandler()
    + http.NewCrossOriginProtection()
    + maphash.Hash.Clone()
    + multipart.FileContentDisposition()
    + os.Root.Chmod()
    + os.Root.Chown()
    + os.Root.Chtimes()
    + os.Root.Lchown()
    + os.Root.Link()
    + os.Root.MkdirAll()
    + os.Root.ReadFile()
    + os.Root.Readlink()
    + os.Root.RemoveAll()
    + os.Root.Rename()
    + os.Root.Symlink()
    + os.Root.WriteFile()
    + reflect.TypeAssert()
    + runtime.SetDefaultGOMAXPROCS()
    + sha3.SHA3.Clone()
    + slog.GroupAttrs()
    + slog.Record.Source()
    + sync.WaitGroup.Go()
    + synctest.Test()
    + synctest.Wait()
    + testing.B.Attr()
    + testing.B.Output()
    + testing.F.Attr()
    + testing.F.Output()
    + testing.T.Attr()
    + testing.T.Output()
    + testing/synctest
    + token.FileSet.AddExistingFiles()
    + trace.FlightRecorder
    + trace.FlightRecorder.Enabled()
    + trace.FlightRecorder.Start()
    + trace.FlightRecorder.Stop()
    + trace.FlightRecorder.WriteTo()
    + trace.FlightRecorderConfig
    + trace.NewFlightRecorder()
    + types.LookupSelection()
    + types.Var.Kind()
    + types.Var.SetKind()
    + types.VarKind
    + types.VarKind.String()
  Deleted: 1
    - Command synctest
Types:
  Updated: 62
  Created: 0
  Deleted: 0
Files: (4.6 MB, +0.2 MB)
  Updated: 183
  Created: 2
    + encoding/json/jsontext/index
    + encoding/json/v2/index
  Deleted: 0
Done
Simon Legner 4 月之前
父节点
当前提交
575bbfaab3
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      lib/docs/scrapers/go.rb

+ 4 - 4
lib/docs/scrapers/go.rb

@@ -1,7 +1,7 @@
 module Docs
   class Go < UrlScraper
     self.type = 'go'
-    self.release = '1.24.0'
+    self.release = '1.25.0'
     self.base_url = 'https://golang.org/pkg/'
     self.links = {
       home: 'https://golang.org/',
@@ -10,7 +10,7 @@ module Docs
 
     # Run godoc locally, since https://golang.org/pkg/ redirects to https://pkg.go.dev/std with rate limiting / scraping protection.
 
-    # podman run --net host --rm -it docker.io/golang:1.24.0
+    # podman run --net host --rm -it docker.io/golang:1.25.0
     #podman# go install golang.org/x/tools/cmd/godoc@latest
     #podman# rm -r /usr/local/go/test/
     #podman# godoc -http 0.0.0.0:6060 -v
@@ -18,8 +18,8 @@ module Docs
     # or using alpine
     # podman run --net host --rm -it alpine:latest
     #podman# apk add curl
-    #podman# curl -LO https://go.dev/dl/go1.24.0.linux-amd64.tar.gz
-    #podman# tar xf go1.24.0.linux-amd64.tar.gz
+    #podman# curl -LO https://go.dev/dl/go1.25.0.linux-amd64.tar.gz
+    #podman# tar xf go1.25.0.linux-amd64.tar.gz
     #podman# go/bin/go install golang.org/x/tools/cmd/godoc@latest
     #podman# /root/go/bin/godoc -http 0.0.0.0:6060 -v