Skip to content

Commit 20f5e7c

Browse files
committed
vendor: golang.org/x/net v0.55.0
security changes (not used in our code) - html: escape greater-than symbol in doctype identifiers (CVE-2026-25681) - html: improve Noah's Ark clause performance (CVE-2026-25680) - html: properly render fostered elements in foreign content (CVE-2026-42502) - html: properly check namespace in "in body" any other end tag (CVE-2026-42506) - html: ignore duplicate attributes during tokenization (CVE-2026-27136) other changes: - quic: fix appendMaxDataFrame erroneously accumulating sentLimit - quic: establish a "happened-before" relationship between stream write and read - quic: fix buffer slicing when handling overlapping stream data - http2: avoid API changes when built with go1.27 security announce: https://groups.google.com/g/golang-announce/c/iI-mYSI0lu8 full diff: golang/net@v0.54.0...v0.55.0 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent 20debc9 commit 20f5e7c

10 files changed

Lines changed: 141 additions & 100 deletions

File tree

vendor.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ require (
101101
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.43.0 // indirect
102102
go.opentelemetry.io/proto/otlp v1.10.0 // indirect
103103
golang.org/x/mod v0.36.0 // indirect
104-
golang.org/x/net v0.54.0 // indirect
104+
golang.org/x/net v0.55.0 // indirect
105105
golang.org/x/time v0.15.0 // indirect
106106
google.golang.org/genproto/googleapis/api v0.0.0-20260401024825-9d38bb4040a9 // indirect
107107
google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9 // indirect

vendor.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,8 @@ golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLL
244244
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
245245
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
246246
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
247-
golang.org/x/net v0.54.0 h1:2zJIZAxAHV/OHCDTCOHAYehQzLfSXuf/5SoL/Dv6w/w=
248-
golang.org/x/net v0.54.0/go.mod h1:Sj4oj8jK6XmHpBZU/zWHw3BV3abl4Kvi+Ut7cQcY+cQ=
247+
golang.org/x/net v0.55.0 h1:bcvxaJn3e1U6InsFWt1JUq1aSjnRxLzT2rtD2KfkDF8=
248+
golang.org/x/net v0.55.0/go.mod h1:L5U2KuzuOe1lY7Z+aWVIKK6qEeJXnXV9yzGA+WCHJww=
249249
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
250250
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
251251
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=

vendor/golang.org/x/net/http2/server.go

Lines changed: 0 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/net/http2/server_common.go

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/net/http2/server_wrap.go

Lines changed: 40 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/net/http2/transport.go

Lines changed: 0 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/net/http2/transport_common.go

Lines changed: 34 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/net/http2/writesched_common.go

Lines changed: 41 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/net/http2/writesched_priority_rfc7540.go

Lines changed: 0 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ golang.org/x/mod/internal/lazyregexp
394394
golang.org/x/mod/modfile
395395
golang.org/x/mod/module
396396
golang.org/x/mod/semver
397-
# golang.org/x/net v0.54.0
397+
# golang.org/x/net v0.55.0
398398
## explicit; go 1.25.0
399399
golang.org/x/net/http/httpguts
400400
golang.org/x/net/http2

0 commit comments

Comments
 (0)