From aa5813cc7b14942a83d72c675a5a6ed2b9cbb555 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Tue, 4 Aug 2020 15:43:23 +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 1bb24866a..f6fde45c7 100644 --- a/README.md +++ b/README.md @@ -99,14 +99,14 @@ Used by org.redisson redisson - 3.13.2 + 3.13.3 #### Gradle - compile 'org.redisson:redisson:3.13.2' + compile 'org.redisson:redisson:3.13.3' #### SBT - libraryDependencies += "org.redisson" % "redisson" % "3.13.2" + libraryDependencies += "org.redisson" % "redisson" % "3.13.3" #### Java @@ -164,8 +164,8 @@ Consider __[Redisson PRO](https://redisson.pro)__ version for advanced features ## Downloads -[Redisson 3.13.2](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=3.13.2&e=jar), -[Redisson node 3.13.2](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.13.2&e=jar) +[Redisson 3.13.3](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=3.13.3&e=jar), +[Redisson node 3.13.3](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.13.3&e=jar) ## FAQs From 3a9b585edb726c454fe73334b64e5ab2908d8795 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Wed, 5 Aug 2020 07:49:32 +0300 Subject: [PATCH 2/3] Update CHANGELOG.md --- CHANGELOG.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7e5b76de..6ef07eacc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,27 @@ Redisson Releases History Сonsider __[Redisson PRO](https://redisson.pro)__ version for advanced features and support by SLA. +### 05-Jul-2020 - 3.13.3 released +Feature - BITFIELD command support added to `RBitSet` object + +Improvement - reset ClassIntrospector instance after `RLiveObjectService.persist()` method invocation +Improvement - amount of simultaneously created connections during pool initialization reduced to 10 + +Fixed - "SlaveConnectionPool no available Redis entries" error is thrown after failover +Fixed - check RedisConnection status befor RedisConnection object join freeConnections (thanks to @mikawudi) +Fixed - different topics subscribed to the same Redis node in Cluster +Fixed - `RFairLock.tryLock()` method doesn't apply waitTimeout parameter +Fixed - `RLiveObjectService.delete()` method works asynchronously +Fixed - deserialization exception is thrown if `RMapCache.EntryRemovedListener` is set +Fixed - incorrect registration of Sentinel node defined with hostname +Fixed - OOM arise during `RLiveObjectService.persist()` method invocation +Fixed - MarshallingCodec throws IllegalArgumentException: RIVER +Fixed - `RLock.lock()` method throws java.util.NoSuchElementException +Fixed - Spring Data Redis xReadGroup should use write operation +Fixed - Spring Data Redis connection in multi mode may cause thread hang +Fixed - Spring Data Redis connection in multi mode may cause connection leak +Fixed - `RRateLimiter` rate interval might be exceeded + ### 02-Jul-2020 - 3.13.2 released Feature - Partitioning (sharding) of Redis setup using [ShardedRedisson](https://github.com/redisson/redisson/wiki/5.-Data-partitioning-(sharding)#2-partitioning-sharding-of-redis-setup) object Feature - `CLUSTERDOWN` error handling From ff9d7c3f957fd5b63db5409949b3ccf259c3c981 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Wed, 5 Aug 2020 07:50:34 +0300 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ef07eacc..bbdf4b460 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ Redisson Releases History Сonsider __[Redisson PRO](https://redisson.pro)__ version for advanced features and support by SLA. -### 05-Jul-2020 - 3.13.3 released +### 05-Aug-2020 - 3.13.3 released Feature - BITFIELD command support added to `RBitSet` object Improvement - reset ClassIntrospector instance after `RLiveObjectService.persist()` method invocation