summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey A. Osokin <osa@FreeBSD.org>2018-12-14 00:40:07 +0000
committerSergey A. Osokin <osa@FreeBSD.org>2018-12-14 00:40:07 +0000
commitc5b54e7ed2e1a47b8b41613dab9961156a13bfcd (patch)
tree7f78887d4839b7ee753b470fad6993a26dc68939
parentAvoid to change the pkg-plist entry with every new release. (diff)
Upgrade from 5.0.2 to 5.0.3.
<ChangeLog> Upgrade urgency HIGH: Redis 5 is consolidating, upgrading is a good idea. However there is nothing very critical here, but certain issues resolved could lead to very rare crashes. Welcome to Redis 5.0.3, several interesting bug fixes here: * Redis no longer panics when you send data to a replica-mode connection that is in MONITOR or SYNC mode. * Fixes to certain sorted set edge cases. You are unlikely to ever notice those issues, but now it is more correct. * Certain BSD variants now are better supported: build & register logging on crash. * The networking core now recovers if an IPv6 address is listed in bind but is actually not able to work because there is no such protocol in the system. * redis-cli cluster mode improved in many ways. Especially the fix subcommand work was enhanced to cover other edge cases that were still not covered after the work done for Redis 5. * MEMORY USAGE is now more accurate. * DEBUG DIGEST-VALUE added in case you want to make sure a given set of keys (and not the whole DB) are excatly the same between two instances. * Fix a potential crash in the networking code related to recent changes to the way the reply is consumed. * Reject EXEC containing write commands against an instance that changed role from master to replica during our transaction. * Fix a crash in KEYS and other commands using pattern matching, in an edge case where the pattern contains a zero byte. * Fix eviction during AOF loading due to maxmemory triggered by commands executed in loading state. </ChangeLog>
Notes
Notes: svn path=/head/; revision=487397
Diffstat (limited to '')
-rw-r--r--databases/redis-devel/Makefile3
-rw-r--r--databases/redis-devel/distinfo6
-rw-r--r--databases/redis-devel/files/patch-src-config.h11
3 files changed, 4 insertions, 16 deletions
diff --git a/databases/redis-devel/Makefile b/databases/redis-devel/Makefile
index 973a48deefec..5eda46c8da48 100644
--- a/databases/redis-devel/Makefile
+++ b/databases/redis-devel/Makefile
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= redis
-DISTVERSION= 5.0.2
-PORTREVISION= 1
+DISTVERSION= 5.0.3
CATEGORIES= databases
MASTER_SITES= http://download.redis.io/releases/
PKGNAMESUFFIX= -devel
diff --git a/databases/redis-devel/distinfo b/databases/redis-devel/distinfo
index 8e9b1a281422..2028740bb7aa 100644
--- a/databases/redis-devel/distinfo
+++ b/databases/redis-devel/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1542947877
-SHA256 (redis-5.0.2.tar.gz) = 937dde6164001c083e87316aa20dad2f8542af089dfcb1cbb64f9c8300cd00ed
-SIZE (redis-5.0.2.tar.gz) = 1952989
+TIMESTAMP = 1544710884
+SHA256 (redis-5.0.3.tar.gz) = e290b4ddf817b26254a74d5d564095b11f9cd20d8f165459efa53eb63cd93e02
+SIZE (redis-5.0.3.tar.gz) = 1959445
diff --git a/databases/redis-devel/files/patch-src-config.h b/databases/redis-devel/files/patch-src-config.h
deleted file mode 100644
index 23666a862b96..000000000000
--- a/databases/redis-devel/files/patch-src-config.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/config.h.orig 2015-04-07 21:24:36.634829000 +0300
-+++ src/config.h 2015-04-07 21:24:53.388849000 +0300
-@@ -62,7 +62,7 @@
- #endif
-
- /* Test for backtrace() */
--#if defined(__APPLE__) || (defined(__linux__) && defined(__GLIBC__))
-+#if defined(__APPLE__) || (defined(__linux__) && defined(__GLIBC__)) || defined(__FreeBSD__)
- #define HAVE_BACKTRACE 1
- #endif
-