Changes 9.3.6:

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.
This commit is contained in:
adam 2015-02-14 07:40:18 +00:00
parent 8a79a1723f
commit 9226b8a1c5
6 changed files with 18 additions and 11 deletions

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.2 2013/10/12 07:03:32 adam Exp $
@comment $NetBSD: PLIST,v 1.3 2015/02/14 07:40:19 adam Exp $
bin/clusterdb
bin/createdb
bin/createlang
@ -200,6 +200,7 @@ include/postgresql/server/commands/variable.h
include/postgresql/server/commands/view.h
include/postgresql/server/common/fe_memutils.h
include/postgresql/server/common/relpath.h
include/postgresql/server/common/string.h
include/postgresql/server/datatype/timestamp.h
include/postgresql/server/dynloader.h
include/postgresql/server/executor/execdebug.h

View file

@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.6 2014/10/01 19:25:35 joerg Exp $
# $NetBSD: Makefile,v 1.7 2015/02/14 07:40:19 adam Exp $
PKGNAME= ${DISTNAME:C/-/93-datatypes-/}
PKGREVISION= 1
COMMENT= PostgreSQL data types support modules
DEPENDS+= postgresql93-server>=${PKGVERSION_NOREV}:../../databases/postgresql93-server

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.6 2014/07/25 22:14:56 adam Exp $
@comment $NetBSD: PLIST,v 1.7 2015/02/14 07:40:19 adam Exp $
man/man1/clusterdb.1
man/man1/createdb.1
man/man1/createlang.1
@ -1046,6 +1046,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
@ -1061,6 +1062,7 @@ share/doc/postgresql/html/release-9-1-11.html
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
@ -1071,6 +1073,7 @@ share/doc/postgresql/html/release-9-1-8.html
share/doc/postgresql/html/release-9-1-9.html
share/doc/postgresql/html/release-9-1.html
share/doc/postgresql/html/release-9-2-1.html
share/doc/postgresql/html/release-9-2-10.html
share/doc/postgresql/html/release-9-2-2.html
share/doc/postgresql/html/release-9-2-3.html
share/doc/postgresql/html/release-9-2-4.html
@ -1085,6 +1088,7 @@ share/doc/postgresql/html/release-9-3-2.html
share/doc/postgresql/html/release-9-3-3.html
share/doc/postgresql/html/release-9-3-4.html
share/doc/postgresql/html/release-9-3-5.html
share/doc/postgresql/html/release-9-3-6.html
share/doc/postgresql/html/release-9-3.html
share/doc/postgresql/html/release.html
share/doc/postgresql/html/resources.html

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.4 2014/07/25 22:14:57 adam Exp $
@comment $NetBSD: PLIST,v 1.5 2015/02/14 07:40:19 adam Exp $
bin/postgres
bin/postmaster
include/postgresql/server/plpgsql.h
@ -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

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile.common,v 1.9 2014/10/05 16:41:06 wiz Exp $
# $NetBSD: Makefile.common,v 1.10 2015/02/14 07:40:18 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/postgresql93-server/Makefile
# used by databases/postgresql93-upgrade/Makefile
DISTNAME= postgresql-9.3.5
DISTNAME= postgresql-9.3.6
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
EXTRACT_SUFX= .tar.bz2

View file

@ -1,8 +1,8 @@
$NetBSD: distinfo,v 1.9 2015/01/20 13:16:02 ryoon Exp $
$NetBSD: distinfo,v 1.10 2015/02/14 07:40:18 adam Exp $
SHA1 (postgresql-9.3.5.tar.bz2) = e011da16cb8a99c5ce6204898ddb898a8b3fbca4
RMD160 (postgresql-9.3.5.tar.bz2) = 5ccbe27e602acfe99956bf837c7f2bcdb5b87ba0
Size (postgresql-9.3.5.tar.bz2) = 16727725 bytes
SHA1 (postgresql-9.3.6.tar.bz2) = fb6141f9f758ad484bc6991c7c1f960ca8b6b866
RMD160 (postgresql-9.3.6.tar.bz2) = 4b538e9281b6913ecc0521cf49253772965d11d2
Size (postgresql-9.3.6.tar.bz2) = 16889913 bytes
SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
SHA1 (patch-config_perl.m4) = e035132b1c281a75752d570ac5e29a11176c25c5
SHA1 (patch-configure) = 3de7635fe18532a05a619941fecad7bcda6c51b9