Skip to content

Commit

Permalink
Merge #139787
Browse files Browse the repository at this point in the history
139787:  deps: upgrade golang.org/x/net to 0.33.0  r=dhartunian a=dhartunian

Shortlog of changes:

```
❯ git shortlog v0.28.0..v0.33.0
Carlana Johnson (1):
      html: add Node.{Ancestors,ChildNodes,Descendants}()

Carlos Hernandez (1):
      route: fix address parsing of messages on Darwin

Damien Neil (12):
      http2: add Server.WriteByteTimeout
      http2: add support for server-originated pings
      http2: add support for net/http HTTP2 config field
      http2: support ResponseController.EnableFullDuplex
      http2: limit 1xx based on size, do not limit when delivered
      http2: detect hung client connections by confirming stream resets
      http2: support unencrypted HTTP/2 handoff from net/http
      http2: surface errors occurring very early in a client conn's lifetime
      http2: limit number of PINGs bundled with RST_STREAMs
      http2: fix benchmarks using common frame read/write functions
      quic: handle ACK frame in packet which drops number space
      quic: clean up crypto streams when dropping packet protection keys

Dmitri Shuralyov (1):
      websocket: fix printf(var) mistake detected by latest printf checker

Gopher Robot (5):
      go.mod: update golang.org/x dependencies
      go.mod: update golang.org/x dependencies
      go.mod: update golang.org/x dependencies
      go.mod: update golang.org/x dependencies
      go.mod: update golang.org/x dependencies

Ian Lance Taylor (2):
      README: don't recommend go get
      route: change from syscall to x/sys/unix

James Tucker (1):
      route: fix parse of zero-length sockaddrs in RIBs

Mathias Fredriksson (1):
      websocket: update nhooyr.io/websocket to github.com/coder/websocket

Michael Knyszek (2):
      Revert "route: remove unused sizeof* consts on freebsd"
      Revert "route: change from syscall to x/sys/unix"

Roland Shoemaker (1):
      html: use strings.EqualFold instead of lowering ourselves

Tobias Klauser (2):
      route: remove unused sizeof* consts on freebsd
      route: remove unused sizeof* consts

WeidiDeng (1):
      http2: add SETTINGS_ENABLE_CONNECT_PROTOCOL support

cuishuang (1):
      internal/socket: execute gofmt

jfgiorgi (1):
      quic: add LocalAddr and RemoteAddr to quic.Conn

yincong (1):
      html: avoid endless loop on error token
```

Resolves: [CRDB-46729](https://cockroachlabs.atlassian.net/browse/CRDB-46729)
Release note: None

Co-authored-by: David Hartunian <[email protected]>
  • Loading branch information
craig[bot] and dhartunian committed Jan 27, 2025
2 parents cf9bf57 + 6e2bb70 commit 6e7f555
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions DEPS.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -11719,10 +11719,10 @@ def go_deps():
name = "org_golang_x_net",
build_file_proto_mode = "disable_global",
importpath = "golang.org/x/net",
sha256 = "c6f7bde4bb418d1f5ee5dc437d09ce9f10743ddba043cdca82eb57ddeb18d6da",
strip_prefix = "golang.org/x/net@v0.28.0",
sha256 = "a85014e77369f99c3f9eebe1289b4d0757d58248ca12337642923818ae22ca19",
strip_prefix = "golang.org/x/net@v0.33.0",
urls = [
"https://storage.googleapis.com/cockroach-godeps/gomod/golang.org/x/net/org_golang_x_net-v0.28.0.zip",
"https://storage.googleapis.com/cockroach-godeps/gomod/golang.org/x/net/org_golang_x_net-v0.33.0.zip",
],
)
go_repository(
Expand Down
2 changes: 1 addition & 1 deletion build/bazelutil/distdir_files.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,7 @@ DISTDIR_FILES = {
"https://storage.googleapis.com/cockroach-godeps/gomod/golang.org/x/lint/org_golang_x_lint-v0.0.0-20210508222113-6edffad5e616.zip": "0a4a5ebd2b1d79e7f480cbf5a54b45a257ae1ec9d11f01688efc5c35268d4603",
"https://storage.googleapis.com/cockroach-godeps/gomod/golang.org/x/mobile/org_golang_x_mobile-v0.0.0-20190719004257-d2bd2a29d028.zip": "6b946c7da47acf3b6195336fd071bfc73d543cefab73f2d27528c5dc1dc829ec",
"https://storage.googleapis.com/cockroach-godeps/gomod/golang.org/x/mod/org_golang_x_mod-v0.20.0.zip": "3c3528c39639b7cd699c121c100ddb71ab49f94bff257a4a3935e3ae9e8571fc",
"https://storage.googleapis.com/cockroach-godeps/gomod/golang.org/x/net/org_golang_x_net-v0.28.0.zip": "c6f7bde4bb418d1f5ee5dc437d09ce9f10743ddba043cdca82eb57ddeb18d6da",
"https://storage.googleapis.com/cockroach-godeps/gomod/golang.org/x/net/org_golang_x_net-v0.33.0.zip": "a85014e77369f99c3f9eebe1289b4d0757d58248ca12337642923818ae22ca19",
"https://storage.googleapis.com/cockroach-godeps/gomod/golang.org/x/oauth2/org_golang_x_oauth2-v0.7.0.zip": "b682f8cf62ed36f3bec9f8a832ff61a2af1124f31f42c4e1e3f3efd23d88f93f",
"https://storage.googleapis.com/cockroach-godeps/gomod/golang.org/x/perf/org_golang_x_perf-v0.0.0-20230113213139-801c7ef9e5c5.zip": "bc1b902e645fdd5d210b7db8f3280833af225b131dab5842d7a6d32a676f80f5",
"https://storage.googleapis.com/cockroach-godeps/gomod/golang.org/x/sync/org_golang_x_sync-v0.10.0.zip": "94ea75ea625ecb8d81ab473a2d7e03433e63083768cd27d48a03f8c1c9da3d8d",
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ require (
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa
golang.org/x/exp/typeparams v0.0.0-20221208152030-732eee02a75a // indirect
golang.org/x/mod v0.20.0 // indirect
golang.org/x/net v0.28.0
golang.org/x/net v0.33.0
golang.org/x/oauth2 v0.7.0
golang.org/x/sync v0.10.0
golang.org/x/sys v0.28.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2667,8 +2667,8 @@ golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk=
golang.org/x/net v0.20.0/go.mod h1:z8BVo6PvndSri0LbOE3hAn0apkU+1YvI6E70E9jsnvY=
golang.org/x/net v0.28.0 h1:a9JDOJc5GMUJ0+UDqmLT86WiEy7iWyIhz8gz8E4e5hE=
golang.org/x/net v0.28.0/go.mod h1:yqtgsTWOOnlGLG9GFRrK3++bGOUEkNBoHZc8MEDWPNg=
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
golang.org/x/oauth2 v0.0.0-20170207211851-4464e7848382/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
Expand Down

0 comments on commit 6e7f555

Please sign in to comment.