pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/databases/redis



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Dec 13 19:34:33 UTC 2018

Modified Files:
        pkgsrc/databases/redis: Makefile PLIST distinfo
Removed Files:
        pkgsrc/databases/redis/patches: patch-ab patch-ac

Log Message:
redis: updated to 5.0.3

Redis 5.0.3
===========
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.

Redis 5.0.2
===========
Upgrade urgency: CRITICAL if you use streams and consumer groups.
                 HIGH if you use redis-cli with Redis Cluster.
                 LOW otherwise.

Welcome to Redis 5.0.2. This release fixes two issues with Streams consumer
groups, where items could be returned duplicated by XREADGROUP when accessing
the history, and another bug where XREADGROUP can report some history even
if the comsumer pending list is empty. Both problems were addressed and unit
tests to avoid regressions implemented. Moreover this release fixes some
issue with redis-cli when in cluster mode. Finally some FreeBSD and DragonFly
build problems are now resolved. The list of the commits is below.

Redis 5.0.1
===========
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.

Redis 5.0.0
===========
Upgrade urgency CRITICAL: Several fixes to streams AOF and replication.

1. The new Stream data type. https://redis.io/topics/streams-intro
2. New Redis modules APIs: Timers, Cluster and Dictionary APIs.
3. RDB now store LFU and LRU information.
4. The cluster manager was ported from Ruby (redis-trib.rb) to C code
   inside redis-cli. Check `redis-cli --cluster help` for more info.
5. New sorted set commands: ZPOPMIN/MAX and blocking variants.
6. Active defragmentation version 2.
7. Improvemenets in HyperLogLog implementations.
8. Better memory reporting capabilities.
9. Many commands with sub-commands now have an HELP subcommand.
10. Better performances when clients connect and disconnect often.
11. Many bug fixes and other random improvements.
12. Jemalloc was upgraded to version 5.1
13. CLIENT UNBLOCK and CLIENT ID.
14. The LOLWUT command was added. http://antirez.com/news/123
15. We no longer use the "slave" word if not for API backward compatibility.
16. Differnet optimizations in the networking layer.
17. Lua improvements:
    - Better propagation of Lua scripts to replicas / AOF.
    - Lua scripts can now timeout and get in -BUSY state in the replica as well.
18. Dynamic HZ to balance idle CPU usage with responsiveness.
19. The Redis core was refactored and improved in many ways.


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 pkgsrc/databases/redis/Makefile
cvs rdiff -u -r1.13 -r1.14 pkgsrc/databases/redis/PLIST
cvs rdiff -u -r1.41 -r1.42 pkgsrc/databases/redis/distinfo
cvs rdiff -u -r1.5 -r0 pkgsrc/databases/redis/patches/patch-ab
cvs rdiff -u -r1.7 -r0 pkgsrc/databases/redis/patches/patch-ac

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/databases/redis/Makefile
diff -u pkgsrc/databases/redis/Makefile:1.40 pkgsrc/databases/redis/Makefile:1.41
--- pkgsrc/databases/redis/Makefile:1.40        Sun Aug 19 08:39:36 2018
+++ pkgsrc/databases/redis/Makefile     Thu Dec 13 19:34:33 2018
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.40 2018/08/19 08:39:36 adam Exp $
+# $NetBSD: Makefile,v 1.41 2018/12/13 19:34:33 adam Exp $
 
-DISTNAME=      redis-4.0.11
+DISTNAME=      redis-5.0.3
 CATEGORIES=    databases
 MASTER_SITES=  http://download.redis.io/releases/
 
@@ -10,7 +10,7 @@ COMMENT=      Persistent key-value database w
 LICENSE=       modified-bsd
 
 USE_LANGUAGES=         c99
-USE_TOOLS+=            gmake pax
+USE_TOOLS+=            gmake
 
 .include "../../mk/bsd.prefs.mk"
 
@@ -65,8 +65,6 @@ post-install:
 .for file in ${DOCFILES}
        ${INSTALL_DATA} ${WRKSRC}/${file} ${DESTDIR}${PREFIX}/${DOCDIR}/${file}
 .endfor
-       cd ${WRKSRC}/utils && pax -rwpp . ${DESTDIR}${EGDIR}/utils/
-       cd ${WRKSRC}/tests && pax -rwpp . ${DESTDIR}${EGDIR}/tests/
 
 do-test:
        cd ${WRKSRC} && ${SH} runtest

Index: pkgsrc/databases/redis/PLIST
diff -u pkgsrc/databases/redis/PLIST:1.13 pkgsrc/databases/redis/PLIST:1.14
--- pkgsrc/databases/redis/PLIST:1.13   Wed Apr  4 10:47:49 2018
+++ pkgsrc/databases/redis/PLIST        Thu Dec 13 19:34:33 2018
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.13 2018/04/04 10:47:49 fhajny Exp $
+@comment $NetBSD: PLIST,v 1.14 2018/12/13 19:34:33 adam Exp $
 bin/redis-benchmark
 bin/redis-check-aof
 bin/redis-check-rdb
@@ -10,126 +10,3 @@ share/doc/redis/BUGS
 share/doc/redis/COPYING
 share/doc/redis/README.md
 share/examples/redis/redis.conf.example
-share/examples/redis/tests/assets/default.conf
-share/examples/redis/tests/assets/encodings.rdb
-share/examples/redis/tests/assets/hash-zipmap.rdb
-share/examples/redis/tests/cluster/cluster.tcl
-share/examples/redis/tests/cluster/run.tcl
-share/examples/redis/tests/cluster/tests/00-base.tcl
-share/examples/redis/tests/cluster/tests/01-faildet.tcl
-share/examples/redis/tests/cluster/tests/02-failover.tcl
-share/examples/redis/tests/cluster/tests/03-failover-loop.tcl
-share/examples/redis/tests/cluster/tests/04-resharding.tcl
-share/examples/redis/tests/cluster/tests/05-slave-selection.tcl
-share/examples/redis/tests/cluster/tests/06-slave-stop-cond.tcl
-share/examples/redis/tests/cluster/tests/07-replica-migration.tcl
-share/examples/redis/tests/cluster/tests/08-update-msg.tcl
-share/examples/redis/tests/cluster/tests/09-pubsub.tcl
-share/examples/redis/tests/cluster/tests/10-manual-failover.tcl
-share/examples/redis/tests/cluster/tests/11-manual-takeover.tcl
-share/examples/redis/tests/cluster/tests/12-replica-migration-2.tcl
-share/examples/redis/tests/cluster/tests/13-no-failover-option.tcl
-share/examples/redis/tests/cluster/tests/helpers/onlydots.tcl
-share/examples/redis/tests/cluster/tests/includes/init-tests.tcl
-share/examples/redis/tests/cluster/tmp/.gitignore
-share/examples/redis/tests/helpers/bg_complex_data.tcl
-share/examples/redis/tests/helpers/gen_write_load.tcl
-share/examples/redis/tests/instances.tcl
-share/examples/redis/tests/integration/aof-race.tcl
-share/examples/redis/tests/integration/aof.tcl
-share/examples/redis/tests/integration/convert-zipmap-hash-on-load.tcl
-share/examples/redis/tests/integration/logging.tcl
-share/examples/redis/tests/integration/psync2-reg.tcl
-share/examples/redis/tests/integration/psync2.tcl
-share/examples/redis/tests/integration/rdb.tcl
-share/examples/redis/tests/integration/redis-cli.tcl
-share/examples/redis/tests/integration/replication-2.tcl
-share/examples/redis/tests/integration/replication-3.tcl
-share/examples/redis/tests/integration/replication-4.tcl
-share/examples/redis/tests/integration/replication-psync.tcl
-share/examples/redis/tests/integration/replication.tcl
-share/examples/redis/tests/sentinel/run.tcl
-share/examples/redis/tests/sentinel/tests/00-base.tcl
-share/examples/redis/tests/sentinel/tests/01-conf-update.tcl
-share/examples/redis/tests/sentinel/tests/02-slaves-reconf.tcl
-share/examples/redis/tests/sentinel/tests/03-runtime-reconf.tcl
-share/examples/redis/tests/sentinel/tests/04-slave-selection.tcl
-share/examples/redis/tests/sentinel/tests/05-manual.tcl
-share/examples/redis/tests/sentinel/tests/06-ckquorum.tcl
-share/examples/redis/tests/sentinel/tests/07-down-conditions.tcl
-share/examples/redis/tests/sentinel/tests/includes/init-tests.tcl
-share/examples/redis/tests/sentinel/tmp/.gitignore
-share/examples/redis/tests/support/cluster.tcl
-share/examples/redis/tests/support/redis.tcl
-share/examples/redis/tests/support/server.tcl
-share/examples/redis/tests/support/test.tcl
-share/examples/redis/tests/support/tmpfile.tcl
-share/examples/redis/tests/support/util.tcl
-share/examples/redis/tests/test_helper.tcl
-share/examples/redis/tests/tmp/.gitignore
-share/examples/redis/tests/unit/aofrw.tcl
-share/examples/redis/tests/unit/auth.tcl
-share/examples/redis/tests/unit/bitfield.tcl
-share/examples/redis/tests/unit/bitops.tcl
-share/examples/redis/tests/unit/dump.tcl
-share/examples/redis/tests/unit/expire.tcl
-share/examples/redis/tests/unit/geo.tcl
-share/examples/redis/tests/unit/hyperloglog.tcl
-share/examples/redis/tests/unit/introspection-2.tcl
-share/examples/redis/tests/unit/introspection.tcl
-share/examples/redis/tests/unit/keyspace.tcl
-share/examples/redis/tests/unit/latency-monitor.tcl
-share/examples/redis/tests/unit/lazyfree.tcl
-share/examples/redis/tests/unit/limits.tcl
-share/examples/redis/tests/unit/maxmemory.tcl
-share/examples/redis/tests/unit/memefficiency.tcl
-share/examples/redis/tests/unit/multi.tcl
-share/examples/redis/tests/unit/obuf-limits.tcl
-share/examples/redis/tests/unit/other.tcl
-share/examples/redis/tests/unit/printver.tcl
-share/examples/redis/tests/unit/protocol.tcl
-share/examples/redis/tests/unit/pubsub.tcl
-share/examples/redis/tests/unit/quit.tcl
-share/examples/redis/tests/unit/scan.tcl
-share/examples/redis/tests/unit/scripting.tcl
-share/examples/redis/tests/unit/slowlog.tcl
-share/examples/redis/tests/unit/sort.tcl
-share/examples/redis/tests/unit/type/hash.tcl
-share/examples/redis/tests/unit/type/incr.tcl
-share/examples/redis/tests/unit/type/list-2.tcl
-share/examples/redis/tests/unit/type/list-3.tcl
-share/examples/redis/tests/unit/type/list-common.tcl
-share/examples/redis/tests/unit/type/list.tcl
-share/examples/redis/tests/unit/type/set.tcl
-share/examples/redis/tests/unit/type/string.tcl
-share/examples/redis/tests/unit/type/zset.tcl
-share/examples/redis/tests/unit/wait.tcl
-share/examples/redis/utils/build-static-symbols.tcl
-share/examples/redis/utils/cluster_fail_time.tcl
-share/examples/redis/utils/corrupt_rdb.c
-share/examples/redis/utils/create-cluster/.gitignore
-share/examples/redis/utils/create-cluster/README
-share/examples/redis/utils/create-cluster/create-cluster
-share/examples/redis/utils/generate-command-help.rb
-share/examples/redis/utils/graphs/commits-over-time/README.md
-share/examples/redis/utils/graphs/commits-over-time/genhtml.tcl
-share/examples/redis/utils/hashtable/README
-share/examples/redis/utils/hashtable/rehashing.c
-share/examples/redis/utils/hyperloglog/.gitignore
-share/examples/redis/utils/hyperloglog/hll-err.rb
-share/examples/redis/utils/hyperloglog/hll-gnuplot-graph.rb
-share/examples/redis/utils/install_server.sh
-share/examples/redis/utils/lru/README
-share/examples/redis/utils/lru/lfu-simulation.c
-share/examples/redis/utils/lru/test-lru.rb
-share/examples/redis/utils/redis-copy.rb
-share/examples/redis/utils/redis-sha1.rb
-share/examples/redis/utils/redis_init_script
-share/examples/redis/utils/redis_init_script.tpl
-share/examples/redis/utils/releasetools/01_create_tarball.sh
-share/examples/redis/utils/releasetools/02_upload_tarball.sh
-share/examples/redis/utils/releasetools/03_test_release.sh
-share/examples/redis/utils/releasetools/04_release_hash.sh
-share/examples/redis/utils/releasetools/changelog.tcl
-share/examples/redis/utils/speed-regression.tcl
-share/examples/redis/utils/whatisdoing.sh

Index: pkgsrc/databases/redis/distinfo
diff -u pkgsrc/databases/redis/distinfo:1.41 pkgsrc/databases/redis/distinfo:1.42
--- pkgsrc/databases/redis/distinfo:1.41        Sun Aug 19 08:39:36 2018
+++ pkgsrc/databases/redis/distinfo     Thu Dec 13 19:34:33 2018
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.41 2018/08/19 08:39:36 adam Exp $
+$NetBSD: distinfo,v 1.42 2018/12/13 19:34:33 adam Exp $
 
-SHA1 (redis-4.0.11.tar.gz) = a13ccf0f7051f82dc1c979bd94f0b9a9ba039122
-RMD160 (redis-4.0.11.tar.gz) = 30aff2b0b9250f5db6c074796bdc40feb1802e68
-SHA512 (redis-4.0.11.tar.gz) = f0054af9ca2143731a397b2b21285387707b7f40d9326ba15225feb1a2ff470fab5194308342f63bbe1081f84c7e9ef19543c5a8e3eae49e17bfc515c64201f0
-Size (redis-4.0.11.tar.gz) = 1739656 bytes
-SHA1 (patch-ab) = f8d2d20a5ae49ecd49a452b6e260f5a37b0d52e0
-SHA1 (patch-ac) = 758bb6c2da7f6822d19fd5f93409997933fd874a
+SHA1 (redis-5.0.3.tar.gz) = a43c24ea6365482323b78e21752d610756efcc39
+RMD160 (redis-5.0.3.tar.gz) = 676d1db2d5e606047a8ed6a0ffdccbcea3aa89bc
+SHA512 (redis-5.0.3.tar.gz) = 5915b14502438bf7c3f56e38640dda54b095bd87501aefa6e386c9cef48e8d1e625e980643d128d91b8cab26dd51d5d99ca66fa638dc04e5ba315fe43f11f58b
+Size (redis-5.0.3.tar.gz) = 1959445 bytes
+SHA1 (patch-redis.conf) = 528c28e2b7483eb20ccab8f2ab9543822792f016
+SHA1 (patch-src_Makefile) = 2c4f6d822980874cc9ff95d239040985fa364649
 SHA1 (patch-src_hyperloglog.c) = 65a4a220ccd4282162c50293f4fe278a43b84239
 SHA1 (patch-src_object.c) = 30ffaec9c7e6135e3a5576cd1a35d7bcec668299



Home | Main Index | Thread Index | Old Index