Merge branch 'master' of github.com:mrniko/redisson

pull/574/merge
Nikita 9 years ago
commit a39e9939f1

@ -2,6 +2,14 @@ Redisson Releases History
================================ ================================
####Please Note: trunk is current development branch. ####Please Note: trunk is current development branch.
####04-Aug-2016 - version 2.2.23 released
Improvement - `Future.cancel` method handling for RemoteService async call
Fixed - unable to redefine RedisClient command execution timeout
Fixed - exception occured in CommandEncoder leads to reponse timeout exception
Fixed - exception occured in CommandDecoder leads to reponse timeout exception
Fixed - BLPOP timeout calculation fixed
Fixed - object used in RemoteService to prevent race-condition during ack receiving should be created per request
####26-Jul-2016 - version 2.2.22 released ####26-Jul-2016 - version 2.2.22 released
Fixed - java.lang.UnsupportedOperationException during command batch usage with netty 4.0.38 and higher Fixed - java.lang.UnsupportedOperationException during command batch usage with netty 4.0.38 and higher

@ -81,12 +81,12 @@ Include the following to your dependency list:
<dependency> <dependency>
<groupId>org.redisson</groupId> <groupId>org.redisson</groupId>
<artifactId>redisson</artifactId> <artifactId>redisson</artifactId>
<version>2.2.22</version> <version>2.2.23</version>
</dependency> </dependency>
### Gradle ### Gradle
compile 'org.redisson:redisson:2.2.22' compile 'org.redisson:redisson:2.2.23'
### Supported by ### Supported by

Loading…
Cancel
Save