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

pull/4056/head
Nikita Koksharov 3 years ago
commit 350728cd76

@ -3,6 +3,19 @@ Redisson Releases History
Try __[Redisson PRO](https://redisson.pro)__ with **ultra-fast performance** and **support by SLA**.
### 23-Dec-2021 - 3.16.7 released
Improvement - MessageListener should be annotated by @FunctionalInterface
Fixed - RScript.scriptLoad() doesn't load script into Slave nodes
Fixed - Spring Data RedissonConnection eval should use ByteArrayCodec (thanks @woodyDM)
Fixed - `RSet.distributedIterator()` and `RScoredSortedSet.distributedIterator()` methods throw script error
Fixed - synced slaves amount is not checked in RLock object
Fixed - race condition during hostname resolution in sentinel mode which may cause slave shutdown
Fixed - error should be thrown if slaves aren't defined in MasterSlave mode and readMode != MASTER
Fixed - master node shouldn't be initialized as slave in single mode
Fixed - `can't find node` error arise in replicated mode
### 06-Dec-2021 - 3.16.6 released
Fixed - race condition causes wrong detection of failed slaves in Replicated mode. (regression since 3.16.5)

@ -104,14 +104,14 @@ Used by
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
<version>3.16.6</version>
<version>3.16.7</version>
</dependency>
#### Gradle
compile 'org.redisson:redisson:3.16.6'
compile 'org.redisson:redisson:3.16.7'
#### SBT
libraryDependencies += "org.redisson" % "redisson" % "3.16.6"
libraryDependencies += "org.redisson" % "redisson" % "3.16.7"
#### Java
@ -169,8 +169,8 @@ Try __[Redisson PRO](https://redisson.pro)__ with **ultra-fast performance** and
## Downloads
[Redisson 3.16.6](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=3.16.6&e=jar),
[Redisson node 3.16.6](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.16.6&e=jar)
[Redisson 3.16.7](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=3.16.7&e=jar),
[Redisson node 3.16.7](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.16.7&e=jar)
## FAQs

@ -55,7 +55,7 @@
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.200</version>
<version>2.0.202</version>
<scope>test</scope>
</dependency>

Loading…
Cancel
Save