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

pull/2979/head
Nikita Koksharov 5 years ago
commit fe99f6deae

@ -4,6 +4,27 @@ Redisson Releases History
Сonsider __[Redisson PRO](https://redisson.pro)__ version for advanced features and support by SLA.
### 05-Aug-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

@ -99,14 +99,14 @@ Used by
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
<version>3.13.2</version>
<version>3.13.3</version>
</dependency>
#### 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

Loading…
Cancel
Save