Date: Thu, 8 Nov 2018 21:10:53 +0000 (UTC) From: "Sergey A. Osokin" <osa@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r484480 - head/databases/redis-devel Message-ID: <201811082110.wA8LArIF068590@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: osa Date: Thu Nov 8 21:10:53 2018 New Revision: 484480 URL: https://svnweb.freebsd.org/changeset/ports/484480 Log: Upgrade from 5.0.0 to 5.0.1. <ChangeLog> Upgrade urgency: URGENT if you use Redis Streams. MODERATE otherwise. Hi all, this is the first patch level release of Redis 5. It contains both fixes and improvements. Here there is a list of the major ones, however read the commit messages at the end of the changelog if you want to know more about the smaller things. Let's start with the new features: * Sentinel now supports authentication! Check the Sentinel official doc for more info. * Redis-cli cluster "fix" is now able to fix a big number of clusters put in a bad condition. Previously many corner cases were not covered. Now the critical fixes: 1. Fix RESTORE mismatch reply when certain keys already expired. 2. Fix an XCLAIM non trivial issue: sometimes the command returned a wrong entry or desynchronized the protocol. And now the other fixes: 3. Stack trace generation on the Raspberry PI (and 32bit ARM) fixed. 4. Don't evict expired keys when the KEYS command is called, in order to avoid a mass deletion event. However expired keys are not displayed by KEYS as usually. 5. Improvements in the computation of the memory used, when estimating the AOF buffers. 6. XRANGE COUNT of 0 fixed. 7. "key misses" stats accounting fixed. Many cache misses were not counted. 8. When in MULTI state, return OOM while accumulating commands and there is no longer memory available. 9. Fix build on FreeBSD and possibly others. 10. Fix a crash in Redis modules, thread safe context reply accumulation. 11. Fix a race condition when producing the RDB file for full SYNC. 12. Disable protected mode in Sentinel. 13. More commands now have the HELP subcommand. 14. Fixed an issue about adaptive server HZ timer. 15. Fix cluster-replica-no-failover option name. </ChangeLog> Modified: head/databases/redis-devel/Makefile head/databases/redis-devel/distinfo Modified: head/databases/redis-devel/Makefile ============================================================================== --- head/databases/redis-devel/Makefile Thu Nov 8 21:09:27 2018 (r484479) +++ head/databases/redis-devel/Makefile Thu Nov 8 21:10:53 2018 (r484480) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 5.0.0 -PORTREVISION= 1 +DISTVERSION= 5.0.1 CATEGORIES= databases MASTER_SITES= http://download.redis.io/releases/ PKGNAMESUFFIX= -devel Modified: head/databases/redis-devel/distinfo ============================================================================== --- head/databases/redis-devel/distinfo Thu Nov 8 21:09:27 2018 (r484479) +++ head/databases/redis-devel/distinfo Thu Nov 8 21:10:53 2018 (r484480) @@ -1,3 +1,3 @@ -TIMESTAMP = 1539880826 -SHA256 (redis-5.0.0.tar.gz) = 70c98b2d0640b2b73c9d8adb4df63bcb62bad34b788fe46d1634b6cf87dc99a4 -SIZE (redis-5.0.0.tar.gz) = 1947721 +TIMESTAMP = 1541700073 +SHA256 (redis-5.0.1.tar.gz) = 82a67c0eec97f9ad379384c30ec391b269e17a3e4596393c808f02db7595abcb +SIZE (redis-5.0.1.tar.gz) = 1951542
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811082110.wA8LArIF068590>