4f5ad9d313
This eliminates the last Makefile in our code base.
Also change the section style within ReleaseNotes from asciidoc style to
asciidoctor style.
Also I feel that put images/link.png under ReleaseNotes and deal with
all the resource packing is too stupid, so I used the unicode emoji
instead of the picture ("🔗"). If this is too crazy, we can also use "#"
instead :) This also affects documentation rendering.
Other side effects:
1. The css of release notes switched from default asciidoc css into
default asciidoctor css.
2. The section anchors for ReleaseNotes/index.html changed from "2_13"
to "s2_13", because asciidoctorj is unhappy with anchors without
letters.
Change-Id: I4adf2ce090385cc6b699445012f10a009892aaac
23 lines
826 B
Plaintext
23 lines
826 B
Plaintext
= Release notes for Gerrit 2.1.2.5
|
|
|
|
Gerrit 2.1.2.5 is now available in the usual location:
|
|
|
|
link:https://www.gerritcodereview.com/download/index.html[https://www.gerritcodereview.com/download/index.html]
|
|
|
|
== Bug Fixes
|
|
|
|
* issue 390 Resolve objects going missing
|
|
+
|
|
Clients disconnecting from the SSH server sometimes caused an
|
|
interrupt to be delivered to their corresponding server work thread.
|
|
That interrupt delivered at the wrong time caused a file to be
|
|
closed unexpectedly, resulting in JGit marking the file as invalid
|
|
and thereby losing access to its contents. Fixed by serializing
|
|
access to the file.
|
|
|
|
* ps: Fix implementation to alias to gerrit show-queue
|
|
+
|
|
The SSH command `ps` was meant to be an alias for `gerrit show-queue`
|
|
but due to a copy-and-paste error was actually an alias for a
|
|
different command. Fixed.
|