dependabot[bot] opened a new pull request, #689: URL: https://github.com/apache/karaf-decanter/pull/689
Bumps [org.redisson:redisson](https://github.com/redisson/redisson) from 3.52.0 to 4.6.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/redisson/redisson/releases">org.redisson:redisson's releases</a>.</em></p> <blockquote> <h2>redisson-4.6.0</h2> <p>Feature - <a href="https://redisson.pro/docs/data-and-services/probabilistic-structures/#tdigest">T-digest</a> object added<br /> Feature - <a href="https://redisson.pro/docs/data-and-services/probabilistic-structures/#topk">Top-k</a> object added<br /> Feature - Spring Boot 4.1.0 integration<br /> Feature - Spring Data Redis 4.1.0 integration<br /> Feature - <code>getFullInfo()</code> and <code>lastItemsReversed()</code> methods added to <code>RArray</code><br /> Feature - <code>putWithLease()</code>, <code>getWithLease()</code>, <code>removeWithLease()</code> methods added <code>RMapCache</code> (thanks to <a href="https://github.com/nhancdt2602"><code>@nhancdt2602</code></a>)</p> <p>Fixed - Spring Data <code>redisTemplate.opsForZSet().popMin()</code> method throws <code>IndexOutOfBoundsException</code><br /> Fixed - old value not sent in <code>RMapCache.fastPutIfExistsOperation()</code> update message (thanks to <a href="https://github.com/kubbidev"><code>@kubbidev</code></a>)<br /> Fixed - adding ability to use <code>useReferences</code> and <code>allowedClasses</code> settings in yaml config for <code>Kryo5Codec</code></p> <h2>redisson-4.5.0</h2> <p>Feature - <a href="https://redisson.pro/docs/data-and-services/collections/#array">Array</a> object added (thanks to <a href="https://github.com/lamnt2008"><code>@lamnt2008</code></a>)<br /> Feature - <a href="https://redisson.pro/docs/data-and-services/collections/#bitvector-store">BitVector Store</a> object added<br /> Feature - Fory lib upgraded to 1.1.0<br /> Feature - Micronaut 5.0 support<br /> Feature - <code>readMode</code> setting added for <code>MapOptions</code>, <code>PlainOptions</code>, <code>LocalCachedMapOptions</code> objects<br /> Feature - extended <code>incrementAndGet()</code> method added to <code>RAtomicLong</code>, <code>RAtomicDouble</code> (thanks to <a href="https://github.com/lamnt2008"><code>@lamnt2008</code></a>)<br /> Feature - <code>contains()</code>, <code>range()</code>, <code>iterator()</code> methods added to <code>RVectorSet</code> object<br /> Feature - <code>RMap.keysAsync()</code> method added (thanks to <a href="https://github.com/sywu14"><code>@sywu14</code></a>)<br /> Feature - <code>RVectorSet</code> added to <code>RBatch</code> object (thanks to <a href="https://github.com/sywu14"><code>@sywu14</code></a>)</p> <p><strong>Breaking change</strong> - map listeners signature changed, field name added (thanks to <a href="https://github.com/lamnt2008"><code>@lamnt2008</code></a>)</p> <p>Improvement - refactor: remove unnecessary boxing of primitives (thanks to <a href="https://github.com/MukjepScarlet"><code>@MukjepScarlet</code></a>)</p> <p>Fixed - <code>RScoredSortedSet</code> Rx and Reactive must handle empty results as absent (thanks to <a href="https://github.com/ngyngcphu"><code>@ngyngcphu</code></a>)<br /> Fixed - <code>RGeo</code> Rx and Reactive must handle empty results as absent (thanks to <a href="https://github.com/lamnt2008"><code>@lamnt2008</code></a>)<br /> Fixed - <code>RSet</code> Rx and Reactive must handle empty results as absent (thanks to <a href="https://github.com/lamnt2008"><code>@lamnt2008</code></a>)<br /> Fixed - <code>RVectorSet</code> Rx and Reactive must handle empty results as absent (thanks to <a href="https://github.com/lamnt2008"><code>@lamnt2008</code></a>)<br /> Fixed - PingConnectionHandler race condition<br /> Fixed - UUID type metadata leak in TypedJsonJacksonCodec (thanks to <a href="https://github.com/wushiyuanmaimob"><code>@wushiyuanmaimob</code></a>)<br /> Fixed - UUID type inclusion by TypedJsonJackson3Codec<br /> Fixed - buffer truncation in LZ4CodecV2<br /> Fixed - <code>WRONGPASS</code> error on cluster slaves with TLS when password is set at root Config level (regression since 4.4.0) (thanks to <a href="https://github.com/seakider"><code>@seakider</code></a>)<br /> Fixed - release locks for non-existent keys in transactional RMap.fastRemove() (thanks to <a href="https://github.com/sywu14"><code>@sywu14</code></a>)</p> <h2>redisson-4.4.0</h2> <p>Feature - Hibernate 7.3.x support Feature - <a href="https://redisson.pro/docs/data-and-services/objects/#gcra-rate-limiter">GCRA Rate Limiter</a> added (thanks to <a href="https://github.com/bandalgomsu"><code>@bandalgomsu</code></a>) Feature - Non-Reentrant Locks implemented: <a href="https://redisson.pro/docs/data-and-services/locks-and-synchronizers/#non-reentrant-lock">RLock</a> and <a href="https://redisson.pro/docs/data-and-services/locks-and-synchronizers/#non-reentrant-fair-lock">RFairLock</a> Feature - entries(count), values(count), keySet(count) methods added to RMultimap Feature - fallbackLoadingToMaster setting added (thanks to <a href="https://github.com/bandalgomsu"><code>@bandalgomsu</code></a>) Feature - RRateLimiter.set(RateLimiterArgs) method added (thanks to <a href="https://github.com/nhancdt2602"><code>@nhancdt2602</code></a>) Feature - RRateLimiter.update(RateLimiterArgs) method added (thanks to <a href="https://github.com/nhancdt2602"><code>@nhancdt2602</code></a>) Feature - RMapCache.putAll() method added with idleTime parameter Feature - RBloomFilter.exists(Collection<!-- raw HTML omitted -->) method added (thanks to <a href="https://github.com/nhancdt2602"><code>@nhancdt2602</code></a>) Feature - MapIncrListener, DequeAddFirstListener, DequeAddLastListener added (thanks to <a href="https://github.com/nhancdt2602"><code>@nhancdt2602</code></a>) Feature - SetInterStoreListener, SetUnionStoreListener, SetDiffStoreListener, ScoredSortedSetIncrListener, ScoredSortedSetUnionStoreListener, ScoredSortedSetInterStoreListener, ScoredSortedSetDiffStoreListener added</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/redisson/redisson/blob/master/CHANGELOG.md">org.redisson:redisson's changelog</a>.</em></p> <blockquote> <h3>15-June-2026 - 4.6.0 released</h3> <p>Feature - <a href="https://redisson.pro/docs/data-and-services/probabilistic-structures/#tdigest">T-digest</a> object added<br /> Feature - <a href="https://redisson.pro/docs/data-and-services/probabilistic-structures/#topk">Top-k</a> object added<br /> Feature - Spring Boot 4.1.0 integration<br /> Feature - Spring Data Redis 4.1.0 integration<br /> Feature - <code>getFullInfo()</code> and <code>lastItemsReversed()</code> methods added to <code>RArray</code><br /> Feature - <code>putWithLease()</code>, <code>getWithLease()</code>, <code>removeWithLease()</code> methods added <code>RMapCache</code> (thanks to <a href="https://github.com/nhancdt2602"><code>@nhancdt2602</code></a>)</p> <p>Fixed - Spring Data <code>redisTemplate.opsForZSet().popMin()</code> method throws <code>IndexOutOfBoundsException</code><br /> Fixed - old value not sent in <code>RMapCache.fastPutIfExistsOperation()</code> update message (thanks to <a href="https://github.com/kubbidev"><code>@kubbidev</code></a>)<br /> Fixed - adding ability to use <code>useReferences</code> and <code>allowedClasses</code> settings in yaml config for <code>Kryo5Codec</code></p> <h3>05-June-2026 - 4.5.0 released</h3> <p>Feature - <a href="https://redisson.pro/docs/data-and-services/collections/#array">Array</a> object added (thanks to <a href="https://github.com/lamnt2008"><code>@lamnt2008</code></a>)<br /> Feature - <a href="https://redisson.pro/docs/data-and-services/collections/#bitvector-store">BitVector Store</a> object added<br /> Feature - Fory lib upgraded to 1.0.0<br /> Feature - Micronaut 5.0 support<br /> Feature - <code>readMode</code> setting added for <code>MapOptions</code>, <code>PlainOptions</code>, <code>LocalCachedMapOptions</code> objects<br /> Feature - extended <code>incrementAndGet()</code> method added to <code>RAtomicLong</code>, <code>RAtomicDouble</code> (thanks to <a href="https://github.com/lamnt2008"><code>@lamnt2008</code></a>)<br /> Feature - <code>contains()</code>, <code>range()</code>, <code>iterator()</code> methods added to <code>RVectorSet</code> object<br /> Feature - <code>RMap.keysAsync()</code> method added (thanks to <a href="https://github.com/sywu14"><code>@sywu14</code></a>)<br /> Feature - <code>RVectorSet</code> added to <code>RBatch</code> object (thanks to <a href="https://github.com/sywu14"><code>@sywu14</code></a>)</p> <p><strong>Breaking change</strong> - map listeners signature changed, field name added (thanks to <a href="https://github.com/lamnt2008"><code>@lamnt2008</code></a>)</p> <p>Improvement - refactor: remove unnecessary boxing of primitives (thanks to <a href="https://github.com/MukjepScarlet"><code>@MukjepScarlet</code></a>)</p> <p>Fixed - <code>RScoredSortedSet</code> Rx and Reactive must handle empty results as absent (thanks to <a href="https://github.com/ngyngcphu"><code>@ngyngcphu</code></a>)<br /> Fixed - <code>RGeo</code> Rx and Reactive must handle empty results as absent (thanks to <a href="https://github.com/lamnt2008"><code>@lamnt2008</code></a>)<br /> Fixed - <code>RSet</code> Rx and Reactive must handle empty results as absent (thanks to <a href="https://github.com/lamnt2008"><code>@lamnt2008</code></a>)<br /> Fixed - <code>RVectorSet</code> Rx and Reactive must handle empty results as absent (thanks to <a href="https://github.com/lamnt2008"><code>@lamnt2008</code></a>)<br /> Fixed - PingConnectionHandler race condition<br /> Fixed - UUID type metadata leak in TypedJsonJacksonCodec (thanks to <a href="https://github.com/wushiyuanmaimob"><code>@wushiyuanmaimob</code></a>)<br /> Fixed - UUID type inclusion by TypedJsonJackson3Codec<br /> Fixed - buffer truncation in LZ4CodecV2<br /> Fixed - <code>WRONGPASS</code> error on cluster slaves with TLS when password is set at root Config level (regression since 4.4.0) (thanks to <a href="https://github.com/seakider"><code>@seakider</code></a>)<br /> Fixed - release locks for non-existent keys in transactional RMap.fastRemove() (thanks to <a href="https://github.com/sywu14"><code>@sywu14</code></a>)</p> <h3>12-May-2026 - 4.4.0 released</h3> <p>Feature - Hibernate 7.3.x support<br /> Feature - <a href="https://redisson.pro/docs/data-and-services/objects/#gcra-rate-limiter">GCRA Rate Limiter</a> added (thanks to <a href="https://github.com/bandalgomsu"><code>@bandalgomsu</code></a>)<br /> Feature - Non-Reentrant Locks implemented: <a href="https://redisson.pro/docs/data-and-services/locks-and-synchronizers/#non-reentrant-lock">RLock</a> and <a href="https://redisson.pro/docs/data-and-services/locks-and-synchronizers/#non-reentrant-fair-lock">RFairLock</a><br /> Feature - <code>entries(count)</code>, <code>values(count)</code>, <code>keySet(count)</code> methods added to <code>RMultimap</code><br /> Feature - <code>fallbackLoadingToMaster</code> setting added (thanks to <a href="https://github.com/bandalgomsu"><code>@bandalgomsu</code></a>)<br /> Feature - <code>RRateLimiter.set(RateLimiterArgs)</code> method added (thanks to <a href="https://github.com/nhancdt2602"><code>@nhancdt2602</code></a>)<br /> Feature - <code>RRateLimiter.update(RateLimiterArgs)</code> method added (thanks to <a href="https://github.com/nhancdt2602"><code>@nhancdt2602</code></a>)<br /> Feature - <code>RMapCache.putAll()</code> method added with idleTime parameter</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/redisson/redisson/commit/8223638d6102ee8cbb6c1289bc61c5acbc9ae27b"><code>8223638</code></a> [maven-release-plugin] prepare release redisson-4.6.0</li> <li><a href="https://github.com/redisson/redisson/commit/51d42ca499d3b1285f99bfac026e736013d027f2"><code>51d42ca</code></a> jmockit updated</li> <li><a href="https://github.com/redisson/redisson/commit/8bebdc305ab16ef25506b2d0c72fec1b70df77ad"><code>8bebdc3</code></a> Feature - getFullInfo() and lastItemsReversed() methods added to RArray. <a href="https://redirect.github.com/redisson/redisson/issues/7200">#7200</a></li> <li><a href="https://github.com/redisson/redisson/commit/b47fc7275f5e03085c9e36615148710cf64d9fa5"><code>b47fc72</code></a> method added</li> <li><a href="https://github.com/redisson/redisson/commit/2123700a190356df78385a3a2aaae9b789724b16"><code>2123700</code></a> docs updated</li> <li><a href="https://github.com/redisson/redisson/commit/be20b87f37bd9811c63d0c273ceab9e256bef8c8"><code>be20b87</code></a> checkstyle fixed</li> <li><a href="https://github.com/redisson/redisson/commit/6984c1cef25654861bd25ee356e26930790022b8"><code>6984c1c</code></a> Feature - RTopK object added. <a href="https://redirect.github.com/redisson/redisson/issues/7194">#7194</a></li> <li><a href="https://github.com/redisson/redisson/commit/5f595a9b84ff82758e97f253efac21cf4391fdec"><code>5f595a9</code></a> docs updated</li> <li><a href="https://github.com/redisson/redisson/commit/775d8d26090c118f5c30d81bec2ccc3837f10374"><code>775d8d2</code></a> lib updated</li> <li><a href="https://github.com/redisson/redisson/commit/ce85aaa791b111ba20540384657c9b116ee25523"><code>ce85aaa</code></a> Feature - TDigest object added <a href="https://redirect.github.com/redisson/redisson/issues/7193">#7193</a></li> <li>Additional commits viewable in <a href="https://github.com/redisson/redisson/compare/redisson-3.52.0...redisson-4.6.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
