Skip to content

Commit 6452043

Browse files
committed
Stamp release 7.2.6.
1 parent 6acddf5 commit 6452043

File tree

9 files changed

+96
-15
lines changed

9 files changed

+96
-15
lines changed

HISTORY

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

33

4+
Release 7.2.6
5+
6+
Release date: 2004-10-22
7+
8+
This release contains a variety of fixes from 7.2.5.
9+
_________________________________________________________________
10+
11+
Migration to version 7.2.6
12+
13+
A dump/restore is not required for those running 7.2.X.
14+
_________________________________________________________________
15+
16+
Changes
17+
18+
* Repair possible failure to update hint bits on disk
19+
Under rare circumstances this oversight could lead to "could not
20+
access transaction status" failures, which qualifies it as a
21+
potential-data-loss bug.
22+
* Ensure that hashed outer join does not miss tuples
23+
Very large left joins using a hash join plan could fail to output
24+
unmatched left-side rows given just the right data distribution.
25+
* Disallow running pg_ctl as root
26+
This is to guard against any possible security issues.
27+
* Avoid using temp files in /tmp in make_oidjoins_check
28+
This has been reported as a security issue, though it's hardly
29+
worthy of concern since there is no reason for non-developers to
30+
use this script anyway.
31+
* Update to newer versions of Bison
32+
_________________________________________________________________
33+
434
Release 7.2.5
535

636
Release date: 2004-08-16

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.5'
618+
VERSION='7.2.6'
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.5'
31+
VERSION='7.2.6'
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.5): PostgreSQL-7.2.5
30+
PostgreSQL version (example: PostgreSQL-7.2.6): PostgreSQL-7.2.6
3131

3232
Compiler used (example: gcc 2.95.2) :
3333

doc/src/sgml/release.sgml

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

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

8+
<sect1 id="release-7-2-6">
9+
<title>Release 7.2.6</title>
10+
11+
<note>
12+
<title>Release date</title>
13+
<simpara>2004-10-22</simpara>
14+
</note>
15+
16+
<para>
17+
This release contains a variety of fixes from 7.2.5.
18+
</para>
19+
20+
21+
<sect2>
22+
<title>Migration to version 7.2.6</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>Repair possible failure to update hint bits on disk</para>
34+
<para>
35+
Under rare circumstances this oversight could lead to
36+
<quote>could not access transaction status</> failures, which qualifies
37+
it as a potential-data-loss bug.
38+
</para></listitem>
39+
<listitem><para>Ensure that hashed outer join does not miss tuples</para>
40+
<para>
41+
Very large left joins using a hash join plan could fail to output unmatched
42+
left-side rows given just the right data distribution.
43+
</para></listitem>
44+
<listitem><para>Disallow running pg_ctl as root</para>
45+
<para>
46+
This is to guard against any possible security issues.
47+
</para></listitem>
48+
<listitem><para>Avoid using temp files in /tmp in make_oidjoins_check</para>
49+
<para>
50+
This has been reported as a security issue, though it's hardly worthy of
51+
concern since there is no reason for non-developers to use this script anyway.
52+
</para></listitem>
53+
<listitem><para>Update to newer versions of Bison</para></listitem>
54+
</itemizedlist>
55+
56+
</sect2>
57+
</sect1>
58+
859
<sect1 id="release-7-2-5">
960
<title>Release 7.2.5</title>
1061

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.5">
6+
<!entity version "7.2.6">
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.5"
7-
#define PG_VERSION_STR "7.2.5 (win32)"
6+
#define PG_VERSION "7.2.6"
7+
#define PG_VERSION_STR "7.2.6 (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,5,0
5-
PRODUCTVERSION 7,2,5,0
4+
FILEVERSION 7,2,6,0
5+
PRODUCTVERSION 7,2,6,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, 5, 0\0"
19+
VALUE "FileVersion", "7, 2, 6, 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, 5, 0\0"
26+
VALUE "ProductVersion", "7, 2, 6, 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,5,0
5-
PRODUCTVERSION 7,2,5,0
4+
FILEVERSION 7,2,6,0
5+
PRODUCTVERSION 7,2,6,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, 5, 0\0"
18+
VALUE "FileVersion", "7, 2, 6, 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, 5, 0\0"
24+
VALUE "ProductVersion", "7, 2, 6, 0\0"
2525
END
2626
END
2727
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy