diff --git a/doc/src/sgml/release-11.sgml b/doc/src/sgml/release-11.sgml
index 9dd8dff081..6adc312871 100644
--- a/doc/src/sgml/release-11.sgml
+++ b/doc/src/sgml/release-11.sgml
@@ -20,7 +20,104 @@
- XXX
+
+ Major improvements to partitioning
+
+
+
+
+ Partitioning by a hash key
+
+
+
+
+
+ UPDATE statements issued to a partition key
+ now move affected rows to the appropriate partitions
+
+
+
+
+
+ Improved SELECT query performance due to
+ enhanced partition elimination during query processing and
+ execution
+
+
+
+
+
+ Support for PRIMARY KEY, FOREIGN
+ KEY, indexes, and triggers
+
+
+
+
+
+
+
+
+ Improvements to parallelism
+
+
+
+ Parallelized hash joins
+
+
+
+
+ Parallelized CREATE INDEX for B-tree indexes
+
+
+
+
+
+ Parallelized CREATE TABLE .. AS,
+ CREATE MATERIALIZED VIEW, and certain
+ queries with UNION
+
+
+
+
+
+
+
+
+
+ SQL stored procedures with support for embedded transactions
+
+
+
+
+
+ JIT compilation introduced, including support for fast evaluation of
+ expressions
+
+
+
+
+
+ Window functions now support all options shown in the SQL:2011
+ standard, including RANGE <distance> PRECEDING/FOLLOWING
+ , GROUPS mode, and frame exclusion
+ options.
+
+
+
+
+
+ Channel binding for SCRAM authentication to prevent potential
+ man-in-the-middle attacks
+
+
+
+
+
+ Many other useful performance improvements, including fast
+ ALTER TABLE .. ADD COLUMN with a
+ non-NULL default
+
+