Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: golang/go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: go1.13.8
Choose a base ref
...
head repository: golang/go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: go1.13.9
Choose a head ref
  • 9 commits
  • 16 files changed
  • 6 contributors

Commits on Feb 26, 2020

  1. [release-branch.go1.13] crypto/cipher: require non-zero nonce size fo…

    …r AES-GCM
    
    Also fix typo in crypto/cipher/gcm_test.go.
    
    Updates #37118
    Fixes #37417
    
    Change-Id: I8544d1eeeb1f0336cebb977b8c5bfa5e4c5ad8c7
    Reviewed-on: https://go-review.googlesource.com/c/go/+/218500
    Run-TryBot: Katie Hockman <[email protected]>
    TryBot-Result: Gobot Gobot <[email protected]>
    Reviewed-by: Filippo Valsorda <[email protected]>
    (cherry picked from commit 4e8badb)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/220653
    Reviewed-by: Dmitri Shuralyov <[email protected]>
    katiehockman committed Feb 26, 2020
    Configuration menu
    Copy the full SHA
    6f57b10 View commit details
    Browse the repository at this point in the history
  2. [release-branch.go1.13] cmd/link: ensure cgo cflags do not leak into …

    …tvOS test
    
    Running the 'TestBuildForTvOS' test with CGO_CFLAGS set
    with certain values would cause the test to fail. all.bash
    would fail when CGO_CFLAGS was set to '-mmacosx-version-min=10.10'
    because the --macosx-version-min flag is incompatible with tvOS.
    The change guards against using an unintended flag in the unit test.
    
    Updates #36846
    Updated #35459
    
    Change-Id: Ifc43f3ebfb23d37aabeaac2ea9efae5b877991bf
    Reviewed-on: https://go-review.googlesource.com/c/go/+/215957
    Run-TryBot: Carlos Amedee <[email protected]>
    TryBot-Result: Gobot Gobot <[email protected]>
    Reviewed-by: Ian Lance Taylor <[email protected]>
    (cherry picked from commit ace25f8)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/218598
    cagedmantis committed Feb 26, 2020
    Configuration menu
    Copy the full SHA
    4169b1e View commit details
    Browse the repository at this point in the history
  3. [release-branch.go1.13] cmd/link: ensure cgo cflags do not leak into …

    …dwarf tests
    
    Running the dwarf tests with CGO_CFLAGS set
    with certain values would cause the test to fail. all.bash
    would fail when CGO_CFLAGS was set to '-mmacosx-version-min=10.10'
    because the --macosx-version-min flag is incompatible with some dwarf
    tests. The change guards against using an unintended flag in the unit test.
    
    Updates #36846
    Updates #35459
    
    Change-Id: Idc9b354aba44fdab424cb0081a4b3ea7a6d0f8e3
    Reviewed-on: https://go-review.googlesource.com/c/go/+/216177
    Run-TryBot: Carlos Amedee <[email protected]>
    TryBot-Result: Gobot Gobot <[email protected]>
    Reviewed-by: Jay Conrod <[email protected]>
    Reviewed-by: Ian Lance Taylor <[email protected]>
    (cherry picked from commit e948d2b)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/217057
    cagedmantis committed Feb 26, 2020
    Configuration menu
    Copy the full SHA
    0e115a3 View commit details
    Browse the repository at this point in the history
  4. [release-branch.go1.13] cmd/go: add -d flag to mod_get_test

    'go get all' was run in this test without -d. This caused some std
    packages to be reinstalled if the test is run in a slightly different
    configuration than make.bash was run. run.bash would fail in some
    situations because of this. Nothing in the cmd/go tests should modify
    installed std or cmd packages.
    
    Updates #36846
    Updates #35459
    
    Change-Id: Idd259a27d55502923b7fc54f361a77f0ac11eea2
    Reviewed-on: https://go-review.googlesource.com/c/go/+/215721
    Run-TryBot: Jay Conrod <[email protected]>
    TryBot-Result: Gobot Gobot <[email protected]>
    Reviewed-by: Michael Matloob <[email protected]>
    (cherry picked from commit 71bbffb)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/218597
    Run-TryBot: Carlos Amedee <[email protected]>
    Reviewed-by: Jay Conrod <[email protected]>
    Jay Conrod authored and cagedmantis committed Feb 26, 2020
    Configuration menu
    Copy the full SHA
    20a2e0a View commit details
    Browse the repository at this point in the history
  5. [release-branch.go1.13] cmd/go: fix cgo test when min macOS version i…

    …s set
    
    Regression tests for #24161 use a macro to conditionally compile some
    stub definitions. The macro tests that the minimum macOS version is
    less than 10.12.
    
    We get duplicate definitions when building this test with
    CGO_CFLAGS=-mmacosx-version-min=10.x where 10.x < 10.12. With this
    change, we use a different macro, __MAC_OS_X_VERSION_MAX_ALLOWED__,
    which tests the SDK version instead of the minimum macOS version. This
    checks whether these definitions are present in headers.
    
    After this change, 'go tool dist test cgo_test' should pass with
    CGO_FLAGS=-mmacosx-version-min=10.10.
    
    Updates #36846
    Updates #35459
    
    Change-Id: I88d63601c94b0369c73c38d216a2d41ba7d4e579
    Reviewed-on: https://go-review.googlesource.com/c/go/+/216243
    Run-TryBot: Jay Conrod <[email protected]>
    Reviewed-by: Keith Randall <[email protected]>
    TryBot-Result: Gobot Gobot <[email protected]>
    (cherry picked from commit 1f9f88b)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/217059
    Run-TryBot: Carlos Amedee <[email protected]>
    Reviewed-by: Jay Conrod <[email protected]>
    Jay Conrod authored and cagedmantis committed Feb 26, 2020
    Configuration menu
    Copy the full SHA
    b27bda0 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2020

  1. [release-branch.go1.13] cmd/trace: update to use WebComponents V0 pol…

    …yfill
    
    Old trace viewer stopped working with Chrome M80+ because the
    old trace viewer heavily depended on WebComponents V0 which are deprecated.
    Trace viewer recently migrated to use WebComponents V0 polyfill
    (crbug.com/1036492). This CL brings in the newly updated trace_viewer_full.html
    (sync'd @ 9508452e)
    and updates the javascript snippet included in the /trace endpoint
    to use the polyfill.
    
    This brings in webcomponents.min.js copied from
    https://chromium.googlesource.com/catapult/+/9508452e18f130c98499cb4c4f1e1efaedee8962/third_party/polymer/components/webcomponentsjs/webcomponents.min.js
    
    That is necessary because the /trace endpoint needs to import
    the vulcanized trace_viewer_full.html.
    
    It's possible that some features are not working correctly with
    this polyfill. In that case, report the issue to crbug.com/1036492.
    There will be a warning message in the UI (yellow banner above the timeline)
    which can be hidden by clicking the 'hide' button.
    
    This allows to render the trace in browsers other than chrome in theory,
    but I observed some buttons and functions still don't work outside
    chrome.
    
    Updates #34374.
    Fixes #37342.
    
    Change-Id: Ib575f756f5e6b22ad904ede6e4d224a995ebe259
    Reviewed-on: https://go-review.googlesource.com/c/go/+/219997
    Run-TryBot: Hyang-Ah Hana Kim <[email protected]>
    TryBot-Result: Gobot Gobot <[email protected]>
    Reviewed-by: Austin Clements <[email protected]>
    (cherry picked from commit 75ea964)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/220321
    Run-TryBot: Dmitri Shuralyov <[email protected]>
    hyangah authored and dmitshur committed Mar 2, 2020
    Configuration menu
    Copy the full SHA
    830b4f4 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2020

  1. [release-branch.go1.13] cmd/go: include the go language version in ca…

    …che keys
    
    Fixes #37821
    Updates #37804
    
    Change-Id: I4381dc5c58cfd467506d3d73fbd19c2c7257338e
    Reviewed-on: https://go-review.googlesource.com/c/go/+/223139
    Run-TryBot: Bryan C. Mills <[email protected]>
    TryBot-Result: Gobot Gobot <[email protected]>
    Reviewed-by: Jay Conrod <[email protected]>
    (cherry picked from commit c957084)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/223142
    Reviewed-by: Dmitri Shuralyov <[email protected]>
    Bryan C. Mills authored and dmitshur committed Mar 12, 2020
    Configuration menu
    Copy the full SHA
    e0f244d View commit details
    Browse the repository at this point in the history
  2. [release-branch.go1.13] internal/syscall/windows/registry: remove Tes…

    …tWalkFullRegistry due to false assumptions
    
    This test's existence was predicated upon assumptions about the full
    range of known data types and known data into those types. However,
    we've learned from Microsoft that there are several undocumented secret
    registry types that are in use by various parts of Windows, and we've
    learned from inspection that many Microsoft uses of registry types don't
    strictly adhere to the recommended value size. It's therefore foolhardy
    to make any assumptions about what goes in and out of the registry, and
    so this test, as well as its "blacklist", are meaningless.
    
    For #35084.
    Fixes #37826.
    
    Change-Id: I6c3fe5fb0e740e88858321b3b042c0ff1a23284e
    Reviewed-on: https://go-review.googlesource.com/c/go/+/203604
    Run-TryBot: Jason A. Donenfeld <[email protected]>
    Reviewed-by: Alex Brainman <[email protected]>
    (cherry picked from commit 0d3092f)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/223237
    Run-TryBot: Dmitri Shuralyov <[email protected]>
    Reviewed-by: Alexander Rakoczy <[email protected]>
    zx2c4 authored and dmitshur committed Mar 12, 2020
    Configuration menu
    Copy the full SHA
    1a1b02a View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2020

  1. [release-branch.go1.13] go1.13.9

    Change-Id: Ia0ad75ee0458df95f1e4e36cd440f4cb314c67cb
    Reviewed-on: https://go-review.googlesource.com/c/go/+/223940
    Run-TryBot: Carlos Amedee <[email protected]>
    TryBot-Result: Gobot Gobot <[email protected]>
    Reviewed-by: Alexander Rakoczy <[email protected]>
    cagedmantis committed Mar 19, 2020
    Configuration menu
    Copy the full SHA
    33554bc View commit details
    Browse the repository at this point in the history
Loading