Skip to content

Commit 9f7cf9c

Browse files
committed
Stamp 7.2.5.
1 parent d0b776b commit 9f7cf9c

File tree

9 files changed

+90
-15
lines changed

9 files changed

+90
-15
lines changed

HISTORY

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,38 @@
11
Release Notes
22

33

4+
Release 7.2.5
5+
6+
Release date: 2004-08-16
7+
8+
This release contains a variety of fixes from 7.2.4.
9+
_________________________________________________________________
10+
11+
Migration to version 7.2.5
12+
13+
A dump/restore is not required for those running 7.2.X.
14+
_________________________________________________________________
15+
16+
Changes
17+
18+
* Prevent possible loss of committed transactions during crash
19+
Due to insufficient interlocking between transaction commit and
20+
checkpointing, it was possible for transactions committed just
21+
before the most recent checkpoint to be lost, in whole or in part,
22+
following a database crash and restart. This is a serious bug that
23+
has existed since PostgreSQL 7.1.
24+
* Fix corner case for btree search in parallel with first root page
25+
split
26+
* Fix buffer overrun in to_ascii (Guido Notari)
27+
* Fix core dump in deadlock detection on machines where char is
28+
unsigned
29+
* Fix failure to respond to "pg_ctl stop -m fast" after
30+
Async_NotifyHandler runs
31+
* Repair memory leaks in pg_dump
32+
* Avoid conflict with system definition of isblank() function or
33+
macro
34+
_________________________________________________________________
35+
436
Release 7.2.4
537

638
Release date: 2003-01-30

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ ac_config_sub=$ac_aux_dir/config.sub
615615
ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
616616

617617

618-
VERSION='7.2.4'
618+
VERSION='7.2.5'
619619

620620
cat >> confdefs.h <<EOF
621621
#define PG_VERSION "$VERSION"

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ AC_CONFIG_HEADER(src/include/pg_config.h)
2828
AC_PREREQ(2.13)
2929
AC_CONFIG_AUX_DIR(config)
3030

31-
VERSION='7.2.4'
31+
VERSION='7.2.5'
3232
AC_SUBST(VERSION)
3333
AC_DEFINE_UNQUOTED(PG_VERSION, "$VERSION")
3434

doc/bug.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ System Configuration
2727

2828
Operating System (example: Linux 2.0.26 ELF) :
2929

30-
PostgreSQL version (example: PostgreSQL-7.2.4): PostgreSQL-7.2.4
30+
PostgreSQL version (example: PostgreSQL-7.2.5): PostgreSQL-7.2.5
3131

3232
Compiler used (example: gcc 2.95.2) :
3333

doc/src/sgml/release.sgml

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,53 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.115.2.8 2003/01/29 22:12:42 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.115.2.9 2004/08/15 01:23:28 tgl Exp $
33
-->
44

55
<appendix id="release">
66
<title>Release Notes</title>
77

8+
<sect1 id="release-7-2-5">
9+
<title>Release 7.2.5</title>
10+
11+
<note>
12+
<title>Release date</title>
13+
<simpara>2004-08-16</simpara>
14+
</note>
15+
16+
<para>
17+
This release contains a variety of fixes from 7.2.4.
18+
</para>
19+
20+
21+
<sect2>
22+
<title>Migration to version 7.2.5</title>
23+
24+
<para>
25+
A dump/restore is not required for those running 7.2.X.
26+
</para>
27+
</sect2>
28+
29+
<sect2>
30+
<title>Changes</title>
31+
32+
<itemizedlist>
33+
<listitem><para>Prevent possible loss of committed transactions during crash</para>
34+
<para>
35+
Due to insufficient interlocking between transaction commit and checkpointing,
36+
it was possible for transactions committed just before the most recent
37+
checkpoint to be lost, in whole or in part, following a database crash and
38+
restart. This is a serious bug that has existed
39+
since <productname>PostgreSQL</productname> 7.1.
40+
</para></listitem>
41+
<listitem><para>Fix corner case for btree search in parallel with first root page split</para></listitem>
42+
<listitem><para>Fix buffer overrun in <function>to_ascii</function> (Guido Notari)</para></listitem>
43+
<listitem><para>Fix core dump in deadlock detection on machines where char is unsigned</para></listitem>
44+
<listitem><para>Fix failure to respond to <command>pg_ctl stop -m fast</command> after Async_NotifyHandler runs</para></listitem>
45+
<listitem><para>Repair memory leaks in pg_dump</para></listitem>
46+
<listitem><para>Avoid conflict with system definition of <function>isblank()</function> function or macro</para></listitem>
47+
</itemizedlist>
48+
</sect2>
49+
</sect1>
50+
851
<sect1 id="release-7-2-4">
952
<title>Release 7.2.4</title>
1053

doc/src/sgml/version.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ Update this file to propagate correct current version numbers to the
33
documentation. In text, use for example &version; to refer to them.
44
-->
55

6-
<!entity version "7.2.3">
6+
<!entity version "7.2.5">
77
<!entity majorversion "7.2">

src/include/pg_config.h.win32

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
/*
44
* Parts of pg_config.h that you get with autoconf on other systems
55
*/
6-
#define PG_VERSION "7.2.4"
7-
#define PG_VERSION_STR "7.2.4 (win32)"
6+
#define PG_VERSION "7.2.5"
7+
#define PG_VERSION_STR "7.2.5 (win32)"
88

99
#define SYSCONFDIR ""
1010

src/interfaces/libpq++/libpq++dll.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include <winver.h>
22

33
VS_VERSION_INFO VERSIONINFO
4-
FILEVERSION 7,2,3,0
5-
PRODUCTVERSION 7,2,3,0
4+
FILEVERSION 7,2,5,0
5+
PRODUCTVERSION 7,2,5,0
66
FILEFLAGSMASK 0x3fL
77
FILEFLAGS 0x0L
88
FILEOS 0x40004L
@@ -16,14 +16,14 @@ BEGIN
1616
VALUE "Comments", "\0"
1717
VALUE "CompanyName", " \0"
1818
VALUE "FileDescription", "PostgreSQL C++ Access Library\0"
19-
VALUE "FileVersion", "7, 2, 3, 0\0"
19+
VALUE "FileVersion", "7, 2, 5, 0\0"
2020
VALUE "InternalName", "libpq++\0"
2121
VALUE "LegalCopyright", "Copyright � 2000\0"
2222
VALUE "LegalTrademarks", "\0"
2323
VALUE "OriginalFilename", "libpq++.dll\0"
2424
VALUE "PrivateBuild", "\0"
2525
VALUE "ProductName", "PostgreSQL\0"
26-
VALUE "ProductVersion", "7, 2, 3, 0\0"
26+
VALUE "ProductVersion", "7, 2, 5, 0\0"
2727
VALUE "SpecialBuild", "\0"
2828
END
2929
END

src/interfaces/libpq/libpq.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include <winver.h>
22

33
VS_VERSION_INFO VERSIONINFO
4-
FILEVERSION 7,2,4,0
5-
PRODUCTVERSION 7,2,4,0
4+
FILEVERSION 7,2,5,0
5+
PRODUCTVERSION 7,2,5,0
66
FILEFLAGSMASK 0x3fL
77
FILEFLAGS 0
88
FILEOS VOS__WINDOWS32
@@ -15,13 +15,13 @@ BEGIN
1515
BEGIN
1616
VALUE "CompanyName", "\0"
1717
VALUE "FileDescription", "PostgreSQL Access Library\0"
18-
VALUE "FileVersion", "7, 2, 4, 0\0"
18+
VALUE "FileVersion", "7, 2, 5, 0\0"
1919
VALUE "InternalName", "libpq\0"
2020
VALUE "LegalCopyright", "Copyright (C) 2000\0"
2121
VALUE "LegalTrademarks", "\0"
2222
VALUE "OriginalFilename", "libpq.dll\0"
2323
VALUE "ProductName", "PostgreSQL\0"
24-
VALUE "ProductVersion", "7, 2, 4, 0\0"
24+
VALUE "ProductVersion", "7, 2, 5, 0\0"
2525
END
2626
END
2727
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)