<feed xmlns='http://www.w3.org/2005/Atom'>
<title>go, branch go1.13rc1</title>
<subtitle>Fork of Go programming language with my patches.</subtitle>
<id>http://git.kilabit.info/go/atom?h=go1.13rc1</id>
<link rel='self' href='http://git.kilabit.info/go/atom?h=go1.13rc1'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/'/>
<updated>2019-08-21T19:21:42Z</updated>
<entry>
<title>[release-branch.go1.13] go1.13rc1</title>
<updated>2019-08-21T19:21:42Z</updated>
<author>
<name>Andrew Bonventre</name>
<email>andybons@golang.org</email>
</author>
<published>2019-08-21T18:40:37Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=ed4f3f313438b8765da6c4605060529761db0797'/>
<id>urn:sha1:ed4f3f313438b8765da6c4605060529761db0797</id>
<content type='text'>
Change-Id: I2921895d336c8f63e521b5c921494917b4f42f79
Reviewed-on: https://go-review.googlesource.com/c/go/+/191157
Run-TryBot: Andrew Bonventre &lt;andybons@golang.org&gt;
Reviewed-by: Katie Hockman &lt;katie@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
</content>
</entry>
<entry>
<title>Revert "encoding/json: avoid work when unquoting strings"</title>
<updated>2019-08-21T15:20:00Z</updated>
<author>
<name>Filippo Valsorda</name>
<email>filippo@golang.org</email>
</author>
<published>2019-08-20T21:29:04Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=eee07a8e685e72c287ca4a0e7a049ce941ef6ab3'/>
<id>urn:sha1:eee07a8e685e72c287ca4a0e7a049ce941ef6ab3</id>
<content type='text'>
This reverts CL 151157.

CL 151157 introduced a crash when decoding into ",string" fields. It
came with a moderate speedup, so at this stage of the release cycle
let's just revert it, and reapply it in Go 1.14 with the fix in CL 190659.

Also applied the test cases from CL 190659.

Updates #33728

Change-Id: Ie46e2bc15224b251888580daf6b79d5865f3878e
Reviewed-on: https://go-review.googlesource.com/c/go/+/190909
Run-TryBot: Andrew Bonventre &lt;andybons@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Andrew Bonventre &lt;andybons@golang.org&gt;
</content>
</entry>
<entry>
<title>cmd/go: accept GOSUMDB=sum.golang.google.cn</title>
<updated>2019-08-21T15:13:03Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2019-08-21T14:43:49Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=c61c29fe563134f752ea14e794d08031982145e8'/>
<id>urn:sha1:c61c29fe563134f752ea14e794d08031982145e8</id>
<content type='text'>
This CL makes the go command understand that
GOSUMDB=sum.golang.google.cn should connect
to that domain but expect to find a checksum database
signed by sum.golang.org there.

The host sum.golang.google.cn is not yet completely
configured; we hope it will be available in a few weeks.

Change-Id: Ie0fc4323f0c7084dda59bd3b45fc406717fa16d9
Reviewed-on: https://go-review.googlesource.com/c/go/+/191137
Run-TryBot: Russ Cox &lt;rsc@golang.org&gt;
Reviewed-by: Andrew Bonventre &lt;andybons@golang.org&gt;
</content>
</entry>
<entry>
<title>doc/go1.13: mention '-o &lt;directory&gt;' support for 'go build'</title>
<updated>2019-08-20T21:00:50Z</updated>
<author>
<name>Bryan C. Mills</name>
<email>bcmills@google.com</email>
</author>
<published>2019-08-20T20:02:24Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=723852388eed2b023c7a47219ebebf722b3a7ced'/>
<id>urn:sha1:723852388eed2b023c7a47219ebebf722b3a7ced</id>
<content type='text'>
Fixes #33720
Updates #14295

Change-Id: I9cb6e02bcaccd7971057315163d8810157d465bd
Reviewed-on: https://go-review.googlesource.com/c/go/+/190907
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;
</content>
</entry>
<entry>
<title>cmd/go: fix "go help build -o" docs</title>
<updated>2019-08-20T19:26:11Z</updated>
<author>
<name>Filippo Valsorda</name>
<email>filippo@golang.org</email>
</author>
<published>2019-08-19T17:17:34Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=53c088fbf05f42b24e1f7aa40889ca51055f9f29'/>
<id>urn:sha1:53c088fbf05f42b24e1f7aa40889ca51055f9f29</id>
<content type='text'>
The docs refer to "the last two paragraphs", but in fact should refer to
the first two of the previous three paragraphs. Moved up the out of place
paragraph.

Updates #14295

Change-Id: I066da7a665bc6754d246782b941af214a385017a
Reviewed-on: https://go-review.googlesource.com/c/go/+/190839
Reviewed-by: Bryan C. Mills &lt;bcmills@google.com&gt;
Reviewed-by: Dmitri Shuralyov &lt;dmitshur@golang.org&gt;
Run-TryBot: Bryan C. Mills &lt;bcmills@google.com&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
</content>
</entry>
<entry>
<title>doc: rewrite reference to plan9.bell-labs.com to 9p.io</title>
<updated>2019-08-19T21:42:54Z</updated>
<author>
<name>Wagner Riffel</name>
<email>wgrriffel@gmail.com</email>
</author>
<published>2019-08-19T03:41:12Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=d6ffc1d8394d6f6420bb92d79d320da88720fbe0'/>
<id>urn:sha1:d6ffc1d8394d6f6420bb92d79d320da88720fbe0</id>
<content type='text'>
Change-Id: I75619feced842b8ca509ee08e01b63258c5e87ca
Reviewed-on: https://go-review.googlesource.com/c/go/+/190757
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
Run-TryBot: Ian Lance Taylor &lt;iant@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
</content>
</entry>
<entry>
<title>encoding/json: fix format string in the Fuzz func</title>
<updated>2019-08-18T01:16:33Z</updated>
<author>
<name>Dmitry Vyukov</name>
<email>dvyukov@google.com</email>
</author>
<published>2019-08-17T20:22:22Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=0dd120df7e97387411ddba9f58384e69e8862073'/>
<id>urn:sha1:0dd120df7e97387411ddba9f58384e69e8862073</id>
<content type='text'>
Currently test build fails with:

$ go test -tags=gofuzz encoding/json
encoding/json/fuzz.go:36:4: Println call has possible formatting directive %s
FAIL	encoding/json [build failed]

Change-Id: I23aef44a421ed0e7bcf48b74ac5a8c6768a4841b
Reviewed-on: https://go-review.googlesource.com/c/go/+/190698
Run-TryBot: Ian Lance Taylor &lt;iant@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
</content>
</entry>
<entry>
<title>time: update TestSub to avoid future regressions</title>
<updated>2019-08-16T19:54:57Z</updated>
<author>
<name>Joe Tsai</name>
<email>joetsai@digital-static.net</email>
</author>
<published>2019-08-16T17:36:01Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=c485506b0aae298652448e80fca35036bfa755ac'/>
<id>urn:sha1:c485506b0aae298652448e80fca35036bfa755ac</id>
<content type='text'>
CL 131196 optimized Time.Sub, but was reverted because
it incorrectly computed the nanoseconds in some edge cases.
This CL adds a test case to enforce the correct behavior
so that a future optimization does not break this again.

Updates #17858
Updates #33677

Change-Id: I596d8302ca6bf721cf7ca11cc6f939639fcbdd43
Reviewed-on: https://go-review.googlesource.com/c/go/+/190524
Run-TryBot: Joe Tsai &lt;thebrokentoaster@gmail.com&gt;
Reviewed-by: Daniel Martí &lt;mvdan@mvdan.cc&gt;
Reviewed-by: Andrew Bonventre &lt;andybons@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
</content>
</entry>
<entry>
<title>cmd/gofmt: update TestRewrite to avoid future regressions</title>
<updated>2019-08-16T19:54:55Z</updated>
<author>
<name>Joe Tsai</name>
<email>joetsai@digital-static.net</email>
</author>
<published>2019-08-16T17:42:18Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=bb5441de4893c0802e3445250fbcc13c7b8e105c'/>
<id>urn:sha1:bb5441de4893c0802e3445250fbcc13c7b8e105c</id>
<content type='text'>
CL 162337 changed go/ast to better handle block comments,
but was reverted because it introduced an off-by-one bug.
This CL adds a test case to enforce the correct behavior
so that future changes do not break this again.

Updates #18929
Updates #33538

Change-Id: I2d25c139d007f8db1091b7a48b1dd20c584e2699
Reviewed-on: https://go-review.googlesource.com/c/go/+/190523
Run-TryBot: Joe Tsai &lt;thebrokentoaster@gmail.com&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Robert Griesemer &lt;gri@golang.org&gt;
</content>
</entry>
<entry>
<title>Revert "time: optimize Sub"</title>
<updated>2019-08-16T17:01:35Z</updated>
<author>
<name>Joe Tsai</name>
<email>thebrokentoaster@gmail.com</email>
</author>
<published>2019-08-16T03:16:34Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=4983a0b75b40448d3245811ddcf682a9c86fc975'/>
<id>urn:sha1:4983a0b75b40448d3245811ddcf682a9c86fc975</id>
<content type='text'>
This reverts commit CL 131196 because there is a bug
in the calculation of nanoseconds.

Fixes #33677

Change-Id: Ic8e94c547ee29b8aeda1b9a5cb9764dbf47b14b4
Reviewed-on: https://go-review.googlesource.com/c/go/+/190497
Run-TryBot: Andrew Bonventre &lt;andybons@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Emmanuel Odeke &lt;emm.odeke@gmail.com&gt;
Reviewed-by: Andrew Bonventre &lt;andybons@golang.org&gt;
</content>
</entry>
</feed>
