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

Commit03d7b06

Browse files
committed
Update release notes for releases 8.4.2, 8.3.9, 8.2.15, 8.1.19, 8.0.23,
7.4.27.
1 parent62aba76 commit03d7b06

File tree

6 files changed

+1563
-6
lines changed

6 files changed

+1563
-6
lines changed

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

Lines changed: 121 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,126 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-7.4.sgml,v 1.3 2009/09/03 22:13:47 tgl Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-7.4.sgml,v 1.4 2009/12/10 00:31:14 tgl Exp $ -->
22
<!-- See header comment in release.sgml about typical markup -->
33

4+
<sect1 id="release-7-4-27">
5+
<title>Release 7.4.27</title>
6+
7+
<note>
8+
<title>Release date</title>
9+
<simpara>2009-12-14</simpara>
10+
</note>
11+
12+
<para>
13+
This release contains a variety of fixes from 7.4.26.
14+
For information about new features in the 7.4 major release, see
15+
<xref linkend="release-7-4">.
16+
</para>
17+
18+
<sect2>
19+
<title>Migration to Version 7.4.27</title>
20+
21+
<para>
22+
A dump/restore is not required for those running 7.4.X.
23+
However, if you are upgrading from a version earlier than 7.4.26,
24+
see the release notes for 7.4.26.
25+
</para>
26+
27+
</sect2>
28+
29+
<sect2>
30+
<title>Changes</title>
31+
32+
<itemizedlist>
33+
34+
<listitem>
35+
<para>
36+
Protect against indirect security threats caused by index functions
37+
changing session-local state (Gurjeet Singh, Tom)
38+
</para>
39+
40+
<para>
41+
This change prevents allegedly-immutable index functions from possibly
42+
subverting a superuser's session (CVE-2009-4136).
43+
</para>
44+
</listitem>
45+
46+
<listitem>
47+
<para>
48+
Reject SSL certificates containing an embedded null byte in the common
49+
name (CN) field (Magnus)
50+
</para>
51+
52+
<para>
53+
This prevents unintended matching of a certificate to a server or client
54+
name during SSL validation (CVE-2009-4034).
55+
</para>
56+
</listitem>
57+
58+
<listitem>
59+
<para>
60+
Fix possible crash during backend-startup-time cache initialization (Tom)
61+
</para>
62+
</listitem>
63+
64+
<listitem>
65+
<para>
66+
Prevent signals from interrupting <literal>VACUUM</> at unsafe times
67+
(Alvaro)
68+
</para>
69+
70+
<para>
71+
This fix prevents a PANIC if a <literal>VACUUM FULL</> is cancelled
72+
after it's already committed its tuple movements, as well as transient
73+
errors if a plain <literal>VACUUM</> is interrupted after having
74+
truncated the table.
75+
</para>
76+
</listitem>
77+
78+
<listitem>
79+
<para>
80+
Fix possible crash due to integer overflow in hash table size
81+
calculation (Tom)
82+
</para>
83+
84+
<para>
85+
This could occur with extremely large planner estimates for the size of
86+
a hashjoin's result.
87+
</para>
88+
</listitem>
89+
90+
<listitem>
91+
<para>
92+
Fix very rare crash in <type>inet</>/<type>cidr</> comparisons (Chris
93+
Mikkelson)
94+
</para>
95+
</listitem>
96+
97+
<listitem>
98+
<para>
99+
Fix PAM password processing to be more robust (Tom)
100+
</para>
101+
102+
<para>
103+
The previous code is known to fail with the combination of the Linux
104+
<literal>pam_krb5</> PAM module with Microsoft Active Directory as the
105+
domain controller. It might have problems elsewhere too, since it was
106+
making unjustified assumptions about what arguments the PAM stack would
107+
pass to it.
108+
</para>
109+
</listitem>
110+
111+
<listitem>
112+
<para>
113+
Make the postmaster ignore any <literal>application_name</> parameter in
114+
connection request packets, to improve compatibility with future libpq
115+
versions (Tom)
116+
</para>
117+
</listitem>
118+
119+
</itemizedlist>
120+
121+
</sect2>
122+
</sect1>
123+
4124
<sect1 id="release-7-4-26">
5125
<title>Release 7.4.26</title>
6126

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

Lines changed: 156 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,161 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-8.0.sgml,v 1.3 2009/09/03 22:13:47 tgl Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-8.0.sgml,v 1.4 2009/12/10 00:31:14 tgl Exp $ -->
22
<!-- See header comment in release.sgml about typical markup -->
33

4+
<sect1 id="release-8-0-23">
5+
<title>Release 8.0.23</title>
6+
7+
<note>
8+
<title>Release date</title>
9+
<simpara>2009-12-14</simpara>
10+
</note>
11+
12+
<para>
13+
This release contains a variety of fixes from 8.0.22.
14+
For information about new features in the 8.0 major release, see
15+
<xref linkend="release-8-0">.
16+
</para>
17+
18+
<sect2>
19+
<title>Migration to Version 8.0.23</title>
20+
21+
<para>
22+
A dump/restore is not required for those running 8.0.X.
23+
However, if you are upgrading from a version earlier than 8.0.22,
24+
see the release notes for 8.0.22.
25+
</para>
26+
27+
</sect2>
28+
29+
<sect2>
30+
<title>Changes</title>
31+
32+
<itemizedlist>
33+
34+
<listitem>
35+
<para>
36+
Protect against indirect security threats caused by index functions
37+
changing session-local state (Gurjeet Singh, Tom)
38+
</para>
39+
40+
<para>
41+
This change prevents allegedly-immutable index functions from possibly
42+
subverting a superuser's session (CVE-2009-4136).
43+
</para>
44+
</listitem>
45+
46+
<listitem>
47+
<para>
48+
Reject SSL certificates containing an embedded null byte in the common
49+
name (CN) field (Magnus)
50+
</para>
51+
52+
<para>
53+
This prevents unintended matching of a certificate to a server or client
54+
name during SSL validation (CVE-2009-4034).
55+
</para>
56+
</listitem>
57+
58+
<listitem>
59+
<para>
60+
Fix possible crash during backend-startup-time cache initialization (Tom)
61+
</para>
62+
</listitem>
63+
64+
<listitem>
65+
<para>
66+
Prevent signals from interrupting <literal>VACUUM</> at unsafe times
67+
(Alvaro)
68+
</para>
69+
70+
<para>
71+
This fix prevents a PANIC if a <literal>VACUUM FULL</> is cancelled
72+
after it's already committed its tuple movements, as well as transient
73+
errors if a plain <literal>VACUUM</> is interrupted after having
74+
truncated the table.
75+
</para>
76+
</listitem>
77+
78+
<listitem>
79+
<para>
80+
Fix possible crash due to integer overflow in hash table size
81+
calculation (Tom)
82+
</para>
83+
84+
<para>
85+
This could occur with extremely large planner estimates for the size of
86+
a hashjoin's result.
87+
</para>
88+
</listitem>
89+
90+
<listitem>
91+
<para>
92+
Fix very rare crash in <type>inet</>/<type>cidr</> comparisons (Chris
93+
Mikkelson)
94+
</para>
95+
</listitem>
96+
97+
<listitem>
98+
<para>
99+
Fix premature drop of temporary files used for a cursor that is accessed
100+
within a subtransaction (Heikki)
101+
</para>
102+
</listitem>
103+
104+
<listitem>
105+
<para>
106+
Fix PAM password processing to be more robust (Tom)
107+
</para>
108+
109+
<para>
110+
The previous code is known to fail with the combination of the Linux
111+
<literal>pam_krb5</> PAM module with Microsoft Active Directory as the
112+
domain controller. It might have problems elsewhere too, since it was
113+
making unjustified assumptions about what arguments the PAM stack would
114+
pass to it.
115+
</para>
116+
</listitem>
117+
118+
<listitem>
119+
<para>
120+
Fix rare crash in exception processing in PL/Python (Peter)
121+
</para>
122+
</listitem>
123+
124+
<listitem>
125+
<para>
126+
Ensure <application>psql</>'s flex module is compiled with the correct
127+
system header definitions (Tom)
128+
</para>
129+
130+
<para>
131+
This fixes build failures on platforms where
132+
<literal>--enable-largefile</> causes incompatible changes in the
133+
generated code.
134+
</para>
135+
</listitem>
136+
137+
<listitem>
138+
<para>
139+
Make the postmaster ignore any <literal>application_name</> parameter in
140+
connection request packets, to improve compatibility with future libpq
141+
versions (Tom)
142+
</para>
143+
</listitem>
144+
145+
<listitem>
146+
<para>
147+
Update time zone data files to <application>tzdata</> release 2009s
148+
for DST law changes in Antarctica, Argentina, Bangladesh, Fiji,
149+
Novokuznetsk, Pakistan, Palestine, Samoa, Syria; also historical
150+
corrections for Hong Kong.
151+
</para>
152+
</listitem>
153+
154+
</itemizedlist>
155+
156+
</sect2>
157+
</sect1>
158+
4159
<sect1 id="release-8-0-22">
5160
<title>Release 8.0.22</title>
6161

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp