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

Commitfc61da7

Browse files
committed
Release notes for 9.3.4, 9.2.8, 9.1.13, 9.0.17, 8.4.21.
1 parentc370125 commitfc61da7

File tree

5 files changed

+1105
-0
lines changed

5 files changed

+1105
-0
lines changed

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

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,128 @@
11
<!-- doc/src/sgml/release-8.4.sgml -->
22
<!-- See header comment in release.sgml about typical markup -->
33

4+
<sect1 id="release-8-4-21">
5+
<title>Release 8.4.21</title>
6+
7+
<note>
8+
<title>Release Date</title>
9+
<simpara>2014-03-20</simpara>
10+
</note>
11+
12+
<para>
13+
This release contains a variety of fixes from 8.4.20.
14+
For information about new features in the 8.4 major release, see
15+
<xref linkend="release-8-4">.
16+
</para>
17+
18+
<para>
19+
The <productname>PostgreSQL</> community will stop releasing updates
20+
for the 8.4.X release series in July 2014.
21+
Users are encouraged to update to a newer release branch soon.
22+
</para>
23+
24+
<sect2>
25+
<title>Migration to Version 8.4.21</title>
26+
27+
<para>
28+
A dump/restore is not required for those running 8.4.X.
29+
</para>
30+
31+
<para>
32+
However, if you are upgrading from a version earlier than 8.4.19,
33+
see <xref linkend="release-8-4-19">.
34+
</para>
35+
36+
</sect2>
37+
38+
<sect2>
39+
<title>Changes</title>
40+
41+
<itemizedlist>
42+
43+
<listitem>
44+
<para>
45+
Restore GIN metapages unconditionally to avoid torn-page risk
46+
(Heikki Linnakangas)
47+
</para>
48+
49+
<para>
50+
Although this oversight could theoretically result in a corrupted
51+
index, it is unlikely to have caused any problems in practice, since
52+
the active part of a GIN metapage is smaller than a standard 512-byte
53+
disk sector.
54+
</para>
55+
</listitem>
56+
57+
<listitem>
58+
<para>
59+
Allow regular-expression operators to be terminated early by query
60+
cancel requests (Tom Lane)
61+
</para>
62+
63+
<para>
64+
This prevents scenarios wherein a pathological regular expression
65+
could lock up a server process uninterruptably for a long time.
66+
</para>
67+
</listitem>
68+
69+
<listitem>
70+
<para>
71+
Remove incorrect code that tried to allow <literal>OVERLAPS</> with
72+
single-element row arguments (Joshua Yanovski)
73+
</para>
74+
75+
<para>
76+
This code never worked correctly, and since the case is neither
77+
specified by the SQL standard nor documented, it seemed better to
78+
remove it than fix it.
79+
</para>
80+
</listitem>
81+
82+
<listitem>
83+
<para>
84+
Avoid getting more than <literal>AccessShareLock</> when de-parsing a
85+
rule or view (Dean Rasheed)
86+
</para>
87+
88+
<para>
89+
This oversight resulted in <application>pg_dump</> unexpectedly
90+
acquiring <literal>RowExclusiveLock</> locks on tables mentioned as
91+
the targets of <literal>INSERT</>/<literal>UPDATE</>/<literal>DELETE</>
92+
commands in rules. While usually harmless, that could interfere with
93+
concurrent transactions that tried to acquire, for example,
94+
<literal>ShareLock</> on those tables.
95+
</para>
96+
</listitem>
97+
98+
<listitem>
99+
<para>
100+
Prevent interrupts while reporting non-<literal>ERROR</> messages
101+
(Tom Lane)
102+
</para>
103+
104+
<para>
105+
This guards against rare server-process freezeups due to recursive
106+
entry to <function>syslog()</>, and perhaps other related problems.
107+
</para>
108+
</listitem>
109+
110+
<listitem>
111+
<para>
112+
Update time zone data files to <application>tzdata</> release 2014a
113+
for DST law changes in Fiji and Turkey, plus historical changes in
114+
Israel and Ukraine.
115+
</para>
116+
117+
<para>
118+
</para>
119+
</listitem>
120+
121+
</itemizedlist>
122+
123+
</sect2>
124+
</sect1>
125+
4126
<sect1 id="release-8-4-20">
5127
<title>Release 8.4.20</title>
6128

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

Lines changed: 156 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,162 @@
11
<!-- doc/src/sgml/release-9.0.sgml -->
22
<!-- See header comment in release.sgml about typical markup -->
33

4+
<sect1 id="release-9-0-17">
5+
<title>Release 9.0.17</title>
6+
7+
<note>
8+
<title>Release Date</title>
9+
<simpara>2014-03-20</simpara>
10+
</note>
11+
12+
<para>
13+
This release contains a variety of fixes from 9.0.16.
14+
For information about new features in the 9.0 major release, see
15+
<xref linkend="release-9-0">.
16+
</para>
17+
18+
<sect2>
19+
<title>Migration to Version 9.0.17</title>
20+
21+
<para>
22+
A dump/restore is not required for those running 9.0.X.
23+
</para>
24+
25+
<para>
26+
However, if you are upgrading from a version earlier than 9.0.15,
27+
see <xref linkend="release-9-0-15">.
28+
</para>
29+
30+
</sect2>
31+
32+
<sect2>
33+
<title>Changes</title>
34+
35+
<itemizedlist>
36+
37+
<listitem>
38+
<para>
39+
Restore GIN metapages unconditionally to avoid torn-page risk
40+
(Heikki Linnakangas)
41+
</para>
42+
43+
<para>
44+
Although this oversight could theoretically result in a corrupted
45+
index, it is unlikely to have caused any problems in practice, since
46+
the active part of a GIN metapage is smaller than a standard 512-byte
47+
disk sector.
48+
</para>
49+
</listitem>
50+
51+
<listitem>
52+
<para>
53+
Avoid race condition in checking transaction commit status during
54+
receipt of a <command>NOTIFY</> message (Marko Tiikkaja)
55+
</para>
56+
57+
<para>
58+
This prevents a scenario wherein a sufficiently fast client might
59+
respond to a notification before database updates made by the
60+
notifier have become visible to the recipient.
61+
</para>
62+
</listitem>
63+
64+
<listitem>
65+
<para>
66+
Allow regular-expression operators to be terminated early by query
67+
cancel requests (Tom Lane)
68+
</para>
69+
70+
<para>
71+
This prevents scenarios wherein a pathological regular expression
72+
could lock up a server process uninterruptably for a long time.
73+
</para>
74+
</listitem>
75+
76+
<listitem>
77+
<para>
78+
Remove incorrect code that tried to allow <literal>OVERLAPS</> with
79+
single-element row arguments (Joshua Yanovski)
80+
</para>
81+
82+
<para>
83+
This code never worked correctly, and since the case is neither
84+
specified by the SQL standard nor documented, it seemed better to
85+
remove it than fix it.
86+
</para>
87+
</listitem>
88+
89+
<listitem>
90+
<para>
91+
Avoid getting more than <literal>AccessShareLock</> when de-parsing a
92+
rule or view (Dean Rasheed)
93+
</para>
94+
95+
<para>
96+
This oversight resulted in <application>pg_dump</> unexpectedly
97+
acquiring <literal>RowExclusiveLock</> locks on tables mentioned as
98+
the targets of <literal>INSERT</>/<literal>UPDATE</>/<literal>DELETE</>
99+
commands in rules. While usually harmless, that could interfere with
100+
concurrent transactions that tried to acquire, for example,
101+
<literal>ShareLock</> on those tables.
102+
</para>
103+
</listitem>
104+
105+
<listitem>
106+
<para>
107+
Improve performance of index endpoint probes during planning (Tom Lane)
108+
</para>
109+
110+
<para>
111+
This change fixes a significant performance problem that occurred
112+
when there were many not-yet-committed rows at the end of the index,
113+
which is a common situation for indexes on sequentially-assigned
114+
values such as timestamps or sequence-generated identifiers.
115+
</para>
116+
</listitem>
117+
118+
<listitem>
119+
<para>
120+
Fix test to see if hot standby connections can be allowed immediately
121+
after a crash (Heikki Linnakangas)
122+
</para>
123+
</listitem>
124+
125+
<listitem>
126+
<para>
127+
Prevent interrupts while reporting non-<literal>ERROR</> messages
128+
(Tom Lane)
129+
</para>
130+
131+
<para>
132+
This guards against rare server-process freezeups due to recursive
133+
entry to <function>syslog()</>, and perhaps other related problems.
134+
</para>
135+
</listitem>
136+
137+
<listitem>
138+
<para>
139+
Prevent intermittent <quote>could not reserve shared memory region</>
140+
failures on recent Windows versions (MauMau)
141+
</para>
142+
</listitem>
143+
144+
<listitem>
145+
<para>
146+
Update time zone data files to <application>tzdata</> release 2014a
147+
for DST law changes in Fiji and Turkey, plus historical changes in
148+
Israel and Ukraine.
149+
</para>
150+
151+
<para>
152+
</para>
153+
</listitem>
154+
155+
</itemizedlist>
156+
157+
</sect2>
158+
</sect1>
159+
4160
<sect1 id="release-9-0-16">
5161
<title>Release 9.0.16</title>
6162

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp