Skip to content

Commit 3d2835e

Browse files
committed
Update release notes for releases 9.0.4, 8.4.8, 8.3.15, and 8.2.21.
1 parent 1865975 commit 3d2835e

File tree

1 file changed

+153
-21
lines changed

1 file changed

+153
-21
lines changed

doc/src/sgml/release-8.2.sgml

Lines changed: 153 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,143 @@
11
<!-- doc/src/sgml/release-8.2.sgml -->
22
<!-- See header comment in release.sgml about typical markup -->
33

4+
<sect1 id="release-8-2-21">
5+
<title>Release 8.2.21</title>
6+
7+
<note>
8+
<title>Release Date</title>
9+
<simpara>2011-04-18</simpara>
10+
</note>
11+
12+
<para>
13+
This release contains a variety of fixes from 8.2.20.
14+
For information about new features in the 8.2 major release, see
15+
<xref linkend="release-8-2">.
16+
</para>
17+
18+
<sect2>
19+
<title>Migration to Version 8.2.21</title>
20+
21+
<para>
22+
A dump/restore is not required for those running 8.2.X.
23+
However, if you are upgrading from a version earlier than 8.2.14,
24+
see the release notes for 8.2.14.
25+
</para>
26+
27+
</sect2>
28+
29+
<sect2>
30+
<title>Changes</title>
31+
32+
<itemizedlist>
33+
34+
<listitem>
35+
<para>
36+
Avoid potential deadlock during catalog cache initialization
37+
(Nikhil Sontakke)
38+
</para>
39+
40+
<para>
41+
In some cases the cache loading code would acquire share lock on a
42+
system index before locking the index's catalog. This could deadlock
43+
against processes trying to acquire exclusive locks in the other,
44+
more standard order.
45+
</para>
46+
</listitem>
47+
48+
<listitem>
49+
<para>
50+
Fix dangling-pointer problem in <literal>BEFORE ROW UPDATE</> trigger
51+
handling when there was a concurrent update to the target tuple
52+
(Tom Lane)
53+
</para>
54+
55+
<para>
56+
This bug has been observed to result in intermittent <quote>cannot
57+
extract system attribute from virtual tuple</> failures while trying to
58+
do <literal>UPDATE RETURNING ctid</>. There is a very small probability
59+
of more serious errors, such as generating incorrect index entries for
60+
the updated tuple.
61+
</para>
62+
</listitem>
63+
64+
<listitem>
65+
<para>
66+
Disallow <command>DROP TABLE</> when there are pending deferred trigger
67+
events for the table (Tom Lane)
68+
</para>
69+
70+
<para>
71+
Formerly the <command>DROP</> would go through, leading to
72+
<quote>could not open relation with OID nnn</> errors when the
73+
triggers were eventually fired.
74+
</para>
75+
</listitem>
76+
77+
<listitem>
78+
<para>
79+
Fix PL/Python memory leak involving array slices (Daniel Popowich)
80+
</para>
81+
</listitem>
82+
83+
<listitem>
84+
<para>
85+
Fix <application>pg_restore</> to cope with long lines (over 1KB) in
86+
TOC files (Tom Lane)
87+
</para>
88+
</listitem>
89+
90+
<listitem>
91+
<para>
92+
Put in more safeguards against crashing due to division-by-zero
93+
with overly enthusiastic compiler optimization (Aurelien Jarno)
94+
</para>
95+
</listitem>
96+
97+
<listitem>
98+
<para>
99+
Support use of dlopen() in FreeBSD and OpenBSD on MIPS (Tom Lane)
100+
</para>
101+
102+
<para>
103+
There was a hard-wired assumption that this system function was not
104+
available on MIPS hardware on these systems. Use a compile-time test
105+
instead, since more recent versions have it.
106+
</para>
107+
</listitem>
108+
109+
<listitem>
110+
<para>
111+
Fix compilation failures on HP-UX (Heikki Linnakangas)
112+
</para>
113+
</listitem>
114+
115+
<listitem>
116+
<para>
117+
Fix path separator used by <application>pg_regress</> on Cygwin
118+
(Andrew Dunstan)
119+
</para>
120+
</listitem>
121+
122+
<listitem>
123+
<para>
124+
Update time zone data files to <application>tzdata</> release 2011f
125+
for DST law changes in Chile, Cuba, Falkland Islands, Morocco, Samoa,
126+
and Turkey; also historical corrections for South Australia, Alaska,
127+
and Hawaii.
128+
</para>
129+
</listitem>
130+
131+
</itemizedlist>
132+
133+
</sect2>
134+
</sect1>
135+
4136
<sect1 id="release-8-2-20">
5137
<title>Release 8.2.20</title>
6138

7139
<note>
8-
<title>Release date</title>
140+
<title>Release Date</title>
9141
<simpara>2011-01-31</simpara>
10142
</note>
11143

@@ -137,7 +269,7 @@
137269
<title>Release 8.2.19</title>
138270

139271
<note>
140-
<title>Release date</title>
272+
<title>Release Date</title>
141273
<simpara>2010-12-16</simpara>
142274
</note>
143275

@@ -381,7 +513,7 @@
381513
<title>Release 8.2.18</title>
382514

383515
<note>
384-
<title>Release date</title>
516+
<title>Release Date</title>
385517
<simpara>2010-10-04</simpara>
386518
</note>
387519

@@ -667,7 +799,7 @@
667799
<title>Release 8.2.17</title>
668800

669801
<note>
670-
<title>Release date</title>
802+
<title>Release Date</title>
671803
<simpara>2010-05-17</simpara>
672804
</note>
673805

@@ -868,7 +1000,7 @@
8681000
<title>Release 8.2.16</title>
8691001

8701002
<note>
871-
<title>Release date</title>
1003+
<title>Release Date</title>
8721004
<simpara>2010-03-15</simpara>
8731005
</note>
8741006

@@ -1139,7 +1271,7 @@
11391271
<title>Release 8.2.15</title>
11401272

11411273
<note>
1142-
<title>Release date</title>
1274+
<title>Release Date</title>
11431275
<simpara>2009-12-14</simpara>
11441276
</note>
11451277

@@ -1383,7 +1515,7 @@
13831515
<title>Release 8.2.14</title>
13841516

13851517
<note>
1386-
<title>Release date</title>
1518+
<title>Release Date</title>
13871519
<simpara>2009-09-09</simpara>
13881520
</note>
13891521

@@ -1613,7 +1745,7 @@
16131745
<title>Release 8.2.13</title>
16141746

16151747
<note>
1616-
<title>Release date</title>
1748+
<title>Release Date</title>
16171749
<simpara>2009-03-16</simpara>
16181750
</note>
16191751

@@ -1779,7 +1911,7 @@
17791911
<title>Release 8.2.12</title>
17801912

17811913
<note>
1782-
<title>Release date</title>
1914+
<title>Release Date</title>
17831915
<simpara>2009-02-02</simpara>
17841916
</note>
17851917

@@ -1958,7 +2090,7 @@
19582090
<title>Release 8.2.11</title>
19592091

19602092
<note>
1961-
<title>Release date</title>
2093+
<title>Release Date</title>
19622094
<simpara>2008-11-03</simpara>
19632095
</note>
19642096

@@ -2142,7 +2274,7 @@
21422274
<title>Release 8.2.10</title>
21432275

21442276
<note>
2145-
<title>Release date</title>
2277+
<title>Release Date</title>
21462278
<simpara>2008-09-22</simpara>
21472279
</note>
21482280

@@ -2374,7 +2506,7 @@
23742506
<title>Release 8.2.9</title>
23752507

23762508
<note>
2377-
<title>Release date</title>
2509+
<title>Release Date</title>
23782510
<simpara>2008-06-12</simpara>
23792511
</note>
23802512

@@ -2441,7 +2573,7 @@
24412573
<title>Release 8.2.8</title>
24422574

24432575
<note>
2444-
<title>Release date</title>
2576+
<title>Release Date</title>
24452577
<simpara>never released</simpara>
24462578
</note>
24472579

@@ -2636,7 +2768,7 @@
26362768
<title>Release 8.2.7</title>
26372769

26382770
<note>
2639-
<title>Release date</title>
2771+
<title>Release Date</title>
26402772
<simpara>2008-03-17</simpara>
26412773
</note>
26422774

@@ -2905,7 +3037,7 @@
29053037
<title>Release 8.2.6</title>
29063038

29073039
<note>
2908-
<title>Release date</title>
3040+
<title>Release Date</title>
29093041
<simpara>2008-01-07</simpara>
29103042
</note>
29113043

@@ -3196,7 +3328,7 @@
31963328
<title>Release 8.2.5</title>
31973329

31983330
<note>
3199-
<title>Release date</title>
3331+
<title>Release Date</title>
32003332
<simpara>2007-09-17</simpara>
32013333
</note>
32023334

@@ -3373,7 +3505,7 @@
33733505
<title>Release 8.2.4</title>
33743506

33753507
<note>
3376-
<title>Release date</title>
3508+
<title>Release Date</title>
33773509
<simpara>2007-04-23</simpara>
33783510
</note>
33793511

@@ -3517,7 +3649,7 @@
35173649
<title>Release 8.2.3</title>
35183650

35193651
<note>
3520-
<title>Release date</title>
3652+
<title>Release Date</title>
35213653
<simpara>2007-02-07</simpara>
35223654
</note>
35233655

@@ -3563,7 +3695,7 @@
35633695
<title>Release 8.2.2</title>
35643696

35653697
<note>
3566-
<title>Release date</title>
3698+
<title>Release Date</title>
35673699
<simpara>2007-02-05</simpara>
35683700
</note>
35693701

@@ -3721,7 +3853,7 @@
37213853
<title>Release 8.2.1</title>
37223854

37233855
<note>
3724-
<title>Release date</title>
3856+
<title>Release Date</title>
37253857
<simpara>2007-01-08</simpara>
37263858
</note>
37273859

@@ -3856,7 +3988,7 @@
38563988
<title>Release 8.2</title>
38573989

38583990
<note>
3859-
<title>Release date</title>
3991+
<title>Release Date</title>
38603992
<simpara>2006-12-05</simpara>
38613993
</note>
38623994

0 commit comments

Comments
 (0)