Skip to content

Commit a3704c6

Browse files
committed
Update release notes to match CVS.
1 parent 883fbbe commit a3704c6

File tree

1 file changed

+133
-12
lines changed

1 file changed

+133
-12
lines changed

doc/src/sgml/release.sgml

Lines changed: 133 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.304 2004/11/05 19:15:49 tgl Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.305 2004/11/10 06:09:59 momjian Exp $
33
-->
44

55
<appendix id="release">
@@ -10,7 +10,7 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.304 2004/11/05 19:15:49 tgl Exp
1010

1111
<note>
1212
<title>Release date</title>
13-
<simpara>2004-??-??, current as of 2004-08-06</simpara>
13+
<simpara>2004-??-??, current as of 2004-11-06</simpara>
1414
</note>
1515

1616
<sect2>
@@ -220,7 +220,9 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.304 2004/11/05 19:15:49 tgl Exp
220220
<para>
221221
Server configuration parameter <varname>log_statement</> has been
222222
changed so it can selectively log just database modification or
223-
data definition statements.
223+
data definition statements. Server configuration parameter <varname>
224+
log_duration</> now prints only when <literal>log_statement</>
225+
prints the query.
224226
</para>
225227
</listitem>
226228

@@ -380,6 +382,17 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.304 2004/11/05 19:15:49 tgl Exp
380382
proceeds to its next operation.
381383
</para>
382384
</listitem>
385+
386+
<listitem>
387+
<para>
388+
CIDR values now must have their non-masked bits be zero. For example,
389+
no longer allow <literal>204.248.199.1/31</literal> as a CIDR value.
390+
Such values should have never been accepted by PostgreSQL and will now be
391+
rejected.
392+
</para>
393+
</listitem>
394+
395+
383396
</itemizedlist>
384397
</para>
385398
</sect2>
@@ -654,6 +667,12 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.304 2004/11/05 19:15:49 tgl Exp
654667
</para>
655668
</listitem>
656669

670+
<listitem>
671+
<para>
672+
Use CIDR format in pg_hba.conf examples (Andrew)
673+
</para>
674+
</listitem>
675+
657676
<listitem>
658677
<para>
659678
Rename server configuration parameters <varname>SortMem</> and
@@ -786,6 +805,13 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.304 2004/11/05 19:15:49 tgl Exp
786805
</para>
787806
</listitem>
788807

808+
<listitem>
809+
<para>
810+
Make <literal>log_duration</> print only when <literal>log_statement</>
811+
prints the query (Ed L.)
812+
</para>
813+
</listitem>
814+
789815
</itemizedlist>
790816
</sect3>
791817

@@ -1086,6 +1112,22 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.304 2004/11/05 19:15:49 tgl Exp
10861112
Warn when primary/foreign key datatype mismatch requires costly lookup
10871113
</para>
10881114
</listitem>
1115+
1116+
<listitem>
1117+
<para>
1118+
New ALTER INDEX command to allow moving of indexes between tablespaces
1119+
(Gavin)
1120+
</para>
1121+
</listitem>
1122+
1123+
<listitem>
1124+
<para>
1125+
Have ALTER TABLE OWNER change dependent sequence ownership too (Alvaro)
1126+
(Gavin)
1127+
</para>
1128+
</listitem>
1129+
1130+
10891131
</itemizedlist>
10901132
</sect3>
10911133

@@ -1226,6 +1268,12 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.304 2004/11/05 19:15:49 tgl Exp
12261268
</para>
12271269
</listitem>
12281270

1271+
<listitem>
1272+
<para>
1273+
Add Win32 service "register" command to pg_ctl (Dave Page)
1274+
</para>
1275+
</listitem>
1276+
12291277
</itemizedlist>
12301278
</sect3>
12311279

@@ -1340,7 +1388,7 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.304 2004/11/05 19:15:49 tgl Exp
13401388

13411389
<listitem>
13421390
<para>
1343-
to_char/to_date date conversion improvements (Kurt Roeckx)
1391+
to_char/to_date date conversion improvements (Kurt Roeckx, Fabien Coelho)
13441392
</para>
13451393
</listitem>
13461394

@@ -1493,6 +1541,27 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.304 2004/11/05 19:15:49 tgl Exp
14931541
</para>
14941542
</listitem>
14951543

1544+
<listitem>
1545+
<para>
1546+
Detect overflow of integer arithmetic (Tom)
1547+
</para>
1548+
</listitem>
1549+
1550+
<listitem>
1551+
<para>
1552+
Remove arithmetic operators for one-byte character type/"char" (Tom)
1553+
</para>
1554+
<para>
1555+
The data type can be cast to 'int' to perform such operations.
1556+
</para>
1557+
</listitem>
1558+
1559+
<listitem>
1560+
<para>
1561+
Require CIDR values to have all non-masked bits be zero (Kevin Brintnall)
1562+
</para>
1563+
</listitem>
1564+
14961565
</itemizedlist>
14971566
</sect3>
14981567

@@ -1698,6 +1767,18 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.304 2004/11/05 19:15:49 tgl Exp
16981767
</para>
16991768
</listitem>
17001769

1770+
<listitem>
1771+
<para>
1772+
Improve tab completion support (Stefan Kaltenbrunn, Greg Sabino Mullane)
1773+
</para>
1774+
</listitem>
1775+
1776+
<listitem>
1777+
<para>
1778+
Allow boolean settings to be set using upper or lower case (Michael Paesold)
1779+
</para>
1780+
</listitem>
1781+
17011782
</itemizedlist>
17021783
</sect3>
17031784

@@ -1729,7 +1810,8 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.304 2004/11/05 19:15:49 tgl Exp
17291810
<para>
17301811
This makes pg_restore's behavior similar to the results of feeding
17311812
a pg_dump output script to psql. In most cases, ignoring errors and
1732-
plowing ahead is the most useful thing to do.
1813+
plowing ahead is the most useful thing to do. Also added was a
1814+
pg_restore option to give the old behavior of exiting on an error.
17331815
</para>
17341816
</listitem>
17351817

@@ -1797,6 +1879,27 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.304 2004/11/05 19:15:49 tgl Exp
17971879
</para>
17981880
</listitem>
17991881

1882+
<listitem>
1883+
<para>
1884+
Add PQserverVersion() to provide more convenient access to
1885+
the server version number (Greg Sabino Mullane)
1886+
</para>
1887+
</listitem>
1888+
1889+
<listitem>
1890+
<para>
1891+
Many ecpg fixes, including SET DESCRIPTOR (Michael)
1892+
</para>
1893+
</listitem>
1894+
1895+
<listitem>
1896+
<para>
1897+
Add PQprepare()/PQsendPrepared() functions to support preparing
1898+
statements without necessarily specifying the datatypes of their parameters
1899+
(Abhijit Menon-Sen)
1900+
</para>
1901+
</listitem>
1902+
18001903
</itemizedlist>
18011904
</sect3>
18021905

@@ -2050,12 +2153,6 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.304 2004/11/05 19:15:49 tgl Exp
20502153
<title>Contrib Changes</title>
20512154
<itemizedlist>
20522155

2053-
<listitem>
2054-
<para>
2055-
Many ecpg fixes, including SET DESCRIPTOR (Michael)
2056-
</para>
2057-
</listitem>
2058-
20592156
<listitem>
20602157
<para>
20612158
Overhaul of /contrib/dblink (Joe)
@@ -2064,7 +2161,7 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.304 2004/11/05 19:15:49 tgl Exp
20642161

20652162
<listitem>
20662163
<para>
2067-
/contrib/dbmirror improvements
2164+
/contrib/dbmirror improvements (Steven Singer)
20682165
</para>
20692166
</listitem>
20702167

@@ -2105,6 +2202,30 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.304 2004/11/05 19:15:49 tgl Exp
21052202
</para>
21062203
</listitem>
21072204

2205+
<listitem>
2206+
<para>
2207+
Remove /contrib/rserv
2208+
</para>
2209+
</listitem>
2210+
2211+
<listitem>
2212+
<para>
2213+
Allow /contrib/pg_autovacuum to run as a Win32 service (Dave Page)
2214+
</para>
2215+
</listitem>
2216+
2217+
<listitem>
2218+
<para>
2219+
Add functions to /contrib/dbsize (Andreas Pflug)
2220+
</para>
2221+
</listitem>
2222+
2223+
<listitem>
2224+
<para>
2225+
Remove contrib/pg_logger
2226+
</para>
2227+
</listitem>
2228+
21082229
</itemizedlist>
21092230
</sect3>
21102231

0 commit comments

Comments
 (0)