gnu: PostgreSQL: Update to 13.3 [fixes CVE-2021-{32027,32028,32029}].

* gnu/packages/databases.scm (postgresql-13)[replacement]: Use postgresql-13.3.
(postgresql-13.2): Replace with ...
(postgresql-13.3): ... new variable.
This commit is contained in:
Leo Famulari 2021-05-17 14:50:04 -04:00
parent 946dd6103a
commit ef221c8b71
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -1035,7 +1035,7 @@ (define-public galera
(define-public postgresql-13
(package
(name "postgresql")
(replacement postgresql-13.2)
(replacement postgresql-13.3)
(version "13.1")
(source (origin
(method url-fetch)
@ -1084,18 +1084,18 @@ (define-public postgresql-13
pictures, sounds, or video.")
(license (license:x11-style "file://COPYRIGHT"))))
(define-public postgresql-13.2
(define-public postgresql-13.3
(package
(inherit postgresql-13)
(name "postgresql")
(version "13.2")
(version "13.3")
(source (origin
(method url-fetch)
(uri (string-append "https://ftp.postgresql.org/pub/source/v"
version "/postgresql-" version ".tar.bz2"))
(sha256
(base32
"1z5d847jnajcfr3wa6jn52a8xjhamvwzmz18xlm5nvxqip8grmsz"))
"18dliq7h2l8irffhyyhdmfwx3si515q6gds3cxdjb9n7m17lbn9w"))
(patches (search-patches "postgresql-disable-resolve_symlinks.patch"))))))
(define-public postgresql-11