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
46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
= Release notes for Gerrit 2.1.2.1
|
|
|
|
Gerrit 2.1.2.1 is now available in the usual location:
|
|
|
|
link:https://www.gerritcodereview.com/download/index.html[https://www.gerritcodereview.com/download/index.html]
|
|
|
|
== Bug Fixes
|
|
|
|
* Include smart http:// URLs in gitweb
|
|
+
|
|
The managed gitweb configuration file didn't know about our smart
|
|
http URLs, so it didn't advertise them for projects to clone by.
|
|
Fixed.
|
|
|
|
* issue 493 documentation: Document the internal gitweb
|
|
* issue 496 documentation: Explain etc/gitweb_config.perl
|
|
+
|
|
The documentation on configuring gitweb didn't talk about our own
|
|
managed support, where we can write the gitweb configuration file
|
|
based on our own settings, and run the CGI directly from within
|
|
our servlet container. Its an older feature that we have had for
|
|
a while now. Fixed.
|
|
|
|
* issue 494 Look for gitweb in /usr/share/gitweb
|
|
* issue 495 Fix gitweb CGI when in subdirectory
|
|
+
|
|
The CGI didn't always load its supporting assets like CSS and icon
|
|
from the right URLs. Fixed.
|
|
|
|
* Move generated gitweb_config.perl to hidden tmp directory
|
|
+
|
|
The generated gitweb configuration file was written to /tmp,
|
|
which might cause it to be deleted every 7 days on some Linux
|
|
distributions. Moved to our private application temporary directory,
|
|
which is usually under $HOME/.gerritcodereview/tmp.
|
|
|
|
* Update documentation regarding tag deletion
|
|
+
|
|
The documentation incorrectly described tag deletion. Fixed.
|
|
|
|
* Allow schema upgrades to display messages
|
|
+
|
|
On MySQL servers, schema upgrades from older versions failed if the
|
|
administrator didn't create the nextval functions for administrative
|
|
purposes. Fixed by making this a warning and not a hard-stop.
|