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

pull/3048/head
Nikita Koksharov 4 years ago
commit 74aa95e5d9

@ -4,6 +4,27 @@ Redisson Releases History
Сonsider __[Redisson PRO](https://redisson.pro)__ version for advanced features and support by SLA.
### 02-Sep-2020 - 3.13.4 released
Feature - batch support for `revRank`, `getScore`, `addAndGetRevRank` methods added to RScoredSortedSet object (thanks to @johnou)
Feature - `RRateLimiter.setRate` method added (thanks to @AbhishekChandrasekaran)
Feature - `RObject.getIdleTime()` method added
Feature - `RKeys.getKeysWithLimit()` method added
Fixed - `RRateLimiter.availablePermits()` method throws exception (regression since 3.13.3)
Fixed - compatibility with Spring Data Redis 2.3.3
Fixed - `UnsupportedOperationException` is thrown if Spring Data Redis connection executed in pipelined mode
Fixed - multiple Tomcat requests share different instances stored in the same session in `readMode=REDIS`
Fixed - Spring Data Redis can't be used with proxied RedissonClient instance
Fixed - Classloading issues when `MarshallingCodec` used in Tomcat
Fixed - Redis cluster slot calculation doesn't work properly if brace isn't closed (thanks to @dengliming)
Fixed - `RBloomFilter` rename method doesn't rename config object (thanks to @dengliming)
Fixed - `slf4j-simple` dependency excluded from redisson-all
Fixed - `JCache.removeAsync` method throws NPE if operation fails
Fixed - all cached Lua scripts are executed on Redis master nodes only
Fixed - `XPENDING` command causes syntax error in redisson-spring-data-23
Fixed - `CommandPubSubDecoder` throws NPE
Fixed - `MasterSlaveConnectionManager` allocates superfluous 113Kb of memory for non-cluster Redis setup
### 05-Aug-2020 - 3.13.3 released
Feature - BITFIELD command support added to `RBitSet` object

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

@ -2,6 +2,6 @@
Redisson offers ability to run as standalone node and participate in distributed computing. Such Nodes are used to run [MapReduce](./9.-distributed-services/#95-distributed-mapreduce-service), [ExecutorService](./9.-distributed-services#93-executor-service), [ScheduledExecutorService](https://github.com/mrniko/redisson/wiki/9.-distributed-services#94-scheduled-executor-service) tasks or [RemoteService](./9.-distributed-services#91-remote-service) services. All tasks are kept in Redis until their execution moment.
Packaged as a single jar and could be [downloaded](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.13.3&e=jar).
Packaged as a single jar and could be [downloaded](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.13.4&e=jar).
[Documentation](https://github.com/mrniko/redisson/wiki/12.-Standalone-node) for Redisson node.

@ -37,7 +37,7 @@ Maven
<artifactId>redisson-hibernate-52</artifactId>
<!-- for Hibernate v5.3.3+ - v5.4.x -->
<artifactId>redisson-hibernate-53</artifactId>
<version>3.13.3</version>
<version>3.13.4</version>
</dependency>
```
@ -45,13 +45,13 @@ Gradle
```groovy
// for Hibernate v4.x
compile 'org.redisson:redisson-hibernate-4:3.13.3'
compile 'org.redisson:redisson-hibernate-4:3.13.4'
// for Hibernate v5.0.x - v5.1.x
compile 'org.redisson:redisson-hibernate-5:3.13.3'
compile 'org.redisson:redisson-hibernate-5:3.13.4'
// for Hibernate v5.2.x
compile 'org.redisson:redisson-hibernate-52:3.13.3'
compile 'org.redisson:redisson-hibernate-52:3.13.4'
// for Hibernate v5.3.3+ - v5.4.x
compile 'org.redisson:redisson-hibernate-53:3.13.3'
compile 'org.redisson:redisson-hibernate-53:3.13.4'
```
### 2. Specify hibernate cache settings

@ -29,14 +29,14 @@ Maven
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson-mybatis</artifactId>
<version>3.13.3</version>
<version>3.13.4</version>
</dependency>
```
Gradle
```groovy
compile 'org.redisson:redisson-mybatis:3.13.3'
compile 'org.redisson:redisson-mybatis:3.13.4'
```
### 2. Specify MyBatis cache settings

@ -16,14 +16,14 @@ Maven
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson-spring-boot-starter</artifactId>
<version>3.13.3</version>
<version>3.13.4</version>
</dependency>
```
Gradle
```groovy
compile 'org.redisson:redisson-spring-boot-starter:3.13.3'
compile 'org.redisson:redisson-spring-boot-starter:3.13.4'
```

@ -29,7 +29,7 @@ Maven
<artifactId>redisson-spring-data-22</artifactId>
<!-- for Spring Data Redis v.2.3.x -->
<artifactId>redisson-spring-data-23</artifactId>
<version>3.13.3</version>
<version>3.13.4</version>
</dependency>
```
@ -37,19 +37,19 @@ Gradle
```groovy
// for Spring Data Redis v.1.6.x
compile 'org.redisson:redisson-spring-data-16:3.13.3'
compile 'org.redisson:redisson-spring-data-16:3.13.4'
// for Spring Data Redis v.1.7.x
compile 'org.redisson:redisson-spring-data-17:3.13.3'
compile 'org.redisson:redisson-spring-data-17:3.13.4'
// for Spring Data Redis v.1.8.x
compile 'org.redisson:redisson-spring-data-18:3.13.3'
compile 'org.redisson:redisson-spring-data-18:3.13.4'
// for Spring Data Redis v.2.0.x
compile 'org.redisson:redisson-spring-data-20:3.13.3'
compile 'org.redisson:redisson-spring-data-20:3.13.4'
// for Spring Data Redis v.2.1.x
compile 'org.redisson:redisson-spring-data-21:3.13.3'
compile 'org.redisson:redisson-spring-data-21:3.13.4'
// for Spring Data Redis v.2.2.x
compile 'org.redisson:redisson-spring-data-22:3.13.3'
compile 'org.redisson:redisson-spring-data-22:3.13.4'
// for Spring Data Redis v.2.3.x
compile 'org.redisson:redisson-spring-data-23:3.13.3'
compile 'org.redisson:redisson-spring-data-23:3.13.4'
```
### 2. Register `RedissonConnectionFactory` in Spring context

Loading…
Cancel
Save