From owner-svn-ports-head@freebsd.org Sun Aug 5 16:24:15 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CAB8F1057075; Sun, 5 Aug 2018 16:24:14 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7049E94DDC; Sun, 5 Aug 2018 16:24:14 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4F51120A6E; Sun, 5 Aug 2018 16:24:14 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w75GOErl020601; Sun, 5 Aug 2018 16:24:14 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w75GODaW020595; Sun, 5 Aug 2018 16:24:13 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201808051624.w75GODaW020595@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Sun, 5 Aug 2018 16:24:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476417 - in head/databases/redis-devel: . files X-SVN-Group: ports-head X-SVN-Commit-Author: osa X-SVN-Commit-Paths: in head/databases/redis-devel: . files X-SVN-Commit-Revision: 476417 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Aug 2018 16:24:15 -0000 Author: osa Date: Sun Aug 5 16:24:13 2018 New Revision: 476417 URL: https://svnweb.freebsd.org/changeset/ports/476417 Log: Upgrade from 5.0-rc3 to 5.0-rc4. Upgrade urgency HIGH: Many non critical but important issues fixed. CRITICAL for Stream users: Many important bugs fixed. Fixes: * A number of fixes related to Streams: stability and correctnes. * Fix dbRandomKey() potential infinite loop. * Improve eviction LFU/LRU when keys are created by INCR commands family. * Active defragmentation is now working on Redis 5. * Fix corner case in Redis CLuster / Sentinel failover, by resetting the disconnection time with master in a more appropriate place. * Use a private version of localtime() to avoid potential deadlocks. * Different redis-cli non critical fixes. * Fix rare replication stream corruption with disk-based replication. Improvements: * Sentinel: add an option to deny online script reconfiguration. * Improved RESTORE command. * Sentinel command renaming: allows to use Sentinel with Redis instances that have non standard command names. * CLIENT ID and CLIENT UNBLOCK. * CLIENT LIST now supports a TYPE option. * redis-cli --cluster now supports authentication. * redis-trib is now deprecated (use redis-cli --cluster). * Better slaves output buffers efficiency. * Faster INFO when there are many clients connected. * Dynamic HZ feature. * Improvements in what the MEMORY command is able to report. * Add year in log. (WARNING: may be incompatible with log scraping tools) * Lazy freeing now works even when values are overwritten (for instance SET). * Faster ZADD when elements scores are updated. * Improvements to the test suite, including many new options. Modified: head/databases/redis-devel/Makefile head/databases/redis-devel/distinfo head/databases/redis-devel/files/extra-patch-src-Makefile.lua head/databases/redis-devel/files/extra-patch-src-Makefile.luajit Modified: head/databases/redis-devel/Makefile ============================================================================== --- head/databases/redis-devel/Makefile Sun Aug 5 16:13:45 2018 (r476416) +++ head/databases/redis-devel/Makefile Sun Aug 5 16:24:13 2018 (r476417) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 5.0-rc3 -PORTREVISION= 1 +DISTVERSION= 5.0-rc4 CATEGORIES= databases PKGNAMESUFFIX= -devel Modified: head/databases/redis-devel/distinfo ============================================================================== --- head/databases/redis-devel/distinfo Sun Aug 5 16:13:45 2018 (r476416) +++ head/databases/redis-devel/distinfo Sun Aug 5 16:24:13 2018 (r476417) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529067158 -SHA256 (antirez-redis-5.0-rc3_GH0.tar.gz) = 4bb2eeef3695d66d8b64767825acfeeb157d64536233eac7eae71b236fd6554f -SIZE (antirez-redis-5.0-rc3_GH0.tar.gz) = 1925158 +TIMESTAMP = 1533485248 +SHA256 (antirez-redis-5.0-rc4_GH0.tar.gz) = 99a3bfc31517f5f560a459141c14e030e6ad0980e5ae5cb16f319e57980b6db4 +SIZE (antirez-redis-5.0-rc4_GH0.tar.gz) = 1937238 Modified: head/databases/redis-devel/files/extra-patch-src-Makefile.lua ============================================================================== --- head/databases/redis-devel/files/extra-patch-src-Makefile.lua Sun Aug 5 16:13:45 2018 (r476416) +++ head/databases/redis-devel/files/extra-patch-src-Makefile.lua Sun Aug 5 16:24:13 2018 (r476417) @@ -42,7 +42,7 @@ @@ -150,6 +153,7 @@ REDIS_SERVER_NAME=redis-server REDIS_SENTINEL_NAME=redis-sentinel - REDIS_SERVER_OBJ=adlist.o quicklist.o ae.o anet.o dict.o server.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o pubsub.o multi.o debug.o sort.o intset.o syncio.o cluster.o crc16.o endianconv.o slowlog.o scripting.o bio.o rio.o rand.o memtest.o crc64.o bitops.o sentinel.o notify.o setproctitle.o blocked.o hyperloglog.o latency.o sparkline.o redis-check-rdb.o redis-check-aof.o geo.o lazyfree.o module.o evict.o expire.o geohash.o geohash_helper.o childinfo.o defrag.o siphash.o rax.o + REDIS_SERVER_OBJ=adlist.o quicklist.o ae.o anet.o dict.o server.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o pubsub.o multi.o debug.o sort.o intset.o syncio.o cluster.o crc16.o endianconv.o slowlog.o scripting.o bio.o rio.o rand.o memtest.o crc64.o bitops.o sentinel.o notify.o setproctitle.o blocked.o hyperloglog.o latency.o sparkline.o redis-check-rdb.o redis-check-aof.o geo.o lazyfree.o module.o evict.o expire.o geohash.o geohash_helper.o childinfo.o defrag.o siphash.o rax.o t_stream.o listpack.o localtime.o +REDIS_SERVER_OBJ+=fpconv.o lua_bit.o lua_cjson.o lua_cmsgpack.o lua_struct.o strbuf.o REDIS_CLI_NAME=redis-cli REDIS_CLI_OBJ=anet.o adlist.o redis-cli.o zmalloc.o release.o anet.o ae.o crc64.o Modified: head/databases/redis-devel/files/extra-patch-src-Makefile.luajit ============================================================================== --- head/databases/redis-devel/files/extra-patch-src-Makefile.luajit Sun Aug 5 16:13:45 2018 (r476416) +++ head/databases/redis-devel/files/extra-patch-src-Makefile.luajit Sun Aug 5 16:24:13 2018 (r476417) @@ -42,7 +42,7 @@ @@ -150,6 +153,7 @@ REDIS_SERVER_NAME=redis-server REDIS_SENTINEL_NAME=redis-sentinel - REDIS_SERVER_OBJ=adlist.o quicklist.o ae.o anet.o dict.o server.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o pubsub.o multi.o debug.o sort.o intset.o syncio.o cluster.o crc16.o endianconv.o slowlog.o scripting.o bio.o rio.o rand.o memtest.o crc64.o bitops.o sentinel.o notify.o setproctitle.o blocked.o hyperloglog.o latency.o sparkline.o redis-check-rdb.o redis-check-aof.o geo.o lazyfree.o module.o evict.o expire.o geohash.o geohash_helper.o childinfo.o defrag.o siphash.o rax.o + REDIS_SERVER_OBJ=adlist.o quicklist.o ae.o anet.o dict.o server.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o pubsub.o multi.o debug.o sort.o intset.o syncio.o cluster.o crc16.o endianconv.o slowlog.o scripting.o bio.o rio.o rand.o memtest.o crc64.o bitops.o sentinel.o notify.o setproctitle.o blocked.o hyperloglog.o latency.o sparkline.o redis-check-rdb.o redis-check-aof.o geo.o lazyfree.o module.o evict.o expire.o geohash.o geohash_helper.o childinfo.o defrag.o siphash.o rax.o t_stream.o listpack.o localtime.o +REDIS_SERVER_OBJ+=fpconv.o lua_bit.o lua_cjson.o lua_cmsgpack.o lua_struct.o strbuf.o REDIS_CLI_NAME=redis-cli REDIS_CLI_OBJ=anet.o adlist.o redis-cli.o zmalloc.o release.o anet.o ae.o crc64.o