Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4056efc

Browse files
committed
Create preliminary release notes for upcoming back-branch releases.
1 parentc23240e commit4056efc

File tree

1 file changed

+200
-14
lines changed

1 file changed

+200
-14
lines changed

‎doc/src/sgml/release.sgml

Lines changed: 200 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.376 2005/09/24 22:57:15 momjian Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.377 2005/09/26 21:44:04 tgl Exp $
33

44
Typical markup:
55

@@ -1008,19 +1008,6 @@ pg_[A-Za-z0-9_] <application>
10081008
</para>
10091009
</listitem>
10101010

1011-
<listitem>
1012-
<para>
1013-
Fix <type>CHAR()</> to properly pad spaces to the specified
1014-
length when using a multiple-byte character set (Yoshiyuki
1015-
Asaba)
1016-
</para>
1017-
<para>
1018-
In prior releases, the padding of <type>CHAR()</> was incorrect
1019-
because it only padded to the specified number of bytes without
1020-
considering how many characters were stored.
1021-
</para>
1022-
</listitem>
1023-
10241011
<listitem>
10251012
<para>
10261013
Add support for <command>numeric ^ numeric</> based on
@@ -2009,6 +1996,94 @@ pg_[A-Za-z0-9_] <application>
20091996
</sect2>
20101997
</sect1>
20111998

1999+
<sect1 id="release-8-0-4">
2000+
<title>Release 8.0.4</title>
2001+
2002+
<note>
2003+
<title>Release date</title>
2004+
<simpara>2005-09-??</simpara>
2005+
</note>
2006+
2007+
<para>
2008+
This release contains a variety of fixes from 8.0.3.
2009+
</para>
2010+
2011+
<sect2>
2012+
<title>Migration to version 8.0.4</title>
2013+
2014+
<para>
2015+
A dump/restore is not required for those running 8.0.X. However,
2016+
if you are upgrading from a version earlier than 8.0.3, see the release
2017+
notes for 8.0.3.
2018+
</para>
2019+
</sect2>
2020+
2021+
<sect2>
2022+
<title>Changes</title>
2023+
2024+
<itemizedlist>
2025+
<listitem><para>Fix error that allowed <command>VACUUM</> to remove
2026+
<literal>ctid</> chains too soon, and add more checking in code that follows
2027+
<literal>ctid</> links</para>
2028+
<para>This fixes a long-standing problem that could cause crashes in very rare
2029+
circumstances.</para></listitem>
2030+
<listitem><para>Fix <type>CHAR()</> to properly pad spaces to the specified
2031+
length when using a multiple-byte character set (Yoshiyuki Asaba)</para>
2032+
<para>In prior releases, the padding of <type>CHAR()</> was incorrect
2033+
because it only padded to the specified number of bytes without
2034+
considering how many characters were stored.</para></listitem>
2035+
<listitem><para>Force a checkpoint before committing <command>CREATE
2036+
DATABASE</></para>
2037+
<para>This should fix recent reports of <quote>index is not a btree</>
2038+
failures when a crash occurs shortly after <command>CREATE
2039+
DATABASE</>.</para></listitem>
2040+
<listitem><para>Handle consecutive embedded newlines in <command>COPY</>
2041+
CSV-mode input</para></listitem>
2042+
<listitem><para>Further fixes for <literal>x FULL JOIN y ON true</> corner
2043+
cases</para></listitem>
2044+
<listitem><para>Fix <function>date_trunc(week)</> for dates near year
2045+
end</para></listitem>
2046+
<listitem><para>Fix overenthusiastic optimization of <literal>x IN (SELECT
2047+
DISTINCT ...)</> and related cases</para></listitem>
2048+
<listitem><para>Fix mis-planning of queries with small <literal>LIMIT</>
2049+
values due to poorly thought out <quote>fuzzy</> cost
2050+
comparison</para></listitem>
2051+
<listitem><para>Make <function>array_in</> and <function>array_recv</> more
2052+
paranoid about validating their OID parameter</para></listitem>
2053+
<listitem><para>Fix missing rows in queries like <literal>UPDATE a=... WHERE
2054+
a...</> with GiST index on column <literal>a</></para></listitem>
2055+
<listitem><para>Improve robustness of datetime parsing</para></listitem>
2056+
<listitem><para>Improve checking for partially-written WAL
2057+
pages</para></listitem>
2058+
<listitem><para>Improve robustness of signal handling when SSL is
2059+
enabled</para></listitem>
2060+
<listitem><para>Improve MIPS and M68K spinlock code</para></listitem>
2061+
<listitem><para>Don't try to open more than <literal>max_files_per_process</>
2062+
files during postmaster startup</para></listitem>
2063+
<listitem><para>Various memory leakage fixes</para></listitem>
2064+
<listitem><para>Various portability improvements</para></listitem>
2065+
<listitem><para>Update timezone data files</para></listitem>
2066+
<listitem><para>Improve handling of DLL load failures on Windows</para></listitem>
2067+
<listitem><para>Improve random-number generation on Windows</para></listitem>
2068+
<listitem><para>Make <literal>psql -f filename</> return a nonzero exit code
2069+
when opening the file fails</para></listitem>
2070+
<listitem><para>Change <application>pg_dump</> to handle inherited check
2071+
constraints more reliably</para></listitem>
2072+
<listitem><para>Fix password prompting in <application>pg_restore</> on
2073+
Windows</para></listitem>
2074+
<listitem><para>Fix PL/PgSQL to handle <literal>var := var</> correctly when
2075+
the variable is of pass-by-reference type</para></listitem>
2076+
<listitem><para>Fix PL/Perl <literal>%_SHARED</> so it's actually
2077+
shared</para></listitem>
2078+
<listitem><para>Fix <filename>contrib/pg_autovacuum</> to allow sleep
2079+
intervals over 2000 sec</para></listitem>
2080+
<listitem><para>Update <filename>contrib/tsearch2</> to use current Snowball
2081+
code</para></listitem>
2082+
</itemizedlist>
2083+
2084+
</sect2>
2085+
</sect1>
2086+
20122087
<sect1 id="release-8-0-3">
20132088
<title>Release 8.0.3</title>
20142089

@@ -4695,6 +4770,66 @@ typedefs (Michael)</para></listitem>
46954770
</sect2>
46964771
</sect1>
46974772

4773+
<sect1 id="release-7-4-9">
4774+
<title>Release 7.4.9</title>
4775+
4776+
<note>
4777+
<title>Release date</title>
4778+
<simpara>2005-09-??</simpara>
4779+
</note>
4780+
4781+
<para>
4782+
This release contains a variety of fixes from 7.4.8.
4783+
</para>
4784+
4785+
<sect2>
4786+
<title>Migration to version 7.4.9</title>
4787+
4788+
<para>
4789+
A dump/restore is not required for those running 7.4.X. However,
4790+
if you are upgrading from a version earlier than 7.4.8, see the release
4791+
notes for 7.4.8.
4792+
</para>
4793+
</sect2>
4794+
4795+
<sect2>
4796+
<title>Changes</title>
4797+
4798+
<itemizedlist>
4799+
<listitem><para>Fix error that allowed <command>VACUUM</> to remove
4800+
<literal>ctid</> chains too soon, and add more checking in code that follows
4801+
<literal>ctid</> links</para>
4802+
<para>This fixes a long-standing problem that could cause crashes in very rare
4803+
circumstances.</para></listitem>
4804+
<listitem><para>Fix <type>CHAR()</> to properly pad spaces to the specified
4805+
length when using a multiple-byte character set (Yoshiyuki Asaba)</para>
4806+
<para>In prior releases, the padding of <type>CHAR()</> was incorrect
4807+
because it only padded to the specified number of bytes without
4808+
considering how many characters were stored.</para></listitem>
4809+
<listitem><para>Further fixes for <literal>x FULL JOIN y ON true</> corner
4810+
cases</para></listitem>
4811+
<listitem><para>Make <function>array_in</> and <function>array_recv</> more
4812+
paranoid about validating their OID parameter</para></listitem>
4813+
<listitem><para>Fix missing rows in queries like <literal>UPDATE a=... WHERE
4814+
a...</> with GiST index on column <literal>a</></para></listitem>
4815+
<listitem><para>Improve robustness of datetime parsing</para></listitem>
4816+
<listitem><para>Improve checking for partially-written WAL
4817+
pages</para></listitem>
4818+
<listitem><para>Improve robustness of signal handling when SSL is
4819+
enabled</para></listitem>
4820+
<listitem><para>Don't try to open more than <literal>max_files_per_process</>
4821+
files during postmaster startup</para></listitem>
4822+
<listitem><para>Various memory leakage fixes</para></listitem>
4823+
<listitem><para>Various portability improvements</para></listitem>
4824+
<listitem><para>Fix PL/PgSQL to handle <literal>var := var</> correctly when
4825+
the variable is of pass-by-reference type</para></listitem>
4826+
<listitem><para>Update <filename>contrib/tsearch2</> to use current Snowball
4827+
code</para></listitem>
4828+
</itemizedlist>
4829+
4830+
</sect2>
4831+
</sect1>
4832+
46984833
<sect1 id="release-7-4-8">
46994834
<title>Release 7.4.8</title>
47004835

@@ -7259,6 +7394,57 @@ DROP SCHEMA information_schema CASCADE;
72597394
</sect3>
72607395
</sect2>
72617396
</sect1>
7397+
7398+
<sect1 id="release-7-3-11">
7399+
<title>Release 7.3.11</title>
7400+
7401+
<note>
7402+
<title>Release date</title>
7403+
<simpara>2005-09-??</simpara>
7404+
</note>
7405+
7406+
<para>
7407+
This release contains a variety of fixes from 7.3.10.
7408+
</para>
7409+
7410+
<sect2>
7411+
<title>Migration to version 7.3.11</title>
7412+
7413+
<para>
7414+
A dump/restore is not required for those running 7.3.X. However,
7415+
if you are upgrading from a version earlier than 7.3.10, see the release
7416+
notes for 7.3.10.
7417+
</para>
7418+
</sect2>
7419+
7420+
<sect2>
7421+
<title>Changes</title>
7422+
7423+
<itemizedlist>
7424+
<listitem><para>Fix error that allowed <command>VACUUM</> to remove
7425+
<literal>ctid</> chains too soon, and add more checking in code that follows
7426+
<literal>ctid</> links</para>
7427+
<para>This fixes a long-standing problem that could cause crashes in very rare
7428+
circumstances.</para></listitem>
7429+
<listitem><para>Fix <type>CHAR()</> to properly pad spaces to the specified
7430+
length when using a multiple-byte character set (Yoshiyuki Asaba)</para>
7431+
<para>In prior releases, the padding of <type>CHAR()</> was incorrect
7432+
because it only padded to the specified number of bytes without
7433+
considering how many characters were stored.</para></listitem>
7434+
<listitem><para>Fix missing rows in queries like <literal>UPDATE a=... WHERE
7435+
a...</> with GiST index on column <literal>a</></para></listitem>
7436+
<listitem><para>Improve checking for partially-written WAL
7437+
pages</para></listitem>
7438+
<listitem><para>Improve robustness of signal handling when SSL is
7439+
enabled</para></listitem>
7440+
<listitem><para>Various memory leakage fixes</para></listitem>
7441+
<listitem><para>Various portability improvements</para></listitem>
7442+
<listitem><para>Fix PL/PgSQL to handle <literal>var := var</> correctly when
7443+
the variable is of pass-by-reference type</para></listitem>
7444+
</itemizedlist>
7445+
7446+
</sect2>
7447+
</sect1>
72627448

72637449
<sect1 id="release-7-3-10">
72647450
<title>Release 7.3.10</title>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp