diff --git a/doc/src/sgml/release-8.3.sgml b/doc/src/sgml/release-8.3.sgml
index dda418fa557..d3b163a4d32 100644
--- a/doc/src/sgml/release-8.3.sgml
+++ b/doc/src/sgml/release-8.3.sgml
@@ -1,6 +1,116 @@
+
+ Release 8.3.21
+
+
+ Release Date
+ 2012-09-24
+
+
+
+ This release contains a variety of fixes from 8.3.20.
+ For information about new features in the 8.3 major release, see
+ .
+
+
+
+ The PostgreSQL> community will stop releasing updates
+ for the 8.3.X release series in February 2013.
+ Users are encouraged to update to a newer release branch soon.
+
+
+
+ Migration to Version 8.3.21
+
+
+ A dump/restore is not required for those running 8.3.X.
+
+
+
+ However, if you are upgrading from a version earlier than 8.3.17,
+ see the release notes for 8.3.17.
+
+
+
+
+
+ Changes
+
+
+
+
+
+ Improve page-splitting decisions in GiST indexes (Alexander Korotkov,
+ Robert Haas, Tom Lane)
+
+
+
+ Multi-column GiST indexes might suffer unexpected bloat due to this
+ error.
+
+
+
+
+
+ Fix cascading privilege revoke to stop if privileges are still held
+ (Tom Lane)
+
+
+
+ If we revoke a grant option from some role X>, but
+ X> still holds that option via a grant from someone
+ else, we should not recursively revoke the corresponding privilege
+ from role(s) Y> that X> had granted it
+ to.
+
+
+
+
+
+ Fix handling of SIGFPE> when PL/Perl is in use (Andres Freund)
+
+
+
+ Perl resets the process's SIGFPE> handler to
+ SIG_IGN>, which could result in crashes later on. Restore
+ the normal Postgres signal handler after initializing PL/Perl.
+
+
+
+
+
+ Prevent PL/Perl from crashing if a recursive PL/Perl function is
+ redefined while being executed (Tom Lane)
+
+
+
+
+
+ Work around possible misoptimization in PL/Perl (Tom Lane)
+
+
+
+ Some Linux distributions contain an incorrect version of
+ pthread.h> that results in incorrect compiled code in
+ PL/Perl, leading to crashes if a PL/Perl function calls another one
+ that throws an error.
+
+
+
+
+
+ Update time zone data files to tzdata> release 2012f
+ for DST law changes in Fiji
+
+
+
+
+
+
+
+
Release 8.3.20
diff --git a/doc/src/sgml/release-8.4.sgml b/doc/src/sgml/release-8.4.sgml
index 5c89fb699ab..54f5c131af9 100644
--- a/doc/src/sgml/release-8.4.sgml
+++ b/doc/src/sgml/release-8.4.sgml
@@ -1,6 +1,122 @@
+
+ Release 8.4.14
+
+
+ Release Date
+ 2012-09-24
+
+
+
+ This release contains a variety of fixes from 8.4.13.
+ For information about new features in the 8.4 major release, see
+ .
+
+
+
+ Migration to Version 8.4.14
+
+
+ A dump/restore is not required for those running 8.4.X.
+
+
+
+ However, if you are upgrading from a version earlier than 8.4.10,
+ see the release notes for 8.4.10.
+
+
+
+
+
+ Changes
+
+
+
+
+
+ Fix planner's assignment of executor parameters, and fix executor's
+ rescan logic for CTE plan nodes (Tom Lane)
+
+
+
+ These errors could result in wrong answers from queries that scan the
+ same WITH> subquery multiple times.
+
+
+
+
+
+ Improve page-splitting decisions in GiST indexes (Alexander Korotkov,
+ Robert Haas, Tom Lane)
+
+
+
+ Multi-column GiST indexes might suffer unexpected bloat due to this
+ error.
+
+
+
+
+
+ Fix cascading privilege revoke to stop if privileges are still held
+ (Tom Lane)
+
+
+
+ If we revoke a grant option from some role X>, but
+ X> still holds that option via a grant from someone
+ else, we should not recursively revoke the corresponding privilege
+ from role(s) Y> that X> had granted it
+ to.
+
+
+
+
+
+ Fix handling of SIGFPE> when PL/Perl is in use (Andres Freund)
+
+
+
+ Perl resets the process's SIGFPE> handler to
+ SIG_IGN>, which could result in crashes later on. Restore
+ the normal Postgres signal handler after initializing PL/Perl.
+
+
+
+
+
+ Prevent PL/Perl from crashing if a recursive PL/Perl function is
+ redefined while being executed (Tom Lane)
+
+
+
+
+
+ Work around possible misoptimization in PL/Perl (Tom Lane)
+
+
+
+ Some Linux distributions contain an incorrect version of
+ pthread.h> that results in incorrect compiled code in
+ PL/Perl, leading to crashes if a PL/Perl function calls another one
+ that throws an error.
+
+
+
+
+
+ Update time zone data files to tzdata> release 2012f
+ for DST law changes in Fiji
+
+
+
+
+
+
+
+
Release 8.4.13
diff --git a/doc/src/sgml/release-9.0.sgml b/doc/src/sgml/release-9.0.sgml
index 398a3659191..af99af82bec 100644
--- a/doc/src/sgml/release-9.0.sgml
+++ b/doc/src/sgml/release-9.0.sgml
@@ -1,6 +1,148 @@
+
+ Release 9.0.10
+
+
+ Release Date
+ 2012-09-24
+
+
+
+ This release contains a variety of fixes from 9.0.9.
+ For information about new features in the 9.0 major release, see
+ .
+
+
+
+ Migration to Version 9.0.10
+
+
+ A dump/restore is not required for those running 9.0.X.
+
+
+
+ However, if you are upgrading from a version earlier than 9.0.6,
+ see the release notes for 9.0.6.
+
+
+
+
+
+ Changes
+
+
+
+
+
+ Fix planner's assignment of executor parameters, and fix executor's
+ rescan logic for CTE plan nodes (Tom Lane)
+
+
+
+ These errors could result in wrong answers from queries that scan the
+ same WITH> subquery multiple times.
+
+
+
+
+
+ Improve page-splitting decisions in GiST indexes (Alexander Korotkov,
+ Robert Haas, Tom Lane)
+
+
+
+ Multi-column GiST indexes might suffer unexpected bloat due to this
+ error.
+
+
+
+
+
+ Fix cascading privilege revoke to stop if privileges are still held
+ (Tom Lane)
+
+
+
+ If we revoke a grant option from some role X>, but
+ X> still holds that option via a grant from someone
+ else, we should not recursively revoke the corresponding privilege
+ from role(s) Y> that X> had granted it
+ to.
+
+
+
+
+
+ Improve error messages for Hot Standby misconfiguration errors
+ (Gurjeet Singh)
+
+
+
+
+
+ Fix handling of SIGFPE> when PL/Perl is in use (Andres Freund)
+
+
+
+ Perl resets the process's SIGFPE> handler to
+ SIG_IGN>, which could result in crashes later on. Restore
+ the normal Postgres signal handler after initializing PL/Perl.
+
+
+
+
+
+ Prevent PL/Perl from crashing if a recursive PL/Perl function is
+ redefined while being executed (Tom Lane)
+
+
+
+
+
+ Work around possible misoptimization in PL/Perl (Tom Lane)
+
+
+
+ Some Linux distributions contain an incorrect version of
+ pthread.h> that results in incorrect compiled code in
+ PL/Perl, leading to crashes if a PL/Perl function calls another one
+ that throws an error.
+
+
+
+
+
+ Fix pg_upgrade>'s handling of line endings on Windows
+ (Andrew Dunstan)
+
+
+
+ Previously, pg_upgrade> might add or remove carriage
+ returns in places such as function bodies.
+
+
+
+
+
+ On Windows, make pg_upgrade> use backslash path
+ separators in the scripts it emits (Andrew Dunstan)
+
+
+
+
+
+ Update time zone data files to tzdata> release 2012f
+ for DST law changes in Fiji
+
+
+
+
+
+
+
+
Release 9.0.9