|
1 | 1 | <!-- doc/src/sgml/release-9.0.sgml -->
|
2 | 2 | <!-- See header comment in release.sgml about typical markup -->
|
3 | 3 |
|
| 4 | + <sect1 id="release-9-0-21"> |
| 5 | + <title>Release 9.0.21</title> |
| 6 | + |
| 7 | + <note> |
| 8 | + <title>Release Date</title> |
| 9 | + <simpara>2015-06-04</simpara> |
| 10 | + </note> |
| 11 | + |
| 12 | + <para> |
| 13 | + This release contains a small number of fixes from 9.0.20. |
| 14 | + For information about new features in the 9.0 major release, see |
| 15 | + <xref linkend="release-9-0">. |
| 16 | + </para> |
| 17 | + |
| 18 | + <para> |
| 19 | + The <productname>PostgreSQL</> community will stop releasing updates |
| 20 | + for the 9.0.X release series in September 2015. |
| 21 | + Users are encouraged to update to a newer release branch soon. |
| 22 | + </para> |
| 23 | + |
| 24 | + <sect2> |
| 25 | + <title>Migration to Version 9.0.21</title> |
| 26 | + |
| 27 | + <para> |
| 28 | + A dump/restore is not required for those running 9.0.X. |
| 29 | + </para> |
| 30 | + |
| 31 | + <para> |
| 32 | + However, if you are upgrading from a version earlier than 9.0.18, |
| 33 | + see <xref linkend="release-9-0-18">. |
| 34 | + </para> |
| 35 | + |
| 36 | + </sect2> |
| 37 | + |
| 38 | + <sect2> |
| 39 | + <title>Changes</title> |
| 40 | + |
| 41 | + <itemizedlist> |
| 42 | + |
| 43 | + <listitem> |
| 44 | + <para> |
| 45 | + Avoid failures while <function>fsync</>'ing data directory during |
| 46 | + crash restart (Abhijit Menon-Sen, Tom Lane) |
| 47 | + </para> |
| 48 | + |
| 49 | + <para> |
| 50 | + In the previous minor releases we added a patch to <function>fsync</> |
| 51 | + everything in the data directory after a crash. Unfortunately its |
| 52 | + response to any error condition was to fail, thereby preventing the |
| 53 | + server from starting up, even when the problem was quite harmless. |
| 54 | + An example is that an unwritable file in the data directory would |
| 55 | + prevent restart on some platforms; but it is common to make SSL |
| 56 | + certificate files unwritable by the server. Revise this behavior so |
| 57 | + that permissions failures are ignored altogether, and other types of |
| 58 | + failures are logged but do not prevent continuing. |
| 59 | + </para> |
| 60 | + </listitem> |
| 61 | + |
| 62 | + <listitem> |
| 63 | + <para> |
| 64 | + Remove <application>configure</>'s check prohibiting linking to a |
| 65 | + threaded <application>libpython</> |
| 66 | + on <systemitem class="osname">OpenBSD</> (Tom Lane) |
| 67 | + </para> |
| 68 | + |
| 69 | + <para> |
| 70 | + The failure this restriction was meant to prevent seems to not be a |
| 71 | + problem anymore on current <systemitem class="osname">OpenBSD</> |
| 72 | + versions. |
| 73 | + </para> |
| 74 | + </listitem> |
| 75 | + |
| 76 | + <listitem> |
| 77 | + <para> |
| 78 | + Allow <application>libpq</> to use TLS protocol versions beyond v1 |
| 79 | + (Noah Misch) |
| 80 | + </para> |
| 81 | + |
| 82 | + <para> |
| 83 | + For a long time, <application>libpq</> was coded so that the only SSL |
| 84 | + protocol it would allow was TLS v1. Now that newer TLS versions are |
| 85 | + becoming popular, allow it to negotiate the highest commonly-supported |
| 86 | + TLS version with the server. (<productname>PostgreSQL</> servers were |
| 87 | + already capable of such negotiation, so no change is needed on the |
| 88 | + server side.) This is a back-patch of a change already released in |
| 89 | + 9.4.0. |
| 90 | + </para> |
| 91 | + </listitem> |
| 92 | + |
| 93 | + </itemizedlist> |
| 94 | + |
| 95 | + </sect2> |
| 96 | + </sect1> |
| 97 | + |
4 | 98 | <sect1 id="release-9-0-20">
|
5 | 99 | <title>Release 9.0.20</title>
|
6 | 100 |
|
|
169 | 263 | </para>
|
170 | 264 | </listitem>
|
171 | 265 |
|
| 266 | + <listitem> |
| 267 | + <para> |
| 268 | + Avoid <quote>cannot GetMultiXactIdMembers() during recovery</> error |
| 269 | + (Álvaro Herrera) |
| 270 | + </para> |
| 271 | + </listitem> |
| 272 | + |
172 | 273 | <listitem>
|
173 | 274 | <para>
|
174 | 275 | Recursively <function>fsync()</> the data directory after a crash
|
|
0 commit comments