-
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.5
head repository: golang/go
compare: go1.12.6
- 11 commits
- 20 files changed
- 8 contributors
Commits on May 8, 2019
-
[release-branch.go1.12] cmd/link/internal/ld: bump macOS and macOS SD…
…K version to 10.9 Satisfies the Apple Notary. Fixes #30526 Change-Id: I91cf2d706a3ebe79bafdb759a0d32266ed6b9096 Reviewed-on: https://go-review.googlesource.com/c/go/+/175918 Run-TryBot: Elias Naur <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Keith Randall <[email protected]> Reviewed-on: https://go-review.googlesource.com/c/go/+/175919 Reviewed-by: Brad Fitzpatrick <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for cdb7765 - Browse repository at this point
Copy the full SHA cdb7765View commit details
Commits on May 14, 2019
-
[release-branch.go1.12] cmd/compile: make sure to initialize static e…
…ntries of slices If a slice's entries are sparse, we decide to initialize it dynamically instead of statically. That's CL 151319. But if we do initialize it dynamically, we still need to initialize the static entries. Typically we do that, but the bug fixed here is that we don't if the entry's value is itself an array or struct. To fix, use initKindLocalCode to ensure that both static and dynamic entries are initialized via code. Fixes #32013 Change-Id: I1192ffdbfb5cd50445c1206c4a3d8253295201dd Reviewed-on: https://go-review.googlesource.com/c/go/+/176904 Run-TryBot: Keith Randall <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Josh Bleecher Snyder <[email protected]> (cherry picked from commit a9e107c) Reviewed-on: https://go-review.googlesource.com/c/go/+/177040 Reviewed-by: Brad Fitzpatrick <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ecf7695 - Browse repository at this point
Copy the full SHA ecf7695View commit details
Commits on May 17, 2019
-
[release-branch.go1.12] os: pass correct environment when creating Wi…
…ndows processes This is CVE-2019-11888. Previously, passing a nil environment but a non-nil token would result in the new potentially unprivileged process inheriting the parent potentially privileged environment, or would result in the new potentially privileged process inheriting the parent potentially unprivileged environment. Either way, it's bad. In the former case, it's an infoleak. In the latter case, it's a possible EoP, since things like PATH could be overwritten. Not specifying an environment currently means, "use the existing environment". This commit amends the behavior to be, "use the existing environment of the token the process is being created for." The behavior therefore stays the same when creating processes without specifying a token. And it does the correct thing when creating processes when specifying a token. Updates #32000 Fixes #32081 Change-Id: Ib4a90cfffb6ba866c855f66f1313372fdd34ce41 Reviewed-on: https://go-review.googlesource.com/c/go/+/177538 Run-TryBot: Jason Donenfeld <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for afcfe0d - Browse repository at this point
Copy the full SHA afcfe0dView commit details
Commits on Jun 7, 2019
-
[release-branch.go1.12] crypto/x509: fix value ownership in isSSLPoli…
…cy on macOS CFDictionaryGetValueIfPresent does not take ownership of the value, so releasing the properties dictionary before passing the value to CFEqual can crash. Not really clear why this works most of the time. See https://developer.apple.com/library/archive/documentation/CoreFoundation/Conceptual/CFMemoryMgmt/Concepts/Ownership.html Fixes #32282 Updates #28092 Updates #30763 Change-Id: I5ee7ca276b753a48abc3aedfb78b8af68b448dd4 Reviewed-on: https://go-review.googlesource.com/c/go/+/178537 Reviewed-by: Adam Langley <[email protected]> (cherry picked from commit a3d4655) Reviewed-on: https://go-review.googlesource.com/c/go/+/179339 Run-TryBot: Dmitri Shuralyov <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3b05c3c - Browse repository at this point
Copy the full SHA 3b05c3cView commit details -
[release-branch.go1.12] net/http: prevent Transport from spamming std…
…err on server 408 reply HTTP 408 responses now exist and are seen in the wild (e.g. from Google's GFE), so make Go's HTTP client not spam about them when seen. They're normal (now). Fixes #32367 Updates #32310 Change-Id: I558eb4654960c74cf20db1902ccaae13d03310f6 Reviewed-on: https://go-review.googlesource.com/c/go/+/179457 Run-TryBot: Brad Fitzpatrick <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> (cherry picked from commit ba66d89) Reviewed-on: https://go-review.googlesource.com/c/go/+/181239 Run-TryBot: Dmitri Shuralyov <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 918368e - Browse repository at this point
Copy the full SHA 918368eView commit details -
[release-branch.go1.12] cmd/go: force -coverpkg main packages to be b…
…uilt as libraries This fixes TestScript/cover_pkgall_multiple_mains, which started failing after CL 174657. When compiling main packages with coverage instrumentation (e.g., for -coverpkg all), we now pass -p with the full import path instead of '-p main'. This avoids link errors 'duplicate symbol main.main (types 1 and 1)'. Fixes #32295 Updates #31946 Updates #32150 Change-Id: Id147527b1dbdc14bb33ac133c30d50c250b4365c Reviewed-on: https://go-review.googlesource.com/c/go/+/176558 Run-TryBot: Jay Conrod <[email protected]> Reviewed-by: Cherry Zhang <[email protected]> Reviewed-by: Bryan C. Mills <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> (cherry picked from commit 3b8c804) Reviewed-on: https://go-review.googlesource.com/c/go/+/179677
Configuration menu - View commit details
-
Copy full SHA for 451e6d6 - Browse repository at this point
Copy the full SHA 451e6d6View commit details
Commits on Jun 10, 2019
-
[release-branch.go1.12] cmd/go: accept -Wl,-R/path/
This is a backport of CL 178397. Updates #32167 Fixes #32168 Change-Id: Idb16a01d56814ea09ad277798787355dc6a3121f Reviewed-on: https://go-review.googlesource.com/c/go/+/181437 Reviewed-by: Jason Donenfeld <[email protected]> Reviewed-by: Emmanuel Odeke <[email protected]> Run-TryBot: Jason Donenfeld <[email protected]> TryBot-Result: Gobot Gobot <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3887549 - Browse repository at this point
Copy the full SHA 3887549View commit details -
[release-branch.go1.12] cmd/link: fix deferreturn detector
The logic for detecting deferreturn calls is wrong. We used to look for a relocation whose symbol is runtime.deferreturn and has an offset of 0. But on some architectures, the relocation offset is not zero. These include arm (the offset is 0xebfffffe) and s390x (the offset is 6). This ends up setting the deferreturn offset at 0, so we end up using the entry point live map instead of the deferreturn live map in a frame which defers and then segfaults. Instead, use the IsDirectJump helper to find calls. Fixes #32484 Change-Id: Iecb530a7cf6eabd7233be7d0731ffa78873f3a54 Reviewed-on: https://go-review.googlesource.com/c/go/+/181258 Run-TryBot: Keith Randall <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Cherry Zhang <[email protected]> (cherry picked from commit 9eb4031) Reviewed-on: https://go-review.googlesource.com/c/go/+/181262 Reviewed-by: Emmanuel Odeke <[email protected]> Run-TryBot: Emmanuel Odeke <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a6178d8 - Browse repository at this point
Copy the full SHA a6178d8View commit details
Commits on Jun 11, 2019
-
[release-branch.go1.12] doc: document Go 1.11.11
Change-Id: I1c3e3305dfee4545a6caedd48243770ab3b28277 Reviewed-on: https://go-review.googlesource.com/c/go/+/181550 Reviewed-by: Filippo Valsorda <[email protected]> (cherry picked from commit 5545301) Reviewed-on: https://go-review.googlesource.com/c/go/+/181552
Configuration menu - View commit details
-
Copy full SHA for b408ab5 - Browse repository at this point
Copy the full SHA b408ab5View commit details -
[release-branch.go1.12] doc: document Go 1.12.6
Change-Id: I8ae00d2392c20c627d58cf7e79015e982b971802 Reviewed-on: https://go-review.googlesource.com/c/go/+/181551 Reviewed-by: Filippo Valsorda <[email protected]> (cherry picked from commit ef84fa0) Reviewed-on: https://go-review.googlesource.com/c/go/+/181598
Configuration menu - View commit details
-
Copy full SHA for 06a61ef - Browse repository at this point
Copy the full SHA 06a61efView commit details -
[release-branch.go1.12] go1.12.6
Change-Id: If156d9582ad5d76589e83ac00b4fa7f3b61f1502 Reviewed-on: https://go-review.googlesource.com/c/go/+/181658 Run-TryBot: Dmitri Shuralyov <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Katie Hockman <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4ce6a8e - Browse repository at this point
Copy the full SHA 4ce6a8eView 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.5...go1.12.6