From 8edd4d940ffd9efd495eea1be76f97b74ed98f6c Mon Sep 17 00:00:00 2001 From: adam Date: Sat, 14 Feb 2015 12:39:51 +0000 Subject: Changes 9.0.19: 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. --- databases/postgresql90-datatypes/Makefile | 3 +-- databases/postgresql90-docs/PLIST | 3 ++- databases/postgresql90-server/PLIST | 5 ++++- databases/postgresql90/Makefile.common | 4 ++-- databases/postgresql90/distinfo | 8 ++++---- 5 files changed, 13 insertions(+), 10 deletions(-) diff --git a/databases/postgresql90-datatypes/Makefile b/databases/postgresql90-datatypes/Makefile index 725866a2443..eadf2a428a5 100644 --- a/databases/postgresql90-datatypes/Makefile +++ b/databases/postgresql90-datatypes/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2014/10/01 19:25:35 joerg Exp $ +# $NetBSD: Makefile,v 1.16 2015/02/14 12:39:52 adam Exp $ PKGNAME= ${DISTNAME:C/-/90-datatypes-/} -PKGREVISION= 1 COMMENT= PostgreSQL data types support modules DEPENDS+= postgresql90-server>=${PKGVERSION_NOREV}:../../databases/postgresql90-server diff --git a/databases/postgresql90-docs/PLIST b/databases/postgresql90-docs/PLIST index 33149ade63b..829eb151fbc 100644 --- a/databases/postgresql90-docs/PLIST +++ b/databases/postgresql90-docs/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.20 2014/07/25 22:14:55 adam Exp $ +@comment $NetBSD: PLIST,v 1.21 2015/02/14 12:39:52 adam Exp $ man/man1/clusterdb.1 man/man1/createdb.1 man/man1/createlang.1 @@ -950,6 +950,7 @@ share/doc/postgresql/html/release-9-0-15.html 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 diff --git a/databases/postgresql90-server/PLIST b/databases/postgresql90-server/PLIST index 7fa5bd4c02a..b92c7158564 100644 --- a/databases/postgresql90-server/PLIST +++ b/databases/postgresql90-server/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.15 2014/07/25 22:14:56 adam Exp $ +@comment $NetBSD: PLIST,v 1.16 2015/02/14 12:39:52 adam Exp $ bin/postgres bin/postmaster lib/postgresql/ascii_and_mic.so @@ -315,6 +315,7 @@ share/postgresql/timezone/Asia/Beirut 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 @@ -372,6 +373,7 @@ share/postgresql/timezone/Asia/Samarkand 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 @@ -583,6 +585,7 @@ share/postgresql/timezone/PRC 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 --git a/databases/postgresql90/Makefile.common b/databases/postgresql90/Makefile.common index 02e0cd58246..15f65e0e7e7 100644 --- a/databases/postgresql90/Makefile.common +++ b/databases/postgresql90/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.33 2014/10/05 16:41:05 wiz Exp $ +# $NetBSD: Makefile.common,v 1.34 2015/02/14 12:39:51 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/postgresql90-server/Makefile # used by databases/postgresql90-upgrade/Makefile -DISTNAME= postgresql-9.0.18 +DISTNAME= postgresql-9.0.19 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/} EXTRACT_SUFX= .tar.bz2 diff --git a/databases/postgresql90/distinfo b/databases/postgresql90/distinfo index e007b1325c3..f622d3d3d77 100644 --- a/databases/postgresql90/distinfo +++ b/databases/postgresql90/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.23 2015/01/23 15:06:01 joerg Exp $ +$NetBSD: distinfo,v 1.24 2015/02/14 12:39:51 adam Exp $ -SHA1 (postgresql-9.0.18.tar.bz2) = f0d14ca3cd116ed88aa6ce96b22137fe37a31958 -RMD160 (postgresql-9.0.18.tar.bz2) = aa50ea194637449ad57fd86b9ea997516f5f0ebc -Size (postgresql-9.0.18.tar.bz2) = 14984096 bytes +SHA1 (postgresql-9.0.19.tar.bz2) = 41e71a878273b22332ad4e187528d6cefb41b063 +RMD160 (postgresql-9.0.19.tar.bz2) = c95a55f8d42dbc0101215d6e3050cb59f79cf346 +Size (postgresql-9.0.19.tar.bz2) = 15019406 bytes SHA1 (patch-aa) = c7e5aaff1c47d2e33df7692a412ef984c77ffcc0 SHA1 (patch-ab) = 6adfc53e325abe69582f1c7971f56144c697e9c1 SHA1 (patch-ac) = 76ddd3015d93b19cdd6000eaffc4f53cbd4965b5 -- cgit v1.2.3