Upgrade urgency HIGH: Anyone who's using Redis 6.0.7 with Sentinel or
CONFIG REWRITE command is affected and should upgrade ASAP, see #7760.
[https://github.com/redis/redis/issues/7760]

Bug fixes:

* CONFIG REWRITE after setting oom-score-adj-values either via CONFIG SET or
  loading it from a config file, will generate a corrupt config file that will
  cause Redis to fail to start
* Fix issue with redis-cli --pipe on MacOS
* Fix RESP3 response for HKEYS/HVALS on non-existing key
* Various small bug fixes

Full release notes:
https://github.com/redis/redis/blob/6.0.8/00-RELEASENOTES

The redis-cli fix mentioned in above seems to have fixed the flaky
regress test.

Builds and tests fine on amd64 and sparc64. I can't test on powerpc,
but judging from the diff to 6.0.7, I don't expect any difficulties.

Index: Makefile
===================================================================
RCS file: /var/cvs/ports/databases/redis/Makefile,v
retrieving revision 1.115
diff -u -p -r1.115 Makefile
--- Makefile    3 Sep 2020 04:29:27 -0000       1.115
+++ Makefile    10 Sep 2020 14:19:02 -0000
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.115 2020/09/03 04:29:27 tb Exp $
 
 COMMENT =              persistent key-value database
-DISTNAME =             redis-6.0.7
+DISTNAME =             redis-6.0.8
 CATEGORIES =           databases
 HOMEPAGE =             https://redis.io/
 
Index: distinfo
===================================================================
RCS file: /var/cvs/ports/databases/redis/distinfo,v
retrieving revision 1.89
diff -u -p -r1.89 distinfo
--- distinfo    3 Sep 2020 04:29:27 -0000       1.89
+++ distinfo    10 Sep 2020 14:19:07 -0000
@@ -1,2 +1,2 @@
-SHA256 (redis-6.0.7.tar.gz) = wqqhpMfnLHCt7fl2/dXh0005WYkoPaudeEDgowS7I5M=
-SIZE (redis-6.0.7.tar.gz) = 2240490
+SHA256 (redis-6.0.8.tar.gz) = BPof3cOb0a7LZzndXdc4WKNRW0J6zR4pR6Ztrc6GjWg=
+SIZE (redis-6.0.8.tar.gz) = 2247528
Index: patches/patch-src_Makefile
===================================================================
RCS file: /var/cvs/ports/databases/redis/patches/patch-src_Makefile,v
retrieving revision 1.34
diff -u -p -r1.34 patch-src_Makefile
--- patches/patch-src_Makefile  3 Sep 2020 04:29:27 -0000       1.34
+++ patches/patch-src_Makefile  10 Sep 2020 14:24:40 -0000
@@ -62,7 +62,7 @@ Index: src/Makefile
  all: $(REDIS_SERVER_NAME) $(REDIS_SENTINEL_NAME) $(REDIS_CLI_NAME) 
$(REDIS_BENCHMARK_NAME) $(REDIS_CHECK_RDB_NAME) $(REDIS_CHECK_AOF_NAME)
        @echo ""
        @echo "Hint: It's a good idea to run 'make test' ;)"
-@@ -280,7 +283,7 @@ endif
+@@ -282,7 +285,7 @@ endif
  
  # redis-server
  $(REDIS_SERVER_NAME): $(REDIS_SERVER_OBJ)
@@ -71,7 +71,7 @@ Index: src/Makefile
  
  # redis-sentinel
  $(REDIS_SENTINEL_NAME): $(REDIS_SERVER_NAME)
-@@ -327,7 +330,7 @@ distclean: clean
+@@ -329,7 +332,7 @@ distclean: clean
  .PHONY: distclean
  
  test: $(REDIS_SERVER_NAME) $(REDIS_CHECK_AOF_NAME)
@@ -80,7 +80,7 @@ Index: src/Makefile
  
  test-sentinel: $(REDIS_SENTINEL_NAME)
        @(cd ..; ./runtest-sentinel)
-@@ -371,13 +374,14 @@ src/help.h:
+@@ -373,13 +376,14 @@ src/help.h:
        @../utils/generate-command-help.rb > help.h
  
  install: all

Reply via email to