<feed xmlns='http://www.w3.org/2005/Atom'>
<title>go, branch go1.13.9</title>
<subtitle>Fork of Go programming language with my patches.</subtitle>
<id>http://git.kilabit.info/go/atom?h=go1.13.9</id>
<link rel='self' href='http://git.kilabit.info/go/atom?h=go1.13.9'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/'/>
<updated>2020-03-19T15:17:09Z</updated>
<entry>
<title>[release-branch.go1.13] go1.13.9</title>
<updated>2020-03-19T15:17:09Z</updated>
<author>
<name>Carlos Amedee</name>
<email>carlos@golang.org</email>
</author>
<published>2020-03-19T14:30:43Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=33554bc6af72f13e5eb319fd5f5aa5c9a150a60c'/>
<id>urn:sha1:33554bc6af72f13e5eb319fd5f5aa5c9a150a60c</id>
<content type='text'>
Change-Id: Ia0ad75ee0458df95f1e4e36cd440f4cb314c67cb
Reviewed-on: https://go-review.googlesource.com/c/go/+/223940
Run-TryBot: Carlos Amedee &lt;carlos@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Alexander Rakoczy &lt;alex@golang.org&gt;
</content>
</entry>
<entry>
<title>[release-branch.go1.13] internal/syscall/windows/registry: remove TestWalkFullRegistry due to false assumptions</title>
<updated>2020-03-12T21:49:10Z</updated>
<author>
<name>Jason A. Donenfeld</name>
<email>Jason@zx2c4.com</email>
</author>
<published>2019-10-26T21:05:22Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=1a1b02aca1acc4e315779eb7d0a242094abecc92'/>
<id>urn:sha1:1a1b02aca1acc4e315779eb7d0a242094abecc92</id>
<content type='text'>
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 &lt;Jason@zx2c4.com&gt;
Reviewed-by: Alex Brainman &lt;alex.brainman@gmail.com&gt;
(cherry picked from commit 0d3092ffa7e7f613429ddcfd596d26ccbc84766f)
Reviewed-on: https://go-review.googlesource.com/c/go/+/223237
Run-TryBot: Dmitri Shuralyov &lt;dmitshur@golang.org&gt;
Reviewed-by: Alexander Rakoczy &lt;alex@golang.org&gt;
</content>
</entry>
<entry>
<title>[release-branch.go1.13] cmd/go: include the go language version in cache keys</title>
<updated>2020-03-12T15:40:55Z</updated>
<author>
<name>Bryan C. Mills</name>
<email>bcmills@google.com</email>
</author>
<published>2020-03-12T13:16:11Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=e0f244d532a8b70a344c2e94abb852977e3fc9ea'/>
<id>urn:sha1:e0f244d532a8b70a344c2e94abb852977e3fc9ea</id>
<content type='text'>
Fixes #37821
Updates #37804

Change-Id: I4381dc5c58cfd467506d3d73fbd19c2c7257338e
Reviewed-on: https://go-review.googlesource.com/c/go/+/223139
Run-TryBot: Bryan C. Mills &lt;bcmills@google.com&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Jay Conrod &lt;jayconrod@google.com&gt;
(cherry picked from commit c95708462fb24f379f4bcdedd6ea664ee38ea562)
Reviewed-on: https://go-review.googlesource.com/c/go/+/223142
Reviewed-by: Dmitri Shuralyov &lt;dmitshur@golang.org&gt;
</content>
</entry>
<entry>
<title>[release-branch.go1.13] cmd/trace: update to use WebComponents V0 polyfill</title>
<updated>2020-03-02T22:34:12Z</updated>
<author>
<name>Hana (Hyang-Ah) Kim</name>
<email>hyangah@gmail.com</email>
</author>
<published>2020-02-19T03:41:20Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=830b4f4075ebec82c7ed165819cc732d270f0850'/>
<id>urn:sha1:830b4f4075ebec82c7ed165819cc732d270f0850</id>
<content type='text'>
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 &lt;hyangah@gmail.com&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Austin Clements &lt;austin@google.com&gt;
(cherry picked from commit 75ea964b3f6073076e1a86a0de2be9a2f159da24)
Reviewed-on: https://go-review.googlesource.com/c/go/+/220321
Run-TryBot: Dmitri Shuralyov &lt;dmitshur@golang.org&gt;
</content>
</entry>
<entry>
<title>[release-branch.go1.13] cmd/go: fix cgo test when min macOS version is set</title>
<updated>2020-02-26T17:04:41Z</updated>
<author>
<name>Jay Conrod</name>
<email>jayconrod@google.com</email>
</author>
<published>2020-01-24T16:25:52Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=b27bda0365c46c4da8e74bd4af7016f44f8e2c65'/>
<id>urn:sha1:b27bda0365c46c4da8e74bd4af7016f44f8e2c65</id>
<content type='text'>
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 &lt; 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 &lt;jayconrod@google.com&gt;
Reviewed-by: Keith Randall &lt;khr@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
(cherry picked from commit 1f9f88b95eaec50c72c8595ca9f52b7b876e28f9)
Reviewed-on: https://go-review.googlesource.com/c/go/+/217059
Run-TryBot: Carlos Amedee &lt;carlos@golang.org&gt;
Reviewed-by: Jay Conrod &lt;jayconrod@google.com&gt;
</content>
</entry>
<entry>
<title>[release-branch.go1.13] cmd/go: add -d flag to mod_get_test</title>
<updated>2020-02-26T17:04:28Z</updated>
<author>
<name>Jay Conrod</name>
<email>jayconrod@google.com</email>
</author>
<published>2020-01-21T22:50:36Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=20a2e0a58454cbfa4aa32c673c87859d4cf6c52c'/>
<id>urn:sha1:20a2e0a58454cbfa4aa32c673c87859d4cf6c52c</id>
<content type='text'>
'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 &lt;jayconrod@google.com&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Michael Matloob &lt;matloob@golang.org&gt;
(cherry picked from commit 71bbffbc48d03b447c73da1f54ac57350fc9b36a)
Reviewed-on: https://go-review.googlesource.com/c/go/+/218597
Run-TryBot: Carlos Amedee &lt;carlos@golang.org&gt;
Reviewed-by: Jay Conrod &lt;jayconrod@google.com&gt;
</content>
</entry>
<entry>
<title>[release-branch.go1.13] cmd/link: ensure cgo cflags do not leak into dwarf tests</title>
<updated>2020-02-26T17:04:18Z</updated>
<author>
<name>Carlos Amedee</name>
<email>carlos@golang.org</email>
</author>
<published>2020-01-23T21:05:29Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=0e115a326648cd650f833a175c0505774413d9db'/>
<id>urn:sha1:0e115a326648cd650f833a175c0505774413d9db</id>
<content type='text'>
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 &lt;carlos@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Jay Conrod &lt;jayconrod@google.com&gt;
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
(cherry picked from commit e948d2b73ede67f12bff9e4d050f0e1425163010)
Reviewed-on: https://go-review.googlesource.com/c/go/+/217057
</content>
</entry>
<entry>
<title>[release-branch.go1.13] cmd/link: ensure cgo cflags do not leak into tvOS test</title>
<updated>2020-02-26T17:04:05Z</updated>
<author>
<name>Carlos Amedee</name>
<email>carlos@golang.org</email>
</author>
<published>2020-01-22T20:30:52Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=4169b1ea15139d00736cb616f122fef04adb2512'/>
<id>urn:sha1:4169b1ea15139d00736cb616f122fef04adb2512</id>
<content type='text'>
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 &lt;carlos@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
(cherry picked from commit ace25f82df0a27eb26a518e1883eb56c1bec6c5e)
Reviewed-on: https://go-review.googlesource.com/c/go/+/218598
</content>
</entry>
<entry>
<title>[release-branch.go1.13] crypto/cipher: require non-zero nonce size for AES-GCM</title>
<updated>2020-02-26T15:49:20Z</updated>
<author>
<name>Katie Hockman</name>
<email>katie@golang.org</email>
</author>
<published>2020-02-07T19:44:58Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=6f57b10549a4ee145d643714211c8f36590853de'/>
<id>urn:sha1:6f57b10549a4ee145d643714211c8f36590853de</id>
<content type='text'>
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 &lt;katie@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Filippo Valsorda &lt;filippo@golang.org&gt;
(cherry picked from commit 4e8badbbc2fe7854bb1c12a9ee42315b4d535051)
Reviewed-on: https://go-review.googlesource.com/c/go/+/220653
Reviewed-by: Dmitri Shuralyov &lt;dmitshur@golang.org&gt;
</content>
</entry>
<entry>
<title>[release-branch.go1.13] go1.13.8</title>
<updated>2020-02-12T19:55:45Z</updated>
<author>
<name>Alexander Rakoczy</name>
<email>alex@golang.org</email>
</author>
<published>2020-02-12T18:08:48Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=a7acf9af07bdc288129fa5756768b41f312d05f4'/>
<id>urn:sha1:a7acf9af07bdc288129fa5756768b41f312d05f4</id>
<content type='text'>
Change-Id: Ia174ccd8d5c26f44aeea188113e292f5048ec873
Reviewed-on: https://go-review.googlesource.com/c/go/+/219219
Run-TryBot: Alexander Rakoczy &lt;alex@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Carlos Amedee &lt;carlos@golang.org&gt;
</content>
</entry>
</feed>
