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

pull/5949/head
Nikita Koksharov 8 months ago
commit ed1a0557f1

@ -10,7 +10,7 @@ Feature - Spring Data Redis 3.3.0 integration
Feature - allow retry of `NOREPLICAS` error (thanks to @ghollies)
Improvement - `SequentialDnsAddressResolverFactory` default `concurrencyLevel` set to 2
Improvement - `ThreadLocalRandom` replaced with `xoshiro256**` RNG to avoid collisions
Improvement - `ThreadLocalRandom` replaced with `xoshiro256++` RNG to avoid collisions
Fixed - cluster failover handling
Fixed - cluster topology scan shouldn't be stopped by any exception

@ -132,7 +132,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.25.3</version>
<version>3.26.0</version>
<scope>test</scope>
</dependency>
<dependency>
@ -189,7 +189,7 @@
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>2.17.0</version>
<version>2.17.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>

@ -40,7 +40,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.25.3</version>
<version>3.26.0</version>
<scope>test</scope>
</dependency>
<dependency>

@ -49,7 +49,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.25.3</version>
<version>3.26.0</version>
<scope>test</scope>
</dependency>

@ -375,7 +375,7 @@
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-core</artifactId>
<!-- 2.0.0+ -->
<version>3.2.2</version>
<version>3.3.0</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>

Loading…
Cancel
Save