From 51a5d67953c96c140108a57c70e83cc377c7c788 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Thu, 28 Nov 2019 13:53:08 +0300 Subject: [PATCH 1/3] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f35961d4a..eb12c47ae 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Redisson - Redis Java client
with features of In-Memory Data Grid -[Quick start](https://github.com/redisson/redisson#quick-start) | [Documentation](https://github.com/redisson/redisson/wiki) | [Javadocs](http://www.javadoc.io/doc/org.redisson/redisson/3.11.2) | [Changelog](https://github.com/redisson/redisson/blob/master/CHANGELOG.md) | [Code examples](https://github.com/redisson/redisson-examples) | [FAQs](https://github.com/redisson/redisson/wiki/16.-FAQ) | [Report an issue](https://github.com/redisson/redisson/issues/new) +[Quick start](https://github.com/redisson/redisson#quick-start) | [Documentation](https://github.com/redisson/redisson/wiki) | [Javadocs](http://www.javadoc.io/doc/org.redisson/redisson/3.11.5) | [Changelog](https://github.com/redisson/redisson/blob/master/CHANGELOG.md) | [Code examples](https://github.com/redisson/redisson-examples) | [FAQs](https://github.com/redisson/redisson/wiki/16.-FAQ) | [Report an issue](https://github.com/redisson/redisson/issues/new) Based on high-performance async and lock-free Java Redis client and [Netty](http://netty.io) framework. JDK compatibility: 1.8 - 13, Android @@ -103,12 +103,12 @@ Used by org.redisson redisson - 3.11.5 + 3.11.6 #### Gradle - compile 'org.redisson:redisson:3.11.5' + compile 'org.redisson:redisson:3.11.6' #### Java @@ -166,8 +166,8 @@ Consider __[Redisson PRO](https://redisson.pro)__ version for advanced features ## Downloads -[Redisson 3.11.5](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=3.11.5&e=jar), -[Redisson node 3.11.5](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.11.5&e=jar) +[Redisson 3.11.6](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=3.11.6&e=jar), +[Redisson node 3.11.6](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.11.6&e=jar) ## FAQs From 9328623f4ecc6b103f858b24cb8e63554adf24c4 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Thu, 28 Nov 2019 13:54:03 +0300 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eb12c47ae..8f6273f1e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Redisson - Redis Java client
with features of In-Memory Data Grid -[Quick start](https://github.com/redisson/redisson#quick-start) | [Documentation](https://github.com/redisson/redisson/wiki) | [Javadocs](http://www.javadoc.io/doc/org.redisson/redisson/3.11.5) | [Changelog](https://github.com/redisson/redisson/blob/master/CHANGELOG.md) | [Code examples](https://github.com/redisson/redisson-examples) | [FAQs](https://github.com/redisson/redisson/wiki/16.-FAQ) | [Report an issue](https://github.com/redisson/redisson/issues/new) +[Quick start](https://github.com/redisson/redisson#quick-start) | [Documentation](https://github.com/redisson/redisson/wiki/Table-of-Content) | [Javadocs](http://www.javadoc.io/doc/org.redisson/redisson/3.11.5) | [Changelog](https://github.com/redisson/redisson/blob/master/CHANGELOG.md) | [Code examples](https://github.com/redisson/redisson-examples) | [FAQs](https://github.com/redisson/redisson/wiki/16.-FAQ) | [Report an issue](https://github.com/redisson/redisson/issues/new) Based on high-performance async and lock-free Java Redis client and [Netty](http://netty.io) framework. JDK compatibility: 1.8 - 13, Android From a79442bd3ecb4cbfb3a84f81e1d1b11c6787b014 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Thu, 28 Nov 2019 18:46:02 +0300 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf430e7a6..57a08c99b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,28 @@ Redisson Releases History Сonsider __[Redisson PRO](https://redisson.pro)__ version for advanced features and support by SLA. +### 28-Nov-2019 - 3.11.6 released + +Feature - `RExecutorServiceAsync.cancelTaskAsync()` method added +Feature - `RExecutorService.hasTask()` method added +Feature - `RExecutorService.getTaskCount()` method added +Feature - `RMap` write-behind queue should be fault-tolerant +Feature - added `poll()` methods with limit to `RQueue`, `RDeque`, `RDelayedQueue` objects +Feature - `checkSlotsCoverage` setting added to cluster config +Feature - `RExecutorService.getTaskIds()` method added +Feature - `awaitAsync()` methods added to `RCountDownLatch` object +Feature - `RCountDownLatchRx` and `RCountDownLatchReactive` objects added + +Fixed - channel subscription proccess in interruptible methods can't be interrupted +Fixed - `RMap.get()` method invokes `MapWriter.write()` method during value loading +Fixed - interruptible blocking methods couldn't be canceled +Fixed - ClusterNodesDecoder ignore unknown flag and avoid throwing exception (thanks to ZhangJQ) +Fixed - `AsyncSemaphore` counter field should be volatile +Fixed - data encoding exception is not logged during remote call invocation +Fixed - Spring Data ZRangeByScore method doesn't support Infinity Double value +Fixed - spring metainfo files should be excluded in redisson-all artifact +Fixed - `RKeysRx.getKeys()` and `RKeysReactive.getKeys()` methods throws Exception + ### 26-Oct-2019 - 3.11.5 released Feature - Automatic-Module-Name entry added to manifest file