Update dependency org.redisson:redisson to v3.32.0 #55
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
3.27.2
->3.32.0
Release Notes
redisson/redisson (org.redisson:redisson)
v3.32.0
Feature - Quarkus Cache implementation added
Feature -
RMapCacheNative
implementation which uses Redis 7.4+ commandsFeature - unlinkByPattern() method added to RKeys interface (thanks to @seakider)
Fixed - Apache Tomcat request.changeSessionId() method does not change the session id in Redis (thanks to @bclay2116)
Fixed - RSearch parse params error (thanks to @seakider)
Fixed - RSearch.info() throws
NumberFormatException
(thanks to @seakider)Fixed - cluster failover handling
Fixed - last master node shouldn't be removed in cluster topology
Fixed - duplicated master/slave added log output in sentinel mode
Fixed - connection leak if master change operation failed during failover
Fixed -
RxJava3
request can't be canceledFixed -
RFairLock
doesn't calculate remaining ttl properly before next acquisition attemptFixed -
scanInterval
setting checkFixed -
ElementsSubscribeService.resubscribe()
method throwsRedissonShutdownException
Fixed -
RMap.getAll()
method throws an exception if result ofRMap.keySet()
method passed as an argumentFixed - Redis node random selection doesn't work properly
Fixed - concurrency problem during RLock expiration renewal (thanks to @seakider)
Fixed -
RListMultimap
throws too many results to unpack errorFixed - entry shutdown during cluster slots migration check
v3.31.0
Feature - Spring Boot 3.3.0 integration
Feature - Spring Data Redis 3.3.0 integration
Feature - allow retry of
NOREPLICAS
error (thanks to @ghollies)Improvement -
SequentialDnsAddressResolverFactory
defaultconcurrencyLevel
set to 2Improvement -
ThreadLocalRandom
replaced withxoshiro256**
RNG to avoid collisionsFixed - cluster failover handling
Fixed - cluster topology scan shouldn't be stopped by any exception
Fixed -
RSetMultiMap
throwstoo many results to unpack
errorFixed - append commands error when using batch mode (thanks to @seakider)
Fixed -
ERR unknown command EVALSHA_RO
error shouldn't be loggedFixed -
TransactionalBucket#set(V, Duration)
PSETEX
command is called beforeMULTI
command (thanks to @seakider)Fixed -
CommandMapper
isn't applied to Lua scriptsFixed - incorrect connection release if
BatchOptions.executionMode
=REDIS_WRITE_ATOMIC
orREDIS_READ_ATOMIC
(thanks to @seakider)Fixed -
RFairLock
methods throw 'attempt to compare nil with number' errorFixed - Spring Data Redis
RedissonConnectionFactory.getSentinelConnection()
method throws error on the first offline sentinelFixed - read mode = SLAVE isn't applied for
RSet.random()
methodsFixed - Keyspace notifications should be listened only on master nodes
Fixed -
RListMultimap.removeAll()
method always deletes link to listFixed -
RLockReactive
methods don't work in native imageFixed - Correctly update shutdown timeout after each step in connection manager shutdown (thanks to @MartinEkInsurely)
Fixed - broken tck
JCache
testsFixed - not all sentinels defined in the configuration are registered
v3.30.0
Feature -
sslKeystoreType
setting addedFeature -
RPatternTopic.getActiveTopic()
method added (thanks to @MasterShi)Feature -
RJsonBucket.merge()
method addedFeature - Async, Rx, Reactive interfaces implemented for
RBloomFilter
objectFeature - fallback mode for JCache
Feature - passwords encryption support
Feature - Spring Cloud Stream integration
Improvement - configuration variable defined as Java system property overrides environment variable
Fixed - io.projectreactor package should be defined as optional in OSGi Manifest
Fixed - Spring Data Redis
StreamPollTask.deserializeAndEmitRecords()
method throws NPE after failoverFixed - Spring Data Redis blocking poll commands can't be reattached after failover
Fixed - Unable to find session error reported by
RedissonSessionManager
Fixed - Sentinels discovery is applied at Redisson startup if
sentinelsDiscovery = true
Fixed - master node is used for read operations after slave node addition if
readMode = SLAVE
in replicated modeFixed - failover handling of blocking methods calls with defined timeout. RStream, RBlockingQueue objects
Fixed - multiple
RLocalCachedMap
objects don't work in the same RTransaction (thanks to @vlad-ogol @RajaJaisankar)Fixed - codec setting isn't applied in
redisson.getMap(MapOptions)
methodFixed - Live Object field can't set to null value
Fixed -
SentinelConnectionManager
stops scheduling topology change change / dns check after host resolution errorFixed -
RMapCache.fastPutIfExistsOperation()
method uses incorrect pubsub channelv3.29.0
Feature -
NewObjectListener
added to track created objectsFeature -
NewObjectListener
andSetObjectListener
can be registered withRKeys.addListener()
methodFeature -
subscribeOnElements()
,subscribeOnLastElements()
andsubscribeOnFirstElements()
methods wait forCompletionStage
to complete before polling the next elementFeature -
shardedSubscriptionMode
setting added in Cluster configurationFeature -
RSemaphore.trySetPermits()
method with ttl parameter addedFeature -
getDeletedIds()
method added toRStream
AutoClaimResult
objectImprovement - responses map lock replaced with fine-grained entry locking in
RRemoteService
andRScheduledExecutorService
Fixed -
RStream.autoClaim()
method throws ClassCastExceptionFixed -
RSearch
aggregate expression applied incorrectlyFixed -
LocalCachedMapDisabledKey
event is parsed incorrectly if local cache used withRTransaction
Fixed - Slave node in cluster mode isn't shutdown properly if
readMode = MASTER
andsubscribeMode = MASTER
(regression since 3.27.2)Fixed - race condition during cluster topology update causes slave added/removed events
Fixed - OSGi MANIFEST should define optional dependencies
Fixed -
TimeoutException
is thrown ifconnectionMinimumIdleSize = 0
Fixed -
ClassCastException
is thrown for Reactive/Rx RemoteService invocation if Redisson instance isn't Reactive/RxFixed - semaphore object is not deleted after
RLocalCachedMap.clearLocalCache()
method invocationFixed -
AggregationOptions.groupBy()
setting with reducers used inRSearch.aggregate()
method causes an exceptionFixed -
AggregationOptions.groupBy()
setting usage withRSearch.aggregate()
method causes an exception if reducers aren't definedFixed -
AggregationOptions.sortBy()
setting usage withRSearch.aggregate()
method causes an exceptionFixed - resource leak error when executing multiple contains operation of
RSet
in transaction (thanks to @wynn5a)Fixed - jmockit upgraded to 1.52.0 inside maven-surefire-plugin (thanks to @roharon)
v3.28.0
Feature - Multi Sentinel mode implementation
Feature -
RLocalCachedMapCacheV2
object implemented with effecient partitioning and advanced entry evictionFeature - graceful shutdown in quarkus (thanks to @naah69)
Improvement -
RLongAdder
andRDoubleAddder
should use sharded topic if possibleImprovement - reduced CPU and Memory consumption by
ClusterConnectionManager.getLastPartitonsByURI()
methodImprovement -
RedisURI.hashCode()
caching to reduce CPU consumptionImprovement - shutdown check added in
RTopic.removeListener()
methodFixed - incorrect detection of sharded pubsub support
Fixed -
RBatch
does not work with RKeys.randomKeyAsync() method (thanks to @wynn5a)Fixed - unresolved Redis node hostname in cluster mode affects cluster topology scan
Fixed -
MASTER
nodes aren't used ifreadMode = MASTER_SLAVE
Fixed -
RLock
,RFencedLock
,RReadWriteLock
miss unlock messages and wait a defined timeout before a next attempt or hangFixed -
RSemaphore
,RPermitExpirableSemaphore
miss release messages and wait a defined timeout before a next attempt or hangFixed - incorrect value of
RLongAdder.sum()
andRDoubleAddder.sum()
methods if multiple Adder instances for the same Redisson object are usedFixed -
CountDownLatch.await()
method may throw NPEFixed - ExecutionException handling in RExecutorService, RLock, RPermitExpirableSemaphore, RSemaphore objects
Fixed -
ConcurrentModificationException
is thrown on RedissonSession save method if readMode = MEMORYFixed - Spring Data Redis zPopMin() and zPopMax() methods don't work (thanks to @bimslab)
Configuration
📅 Schedule: Branch creation - "on the first day of the month" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.