Changes 9.4.1:

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-12 09:34:28 +00:00
parent 4c3a7d56ca
commit 3025feb402
5 changed files with 16 additions and 9 deletions

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.1 2015/01/14 21:01:18 adam Exp $
@comment $NetBSD: PLIST,v 1.2 2015/02/12 09:34:28 adam Exp $
bin/clusterdb
bin/createdb
bin/createlang
@ -202,6 +202,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/common/username.h
include/postgresql/server/datatype/timestamp.h
include/postgresql/server/dynloader.h

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.1 2015/01/14 21:01:19 adam Exp $
@comment $NetBSD: PLIST,v 1.2 2015/02/12 09:34:28 adam Exp $
man/man1/clusterdb.1
man/man1/createdb.1
man/man1/createlang.1
@ -1066,6 +1066,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
@ -1081,6 +1082,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
@ -1091,6 +1093,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
@ -1105,7 +1108,9 @@ 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-9-4-1.html
share/doc/postgresql/html/release-9-4.html
share/doc/postgresql/html/release.html
share/doc/postgresql/html/resources.html

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.1 2015/01/14 21:01:19 adam Exp $
@comment $NetBSD: PLIST,v 1.2 2015/02/12 09:34:28 adam Exp $
bin/postgres
bin/postmaster
include/postgresql/server/plpgsql.h
@ -38,6 +38,7 @@ share/locale/es/LC_MESSAGES/plpgsql-9.4.mo
share/locale/es/LC_MESSAGES/postgres-9.4.mo
share/locale/fr/LC_MESSAGES/plpgsql-9.4.mo
share/locale/fr/LC_MESSAGES/postgres-9.4.mo
share/locale/id/LC_MESSAGES/postgres-9.4.mo
share/locale/it/LC_MESSAGES/plpgsql-9.4.mo
share/locale/it/LC_MESSAGES/postgres-9.4.mo
share/locale/ja/LC_MESSAGES/plpgsql-9.4.mo

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile.common,v 1.1 2015/01/14 21:01:18 adam Exp $
# $NetBSD: Makefile.common,v 1.2 2015/02/12 09:34:28 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/postgresql94-server/Makefile
# used by databases/postgresql94-upgrade/Makefile
DISTNAME= postgresql-9.4.0
DISTNAME= postgresql-9.4.1
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.2 2015/01/23 15:06:01 joerg Exp $
$NetBSD: distinfo,v 1.3 2015/02/12 09:34:28 adam Exp $
SHA1 (postgresql-9.4.0.tar.bz2) = bdf7f4872c7dd6bfee5ba04de81bf5097b73d5d7
RMD160 (postgresql-9.4.0.tar.bz2) = 6abafacc675f30214580405a1fa757064b8b9a2e
Size (postgresql-9.4.0.tar.bz2) = 17344910 bytes
SHA1 (postgresql-9.4.1.tar.bz2) = 0086c9625e727be5b1ef00c4c694e762e41eba50
RMD160 (postgresql-9.4.1.tar.bz2) = 3534c5310df23ad9c806361cab822e35cd55eafe
Size (postgresql-9.4.1.tar.bz2) = 17549976 bytes
SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
SHA1 (patch-config_perl.m4) = e035132b1c281a75752d570ac5e29a11176c25c5
SHA1 (patch-configure) = 59fe9a768caf8a5d308acac60c28bc6bb2c40632