svn commit: r412226 - head/databases/postgresql95-server

Palle Girgensohn girgen at FreeBSD.org
Thu Mar 31 14:46:41 UTC 2016


Author: girgen
Date: Thu Mar 31 14:46:39 2016
New Revision: 412226
URL: https://svnweb.freebsd.org/changeset/ports/412226

Log:
  Update PostgreSQL 9.5 to latest version
  
  Security Fixes for RLS, BRIN
  ----------------------------
  
  This release closes security hole CVE-2016-2193
  (https://access.redhat.com/security/cve/CVE-2016-2193), where a query plan
  might get reused for more than one ROLE in the same session.  This could cause
  the wrong set of Row Level Security (RLS) policies to be used for the query.
  
  The update also fixes CVE-2016-3065
  (https://access.redhat.com/security/cve/CVE-2016-3065), a server crash bug
  triggered by using `pageinspect` with BRIN index pages.  Since an attacker
  might be able to expose a few bytes of server memory, this crash is being
  treated as a security issue.
  
  Abbreviated Keys and Corrupt Indexes
  ------------------------------------
  
  In this release, the PostgreSQL Project has been forced to disable 9.5's
  Abbreviated Keys performance feature for many indexes due to reports of index
  corruption.  This may affect any B-tree indexes on TEXT, VARCHAR, and CHAR
  columns which are not in "C" locale. Indexes in other locales will lose the
  performance benefits of the feature, and should be REINDEXed in case of
  existing index corruption. The feature may be re-enabled in future versions if
  the project finds a solution for the problem.  See the release notes, and the
  wiki page on this issue for more information:
  http://wiki.postgresql.org/abbreviatedkeys_issue
  
  URL:		http://www.postgresql.org/about/news/1656/
  URL:		http://wiki.postgresql.org/abbreviatedkeys_issue
  Security:	CVE-2016-2193
  Security:	CVE-2016-3065

Modified:
  head/databases/postgresql95-server/Makefile
  head/databases/postgresql95-server/distinfo
  head/databases/postgresql95-server/pkg-plist-server

Modified: head/databases/postgresql95-server/Makefile
==============================================================================
--- head/databases/postgresql95-server/Makefile	Thu Mar 31 14:43:29 2016	(r412225)
+++ head/databases/postgresql95-server/Makefile	Thu Mar 31 14:46:39 2016	(r412226)
@@ -1,7 +1,7 @@
 # Created by: Marc G. Fournier <scrappy at FreeBSD.org>
 # $FreeBSD$
 
-DISTVERSION?=	9.5.1
+DISTVERSION?=	9.5.2
 
 MAINTAINER?=	pgsql at FreeBSD.org
 

Modified: head/databases/postgresql95-server/distinfo
==============================================================================
--- head/databases/postgresql95-server/distinfo	Thu Mar 31 14:43:29 2016	(r412225)
+++ head/databases/postgresql95-server/distinfo	Thu Mar 31 14:46:39 2016	(r412226)
@@ -1,2 +1,2 @@
-SHA256 (postgresql/postgresql-9.5.1.tar.bz2) = 6b309d8506a39773a752ff074f47656e5424576ea090b04a24fe1725958c5bd2
-SIZE (postgresql/postgresql-9.5.1.tar.bz2) = 18441638
+SHA256 (postgresql/postgresql-9.5.2.tar.bz2) = f8d132e464506b551ef498719f18cfe9d777709c7a1589dc360afc0b20e47c41
+SIZE (postgresql/postgresql-9.5.2.tar.bz2) = 18446616

Modified: head/databases/postgresql95-server/pkg-plist-server
==============================================================================
--- head/databases/postgresql95-server/pkg-plist-server	Thu Mar 31 14:43:29 2016	(r412225)
+++ head/databases/postgresql95-server/pkg-plist-server	Thu Mar 31 14:46:39 2016	(r412226)
@@ -86,6 +86,7 @@ lib/libpgcommon.a
 %%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-9.5.mo
 %%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-9.5.mo
 %%NLS%%share/locale/fr/LC_MESSAGES/pg_resetxlog-9.5.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-9.5.mo
 %%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-9.5.mo
 %%NLS%%share/locale/fr/LC_MESSAGES/postgres-9.5.mo
 %%NLS%%share/locale/id/LC_MESSAGES/postgres-9.5.mo
@@ -392,6 +393,7 @@ lib/libpgcommon.a
 %%TZDATA%%%%DATADIR%%/timezone/Asia/Bahrain
 %%TZDATA%%%%DATADIR%%/timezone/Asia/Baku
 %%TZDATA%%%%DATADIR%%/timezone/Asia/Bangkok
+%%TZDATA%%%%DATADIR%%/timezone/Asia/Barnaul
 %%TZDATA%%%%DATADIR%%/timezone/Asia/Beirut
 %%TZDATA%%%%DATADIR%%/timezone/Asia/Bishkek
 %%TZDATA%%%%DATADIR%%/timezone/Asia/Brunei
@@ -568,6 +570,7 @@ lib/libpgcommon.a
 %%TZDATA%%%%DATADIR%%/timezone/Etc/Zulu
 %%TZDATA%%%%DATADIR%%/timezone/Europe/Amsterdam
 %%TZDATA%%%%DATADIR%%/timezone/Europe/Andorra
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Astrakhan
 %%TZDATA%%%%DATADIR%%/timezone/Europe/Athens
 %%TZDATA%%%%DATADIR%%/timezone/Europe/Belfast
 %%TZDATA%%%%DATADIR%%/timezone/Europe/Belgrade
@@ -615,6 +618,7 @@ lib/libpgcommon.a
 %%TZDATA%%%%DATADIR%%/timezone/Europe/Tallinn
 %%TZDATA%%%%DATADIR%%/timezone/Europe/Tirane
 %%TZDATA%%%%DATADIR%%/timezone/Europe/Tiraspol
+%%TZDATA%%%%DATADIR%%/timezone/Europe/Ulyanovsk
 %%TZDATA%%%%DATADIR%%/timezone/Europe/Uzhgorod
 %%TZDATA%%%%DATADIR%%/timezone/Europe/Vaduz
 %%TZDATA%%%%DATADIR%%/timezone/Europe/Vatican


More information about the svn-ports-all mailing list