mirror of
https://github.com/postgres/postgres.git
synced 2025-05-28 05:21:27 +03:00
Update release notes for releases 7.3.16, 7.4.14, 8.0.9, and 8.1.5.
This commit is contained in:
parent
b7edacccbe
commit
5c13747ac9
@ -1,4 +1,4 @@
|
||||
<!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.400.2.28 2006/05/23 20:22:02 momjian Exp $ -->
|
||||
<!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.400.2.29 2006/10/09 23:24:06 momjian Exp $ -->
|
||||
<!--
|
||||
|
||||
Typical markup:
|
||||
@ -19,6 +19,69 @@ For new features, add links to the documentation sections.
|
||||
<appendix id="release">
|
||||
<title>Release Notes</title>
|
||||
|
||||
<sect1 id="release-8-1-5">
|
||||
<title>Release 8.1.5</title>
|
||||
|
||||
<note>
|
||||
<title>Release date</title>
|
||||
<simpara>2006-10-??</simpara>
|
||||
</note>
|
||||
|
||||
<para>
|
||||
This release contains a variety of fixes from 8.1.4.
|
||||
</para>
|
||||
|
||||
<sect2>
|
||||
<title>Migration to version 8.1.4</title>
|
||||
|
||||
<para>
|
||||
A dump/restore is not required for those running 8.1.X.
|
||||
However, if you are upgrading from a version earlier than 8.1.2,
|
||||
see the release notes for 8.1.2.
|
||||
</para>
|
||||
|
||||
</sect2>
|
||||
|
||||
<sect2>
|
||||
<title>Changes</title>
|
||||
|
||||
<itemizedlist>
|
||||
|
||||
<listitem><para>Fix for <systemitem class="osname">OS/X</>
|
||||
<application>Bonjour</> on x86 systems (Ashley Clark)</para></listitem>
|
||||
<listitem><para>Fix <acronym>MSVC</>/<productname>Borland C++</>
|
||||
compiles (Hiroshi Saito)</para></listitem>
|
||||
<listitem><para>Minor fixes related to ecpg, /contrib/dblink,
|
||||
/contrib/ltree, /contrib/tsearch2, and <application>psql</></para> </listitem>
|
||||
<listitem><para>Add ability to log protocol-level prepared
|
||||
statements (Tom)</para></listitem>
|
||||
<listitem><para>Disallow non-subselect aggregates in <command>UPDATE</>
|
||||
statements (Tom)</para>
|
||||
<para>The behavior of such an aggregate was unpredictable,
|
||||
so it has been disabled. The SQL standard does not support
|
||||
it either.</para></listitem>
|
||||
<listitem><para>Fix <command>ALTER TABLE ... TYPE</> to recheck
|
||||
<literal>NOT NULL</> for <literal>USING</> clause (Tom)</para></listitem>
|
||||
<listitem><para>Fix rare termination of the statistics collector
|
||||
process on Win32 (Tom)</para></listitem>
|
||||
<listitem><para>Improvements to hash and bitmap joins (Tom)</para></listitem>
|
||||
<listitem><para>Fix <varname>statement_timeout</> to use the proper
|
||||
units of microseconds on Win32 (Bruce)</para>
|
||||
<para>In previous Win32 8.1.X versions, 100-microseconds units were
|
||||
incorrectly used internally.</para></listitem>
|
||||
<listitem><para>Fixes for <systemitem class="osname">AIX</> and
|
||||
<productname>Intel</> compilers (Tom)</para></listitem>
|
||||
<listitem><para>Fix <function>to_timestamp()</> for
|
||||
<literal>PM</>/<literal>AM</> (Bruce)</para></listitem>
|
||||
<listitem><para>Fix <function>string_to_array()</> to handle overlapping
|
||||
matches for the separator string</para> <para>For example,
|
||||
<literal>string_to_array('123xx456xxx789', 'xx')</>.</para></listitem>
|
||||
|
||||
</itemizedlist>
|
||||
|
||||
</sect2>
|
||||
</sect1>
|
||||
|
||||
<sect1 id="release-8-1-4">
|
||||
<title>Release 8.1.4</title>
|
||||
|
||||
@ -2604,6 +2667,55 @@ psql -t -f fixseq.sql db1 | psql -e db1
|
||||
</sect2>
|
||||
</sect1>
|
||||
|
||||
<sect1 id="release-8-0-9">
|
||||
<title>Release 8.0.9</title>
|
||||
|
||||
<note>
|
||||
<title>Release date</title>
|
||||
<simpara>2006-10-??</simpara>
|
||||
</note>
|
||||
|
||||
<para>
|
||||
This release contains a variety of fixes from 8.0.8.
|
||||
</para>
|
||||
|
||||
<sect2>
|
||||
<title>Migration to version 8.0.9</title>
|
||||
|
||||
<para>
|
||||
A dump/restore is not required for those running 8.0.X. However,
|
||||
if you are upgrading from a version earlier than 8.0.6, see the release
|
||||
notes for 8.0.6.
|
||||
</para>
|
||||
|
||||
</sect2>
|
||||
|
||||
<sect2>
|
||||
<title>Changes</title>
|
||||
|
||||
<itemizedlist>
|
||||
|
||||
<listitem><para>Fix crash when referencing <literal>NEW</> row
|
||||
values in rules (Tom)</para></listitem>
|
||||
<listitem><para>Add ability to log protocol-level prepared
|
||||
statements (Tom)</para></listitem>
|
||||
<listitem><para>Fix <command>ALTER TABLE ... TYPE</> to recheck
|
||||
<literal>NOT NULL</> for <literal>USING</> clause (Tom)</para></listitem>
|
||||
<listitem><para>Fix rare termination of the statistics collector
|
||||
process on Win32 (Tom)</para></listitem>
|
||||
<listitem><para>Fixes for <systemitem class="osname">AIX</> and
|
||||
<productname>Intel</> compilers (Tom)</para></listitem>
|
||||
<listitem><para>Fix <function>string_to_array()</> to handle overlapping
|
||||
matches for the separator string</para> <para>For example,
|
||||
<literal>string_to_array('123xx456xxx789', 'xx')</>.</para></listitem>
|
||||
<listitem><para>Minor fixes related to ecpg, /contrib/ltree,
|
||||
and <application>psql</></para> </listitem>
|
||||
|
||||
</itemizedlist>
|
||||
|
||||
</sect2>
|
||||
</sect1>
|
||||
|
||||
<sect1 id="release-8-0-8">
|
||||
<title>Release 8.0.8</title>
|
||||
|
||||
@ -5757,6 +5869,46 @@ typedefs (Michael)</para></listitem>
|
||||
</sect2>
|
||||
</sect1>
|
||||
|
||||
<sect1 id="release-7-4-14">
|
||||
<title>Release 7.4.14</title>
|
||||
|
||||
<note>
|
||||
<title>Release date</title>
|
||||
<simpara>2006-10-??</simpara>
|
||||
</note>
|
||||
|
||||
<para>
|
||||
This release contains a variety of fixes from 7.4.13.
|
||||
</para>
|
||||
|
||||
<sect2>
|
||||
<title>Migration to version 7.4.14</title>
|
||||
|
||||
<para>
|
||||
A dump/restore is not required for those running 7.4.X. However,
|
||||
if you are upgrading from a version earlier than 7.4.11, see the release
|
||||
notes for 7.4.11.
|
||||
</para>
|
||||
|
||||
</sect2>
|
||||
|
||||
<sect2>
|
||||
<title>Changes</title>
|
||||
|
||||
<itemizedlist>
|
||||
|
||||
<listitem><para>Minor fixes related to timezones, ecpg, /contrib/ltree,
|
||||
and <application>psql</></para> </listitem>
|
||||
|
||||
<listitem><para>Fix <function>string_to_array()</> to handle overlapping
|
||||
matches for the separator string</para> <para>For example,
|
||||
<literal>string_to_array('123xx456xxx789', 'xx')</>.</para></listitem>
|
||||
|
||||
</itemizedlist>
|
||||
|
||||
</sect2>
|
||||
</sect1>
|
||||
|
||||
<sect1 id="release-7-4-13">
|
||||
<title>Release 7.4.13</title>
|
||||
|
||||
@ -8671,6 +8823,42 @@ DROP SCHEMA information_schema CASCADE;
|
||||
</sect2>
|
||||
</sect1>
|
||||
|
||||
<sect1 id="release-7-3-16">
|
||||
<title>Release 7.3.16</title>
|
||||
|
||||
<note>
|
||||
<title>Release date</title>
|
||||
<simpara>2006-10-??</simpara>
|
||||
</note>
|
||||
|
||||
<para>
|
||||
This release contains a variety of fixes from 7.3.15.
|
||||
</para>
|
||||
|
||||
<sect2>
|
||||
<title>Migration to version 7.3.16</title>
|
||||
|
||||
<para>
|
||||
A dump/restore is not required for those running 7.3.X. However,
|
||||
if you are upgrading from a version earlier than 7.3.13, see the release
|
||||
notes for 7.3.13.
|
||||
</para>
|
||||
|
||||
</sect2>
|
||||
|
||||
<sect2>
|
||||
<title>Changes</title>
|
||||
|
||||
<itemizedlist>
|
||||
|
||||
<listitem><para>Minor fixes related to timezones, spinlocks, SSL,
|
||||
GiST, /contrib/ltree, and <application>psql</></para> </listitem>
|
||||
|
||||
</itemizedlist>
|
||||
|
||||
</sect2>
|
||||
</sect1>
|
||||
|
||||
<sect1 id="release-7-3-15">
|
||||
<title>Release 7.3.15</title>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user