Release notes for 2.13.7

Change-Id: Ic1c0e5d35db218ed0e26d84051e0b56710bf959d
diff --git a/releases/2.13.md b/releases/2.13.md
index 0bd4f68..b4e51a6 100644
--- a/releases/2.13.md
+++ b/releases/2.13.md
@@ -462,6 +462,58 @@
 
 ## Bugfix Releases
 
+### 2.13.7 {#2.13.7}
+
+* Prevent circular module dependency when running in external container.
+
+  Since 2.13 it was not possible to run Gerrit in an external container
+  due to circular dependency between the database module and the note DB
+  migration module.
+
+  This is fixed, but the site path must be explicitly set in a system
+  property: `-Dgerrit.site_path=/path/to/gerrit`.
+
+* Use submitter's identity for merge commit in Rebase if Necessary.
+
+  When a merge commit was not fast-forward, gerrit created a "merge of merge"
+  commit with its server identity instead of the submitter's identity.
+
+* [Issue 4637](https://bugs.chromium.org/p/gerrit/issues/detail?id=4637):
+Fix "Class not found" errors when running on IBM JDK.
+
+  The metrics module had a dependency on com.sun internal classes that
+  are not available in the JRE from other providers such as IBM, resulting
+  in ClassNotFound exceptions when initializing the CPU usage metric.
+
+* [Issue 5689](https://bugs.chromium.org/p/gerrit/issues/detail?id=5689):
+Fix internal server error when directory in git root is inaccessible.
+
+  If a directory in the site's git root was not accessible, an internal
+  server error prevented the list of projects from being populated.
+
+* [Issue 5652](https://bugs.chromium.org/p/gerrit/issues/detail?id=5652):
+reviewnotes plugin: Fix export of review notes.
+
+* [Issue 5190](https://bugs.chromium.org/p/gerrit/issues/detail?id=5190):
+Fix email notifications when adding new reviewers.
+
+* [Issue 5055](https://bugs.chromium.org/p/gerrit/issues/detail?id=5055):
+Fix cache eviction order when linking new external IDs.
+
+* [Issue 5727](https://bugs.chromium.org/p/gerrit/issues/detail?id=5727):
+Fix failure to start when JVM does not support CPU and file descripto metrics.
+
+* Allow to continue reindex despite failures.
+
+  If indexing a change failed for some reason, indexing would be stopped
+  and remaining changes would not be indexed. Now an error message will
+  be displayed and indexing will continue.
+
+* Allow user with "Maintain Server" permission to find all changes.
+
+  Allowing users delegated to maintain the server to find non-visible
+  changes in the CLI allows them to perform ad-hoc indexing.
+
 ### 2.13.6 {#2.13.6}
 
 * Allow Git LFS to authenticate via SSH.