As the excerpt from the release notes below indicates, this is a relatively small maintenance update with nothing too important in it.
Tested on amd64, sparc64 and powerpc. Upgrade urgency MODERATE: several bugs with moderate impact are fixed here. The most important issues are listed here: * Fix handling of speical chars in ACL LOAD. * Make Redis Cluster more robust about operation errors that may lead to two clusters to mix together. * Revert the sendfile() implementation of RDB transfer. It causes some delay. * Fix TLS certificate loading for chained certificates. * Fix AOF rewirting of KEEPTTL SET option. * Fix MULTI/EXEC behavior during -BUSY script errors. Full addition to the release notes here: https://github.com/antirez/redis/commit/51efb7fe25753867d39aa88a521f7c275fd8cddb Index: Makefile =================================================================== RCS file: /var/cvs/ports/databases/redis/Makefile,v retrieving revision 1.112 diff -u -p -r1.112 Makefile --- Makefile 8 Jun 2020 07:32:47 -0000 1.112 +++ Makefile 10 Jun 2020 19:51:00 -0000 @@ -1,7 +1,7 @@ # $OpenBSD: Makefile,v 1.112 2020/06/08 07:32:47 tb Exp $ COMMENT = persistent key-value database -DISTNAME = redis-6.0.4 +DISTNAME = redis-6.0.5 CATEGORIES = databases HOMEPAGE = https://redis.io/ Index: distinfo =================================================================== RCS file: /var/cvs/ports/databases/redis/distinfo,v retrieving revision 1.87 diff -u -p -r1.87 distinfo --- distinfo 8 Jun 2020 07:32:47 -0000 1.87 +++ distinfo 10 Jun 2020 19:51:07 -0000 @@ -1,2 +1,2 @@ -SHA256 (redis-6.0.4.tar.gz) = MzcAWh4MOqKTyHwxNGfqisEZhJIfqwiAeZi6dlyZQ94= -SIZE (redis-6.0.4.tar.gz) = 2217173 +SHA256 (redis-6.0.5.tar.gz) = Qs+GoRTSpFG4mPzalqzU0BBip9uqrSgB2RZKNviY9ZY= +SIZE (redis-6.0.5.tar.gz) = 2217666 Index: patches/patch-src_networking_c =================================================================== RCS file: /var/cvs/ports/databases/redis/patches/patch-src_networking_c,v retrieving revision 1.2 diff -u -p -r1.2 patch-src_networking_c --- patches/patch-src_networking_c 8 Jun 2020 07:32:47 -0000 1.2 +++ patches/patch-src_networking_c 10 Jun 2020 19:53:16 -0000 @@ -5,7 +5,7 @@ time_t is long long, so use llabs to avo Index: src/networking.c --- src/networking.c.orig +++ src/networking.c -@@ -2554,7 +2554,7 @@ void securityWarningCommand(client *c) { +@@ -2559,7 +2559,7 @@ void securityWarningCommand(client *c) { static time_t logged_time; time_t now = time(NULL);