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

Commit4e1712e

Browse files
committed
Update release notes for 8.1.X, 8.0.X, 7.4.X, and 7.3.X.
1 parent0dc4387 commit4e1712e

File tree

1 file changed

+246
-1
lines changed

1 file changed

+246
-1
lines changed

‎doc/src/sgml/release.sgml

Lines changed: 246 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.412 2005/12/09 20:40:12 tgl Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.413 2006/01/05 05:15:50 momjian Exp $
33

44
Typical markup:
55

@@ -19,6 +19,85 @@ For new features, add links to the documentation sections.
1919
<appendix id="release">
2020
<title>Release Notes</title>
2121

22+
<sect1 id="release-8-1-2">
23+
<title>Release 8.1.2</title>
24+
25+
<note>
26+
<title>Release date</title>
27+
<simpara>2006-01-09</simpara>
28+
</note>
29+
30+
<para>
31+
This release contains a variety of fixes from 8.1.1.
32+
</para>
33+
34+
<sect2>
35+
<title>Migration to version 8.1.2</title>
36+
37+
<para>
38+
A dump/restore is not required for those running 8.1.X.
39+
</para>
40+
</sect2>
41+
42+
<sect2>
43+
<title>Changes</title>
44+
45+
<itemizedlist>
46+
47+
<listitem><para>Fix for protocol-level describe portal statements issued
48+
outside a transaction (Tom)</para></listitem>
49+
50+
<listitem><para>Fix character set sorting for locales that consider
51+
different character combinations to have the same sorting, e.g.
52+
Hungarian. (Tom) </para><para>This might require <command>REINDEX</> in
53+
those locales to fix existing indexes.</para></listitem>
54+
55+
<listitem><para>Allow more flexible relocation of installation
56+
directories (Tom)</para> <para>Previous releases supported relocation
57+
only if all directories were the same except the last
58+
componient.</para></listitem>
59+
60+
<listitem><para>Prevent crashed caused by the use of
61+
<literal>ISO-8859-5</> and <literal>ISO-8859-9</> encodings
62+
(Tatsuo)</para></listitem>
63+
64+
<listitem><para>Fix long standing Asian multibyte charsets bug (Tatsuo)
65+
</para></listitem>
66+
67+
<listitem><para>Fix bug where COPY CSV mode considered any
68+
<literal>\.</> to terminate the copy data</para> <para>The new code
69+
requires <literal>\.</> to appear alone on a line, as previously
70+
documented.</para></listitem>
71+
72+
<listitem><para>Have COPY output a literal data value of <literal>\.</>
73+
in double-quotes to prevent it from being interpreted as the end-of-data
74+
marker (Bruce)</para></listitem>
75+
76+
<listitem><para>Various fixes for queries returning <literal>RECORD</>s
77+
(Tom) </para></listitem>
78+
79+
<listitem><para>Fix processing of <filename>postgresql.conf</> so a
80+
final line with no newline is processed properly (Tom)
81+
</para></listitem>
82+
83+
<listitem><para>Fix bug in <filename>/contrib/pgcrypto</> Openwall
84+
gen_salt processing (Marko Kreen></para></listitem>
85+
86+
<listitem><para>Fix autovacuum crash when processing expression indexes
87+
</para></listitem>
88+
89+
<listitem><para>Fix <filename>/contrib/dblink</> to throw an error
90+
when the number of columns specified is different from those returned
91+
by the query (Joe)</para></listitem>
92+
93+
<listitem><para>Set <literal>LC_XXX</> variables to prevent problems
94+
with <application>plperl</> processing (Tom)</para></listitem>
95+
96+
</itemizedlist>
97+
98+
</sect2>
99+
</sect1>
100+
22101
<sect1 id="release-8-1-1">
23102
<title>Release 8.1.1</title>
24103

@@ -2231,6 +2310,67 @@ psql -t -f fixseq.sql db1 | psql -e db1
22312310
</sect2>
22322311
</sect1>
22332312

2313+
<sect1 id="release-8-0-6">
2314+
<title>Release 8.0.6</title>
2315+
2316+
<note>
2317+
<title>Release date</title>
2318+
<simpara>2006-01-09</simpara>
2319+
</note>
2320+
2321+
<para>
2322+
This release contains a variety of fixes from 8.0.5.
2323+
</para>
2324+
2325+
<sect2>
2326+
<title>Migration to version 8.0.6</title>
2327+
2328+
<para>
2329+
A dump/restore is not required for those running 8.0.X. However,
2330+
if you are upgrading from a version earlier than 8.0.3, see the release
2331+
notes for 8.0.3.
2332+
</para>
2333+
</sect2>
2334+
2335+
<sect2>
2336+
<title>Changes</title>
2337+
2338+
<itemizedlist>
2339+
2340+
<listitem><para>Fix for protocol-level describe portal statements issued
2341+
outside a transaction (Tom)</para></listitem>
2342+
2343+
<listitem><para>Fix character set sorting for locales that consider
2344+
different character combinations to have the same sorting, e.g.
2345+
Hungarian. (Tom) </para><para>This might require <command>REINDEX</> in
2346+
those locales to fix existing indexes.</para></listitem>
2347+
2348+
<listitem><para>Allow more flexible relocation of installation
2349+
directories (Tom)</para> <para>Previous releases supported relocation
2350+
only if all directories were the same except the last
2351+
componient.</para></listitem>
2352+
2353+
<listitem><para>Fix long standing Asian multibyte charsets bug (Tatsuo)
2354+
</para></listitem>
2355+
2356+
<listitem><para>Various fixes for queries returning <literal>RECORD</>s
2357+
(Tom) </para></listitem>
2358+
2359+
<listitem><para>Fix bug in <filename>/contrib/pgcrypto</> Openwall
2360+
gen_salt processing (Marko Kreen></para></listitem>
2361+
2362+
<listitem><para>Fix <filename>/contrib/dblink</> to throw an error
2363+
when the number of columns specified is different from those returned
2364+
by the query (Joe)</para></listitem>
2365+
2366+
<listitem><para>Set <literal>LC_XXX</> variables to prevent problems
2367+
with <application>plperl</> processing (Tom)</para></listitem>
2368+
2369+
</itemizedlist>
2370+
2371+
</sect2>
2372+
</sect1>
2373+
22342374
<sect1 id="release-8-0-5">
22352375
<title>Release 8.0.5</title>
22362376

@@ -5092,6 +5232,59 @@ typedefs (Michael)</para></listitem>
50925232
</sect2>
50935233
</sect1>
50945234

5235+
<sect1 id="release-7-4-11">
5236+
<title>Release 7.4.11</title>
5237+
5238+
<note>
5239+
<title>Release date</title>
5240+
<simpara>2006-01-09</simpara>
5241+
</note>
5242+
5243+
<para>
5244+
This release contains a variety of fixes from 7.4.10.
5245+
</para>
5246+
5247+
<sect2>
5248+
<title>Migration to version 7.4.11</title>
5249+
5250+
<para>
5251+
A dump/restore is not required for those running 7.4.X. However,
5252+
if you are upgrading from a version earlier than 7.4.8, see the release
5253+
notes for 7.4.8.
5254+
</para>
5255+
</sect2>
5256+
5257+
<sect2>
5258+
<title>Changes</title>
5259+
5260+
<itemizedlist>
5261+
5262+
<listitem><para>Fix for protocol-level describe portal statements issued
5263+
outside a transaction (Tom)</para></listitem>
5264+
5265+
<listitem><para>Fix character set sorting for locales that consider
5266+
different character combinations to have the same sorting, e.g.
5267+
Hungarian. (Tom) </para><para>This might require <command>REINDEX</> in
5268+
those locales to fix existing indexes.</para></listitem>
5269+
5270+
<listitem><para>Fix long standing Asian multibyte charsets bug (Tatsuo)
5271+
</para></listitem>
5272+
5273+
<listitem><para>Fix bug in <filename>/contrib/pgcrypto</> Openwall
5274+
gen_salt processing (Marko Kreen></para></listitem>
5275+
5276+
<listitem><para>Fix <filename>/contrib/dblink</> to throw an error
5277+
when the number of columns specified is different from those returned
5278+
by the query (Joe)</para></listitem>
5279+
5280+
<listitem><para>Set <literal>LC_XXX</> variables to prevent problems
5281+
with <application>plperl</> processing (Tom)</para></listitem>
5282+
5283+
</itemizedlist>
5284+
5285+
</sect2>
5286+
</sect1>
5287+
50955288
<sect1 id="release-7-4-10">
50965289
<title>Release 7.4.10</title>
50975290

@@ -7775,6 +7968,56 @@ DROP SCHEMA information_schema CASCADE;
77757968
</sect2>
77767969
</sect1>
77777970

7971+
<sect1 id="release-7-3-13">
7972+
<title>Release 7.3.13</title>
7973+
7974+
<note>
7975+
<title>Release date</title>
7976+
<simpara>2006-01-09</simpara>
7977+
</note>
7978+
7979+
<para>
7980+
This release contains a variety of fixes from 7.3.12.
7981+
</para>
7982+
7983+
<sect2>
7984+
<title>Migration to version 7.3.13</title>
7985+
7986+
<para>
7987+
A dump/restore is not required for those running 7.3.X. However,
7988+
if you are upgrading from a version earlier than 7.3.10, see the release
7989+
notes for 7.3.10.
7990+
</para>
7991+
</sect2>
7992+
7993+
<sect2>
7994+
<title>Changes</title>
7995+
7996+
<itemizedlist>
7997+
7998+
<listitem><para>Fix character set sorting for locales that consider
7999+
different character combinations to have the same sorting, e.g.
8000+
Hungarian. (Tom) </para><para>This might require <command>REINDEX</> in
8001+
those locales to fix existing indexes.</para></listitem>
8002+
8003+
<listitem><para>Fix long standing Asian multibyte charsets bug (Tatsuo)
8004+
</para></listitem>
8005+
8006+
<listitem><para>Fix bug in <filename>/contrib/pgcrypto</> Openwall
8007+
gen_salt processing (Marko Kreen></para></listitem>
8008+
8009+
<listitem><para>Fix <filename>/contrib/dblink</> to throw an error
8010+
when the number of columns specified is different from those returned
8011+
by the query (Joe)</para></listitem>
8012+
8013+
<listitem><para>Set <literal>LC_XXX</> variables to prevent problems
8014+
with <application>plperl</> processing (Tom)</para></listitem>
8015+
8016+
</itemizedlist>
8017+
8018+
</sect2>
8019+
</sect1>
8020+
77788021
<sect1 id="release-7-3-12">
77798022
<title>Release 7.3.12</title>
77808023

@@ -7816,6 +8059,8 @@ only supported with merge-joinable join conditions</>.</para></listitem>
78168059

78178060
<listitem><para>Prevent core dump in <application>pg_autovacuum</> when a
78188061
table has been dropped</para></listitem>
8062+
</itemizedlist>
8063+
78198064
</itemizedlist>
78208065

78218066
</sect2>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp