diff options
author | osa <osa@FreeBSD.org> | 2018-11-09 05:10:53 +0800 |
---|---|---|
committer | osa <osa@FreeBSD.org> | 2018-11-09 05:10:53 +0800 |
commit | 2c81f2cdd784871635d40ab61edec480aa530ec6 (patch) | |
tree | 216ad641f0be1692fa248685d05d81fac8ecfe84 | |
parent | 501e9a7861944ce467e80748feb4111beddddcb1 (diff) | |
download | freebsd-ports-gnome-2c81f2cdd784871635d40ab61edec480aa530ec6.tar.gz freebsd-ports-gnome-2c81f2cdd784871635d40ab61edec480aa530ec6.tar.zst freebsd-ports-gnome-2c81f2cdd784871635d40ab61edec480aa530ec6.zip |
Upgrade from 5.0.0 to 5.0.1.
<ChangeLog>
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.
</ChangeLog>
-rw-r--r-- | databases/redis-devel/Makefile | 3 | ||||
-rw-r--r-- | databases/redis-devel/distinfo | 6 |
2 files changed, 4 insertions, 5 deletions
diff --git a/databases/redis-devel/Makefile b/databases/redis-devel/Makefile index 6a589e23d421..0139dcb6c412 100644 --- a/databases/redis-devel/Makefile +++ b/databases/redis-devel/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 5.0.0 -PORTREVISION= 1 +DISTVERSION= 5.0.1 CATEGORIES= databases MASTER_SITES= http://download.redis.io/releases/ PKGNAMESUFFIX= -devel diff --git a/databases/redis-devel/distinfo b/databases/redis-devel/distinfo index 68edf3b4ee77..c11db3a4761d 100644 --- a/databases/redis-devel/distinfo +++ b/databases/redis-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1539880826 -SHA256 (redis-5.0.0.tar.gz) = 70c98b2d0640b2b73c9d8adb4df63bcb62bad34b788fe46d1634b6cf87dc99a4 -SIZE (redis-5.0.0.tar.gz) = 1947721 +TIMESTAMP = 1541700073 +SHA256 (redis-5.0.1.tar.gz) = 82a67c0eec97f9ad379384c30ec391b269e17a3e4596393c808f02db7595abcb +SIZE (redis-5.0.1.tar.gz) = 1951542 |