blob: f705d1e5085230a7d3ce828b186eb4b45deb86ea [file] [log] [blame]
Yuxuan 'fishy' Wang4f5ad9d2016-05-03 16:18:58 -07001= Release notes for Gerrit 2.11.3
David Pursehouse1f3c3012015-07-27 14:54:44 +09002
3Gerrit 2.11.3 is now available:
4
5link:https://gerrit-releases.storage.googleapis.com/gerrit-2.11.3.war[
6https://gerrit-releases.storage.googleapis.com/gerrit-2.11.3.war]
7
8There are no schema changes from link:ReleaseNotes-2.11.2.html[2.11.2].
9
10
Yuxuan 'fishy' Wang4f5ad9d2016-05-03 16:18:58 -070011== Bug Fixes
David Pursehouse1f3c3012015-07-27 14:54:44 +090012
13* Do not suggest inactive accounts.
14+
15When, for example, adding accounts to a group, the drop down list would also
16suggest inactive accounts.
17+
18Inactive accounts are now excluded from the suggestion.
19
20* Fix performance of side-by-side diff screen for huge files.
21+
22The `Render=Slow` preference was not being disabled for huge files, resulting
23in poor performance on most browsers.
24
25* Prefer JavaScript clipboard API if available.
26+
27Modern versions of Chrome support a draft clipboard API from JavaScript that
28allows copying without use of a Flash widget. If the API appears to be available
29in the browser, it is now used instead of the Flash widget.
30
31* Fix markdown rendering for the Gitiles plugin.
32+
33The Gitiles project uses the grappa library which causes a class collision with
34parboiled which was used by Gerrit. This resulted in markdown files not being
35rendered by the Gitiles plugin.
36
37* Fix submodule subscription for nested projects.
38+
39If the project name was 'a/b', and a project named 'b' also existed, the
40subscription would be incorrectly set on project 'b'.
41
42* link:https://code.google.com/p/gerrit/issues/detail?id=3478[Issue 3478]:
43Show correct status line for draft patch sets.
44+
45If a new patch set was uploaded as draft to an existing published change,
46the status line did not reflect the draft status of the now current patch
47set.
48
49* link:https://code.google.com/p/gerrit/issues/detail?id=3477[Issue 3477]:
50Fix client error when current patch set is not visible to user.
51+
52If the latest patch set of a change was a draft that was not visible to the
53logged in user, clicking on the side by side diff link caused a javascript error
54on the client.
55
56* link:https://code.google.com/p/gerrit/issues/detail?id=3468[Issue 3468]:
57Include URL to change in "change closed" error message.
58+
59Instead of only the change number, the error message now includes the URL to
60the change.
61
62* link:https://code.google.com/p/gerrit/issues/detail?id=3366[Issue 3366]:
63Call `NewProjectCreatedListeners` after project creation is complete.
64+
65The listeners were being called before all project details had been created
66and recorded.
67
68* link:https://code.google.com/p/gerrit/issues/detail?id=3505[Issue 3505]:
69Add "Uploaded patch set 1" message for changes created via the UI.
70
71* link:https://code.google.com/p/gerrit/issues/detail?id=3504[Issue 3504]:
72Prevent users from publishing change edits if they have not signed the CLA.
73+
74It was possible for users who had not signed the Contribution License Agreement
75(CLA) to publish change edits on projects that require a CLA.
76
77* link:https://code.google.com/p/gerrit/issues/detail?id=2209[Issue 2209]:
78Honor username provided by container.
79
80* Stop logging unknown group membership for null UUID.
81Null UUIDs are now skipped rather than spamming the log.
82+
83UUIDs which have no registered backends are still logged. These may be errors
84caused by plugins not loading that an admin should pay attention to and try to
85resolve.
86
Yuxuan 'fishy' Wang4f5ad9d2016-05-03 16:18:58 -070087== Updates
David Pursehouse1f3c3012015-07-27 14:54:44 +090088
89* Update Guice to 4.0.
90* Replace parboiled 1.1.7 with grappa 1.0.4.