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

pull/4031/head
Nikita Koksharov 3 years ago
commit 982b68bc0f

@ -3,6 +3,28 @@ Redisson Releases History
Try __[Redisson PRO](https://redisson.pro)__ with **ultra-fast performance** and **support by SLA**.
### 30-Nov-2021 - 3.16.5 released
Feature - `countIntersection()` method added to RSet object
Feature - added reactive interface for `RListMultimapCache` and `RSetMultimapCache` objects
Feature - `sentinelUsername` setting added
Feature - added distributed iterator (thanks @Danila Varatyntsev)
Feature - added Spring Data Redis 2.6.0 support
Fixed - RedissonConnectionFactory.getReactiveConnection() method of Spring Data Redis isn't compatible with Redis cluster mode
Fixed - Mybatis RedissonCache should search redisson.yaml config at root package
Fixed - `Can't find host in slaves!` error after failover with a new IP of master host
Fixed - failed slaves aren't detected in Replicated mode
Fixed - `get` operation before `put` may cause inconsistent state of local cache
Fixed - `RList.remove(object, count)` throws exception if multiple objects were removed (thanks @cartermc24)
Fixed - `RLocalCachedMap.delete()` method clears local cache asynchronously
Fixed - `IdleConnectionWatcher` shouldn't close `RedisPubSubConnection` if it's in subscribed state
Fixed - SSL is not used for Sentinel master host
Fixed - update sync strategy of LocalCachedMap objects shouldn't apply updated value twice to instance of update source
Fixed - JCache dependency updated to 1.1.1
Fixed - Sentinel master-host = ? setting isn't handled properly during slave check
Fixed - `RBuckets.trySet()` method throws CROSSSLOT error (thanks to @deerRule)
Fixed - DNS monitor makes a new attempt to change master while current attempt wasn't finished
### 29-Oct-2021 - 3.16.4 released
Feature - `sentinelsDiscovery` setting added
Feature - `quarkus.redisson.file` setting added to `redisson-quarkus` module to define external Redisson config file

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

@ -2,7 +2,7 @@
Integrates Redisson with Spring Boot library. Depends on [Spring Data Redis](https://github.com/redisson/redisson/tree/master/redisson-spring-data#spring-data-redis-integration) module.
Supports Spring Boot 1.3.x - 2.5.x
Supports Spring Boot 1.3.x - 2.6.x
## Usage
@ -14,14 +14,14 @@ Maven
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson-spring-boot-starter</artifactId>
<version>3.16.4</version>
<version>3.16.5</version>
</dependency>
```
Gradle
```groovy
compile 'org.redisson:redisson-spring-boot-starter:3.16.4'
compile 'org.redisson:redisson-spring-boot-starter:3.16.5'
```
@ -32,12 +32,7 @@ Downgrade `redisson-spring-data` module if necessary to support required Spring
|redisson-spring-data-16 |1.3.x |
|redisson-spring-data-17 |1.4.x |
|redisson-spring-data-18 |1.5.x |
|redisson-spring-data-20 |2.0.x |
|redisson-spring-data-21 |2.1.x |
|redisson-spring-data-22 |2.2.x |
|redisson-spring-data-23 |2.3.x |
|redisson-spring-data-24 |2.4.x |
|redisson-spring-data-25 |2.5.x |
|redisson-spring-data-2x |2.x.x |
### 2. Add settings into `application.settings` file

@ -65,14 +65,14 @@ Amount of Redisson instances created by Tomcat for multiple contexts could be re
### 2. Copy two jars into `TOMCAT_BASE/lib` directory:
[redisson-all-3.16.4.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.16.4&e=jar)
[redisson-all-3.16.5.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.16.5&e=jar)
Tomcat 7.x - [redisson-tomcat-7-3.16.4.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-tomcat-7&v=3.16.4&e=jar)
Tomcat 7.x - [redisson-tomcat-7-3.16.5.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-tomcat-7&v=3.16.5&e=jar)
Tomcat 8.x - [redisson-tomcat-8-3.16.4.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-tomcat-8&v=3.16.4&e=jar)
Tomcat 8.x - [redisson-tomcat-8-3.16.5.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-tomcat-8&v=3.16.5&e=jar)
Tomcat 9.x - [redisson-tomcat-9-3.16.4.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-tomcat-9&v=3.16.4&e=jar)
Tomcat 9.x - [redisson-tomcat-9-3.16.5.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-tomcat-9&v=3.16.5&e=jar)
Tomcat 10.x - [redisson-tomcat-10-3.16.4.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-tomcat-10&v=3.16.4&e=jar)
Tomcat 10.x - [redisson-tomcat-10-3.16.5.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-tomcat-10&v=3.16.5&e=jar)
Try __[Redisson PRO](https://redisson.pro)__ with **ultra-fast performance** and **support by SLA**.

Loading…
Cancel
Save