Upgrade from 5.0.4 to 5.0.5.
<ChangeLog> Upgrade urgency CRITICAL: This release fixes an important AOF fysnc bug and other less critical issues. Redis 5.0.5 fixes an important issue with AOF and adds multiple very useful modules APIs. Moreover smaller bugs in other parts of Redis are fixed in this release. The AOF bug ----------- The AOF bug happens when the fsync policy is set to "everysec", which is the default: if the write load in the server drops immediately, the commands executed in the latest second may not be fsync-ed to disk as it should. This may lead to data loss in case the write load drops immediately and successively a server crash happens. Other things in this release ---------------------------- * Streams: a bug in the iterator could prevent certain items to be returned in range queries under specific conditions. * Memleak in bitfieldCommand fixed. * Modules API: Preserve client->id for blocked clients. * Fix memory leak when rewriting config file in case of write errors. * New modules API: RedisModule_GetKeyNameFromIO(). * Fix non critical bugs in diskless replication. * New mdouels API: command filtering. See RedisModule_RegisterCommandFilter(); * Tests improved to be more deterministic. * Fix a Redis Cluster bug, manual failover may abort because of the master sending PINGs to the replicas. </ChangeLog> M Makefile M distinfo
This commit is contained in:
parent
14529ca20e
commit
59c28bfc36
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=502079
2 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= redis
|
||||
DISTVERSION= 5.0.4
|
||||
DISTVERSION= 5.0.5
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://download.redis.io/releases/
|
||||
PKGNAMESUFFIX= -devel
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1553045626
|
||||
SHA256 (redis-5.0.4.tar.gz) = 3ce9ceff5a23f60913e1573f6dfcd4aa53b42d4a2789e28fa53ec2bd28c987dd
|
||||
SIZE (redis-5.0.4.tar.gz) = 1966337
|
||||
TIMESTAMP = 1558004355
|
||||
SHA256 (redis-5.0.5.tar.gz) = 2139009799d21d8ff94fc40b7f36ac46699b9e1254086299f8d3b223ca54a375
|
||||
SIZE (redis-5.0.5.tar.gz) = 1975750
|
||||
|
|
Loading…
Reference in a new issue