./databases/redis, Persistent key-value database with built-in net interface

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: pkgsrc-2019Q1, Version: 5.0.4, Package name: redis-5.0.4, Maintainer: fhajny

Redis is an advanced key-value store. It is similar to memcached but the
dataset is not volatile, and values can be strings, exactly like in memcached,
but also lists, sets, and ordered sets. All these data types can be manipulated
with atomic operations to push/pop elements, add/remove elements, perform
server side union, intersection, and difference between sets, and so forth.
Redis also supports different kinds of sorting.


Master sites:

SHA1: db4cad466db8fbde7c05131d72f526a2e860078a
RMD160: 9b483e4b08553b075d037d2014714b7b77429339
Filesize: 1920.251 KB

Version history: (Expand)


CVS history: (Expand)


   2019-04-10 11:32:20 by Benny Siegert | Files touched by this commit (2) | Package updated
Log message:
Pullup ticket #5931 - requested by taca
databases/redis: security fix

Revisions pulled up:
- databases/redis/Makefile                                      1.43
- databases/redis/distinfo                                      1.43

---
   Module Name:	pkgsrc
   Committed By:	adam
   Date:		Tue Apr  2 07:43:07 UTC 2019

   Modified Files:
   	pkgsrc/databases/redis: Makefile distinfo

   Log message:
   redis: updated to 5.0.4

   Redis 5.0.4

   Upgrade urgency HIGH: This release fixes several Redis stability issues.

   Dear Redis users, this release includes a number of fixes for bugs that may
   result in Redis crashing in special conditions (not normal usage, but specific
   artificial conditions), fixes to certain Redis behaviors especially around
   Redis streams, and finally a set of new APIs for Redis Modules.

   Specifically:
   * Hyperloglog different coding errors leading to potential crashes were fixed.
   * A replication bug leading to a potential crash in case of plain misuse of \ 
handshake commands was fixed.
   * XCLAIM command incrementing of number of deliveries was fixed.
   * LFU field management in objects was improved.
   * A potential overflow in the redis-check-aof was fixed.
   * A memory leak in case of API misuse was fixed.
   * ZPOP* behavior when count is 0 is fixed.
   * A few redis-cli --cluster bugs were fixed, plus a few improvements.
   * Many other smaller bugs.