Archived
1
0
Fork 0

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 @@ and high-availability (HA).")
(define-public postgresql-13 (define-public postgresql-13
(package (package
(name "postgresql") (name "postgresql")
(replacement postgresql-13.2) (replacement postgresql-13.3)
(version "13.1") (version "13.1")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
@ -1084,18 +1084,18 @@ TIMESTAMP. It also supports storage of binary large objects, including
pictures, sounds, or video.") pictures, sounds, or video.")
(license (license:x11-style "file://COPYRIGHT")))) (license (license:x11-style "file://COPYRIGHT"))))
(define-public postgresql-13.2 (define-public postgresql-13.3
(package (package
(inherit postgresql-13) (inherit postgresql-13)
(name "postgresql") (name "postgresql")
(version "13.2") (version "13.3")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://ftp.postgresql.org/pub/source/v" (uri (string-append "https://ftp.postgresql.org/pub/source/v"
version "/postgresql-" version ".tar.bz2")) version "/postgresql-" version ".tar.bz2"))
(sha256 (sha256
(base32 (base32
"1z5d847jnajcfr3wa6jn52a8xjhamvwzmz18xlm5nvxqip8grmsz")) "18dliq7h2l8irffhyyhdmfwx3si515q6gds3cxdjb9n7m17lbn9w"))
(patches (search-patches "postgresql-disable-resolve_symlinks.patch")))))) (patches (search-patches "postgresql-disable-resolve_symlinks.patch"))))))
(define-public postgresql-11 (define-public postgresql-11