Update 2.14.2 release notes Change-Id: If4a8a6dcba95b5d4a00c725ecd344a50e87b5535
diff --git a/releases/2.14.md b/releases/2.14.md index b55ce20..4e32527 100644 --- a/releases/2.14.md +++ b/releases/2.14.md
@@ -406,6 +406,19 @@ * [Issue 6099](https://bugs.chromium.org/p/gerrit/issues/detail?id=6099): Set reflog message and identity when merging changes. +* [Issue 6591](https://bugs.chromium.org/p/gerrit/issues/detail?id=6591): +Fix deletion of branches when the `refs/heads/` prefix is omitted. + +* [Issue 6605](https://bugs.chromium.org/p/gerrit/issues/detail?id=6605): +Fix searching for change by Change-Id triplet when project name matches Change-Id pattern. + + For projects whose name matched the Change-Id pattern, i.e. named something + like `iabcde`, it was not possible to search for changes using the Change-Id + triplet `project~branch~changeId`. + +* [Issue 3345](https://bugs.chromium.org/p/gerrit/issues/detail?id=3345): +Preserve line endings in inline editor. + * [Issue 6508](https://bugs.chromium.org/p/gerrit/issues/detail?id=6508): Fix hook configuration names to match documentation @@ -416,8 +429,23 @@ * Don't index missing accounts. +* Disable auto-reindexing if stale during offline Reindex. + * Fix title of revision field for creating new tag in the UI. +* Suggest `self` before other users in search operator suggestions. + + For query operators that expect a user, the suggestion included other + users whose name begins with "sel" before "self". Since "self" is + more frequently used, it should be suggested first. + +* Load external IDs from primary storage (ReviewDb). + + On sign in we can't access the account index to lookup external IDs + since Gerrit slaves don't have an account index, but Gerrit slaves must + be able to sign in. Instead load the external ID from the primary + storage which is ReviewDb in 2.14. + * Extend `shortSubject` field to 72 characters in soy email template. * Align lib modules load injector on Jetty and external containers. @@ -429,3 +457,10 @@ This Allows overriding some of the default bindings of Gerrit (e.g. repository manager or permissions backend) with custom-made alternate implementations. + +* Fix cyclic dependency when using `site_path` from `system_config` table. + + The starting mode where `site_path` is not specified (as a system property) + and Gerrit first connects to the database using the ReviewDb JNDI property + from the servlet container was broken since version 2.13 due to a cyclic + dependency in Guice bindings.