-
Notifications
You must be signed in to change notification settings - Fork 19k
Comparing changes
Open a pull request
base repository: golang/go
base: go1.24.9
head repository: golang/go
compare: go1.24.11
- 8 commits
- 9 files changed
- 5 contributors
Commits on Oct 17, 2025
-
[release-branch.go1.24] net/url: allow IP-literals with IPv4-mapped I…
…Pv6 addresses The security fix we applied in CL709857 was overly broad. It applied rules from RFC 2732, which disallowed IPv4-mapped IPv6 addresses, but these were later allowed in RFC 3986, which is the canonical URI syntax RFC. Revert the portion of CL709857 which restricted IPv4-mapped addresses, and update the related tests. Updates #75815 Fixes #75831 Change-Id: I3192f2275ad5c386f5c15006a6716bdb5282919d Reviewed-on: https://go-review.googlesource.com/c/go/+/710375 LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Ethan Lee <[email protected]> Auto-Submit: Roland Shoemaker <[email protected]> (cherry picked from commit 9db7e30) Reviewed-on: https://go-review.googlesource.com/c/go/+/712142 Reviewed-by: Dmitri Shuralyov <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a216ddc - Browse repository at this point
Copy the full SHA a216ddcView commit details
Commits on Oct 24, 2025
-
[release-branch.go1.24] encoding/pem: properly decode strange PEM data
When the passed byte slice has leading garbage, properly handle ignoring it and continuing to parse the slice until we find a valid block (or nothing). Fixes #75951 Change-Id: I07e937d9c754fd71b028b99450b48f57b4464457 Reviewed-on: https://go-review.googlesource.com/c/go/+/712140 Reviewed-by: Damien Neil <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> (cherry picked from commit 0983090) Reviewed-on: https://go-review.googlesource.com/c/go/+/712641 Reviewed-by: Dmitri Shuralyov <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for bbf8f42 - Browse repository at this point
Copy the full SHA bbf8f42View commit details
Commits on Oct 29, 2025
-
[release-branch.go1.24] encoding/pem: properly calculate end indexes
When a block is missing the END line trailer, calculate the indexes of the end and end trailer _before_ continuing the loop, making the reslicing at the start of the loop work as expected. Fixes #76028 Change-Id: If45c8cb473315623618f02cc7609f517a72d232d Reviewed-on: https://go-review.googlesource.com/c/go/+/714200 Auto-Submit: Roland Shoemaker <[email protected]> Reviewed-by: Damien Neil <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> (cherry picked from commit 839da71) Reviewed-on: https://go-review.googlesource.com/c/go/+/714680 Reviewed-by: David Chase <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 562709b - Browse repository at this point
Copy the full SHA 562709bView commit details
Commits on Nov 5, 2025
-
[release-branch.go1.24] go1.24.10
Change-Id: I74370108e95298bec0fe0f7738867072ece0d0ff Reviewed-on: https://go-review.googlesource.com/c/go/+/718063 TryBot-Bypass: Gopher Robot <[email protected]> Auto-Submit: Gopher Robot <[email protected]> Reviewed-by: Michael Knyszek <[email protected]> Reviewed-by: Michael Pratt <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0259df1 - Browse repository at this point
Copy the full SHA 0259df1View commit details
Commits on Nov 25, 2025
-
[release-branch.go1.24] internal/cpu: use correct variable when parsi…
…ng CPU features lamcas and lam_bh on loong64 Fixes #76378 Change-Id: I5019f4e32243911f735f775bcb3c0dba5adb4162 Reviewed-on: https://go-review.googlesource.com/c/go/+/655395 Reviewed-by: David Chase <[email protected]> Reviewed-by: Junyang Shao <[email protected]> Reviewed-by: Meidan Li <[email protected]> Reviewed-by: sophie zhao <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> (cherry picked from commit bcd0ebb) Reviewed-on: https://go-review.googlesource.com/c/go/+/722400 Reviewed-by: abner chenc <[email protected]> Reviewed-by: Mark Freeman <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 23743a8 - Browse repository at this point
Copy the full SHA 23743a8View commit details -
[release-branch.go1.24] crypto/x509: excluded subdomain constraints p…
…reclude wildcard SANs When evaluating name constraints in a certificate chain, the presence of an excluded subdomain constraint (e.g., excluding "test.example.com") should preclude the use of a wildcard SAN (e.g., "*.example.com"). Fixes #76442 Fixes #76463 Fixes CVE-2025-61727 Change-Id: I42a0da010cb36d2ec9d1239ae3f61cf25eb78bba Reviewed-on: https://go-review.googlesource.com/c/go/+/724401 Reviewed-by: Nicholas Husin <[email protected]> Reviewed-by: Daniel McCarney <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Nicholas Husin <[email protected]> Reviewed-by: Neal Patel <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 04db77a - Browse repository at this point
Copy the full SHA 04db77aView commit details
Commits on Dec 2, 2025
-
[release-branch.go1.24] crypto/x509: prevent HostnameError.Error() fr…
…om consuming excessive resource Constructing HostnameError.Error() takes O(N^2) runtime due to using a string concatenation in a loop. Additionally, there is no limit on how many names are included in the error message. As a result, a malicious attacker could craft a certificate with an infinite amount of names to unfairly consume resource. To remediate this, we will now use strings.Builder to construct the error message, preventing O(N^2) runtime. When a certificate has 100 or more names, we will also not print each name individually. Thanks to Philippe Antoine (Catena cyber) for reporting this issue. Updates #76445 Fixes #76460 Fixes CVE-2025-61729 Change-Id: I6343776ec3289577abc76dad71766c491c1a7c81 Reviewed-on: https://go-internal-review.googlesource.com/c/go/+/3000 Reviewed-by: Neal Patel <[email protected]> Reviewed-by: Damien Neil <[email protected]> Reviewed-on: https://go-internal-review.googlesource.com/c/go/+/3220 Reviewed-by: Roland Shoemaker <[email protected]> Reviewed-on: https://go-review.googlesource.com/c/go/+/725820 Reviewed-by: Dmitri Shuralyov <[email protected]> TryBot-Bypass: Dmitri Shuralyov <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]> Reviewed-by: Mark Freeman <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3a842bd - Browse repository at this point
Copy the full SHA 3a842bdView commit details -
[release-branch.go1.24] go1.24.11
Change-Id: Iae7d7cf17bf31ac6aaf145993d0b857a3ddbcacb Reviewed-on: https://go-review.googlesource.com/c/go/+/725841 TryBot-Bypass: Gopher Robot <[email protected]> Reviewed-by: Mark Freeman <[email protected]> Auto-Submit: Gopher Robot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1296453 - Browse repository at this point
Copy the full SHA 1296453View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff go1.24.9...go1.24.11