diff --git a/CHANGELOG.md b/CHANGELOG.md index 96263e78c..1fca8c014 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 807c498d7..17e01af52 100644 --- a/README.md +++ b/README.md @@ -104,14 +104,14 @@ Used by org.redisson redisson - 3.16.4 + 3.16.5 #### 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 diff --git a/redisson-spring-boot-starter/README.md b/redisson-spring-boot-starter/README.md index 4cf093e78..60eb4e8ec 100644 --- a/redisson-spring-boot-starter/README.md +++ b/redisson-spring-boot-starter/README.md @@ -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 org.redisson redisson-spring-boot-starter - 3.16.4 + 3.16.5 ``` 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 diff --git a/redisson-tomcat/README.md b/redisson-tomcat/README.md index 8ce63a509..aeced82d1 100644 --- a/redisson-tomcat/README.md +++ b/redisson-tomcat/README.md @@ -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**.