Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 May 2019 01:35:11 +0000 (UTC)
From:      "Sergey A. Osokin" <osa@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r502079 - head/databases/redis-devel
Message-ID:  <201905200135.x4K1ZBrL051424@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905200135.x4K1ZBrL051424>