From f0c4d156a2e870ab9b58e67bebb1f78520abd191 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 9 Jun 2015 14:33:43 -0400 Subject: [PATCH] Release notes for 9.4.4, 9.3.9, 9.2.13, 9.1.18, 9.0.22. --- doc/src/sgml/release-9.0.sgml | 74 +++++++++++++++++++++++++++++++++++ doc/src/sgml/release-9.1.sgml | 68 ++++++++++++++++++++++++++++++++ 2 files changed, 142 insertions(+) diff --git a/doc/src/sgml/release-9.0.sgml b/doc/src/sgml/release-9.0.sgml index 80cd1c43cdc..736b6dda637 100644 --- a/doc/src/sgml/release-9.0.sgml +++ b/doc/src/sgml/release-9.0.sgml @@ -1,6 +1,80 @@ + + Release 9.0.22 + + + Release Date + 2015-06-12 + + + + This release contains a small number of fixes from 9.0.21. + For information about new features in the 9.0 major release, see + . + + + + The PostgreSQL community will stop releasing updates + for the 9.0.X release series in September 2015. + Users are encouraged to update to a newer release branch soon. + + + + Migration to Version 9.0.22 + + + A dump/restore is not required for those running 9.0.X. + + + + However, if you are upgrading from a version earlier than 9.0.18, + see . + + + + + + Changes + + + + + + Fix rare failure to invalidate relation cache init file (Tom Lane) + + + + With just the wrong timing of concurrent activity, a VACUUM + FULL on a system catalog might fail to update the init file + that's used to avoid cache-loading work for new sessions. This would + result in later sessions being unable to access that catalog at all. + This is a very ancient bug, but it's so hard to trigger that no + reproducible case had been seen until recently. + + + + + + Avoid deadlock between incoming sessions and CREATE/DROP + DATABASE (Tom Lane) + + + + A new session starting in a database that is the target of + a DROP DATABASE command, or is the template for + a CREATE DATABASE command, could cause the command to wait + for five seconds and then fail, even if the new session would have + exited before that. + + + + + + + + Release 9.0.21 diff --git a/doc/src/sgml/release-9.1.sgml b/doc/src/sgml/release-9.1.sgml index 8306cfab039..a97ec57276f 100644 --- a/doc/src/sgml/release-9.1.sgml +++ b/doc/src/sgml/release-9.1.sgml @@ -1,6 +1,74 @@ + + Release 9.1.18 + + + Release Date + 2015-06-12 + + + + This release contains a small number of fixes from 9.1.17. + For information about new features in the 9.1 major release, see + . + + + + Migration to Version 9.1.18 + + + A dump/restore is not required for those running 9.1.X. + + + + However, if you are upgrading from a version earlier than 9.1.16, + see . + + + + + + Changes + + + + + + Fix rare failure to invalidate relation cache init file (Tom Lane) + + + + With just the wrong timing of concurrent activity, a VACUUM + FULL on a system catalog might fail to update the init file + that's used to avoid cache-loading work for new sessions. This would + result in later sessions being unable to access that catalog at all. + This is a very ancient bug, but it's so hard to trigger that no + reproducible case had been seen until recently. + + + + + + Avoid deadlock between incoming sessions and CREATE/DROP + DATABASE (Tom Lane) + + + + A new session starting in a database that is the target of + a DROP DATABASE command, or is the template for + a CREATE DATABASE command, could cause the command to wait + for five seconds and then fail, even if the new session would have + exited before that. + + + + + + + + Release 9.1.17 -- 2.39.5