From d94cf6e63b47547bd288ddb7fc1e740e3a8054ab Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Fri, 12 Feb 2016 16:56:01 +0300 Subject: [PATCH 1/3] Update README.md --- README.md | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 1a610d027..f199a54ad 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ Redisson - distributed and scalable Java objects powered by Redis. Advanced Java Redis client ==== -[![Maven Central](https://img.shields.io/maven-central/v/org.redisson/redisson.svg?style=flat-square)](https://maven-badges.herokuapp.com/maven-central/org.redisson/redisson/) please take part in [Redisson survey](https://ru.surveymonkey.com/r/LP7RG8Q) +[![Maven Central](https://img.shields.io/maven-central/v/org.redisson/redisson.svg?style=flat-square)](https://maven-badges.herokuapp.com/maven-central/org.redisson/redisson/) + +##Please take part in [Redisson survey](https://ru.surveymonkey.com/r/LP7RG8Q) Use familiar Java data structures with power of [Redis](http://redis.io). @@ -82,20 +84,14 @@ Invaluable: [invaluable.com](http://www.invaluable.com/) Latest version changelog ================================= -####03-Feb-2016 - version 2.2.7 released +####12-Feb-2016 - version 2.2.8 released -Feature - `readAllKeySet`, `readAllValues`, `readAllEntry`, `readAllKeySetAsync`, `readAllValuesAsync`, `readAllEntryAsync` methods were added to `RMap` object +Feature - `union`, `unionAsync`, `readUnion` and `readUnionAsync` methods were added to `RSet` object +Feature - `readAll` and `readAllAsync` methods were added to `RSetCache` object Improvement - `RKeys.delete` optimization in Cluster mode -Fixed - minimal connections amount initialization -Fixed - `RKeys.deleteByPattern` throws an error in cluster mode -Fixed - `RKeys.deleteAsync` throws error in Cluster mode -Fixed - Redisson failed to start when one of sentinel servers is down -Fixed - Redisson failed to start when there are no slaves in Sentinel mode -Fixed - slave nodes up/down state discovery in Cluster mode -Fixed - slave can stay freezed when it has been just added in Sentinel mode -Fixed - offline slaves handling during Redisson start in Sentinel mode -Fixed - `SELECT` command can't be executed in Sentinel mode -Fixed - `database` setting removed from cluster config +Fixed - Script error during `RSetCache.toArray` and `RSetCache.readAll` methods invocation +Fixed - Sentinel doesn't support AUTH command +Fixed - RMap iterator ### Maven From 45db178b5c7142d084c43883ad555064bee45fea Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Fri, 12 Feb 2016 16:57:11 +0300 Subject: [PATCH 2/3] Update README.md --- README.md | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index f199a54ad..141e734e7 100644 --- a/README.md +++ b/README.md @@ -82,17 +82,6 @@ Netflix Dyno client: [dyno] (https://github.com/Netflix/dyno) Ocous: [ocous.com](http://www.ocous.com/) Invaluable: [invaluable.com](http://www.invaluable.com/) -Latest version changelog -================================= -####12-Feb-2016 - version 2.2.8 released - -Feature - `union`, `unionAsync`, `readUnion` and `readUnionAsync` methods were added to `RSet` object -Feature - `readAll` and `readAllAsync` methods were added to `RSetCache` object -Improvement - `RKeys.delete` optimization in Cluster mode -Fixed - Script error during `RSetCache.toArray` and `RSetCache.readAll` methods invocation -Fixed - Sentinel doesn't support AUTH command -Fixed - RMap iterator - ### Maven Include the following to your dependency list: @@ -100,12 +89,12 @@ Include the following to your dependency list: org.redisson redisson - 2.2.7 + 2.2.8 ### Gradle - compile 'org.redisson:redisson:2.2.7' + compile 'org.redisson:redisson:2.2.8' ### Supported by From c5779d5c490a8ff34ad158bf2bf1d26703432afd Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Fri, 12 Feb 2016 16:57:27 +0300 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25005d1f8..484d045ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ Redisson Releases History ================================ ####Please Note: trunk is current development branch. +####12-Feb-2016 - version 2.2.8 released + +Feature - `union`, `unionAsync`, `readUnion` and `readUnionAsync` methods were added to `RSet` object +Feature - `readAll` and `readAllAsync` methods were added to `RSetCache` object +Improvement - `RKeys.delete` optimization in Cluster mode +Fixed - Script error during `RSetCache.toArray` and `RSetCache.readAll` methods invocation +Fixed - Sentinel doesn't support AUTH command +Fixed - RMap iterator + ####03-Feb-2016 - version 2.2.7 released Feature - `readAllKeySet`, `readAllValues`, `readAllEntry`, `readAllKeySetAsync`, `readAllValuesAsync`, `readAllEntryAsync` methods were added to `RMap` object