Update 2.14.1 release notes

Change-Id: Ie9f0b7acecb2e2134226a7f328398f2096651ea4
diff --git a/releases/2.14.md b/releases/2.14.md
index 2edb070..399180e 100644
--- a/releases/2.14.md
+++ b/releases/2.14.md
@@ -230,12 +230,70 @@
 
 ### 2.14.1 *(In development)* {#2.14.1}
 
+* Allow multiple Servlet filters on Jetty HTTPD.
+
+  It is now possible to specify multiple values for
+  [`httpd.filterClass`](http://gerrit-documentation.storage.googleapis.com/Documentation/2.14.1/config-gerrit.html#httpd.filterClass).
+
+* Add a `group indexed` extension point.
+
+  Similar to the existing `change indexed` and `account indexed `extension points,
+  this allows plugins to be notified when a group has been indexed.
+
+* Fix support for ECDSA and ED25519 SSH keys.
+
+  ECDSA and ED25519 SSH host keys were not generated during site initialization
+  and were not loaded if they existed.
+
+* Fix initialization failure when removing old Bouncy Castle library fails.
+
+  During initialization, old Bouncy Castle libraries are renamed with a `.backup`
+  suffix, but if the destination file already existed the initialization would
+  fail with a fatal error. Now a warning is printed and the initialization
+  continues.
+
+* [Issue 5393](https://bugs.chromium.org/p/gerrit/issues/detail?id=5393):
+Improve the performance of reviewer suggestion.
+
+* [Issue 6173](https://bugs.chromium.org/p/gerrit/issues/detail?id=6173):
+Fix setting
+[`sshd.idleTimeout`](http://gerrit-documentation.storage.googleapis.com/Documentation/2.14.1/config-gerrit.html#sshd.idleTimeout)
+for nio2 backend.
+
+  The idle timeout was not properly set for the nio2 backend, so connections
+  would always time out with the default value (10 minutes).
+
 * Fix ref visibility checks in dashboards.
 
-* Replication plugin: Fix replication retries when maxRetries is set to 0.
+* Replication plugin: Fix replication retries when `maxRetries` is set to 0.
 
 * Fix autocomplete for Firefox on LDAP login screen.
 
 * Add support for mariadb in AccountPatchReviewStore.
 
 * Fix notifications for comments on draft patch sets.
+
+* Fix internal server error when deleting current patch set and previous patch
+set doesn't exist.
+
+*  Always use SSL implicitly for POP3 and IMAP.
+
+   If `receiveemail.encryption` is set to TLS/SSL, we always want to use the
+   implicit mode to execute the TLS/SSL command right after establishing
+   the conection with the mail server. Strict mail servers like Gmail would
+   close the connection prematurely otherwise.
+
+* PolyGerrit UI
+
+    * [Issue 6096](https://bugs.chromium.org/p/gerrit/issues/detail?id=6096):
+      Add an "up" button to the diff screen.
+
+    * [Issue 6041](https://bugs.chromium.org/p/gerrit/issues/detail?id=6041):
+      Display `/MERGE_LIST` and `/COMMIT_MESSAGE` as `Merge List` and
+      `Commit Message`.
+
+    * [Issue 6080](https://bugs.chromium.org/p/gerrit/issues/detail?id=6080):
+      Allow editing status when full name is not editable.
+
+    * [Issue 6176](https://bugs.chromium.org/p/gerrit/issues/detail?id=6176):
+      Fix internal server error when old patch set is not found.