-
Notifications
You must be signed in to change notification settings - Fork 19k
Comparing changes
Open a pull request
base repository: golang/go
base: go1.12.8
head repository: golang/go
compare: go1.12.9
- 9 commits
- 12 files changed
- 6 contributors
Commits on Jul 15, 2019
-
[release-branch.go1.12] crypto/tls: remove TestVerifyHostnameResumed
Session resumption is not a reliable TLS behavior: the server can decide to reject a session ticket for a number of reasons, or no reason at all. This makes this non-hermetic test extremely brittle. It's currently broken on the builders for both TLS 1.2 and TLS 1.3, and I could reproduce the issue for TLS 1.3 only. As I was debugging it, it started passing entirely on my machine. In practice, it doesn't get us any coverage as resumption is already tested with the recorded exchange tests, and TestVerifyHostname still provides a smoke test checking that we can in fact talk TLS. Updates #32978 Change-Id: I63505e22ff7704f25ad700d46e4ff14850ba5d3c Reviewed-on: https://go-review.googlesource.com/c/go/+/186239 Run-TryBot: Filippo Valsorda <[email protected]> Reviewed-by: Bryan C. Mills <[email protected]> (cherry-picked from 20e4540) Reviewed-on: https://go-review.googlesource.com/c/go/+/186277 TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8759b53 - Browse repository at this point
Copy the full SHA 8759b53View commit details
Commits on Jul 16, 2019
-
[release-branch.go1.12] cmd/link: put shlib ".type" functions in inte…
…rnal ABI These functions are compiler generated, and as such are only available in the internal ABI. Doing this avoids generating an alias symbol. Doing that avoids confusion between unmangled and mangled type symbols. Updates #30768 Fixes #33040 Change-Id: I8aba3934ffa994b1a19fc442cfe3e05642792a25 Reviewed-on: https://go-review.googlesource.com/c/go/+/186278 Run-TryBot: Ian Lance Taylor <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Austin Clements <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f194c9f - Browse repository at this point
Copy the full SHA f194c9fView commit details
Commits on Jul 31, 2019
-
[release-branch.go1.12] doc/go1.12: document change in syscall.Setrli…
…mit behavior Fixes #30401 Change-Id: I7b5035ffc7333c746d4e31563df26ff4f934dfc6 Reviewed-on: https://go-review.googlesource.com/c/go/+/188237 Reviewed-by: Emmanuel Odeke <[email protected]> Reviewed-by: Keith Randall <[email protected]> (cherry picked from commit fe8a866) Reviewed-on: https://go-review.googlesource.com/c/go/+/188357
Configuration menu - View commit details
-
Copy full SHA for 3c97797 - Browse repository at this point
Copy the full SHA 3c97797View commit details
Commits on Aug 2, 2019
-
[release-branch.go1.12] os: enable the close-on-exec flag for openFdAt
There's a race here with fork/exec, enable the close-on-exec flag for the new file descriptor. Updates #33405 Fixes #33424 Change-Id: Ib1e405c3b48b11c867f183fd13eff8b73d95e3b4 Reviewed-on: https://go-review.googlesource.com/c/go/+/188537 Run-TryBot: Baokun Lee <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> (cherry picked from commit 2d6ee6e) Reviewed-on: https://go-review.googlesource.com/c/go/+/188538 Run-TryBot: Ian Lance Taylor <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 047a326 - Browse repository at this point
Copy the full SHA 047a326View commit details -
[release-branch.go1.12] math/big: fix the bug in assembly implementat…
…ion of shlVU on arm64 For the case where the addresses of parameter z and x of the function shlVU overlap and the address of z is greater than x, x (input value) can be polluted during the calculation when the high words of x are overlapped with the low words of z (output value). Updates #31084 Fixes #32940 Change-Id: I9bb0266a1d7856b8faa9a9b1975d6f57dece0479 Reviewed-on: https://go-review.googlesource.com/c/go/+/169780 Run-TryBot: Cherry Zhang <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Cherry Zhang <[email protected]> (cherry picked from commit 503e6cc) Reviewed-on: https://go-review.googlesource.com/c/go/+/185041 Run-TryBot: Dmitri Shuralyov <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2da8ca4 - Browse repository at this point
Copy the full SHA 2da8ca4View commit details
Commits on Aug 9, 2019
-
[release-branch.go1.12] cmd/link: increase the function call limit in…
… stkcheck There is real (albeit generated) code that exceeds the limit. Updates #33555 Fixes #33557 Change-Id: I668e85825d3d2a471970e869abe63f3492213cc1 Reviewed-on: https://go-review.googlesource.com/c/go/+/189697 Run-TryBot: Ian Lance Taylor <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Cherry Zhang <[email protected]> (cherry picked from commit 951143c) Reviewed-on: https://go-review.googlesource.com/c/go/+/189717
Configuration menu - View commit details
-
Copy full SHA for 4e15604 - Browse repository at this point
Copy the full SHA 4e15604View commit details
Commits on Aug 13, 2019
-
[release-branch.go1.12] all: merge release-branch.go1.12-security int…
…o release-branch.go1.12 Change-Id: I29801b98d975da0bbc092b16dc9771564a39a10a
Configuration menu - View commit details
-
Copy full SHA for 07d3f57 - Browse repository at this point
Copy the full SHA 07d3f57View commit details
Commits on Aug 15, 2019
-
[release-branch.go1.12] doc: document Go 1.12.9
Change-Id: I88b7e085fc70f9c021788d364099f5bc6b705ba8 Reviewed-on: https://go-review.googlesource.com/c/go/+/190438 Reviewed-by: Filippo Valsorda <[email protected]> (cherry picked from commit 0212f04) Reviewed-on: https://go-review.googlesource.com/c/go/+/190406 Reviewed-by: Alexander Rakoczy <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8e7eb2f - Browse repository at this point
Copy the full SHA 8e7eb2fView commit details -
[release-branch.go1.12] go1.12.9
Change-Id: I70dc0e2accd83d9c974b95075f9e83a82d89563d Reviewed-on: https://go-review.googlesource.com/c/go/+/190407 Run-TryBot: Dmitri Shuralyov <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Alexander Rakoczy <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 06472b9 - Browse repository at this point
Copy the full SHA 06472b9View 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.12.8...go1.12.9