diff options
author | Rutger Helling <rhelling@mykolab.com> | 2017-11-09 16:38:27 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-11-10 01:22:53 +0100 |
commit | 1d8e73ba67ed5d5dab497d31e77395615cc33448 (patch) | |
tree | 258461bcb7a49fe099409d3931847af1c17deed9 | |
parent | b70d72ac47fdc9364a64bd22962b2e11524e38b2 (diff) | |
download | patches-1d8e73ba67ed5d5dab497d31e77395615cc33448.tar patches-1d8e73ba67ed5d5dab497d31e77395615cc33448.tar.gz |
gnu: postgresql: Update to 10.1 [security fixes].
Fixes CVE-2017-12172, CVE-2017-15098 and CVE-2017-15099.
* gnu/packages/databases.scm (postgresql): Update to 10.1.
Signed-off-by: Marius Bakke <mbakke@fastmail.com>
-rw-r--r-- | gnu/packages/databases.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 21dd6f8ea9..0cdb75189f 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -609,14 +609,14 @@ as a drop-in replacement of MySQL.") (define-public postgresql (package (name "postgresql") - (version "10.0") + (version "10.1") (source (origin (method url-fetch) (uri (string-append "https://ftp.postgresql.org/pub/source/v" version "/postgresql-" version ".tar.bz2")) (sha256 (base32 - "1lbzwpmdxmk5bh0ix0rn72qbd52dq5cb55nzajscb0bvwa95abvi")))) + "04z7lm4h94625vbncwv98svycqr942n3q47ailqaczkszqjlxjrw")))) (build-system gnu-build-system) (arguments `(#:configure-flags '("--with-uuid=e2fs") |