Update 2.14.2 release notes

Change-Id: I486f9156feed7ebfec7cd179d8e215590836969a
diff --git a/releases/2.14.md b/releases/2.14.md
index 9edf38a..fea4f06 100644
--- a/releases/2.14.md
+++ b/releases/2.14.md
@@ -377,8 +377,32 @@
 * [Issue 6099](https://bugs.chromium.org/p/gerrit/issues/detail?id=6099):
 Set reflog message and identity when merging changes.
 
+* [Issue 6508](https://bugs.chromium.org/p/gerrit/issues/detail?id=6508):
+Fix hook configuration names to match documentation
+
+  Most hooks in the documentation are named with "Hook" suffix, but
+  in the code the "Hook" suffix was omitted. This prevented the hook
+  from being found when the administrator configured it with the
+  documented name.
+
 * Don't index missing accounts.
 
-* Fix title of revision field for new tag.
+* Load external IDs from primary storage.
+
+  Loading am external ID from the primary storage is safer than finding
+  the account via the account index and then looking up the external ID
+  via the account cache, since the account index may be stale.
+
+* Fix title of revision field for creating new tag in the UI.
 
 * Extend `shortSubject` field to 72 characters in soy email template.
+
+* Align lib modules load injector on Jetty and external containers.
+
+  Align the startup of Gerrit with a standalone Jetty container to the
+  WebAppInitializer and load the user-provided Guice modules in the
+  sysInjector instead of the DbInjector.
+
+  This Allows overriding some of the default bindings of Gerrit
+  (e.g. repository manager or permissions backend) with custom-made
+  alternate implementations.