svn commit: r502079 - head/databases/redis-devel
Sergey A. Osokin
osa at FreeBSD.org
Mon May 20 01:35:12 UTC 2019
Author: osa
Date: Mon May 20 01:35:11 2019
New Revision: 502079
URL: https://svnweb.freebsd.org/changeset/ports/502079
Log:
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
Modified:
head/databases/redis-devel/Makefile
head/databases/redis-devel/distinfo
Modified: head/databases/redis-devel/Makefile
==============================================================================
--- head/databases/redis-devel/Makefile Mon May 20 01:19:27 2019 (r502078)
+++ head/databases/redis-devel/Makefile Mon May 20 01:35:11 2019 (r502079)
@@ -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
Modified: head/databases/redis-devel/distinfo
==============================================================================
--- head/databases/redis-devel/distinfo Mon May 20 01:19:27 2019 (r502078)
+++ head/databases/redis-devel/distinfo Mon May 20 01:35:11 2019 (r502079)
@@ -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
More information about the svn-ports-all
mailing list