pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/databases Changes 9.1.15:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6ef1427b89a7
branches:  trunk
changeset: 646757:6ef1427b89a7
user:      adam <adam%pkgsrc.org@localhost>
date:      Sat Feb 14 12:06:49 2015 +0000

description:
Changes 9.1.15:
Security Fixes
* CVE-2015-0241 Buffer overruns in "to_char" functions.
* CVE-2015-0242 Buffer overrun in replacement printf family of functions.
* CVE-2015-0243 Memory errors in functions in the pgcrypto extension.
* CVE-2015-0244 An error in extended protocol message reading.
* CVE-2014-8161 Constraint violation errors can cause display of values in columns which the user would not normally have rights to see.

JSON and JSONB Unicode Escapes

Other Fixes and Improvements
* Cope with the non-ASCII Norwegian Windows locale name.
* Avoid data corruption when databases are moved to new tablespaces and back again.
* Ensure that UNLOGGED tables are correctly copied during ALTER DATABASE operations.
* Avoid deadlocks when locking recently modified rows.
* Fix two SELECT FOR UPDATE query issues.
* Prevent false negative for shortest-first regular expression matches.
* Fix false positives and negatives in tsquery contains operator.
* Fix namespace handling in xpath().
* Prevent row-producing functions from creating empty column names.
* Make autovacuum use per-table cost_limit and cost_delay settings.
* When autovacuum=off, limit autovacuum work to wraparound prevention only.
* Multiple fixes for logical decoding in 9.4.
* Fix transient errors on hot standby queries due to page replacement.
* Prevent duplicate WAL file archiving at end of recovery or standby promotion.
* Prevent deadlock in parallel restore of schema-only dump.

diffstat:

 databases/postgresql91-datatypes/Makefile |  3 +--
 databases/postgresql91-docs/PLIST         |  4 +++-
 databases/postgresql91-server/PLIST       |  5 ++++-
 databases/postgresql91/Makefile.common    |  4 ++--
 databases/postgresql91/distinfo           |  8 ++++----
 5 files changed, 14 insertions(+), 10 deletions(-)

diffs (104 lines):

diff -r 535b3cedb3a0 -r 6ef1427b89a7 databases/postgresql91-datatypes/Makefile
--- a/databases/postgresql91-datatypes/Makefile Sat Feb 14 12:06:44 2015 +0000
+++ b/databases/postgresql91-datatypes/Makefile Sat Feb 14 12:06:49 2015 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2014/10/01 19:25:35 joerg Exp $
+# $NetBSD: Makefile,v 1.13 2015/02/14 12:06:49 adam Exp $
 
 PKGNAME=       ${DISTNAME:C/-/91-datatypes-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL data types support modules
 
 DEPENDS+=      postgresql91-server>=${PKGVERSION_NOREV}:../../databases/postgresql91-server
diff -r 535b3cedb3a0 -r 6ef1427b89a7 databases/postgresql91-docs/PLIST
--- a/databases/postgresql91-docs/PLIST Sat Feb 14 12:06:44 2015 +0000
+++ b/databases/postgresql91-docs/PLIST Sat Feb 14 12:06:49 2015 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.16 2014/07/25 22:14:56 adam Exp $
+@comment $NetBSD: PLIST,v 1.17 2015/02/14 12:06:49 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createlang.1
@@ -996,6 +996,7 @@
 share/doc/postgresql/html/release-9-0-16.html
 share/doc/postgresql/html/release-9-0-17.html
 share/doc/postgresql/html/release-9-0-18.html
+share/doc/postgresql/html/release-9-0-19.html
 share/doc/postgresql/html/release-9-0-2.html
 share/doc/postgresql/html/release-9-0-3.html
 share/doc/postgresql/html/release-9-0-4.html
@@ -1011,6 +1012,7 @@
 share/doc/postgresql/html/release-9-1-12.html
 share/doc/postgresql/html/release-9-1-13.html
 share/doc/postgresql/html/release-9-1-14.html
+share/doc/postgresql/html/release-9-1-15.html
 share/doc/postgresql/html/release-9-1-2.html
 share/doc/postgresql/html/release-9-1-3.html
 share/doc/postgresql/html/release-9-1-4.html
diff -r 535b3cedb3a0 -r 6ef1427b89a7 databases/postgresql91-server/PLIST
--- a/databases/postgresql91-server/PLIST       Sat Feb 14 12:06:44 2015 +0000
+++ b/databases/postgresql91-server/PLIST       Sat Feb 14 12:06:49 2015 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2014/07/25 22:14:56 adam Exp $
+@comment $NetBSD: PLIST,v 1.11 2015/02/14 12:06:49 adam Exp $
 bin/postgres
 bin/postmaster
 lib/postgresql/ascii_and_mic.so
@@ -316,6 +316,7 @@
 share/postgresql/timezone/Asia/Bishkek
 share/postgresql/timezone/Asia/Brunei
 share/postgresql/timezone/Asia/Calcutta
+share/postgresql/timezone/Asia/Chita
 share/postgresql/timezone/Asia/Choibalsan
 share/postgresql/timezone/Asia/Chongqing
 share/postgresql/timezone/Asia/Chungking
@@ -373,6 +374,7 @@
 share/postgresql/timezone/Asia/Seoul
 share/postgresql/timezone/Asia/Shanghai
 share/postgresql/timezone/Asia/Singapore
+share/postgresql/timezone/Asia/Srednekolymsk
 share/postgresql/timezone/Asia/Taipei
 share/postgresql/timezone/Asia/Tashkent
 share/postgresql/timezone/Asia/Tbilisi
@@ -584,6 +586,7 @@
 share/postgresql/timezone/PST8PDT
 share/postgresql/timezone/Pacific/Apia
 share/postgresql/timezone/Pacific/Auckland
+share/postgresql/timezone/Pacific/Bougainville
 share/postgresql/timezone/Pacific/Chatham
 share/postgresql/timezone/Pacific/Chuuk
 share/postgresql/timezone/Pacific/Easter
diff -r 535b3cedb3a0 -r 6ef1427b89a7 databases/postgresql91/Makefile.common
--- a/databases/postgresql91/Makefile.common    Sat Feb 14 12:06:44 2015 +0000
+++ b/databases/postgresql91/Makefile.common    Sat Feb 14 12:06:49 2015 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.22 2014/10/05 16:41:05 wiz Exp $
+# $NetBSD: Makefile.common,v 1.23 2015/02/14 12:06:49 adam Exp $
 #
 # This Makefile fragment is included by all PostgreSQL packages built from
 # the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -23,7 +23,7 @@
 # used by databases/postgresql91-server/Makefile
 # used by databases/postgresql91-upgrade/Makefile
 
-DISTNAME=      postgresql-9.1.14
+DISTNAME=      postgresql-9.1.15
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2
diff -r 535b3cedb3a0 -r 6ef1427b89a7 databases/postgresql91/distinfo
--- a/databases/postgresql91/distinfo   Sat Feb 14 12:06:44 2015 +0000
+++ b/databases/postgresql91/distinfo   Sat Feb 14 12:06:49 2015 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.20 2015/01/23 15:06:01 joerg Exp $
+$NetBSD: distinfo,v 1.21 2015/02/14 12:06:49 adam Exp $
 
-SHA1 (postgresql-9.1.14.tar.bz2) = 88c4b33d49e834eddae9fbae3028f453b73ae2a6
-RMD160 (postgresql-9.1.14.tar.bz2) = cfb171bd9fe848d6ef2464e85b20da4da02d81f0
-Size (postgresql-9.1.14.tar.bz2) = 15666442 bytes
+SHA1 (postgresql-9.1.15.tar.bz2) = 8b36733465dc945c3f1b836454e49067fb887ef5
+RMD160 (postgresql-9.1.15.tar.bz2) = 8f08431d2dc94f4eaf2ddc963a47df8fb0b8618c
+Size (postgresql-9.1.15.tar.bz2) = 15768092 bytes
 SHA1 (patch-config_perl.m4) = c7e5aaff1c47d2e33df7692a412ef984c77ffcc0
 SHA1 (patch-configure) = dab79533dac06a79a5aa8439d6b15830d8d2fba7
 SHA1 (patch-contrib_dblink_Makefile) = 4960ad57d42465fae203870548e4c53f8a32ce04



Home | Main Index | Thread Index | Old Index