<feed xmlns='http://www.w3.org/2005/Atom'>
<title>go-x-review, branch v1.5.0</title>
<subtitle>Fork of golang.org/x/review with my patches.</subtitle>
<id>http://git.kilabit.info/go-x-review/atom?h=v1.5.0</id>
<link rel='self' href='http://git.kilabit.info/go-x-review/atom?h=v1.5.0'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go-x-review/'/>
<updated>2023-07-27T22:19:34Z</updated>
<entry>
<title>git-codereview: allow _content to not warn</title>
<updated>2023-07-27T22:19:34Z</updated>
<author>
<name>Sean Liao</name>
<email>sean@liao.dev</email>
</author>
<published>2023-07-27T18:24:36Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go-x-review/commit/?id=1ade026284a47e90ec5d88ab48f869725092b4cb'/>
<id>urn:sha1:1ade026284a47e90ec5d88ab48f869725092b4cb</id>
<content type='text'>
Fixes golang/go#45734

Change-Id: I20ebc9fb728c5e91a3d71d3a6290ccf27ceb14cf
Reviewed-on: https://go-review.googlesource.com/c/review/+/496775
Run-TryBot: Dmitri Shuralyov &lt;dmitshur@golang.org&gt;
TryBot-Result: Gopher Robot &lt;gobot@golang.org&gt;
Auto-Submit: Dmitri Shuralyov &lt;dmitshur@golang.org&gt;
Reviewed-by: Heschi Kreinick &lt;heschi@google.com&gt;
Reviewed-by: Dmitri Shuralyov &lt;dmitshur@google.com&gt;
Reviewed-by: Dmitri Shuralyov &lt;dmitshur@golang.org&gt;
</content>
</entry>
<entry>
<title>git-codereview: fix TestReword on Windows</title>
<updated>2023-06-26T16:37:10Z</updated>
<author>
<name>Dmitri Shuralyov</name>
<email>dmitshur@golang.org</email>
</author>
<published>2023-06-24T01:17:00Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go-x-review/commit/?id=99fd4b8dbe8c97a1cc916aec11206eb063213b43'/>
<id>urn:sha1:99fd4b8dbe8c97a1cc916aec11206eb063213b43</id>
<content type='text'>
It wasn't caught by x/build's Windows builders because
they don't have git and skip these tests. But LUCI ones
do have git, and caught this.

For golang/go#46693.

Change-Id: I50f3b69909344f4657e5c737e3b434a2538e4939
Reviewed-on: https://go-review.googlesource.com/c/review/+/505895
Reviewed-by: Dmitri Shuralyov &lt;dmitshur@google.com&gt;
TryBot-Result: Gopher Robot &lt;gobot@golang.org&gt;
Run-TryBot: Dmitri Shuralyov &lt;dmitshur@golang.org&gt;
Auto-Submit: Dmitri Shuralyov &lt;dmitshur@golang.org&gt;
Reviewed-by: Heschi Kreinick &lt;heschi@google.com&gt;
</content>
</entry>
<entry>
<title>git-codereview: fix mail lookup for dmitshur short name</title>
<updated>2023-06-22T19:53:14Z</updated>
<author>
<name>Dmitri Shuralyov</name>
<email>dmitshur@golang.org</email>
</author>
<published>2023-05-10T12:53:08Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go-x-review/commit/?id=1ee98ad07b3b077731a919d3cf37e7bfc1741fa3'/>
<id>urn:sha1:1ee98ad07b3b077731a919d3cf37e7bfc1741fa3</id>
<content type='text'>
CL 2111 introduced a simple algorithm for expanding short user names
that works locally and generally doesn't need any extra configuration
to do the right thing. It's been serving for almost a decade.

Unfortunately I'm running into an edge where I see no good option but
to add a special case. Gerrit inserts "Reviewed-by" footers both for
Code-Review +2 and +1 votes without any way to distinguish between them,
and my @google.com account unavoidably gets more hits since I use it for
the go.dev/s/needs-review process, whenever I leave a normal +2, and on
my own CLs.

The simplest fix seems to be to exclude it from short matches and let
the existing algorithm do the rest.

Change-Id: I92da69f1cd87b4c89816547015cffbed3eaaeaf6
Reviewed-on: https://go-review.googlesource.com/c/review/+/494175
Reviewed-by: MKaslann1 &lt;mkaslann1@outlook.com&gt;
TryBot-Result: Gopher Robot &lt;gobot@golang.org&gt;
Reviewed-by: Dmitri Shuralyov &lt;dmitshur@google.com&gt;
Reviewed-by: Heschi Kreinick &lt;heschi@google.com&gt;
Run-TryBot: Dmitri Shuralyov &lt;dmitshur@golang.org&gt;
Auto-Submit: Dmitri Shuralyov &lt;dmitshur@golang.org&gt;
</content>
</entry>
<entry>
<title>git-codereview: recognize sso://go/ and rpc://go/</title>
<updated>2023-06-02T02:03:04Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2023-06-01T21:06:44Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go-x-review/commit/?id=d285cae025f6e6848090ddb748aade98677328db'/>
<id>urn:sha1:d285cae025f6e6848090ddb748aade98677328db</id>
<content type='text'>
Google engineers are now required to use these access methods
instead of https://go.googlesource.com/, so recognize them as
aliases.

(It is possible for every engineer to configure their Git clients with
insteadOf clauses to hide these from the codereview plugin, but
it's far less error-prone to just handle it here.)

Change-Id: Ic1c9a6b45aa61b11ff25ce21bca6e49344974b04
Reviewed-on: https://go-review.googlesource.com/c/review/+/499923
TryBot-Result: Gopher Robot &lt;gobot@golang.org&gt;
Reviewed-by: Peter Weinberger &lt;pjw@google.com&gt;
Run-TryBot: Russ Cox &lt;rsc@golang.org&gt;
</content>
</entry>
<entry>
<title>git-codereview: allow trailing slash in git origin</title>
<updated>2022-11-01T17:36:02Z</updated>
<author>
<name>Benny Siegert</name>
<email>bsiegert@google.com</email>
</author>
<published>2022-10-13T18:18:34Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go-x-review/commit/?id=197006278d6bfe1d37a22f19be41ed573d66796d'/>
<id>urn:sha1:197006278d6bfe1d37a22f19be41ed573d66796d</id>
<content type='text'>
An origin like "https://go.googlesource.com/build/" should also work.
Perhaps this should use net/url instead of parsing URLs by hand.

Change-Id: I5304324ae67c054b8377d500ecafe46b296d1531
Reviewed-on: https://go-review.googlesource.com/c/review/+/442875
Reviewed-by: Heschi Kreinick &lt;heschi@google.com&gt;
Run-TryBot: Benny Siegert &lt;bsiegert@gmail.com&gt;
TryBot-Result: Gopher Robot &lt;gobot@golang.org&gt;
</content>
</entry>
<entry>
<title>git-codereview: add -autosubmit</title>
<updated>2022-10-03T20:07:31Z</updated>
<author>
<name>Heschi Kreinick</name>
<email>heschi@google.com</email>
</author>
<published>2022-09-16T15:17:40Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go-x-review/commit/?id=a897dc9c03c577746ba0a4033dc61f3e5983f3e2'/>
<id>urn:sha1:a897dc9c03c577746ba0a4033dc61f3e5983f3e2</id>
<content type='text'>
Add a flag to set the Auto-Submit label.

For golang/go#48021.

Change-Id: If704e8b5e9e0e2521eed78fe28af10d3c31ec3a0
Reviewed-on: https://go-review.googlesource.com/c/review/+/431375
Auto-Submit: Heschi Kreinick &lt;heschi@google.com&gt;
TryBot-Result: Gopher Robot &lt;gobot@golang.org&gt;
Reviewed-by: Russ Cox &lt;rsc@golang.org&gt;
Run-TryBot: Heschi Kreinick &lt;heschi@google.com&gt;
</content>
</entry>
<entry>
<title>A+C: delete AUTHORS and CONTRIBUTORS</title>
<updated>2022-07-22T15:52:49Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2022-07-22T15:10:54Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go-x-review/commit/?id=0c548b8eec7a2541f601138b66789ae12dfbace1'/>
<id>urn:sha1:0c548b8eec7a2541f601138b66789ae12dfbace1</id>
<content type='text'>
In 2009, Google's open-source lawyers asked us to create the AUTHORS
file to define "The Go Authors", and the CONTRIBUTORS file was in
keeping with open source best practices of the time.

Re-reviewing our repos now in 2022, the open-source lawyers are
comfortable with source control history taking the place of the
AUTHORS file, and most open source projects no longer maintain
CONTRIBUTORS files.

To ease maintenance, remove AUTHORS and CONTRIBUTORS from all repos.

For golang/go#53961.

Change-Id: Idf51261da9667c3f04b13976ed0686f06cbf42c0
Reviewed-on: https://go-review.googlesource.com/c/review/+/419101
Run-TryBot: Russ Cox &lt;rsc@golang.org&gt;
Reviewed-by: David Chase &lt;drchase@google.com&gt;
TryBot-Result: Gopher Robot &lt;gobot@golang.org&gt;
</content>
</entry>
<entry>
<title>git-codereview: print more about Gerrit API errors</title>
<updated>2022-06-01T20:01:15Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2022-06-01T18:40:41Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go-x-review/commit/?id=5579f240cbb7938362d82a9334c9f7a6a0d477b3'/>
<id>urn:sha1:5579f240cbb7938362d82a9334c9f7a6a0d477b3</id>
<content type='text'>
For golang/go#50576.

Change-Id: I3b67234098cbf9cd28bfa578c0b29744a4add2a3
Reviewed-on: https://go-review.googlesource.com/c/review/+/409914
Run-TryBot: Russ Cox &lt;rsc@golang.org&gt;
Reviewed-by: Dmitri Shuralyov &lt;dmitshur@google.com&gt;
Reviewed-by: Bryan Mills &lt;bcmills@google.com&gt;
TryBot-Result: Gopher Robot &lt;gobot@golang.org&gt;
Reviewed-by: Dmitri Shuralyov &lt;dmitshur@golang.org&gt;
</content>
</entry>
<entry>
<title>git-codereview: print about all Gerrit API errors</title>
<updated>2022-04-14T15:34:40Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2022-04-12T20:16:53Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go-x-review/commit/?id=ae62a0b8f23348d14a0270fafc2ee02ef5149a2e'/>
<id>urn:sha1:ae62a0b8f23348d14a0270fafc2ee02ef5149a2e</id>
<content type='text'>
Trying to chase down a problem with slow builders.
If this gets to be too chatty, we can limit it to builders.

For golang/go#50576.

Change-Id: I16c7818153d2444c897b4946ce7baebbd646ab23
Reviewed-on: https://go-review.googlesource.com/c/review/+/399116
Run-TryBot: Russ Cox &lt;rsc@golang.org&gt;
TryBot-Result: Gopher Robot &lt;gobot@golang.org&gt;
Reviewed-by: Bryan Mills &lt;bcmills@google.com&gt;
</content>
</entry>
<entry>
<title>git-codereview: remove -trust</title>
<updated>2022-04-12T21:26:36Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2022-04-12T20:19:37Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go-x-review/commit/?id=f2105c4cf825fe09ece01c9d554f6c0a5bc06a03'/>
<id>urn:sha1:f2105c4cf825fe09ece01c9d554f6c0a5bc06a03</id>
<content type='text'>
We don't use that label anymore.

Change-Id: Ic31841efaea5d9d9ae38077d8c3a3b6c548fee88
Reviewed-on: https://go-review.googlesource.com/c/review/+/399117
Run-TryBot: Russ Cox &lt;rsc@golang.org&gt;
Reviewed-by: Ian Lance Taylor &lt;iant@google.com&gt;
Reviewed-by: Bryan Mills &lt;bcmills@google.com&gt;
TryBot-Result: Gopher Robot &lt;gobot@golang.org&gt;
</content>
</entry>
</feed>
