aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2017-10-30 13:57:30 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2017-10-30 17:20:40 +0100
commitd284f01826f1b5dcd1584110c5ba7fa6f76ed3e4 (patch)
tree6a664da7055dcd253514a7fd5eccbe12d9b57ce5 /gnu/packages
parent58ade30228ec692150d7ae1babdd013a5c8b2034 (diff)
downloadguix-d284f01826f1b5dcd1584110c5ba7fa6f76ed3e4.tar.gz
guix-d284f01826f1b5dcd1584110c5ba7fa6f76ed3e4.zip
gnu: perl-http-cookies: Update to 6.04.
* gnu/packages/perl.scm (perl-http-cookies): Update to 6.04.
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/web.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 3a62a14735..4986869817 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -2586,7 +2586,7 @@ jar in conformance with RFC 6265 <http://tools.ietf.org/html/rfc6265>.")
(define-public perl-http-cookies
(package
(name "perl-http-cookies")
- (version "6.01")
+ (version "6.04")
(source (origin
(method url-fetch)
(uri (string-append
@@ -2594,7 +2594,7 @@ jar in conformance with RFC 6265 <http://tools.ietf.org/html/rfc6265>.")
version ".tar.gz"))
(sha256
(base32
- "087bqmg22dg3vj7gssh3pcsh9y1scimkbl5h1kc8jqyfhgisvlzm"))))
+ "1m0kxcirbvbkrm2c59p1bkbvzlcdymg8fdpa7wlxijlx0xwz1iqc"))))
(build-system perl-build-system)
(propagated-inputs
`(("perl-http-message" ,perl-http-message)))
ordingly. * doc/guix.texi (Database Services): Adjust the MariaDB/MySQL section to document MYSQL-SERVICE-TYPE instead of MYSQL-SERVICE. While at it, document the EXTRA-CONTENT field. Marius Bakke 2020-10-20services: databases: Don't specify a default postgresql version....Currently, if the postgresql package major version changes, this is going to break the service upon upgrade, because PostgreSQL will reject the data files from the differing major version of the service. Because it's important to either keep running a particular major version, or intentionally upgrade, I think the configuration would be better with no default. I think this is also going to be helpful when trying to assist users upgrading PostgreSQL. * gnu/services/databases.scm (<postgresql-configuration>): Remove default for postgresql. (postgresql-service-type): Remove the default value. * gnu/tests/databases.scm (%postgresql-os): Update accordingly. * gnu/tests/guix.scm (%guix-data-service-os): Update accordingly. * gnu/tests/monitoring.scm (%zabbix-os): Update accordingly. * gnu/tests/web.scm (patchwork-os): Update accordingly. * doc/guix.texi (PostgreSQL): Update accordingly. Christopher Baines