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

Commit1608489

Browse files
committed
Final updates of release notes for 8.4.1, 8.3.8, 8.2.14, 8.1.18, 8.0.22,
7.4.26.
1 parent602a9ef commit1608489

File tree

6 files changed

+879
-65
lines changed

6 files changed

+879
-65
lines changed

‎doc/src/sgml/release-7.4.sgml

Lines changed: 94 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-7.4.sgml,v 1.2 2009/08/27 01:27:34 momjian Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-7.4.sgml,v 1.3 2009/09/03 22:13:47 tgl Exp $ -->
22
<!-- See header comment in release.sgml about typical markup -->
33

44
<sect1 id="release-7-4-26">
55
<title>Release 7.4.26</title>
66

77
<note>
88
<title>Release date</title>
9-
<simpara>2009-09-09, AS OF 2009-08-26</simpara>
9+
<simpara>2009-09-09</simpara>
1010
</note>
1111

1212
<para>
@@ -20,6 +20,10 @@
2020

2121
<para>
2222
A dump/restore is not required for those running 7.4.X.
23+
However, if you have any hash indexes on <type>interval</> columns,
24+
you must <command>REINDEX</> them after updating to 7.4.26.
25+
Also, if you are upgrading from a version earlier than 7.4.11,
26+
see the release notes for 7.4.11.
2327
</para>
2428

2529
</sect2>
@@ -31,7 +35,94 @@
3135

3236
<listitem>
3337
<para>
34-
Re-add documentation for configure flag <literal>--no-readline</> (Andrew)
38+
Disallow <command>RESET ROLE</> and <command>RESET SESSION
39+
AUTHORIZATION</> inside security-definer functions (Tom, Heikki)
40+
</para>
41+
42+
<para>
43+
This covers a case that was missed in the previous patch that
44+
disallowed <command>SET ROLE</> and <command>SET SESSION
45+
AUTHORIZATION</> inside security-definer functions.
46+
(See CVE-2007-6600)
47+
</para>
48+
</listitem>
49+
50+
<listitem>
51+
<para>
52+
Fix handling of sub-SELECTs appearing in the arguments of
53+
an outer-level aggregate function (Tom)
54+
</para>
55+
</listitem>
56+
57+
<listitem>
58+
<para>
59+
Fix hash calculation for data type <type>interval</> (Tom)
60+
</para>
61+
62+
<para>
63+
This corrects wrong results for hash joins on interval values.
64+
It also changes the contents of hash indexes on interval columns.
65+
If you have any such indexes, you must <command>REINDEX</> them
66+
after updating.
67+
</para>
68+
</listitem>
69+
70+
<listitem>
71+
<para>
72+
Fix overflow for <literal>INTERVAL '<replaceable>x</> ms'</literal>
73+
when <replaceable>x</> is more than 2 million and integer
74+
datetimes are in use (Alex Hunsaker)
75+
</para>
76+
</listitem>
77+
78+
<listitem>
79+
<para>
80+
Fix calculation of distance between a point and a line segment (Tom)
81+
</para>
82+
83+
<para>
84+
This led to incorrect results from a number of geometric operators.
85+
</para>
86+
</listitem>
87+
88+
<listitem>
89+
<para>
90+
Fix <type>money</> data type to work in locales where currency
91+
amounts have no fractional digits, e.g. Japan (Itagaki Takahiro)
92+
</para>
93+
</listitem>
94+
95+
<listitem>
96+
<para>
97+
Properly round datetime input like
98+
<literal>00:12:57.9999999999999999999999999999</> (Tom)
99+
</para>
100+
</listitem>
101+
102+
<listitem>
103+
<para>
104+
Fix poor choice of page split point in GiST R-tree operator classes
105+
(Teodor)
106+
</para>
107+
</listitem>
108+
109+
<listitem>
110+
<para>
111+
Fix portability issues in plperl initialization (Andrew Dunstan)
112+
</para>
113+
</listitem>
114+
115+
<listitem>
116+
<para>
117+
Improve robustness of <application>libpq</>'s code to recover
118+
from errors during <command>COPY FROM STDIN</> (Tom)
119+
</para>
120+
</listitem>
121+
122+
<listitem>
123+
<para>
124+
Avoid including conflicting readline and editline header files
125+
when both libraries are installed (Zdenek Kotala)
35126
</para>
36127
</listitem>
37128

‎doc/src/sgml/release-8.0.sgml

Lines changed: 111 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-8.0.sgml,v 1.2 2009/08/27 01:27:34 momjian Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-8.0.sgml,v 1.3 2009/09/03 22:13:47 tgl Exp $ -->
22
<!-- See header comment in release.sgml about typical markup -->
33

44
<sect1 id="release-8-0-22">
55
<title>Release 8.0.22</title>
66

77
<note>
88
<title>Release date</title>
9-
<simpara>2009-09-09, AS OF 2009-08-26</simpara>
9+
<simpara>2009-09-09</simpara>
1010
</note>
1111

1212
<para>
@@ -20,6 +20,10 @@
2020

2121
<para>
2222
A dump/restore is not required for those running 8.0.X.
23+
However, if you have any hash indexes on <type>interval</> columns,
24+
you must <command>REINDEX</> them after updating to 8.0.22.
25+
Also, if you are upgrading from a version earlier than 8.0.6,
26+
see the release notes for 8.0.6.
2327
</para>
2428

2529
</sect2>
@@ -29,6 +33,40 @@
2933

3034
<itemizedlist>
3135

36+
<listitem>
37+
<para>
38+
Disallow <command>RESET ROLE</> and <command>RESET SESSION
39+
AUTHORIZATION</> inside security-definer functions (Tom, Heikki)
40+
</para>
41+
42+
<para>
43+
This covers a case that was missed in the previous patch that
44+
disallowed <command>SET ROLE</> and <command>SET SESSION
45+
AUTHORIZATION</> inside security-definer functions.
46+
(See CVE-2007-6600)
47+
</para>
48+
</listitem>
49+
50+
<listitem>
51+
<para>
52+
Fix handling of sub-SELECTs appearing in the arguments of
53+
an outer-level aggregate function (Tom)
54+
</para>
55+
</listitem>
56+
57+
<listitem>
58+
<para>
59+
Fix hash calculation for data type <type>interval</> (Tom)
60+
</para>
61+
62+
<para>
63+
This corrects wrong results for hash joins on interval values.
64+
It also changes the contents of hash indexes on interval columns.
65+
If you have any such indexes, you must <command>REINDEX</> them
66+
after updating.
67+
</para>
68+
</listitem>
69+
3270
<listitem>
3371
<para>
3472
Treat <function>to_char(..., 'TH')</> as an uppercase ordinal
@@ -42,14 +80,83 @@
4280

4381
<listitem>
4482
<para>
45-
Fix <filename>/contrib/xml2</> <function>xslt_process()</> to
83+
Fix overflow for <literal>INTERVAL '<replaceable>x</> ms'</literal>
84+
when <replaceable>x</> is more than 2 million and integer
85+
datetimes are in use (Alex Hunsaker)
86+
</para>
87+
</listitem>
88+
89+
<listitem>
90+
<para>
91+
Fix calculation of distance between a point and a line segment (Tom)
92+
</para>
93+
94+
<para>
95+
This led to incorrect results from a number of geometric operators.
96+
</para>
97+
</listitem>
98+
99+
<listitem>
100+
<para>
101+
Fix <type>money</> data type to work in locales where currency
102+
amounts have no fractional digits, e.g. Japan (Itagaki Takahiro)
103+
</para>
104+
</listitem>
105+
106+
<listitem>
107+
<para>
108+
Properly round datetime input like
109+
<literal>00:12:57.9999999999999999999999999999</> (Tom)
110+
</para>
111+
</listitem>
112+
113+
<listitem>
114+
<para>
115+
Fix poor choice of page split point in GiST R-tree operator classes
116+
(Teodor)
117+
</para>
118+
</listitem>
119+
120+
<listitem>
121+
<para>
122+
Fix portability issues in plperl initialization (Andrew Dunstan)
123+
</para>
124+
</listitem>
125+
126+
<listitem>
127+
<para>
128+
Fix <application>pg_ctl</> to not go into an infinite loop if
129+
<filename>postgresql.conf</> is empty (Jeff Davis)
130+
</para>
131+
</listitem>
132+
133+
<listitem>
134+
<para>
135+
Fix <filename>contrib/xml2</>'s <function>xslt_process()</> to
46136
properly handle the maximum number of parameters (twenty) (Tom)
47137
</para>
48138
</listitem>
49139

50140
<listitem>
51141
<para>
52-
Re-add documentation for configure flag <literal>--no-readline</> (Andrew)
142+
Improve robustness of <application>libpq</>'s code to recover
143+
from errors during <command>COPY FROM STDIN</> (Tom)
144+
</para>
145+
</listitem>
146+
147+
<listitem>
148+
<para>
149+
Avoid including conflicting readline and editline header files
150+
when both libraries are installed (Zdenek Kotala)
151+
</para>
152+
</listitem>
153+
154+
<listitem>
155+
<para>
156+
Update time zone data files to <application>tzdata</> release 2009l
157+
for DST law changes in Bangladesh, Egypt, Jordan, Pakistan,
158+
Argentina/San_Luis, Cuba, Jordan (historical correction only),
159+
Mauritius, Morocco, Palestine, Syria, Tunisia.
53160
</para>
54161
</listitem>
55162

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp