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

pull/3566/head
Nikita Koksharov 4 years ago
commit 2b02b24f62

@ -3,6 +3,20 @@ Redisson Releases History
Сonsider __[Redisson PRO](https://redisson.pro)__ version for advanced features and support by SLA. Сonsider __[Redisson PRO](https://redisson.pro)__ version for advanced features and support by SLA.
### 20-Apr-2021 - 3.15.4 released
Feature - sslProtocols setting added
Feature - nameMapper setting added
Feature - `getSigned()`, `setSigned()`, `incrementAndGetSigned()`, `getUnsigned()`, `setUnsigned()`, `incrementAndGetUnsigned()` methods added to `RBitSet` object
Feature - `updateEntryExpiration()`, `getWithTTLOnly()` methods added to `RMapCache` object
Improvement - Spring Cache, MyBatis Cache, Hibernate Cache implementations should read data from Redis slave if idleTime and cache size weren't specified
Fixed - `ClusterConnectionManager.upDownSlaves()` method throws `ConcurrentModificationException`
Fixed - `ClusterConnectionManager.checkMasterNodesChange()` method throws NPE
Fixed - `JCache` `CacheEntryUpdatedListener` doesn't get old value of changed entry (thanks to @testower)
### 30-Mar-2021 - 3.15.3 released ### 30-Mar-2021 - 3.15.3 released
Feature - [connectionListener](https://github.com/redisson/redisson/wiki/2.-Configuration#connectionlistener) setting added Feature - [connectionListener](https://github.com/redisson/redisson/wiki/2.-Configuration#connectionlistener) setting added

@ -102,14 +102,14 @@ Used by
<dependency> <dependency>
<groupId>org.redisson</groupId> <groupId>org.redisson</groupId>
<artifactId>redisson</artifactId> <artifactId>redisson</artifactId>
<version>3.15.3</version> <version>3.15.4</version>
</dependency> </dependency>
#### Gradle #### Gradle
compile 'org.redisson:redisson:3.15.3' compile 'org.redisson:redisson:3.15.4'
#### SBT #### SBT
libraryDependencies += "org.redisson" % "redisson" % "3.15.3" libraryDependencies += "org.redisson" % "redisson" % "3.15.4"
#### Java #### Java
@ -167,8 +167,8 @@ Consider __[Redisson PRO](https://redisson.pro)__ version for advanced features
## Downloads ## Downloads
[Redisson 3.15.3](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=3.15.3&e=jar), [Redisson 3.15.4](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=3.15.4&e=jar),
[Redisson node 3.15.3](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.15.3&e=jar) [Redisson node 3.15.4](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.15.4&e=jar)
## FAQs ## FAQs

@ -55,6 +55,7 @@ public class JCacheEventCodec extends BaseEventCodec {
buf.readShortLE(); buf.readShortLE();
result.add(null); result.add(null);
} }
copy.release();
} }
if (sync) { if (sync) {

Loading…
Cancel
Save