dependabot[bot] opened a new pull request, #8056: URL: https://github.com/apache/storm/pull/8056
Bumps [redis.clients:jedis](https://github.com/redis/jedis) from 5.2.0 to 6.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/redis/jedis/releases">redis.clients:jedis's releases</a>.</em></p> <blockquote> <h2>6.0.0</h2> <h2>Redis 8.0 support</h2> <p>Starting from version 8.0, Redis supports new data structures and capabilities such as JSON, Search & Query, and TimeSeries by default. This release improves Jedis compatibility with Redis 8.0.</p> <h3>Upgrading from previous releases</h3> <h4>Search</h4> <p>This release introduces a client-side default dialect for Redisβ search and query capabilities. By default, the client now overrides the server-side dialect with version 2, automatically appending <code>DIALECT 2</code> to commands like <strong>FT.AGGREGATE</strong> and <strong>FT.SEARCH</strong>.</p> <p><strong>Important</strong>: Be aware that the query dialect may impact the results returned. If needed, you can revert to a different dialect version by configuring the client accordingly.</p> <pre lang="java"><code> UnifiedJedis jedis = new UnifiedJedis("redis://localhost:6379"); jedis.setDefaultSearchDialect(1); // DIALECT 1 </code></pre> <p>You can find further details in the <a href="https://redis.io/docs/latest/develop/interact/search-and-query/advanced-concepts/dialects/">query dialect documentation</a>.</p> <h4>Discontinued features</h4> <p>This release also <strong>removes</strong> support for both <strong>RedisGraph</strong> and <strong>Triggers & Functions</strong>(aka RedisGears v2).</p> <h2>π₯ Breaking Changes</h2> <ul> <li>Make default client side search dialect to 2 (<a href="https://redirect.github.com/redis/jedis/issues/4060">#4060</a>)</li> <li>Remove Graph module support (<a href="https://redirect.github.com/redis/jedis/issues/4073">#4073</a>)</li> <li>Change FT.PROFILE to return generic object (<a href="https://redirect.github.com/redis/jedis/issues/4067">#4067</a>)</li> <li>Remove Triggers and Functions feature (<a href="https://redirect.github.com/redis/jedis/issues/3969">#3969</a>)</li> <li>COMMAND INFO reply contains subcommand detail (<a href="https://redirect.github.com/redis/jedis/issues/4022">#4022</a>)</li> </ul> <h2>π§ͺ Experimental Features</h2> <ul> <li>Support warning messages in search/aggregation query results (<a href="https://redirect.github.com/redis/jedis/issues/3958">#3958</a>)</li> <li>Add SslOptions (<a href="https://redirect.github.com/redis/jedis/issues/3980">#3980</a>)</li> </ul> <h2>π New Features</h2> <ul> <li>Add tests for vector search INT8/UINT8 types (<a href="https://redirect.github.com/redis/jedis/issues/4091">#4091</a>)</li> <li>Support for new HFE API, hgetdel hgetex hsetex commands (<a href="https://redirect.github.com/redis/jedis/issues/4095">#4095</a>)</li> <li>Propagate cause for "Cluster retry deadline exceeded" exception (<a href="https://redirect.github.com/redis/jedis/issues/4103">#4103</a>)</li> <li>Support INFO command in UnifiedJedis (simplified) (<a href="https://redirect.github.com/redis/jedis/issues/4079">#4079</a>)</li> <li>[code cleanup] Jedis client to implement CommandCommands interface (<a href="https://redirect.github.com/redis/jedis/issues/4077">#4077</a>)</li> <li>Extend EXECABORT with "previous errors" <a href="https://redirect.github.com/redis/jedis/issues/4084">#4084</a> (<a href="https://redirect.github.com/redis/jedis/issues/4090">#4090</a>)</li> <li>Add SslOptions (<a href="https://redirect.github.com/redis/jedis/issues/3980">#3980</a>)</li> <li>Token based authentication integration with core extension (<a href="https://redirect.github.com/redis/jedis/issues/4011">#4011</a>)</li> <li>Implement command (no arg) (<a href="https://redirect.github.com/redis/jedis/issues/4026">#4026</a>)</li> </ul> <h2>π Bug Fixes</h2> <ul> <li>Fix for bug <a href="https://redirect.github.com/redis/jedis/issues/4003">#4003</a>. Better message instead of ArrayIndexOutOfBoundsExce (<a href="https://redirect.github.com/redis/jedis/issues/4109">#4109</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/redis/jedis/commit/fba0f97e975163709876e2e09a3f2cc709a56c69"><code>fba0f97</code></a> Bump test infra to 8.0-RC2 (<a href="https://redirect.github.com/redis/jedis/issues/4155">#4155</a>)</li> <li><a href="https://github.com/redis/jedis/commit/34474d760fbeba810ac624f8cd92afda8c4276f2"><code>34474d7</code></a> DOC-5110 added hash search examples (<a href="https://redirect.github.com/redis/jedis/issues/4151">#4151</a>)</li> <li><a href="https://github.com/redis/jedis/commit/38bd33f07a5f2a85d5a0f9901d352d84b37b9ae5"><code>38bd33f</code></a> Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.2 to 3.5.3 (<a href="https://redirect.github.com/redis/jedis/issues/4136">#4136</a>)</li> <li><a href="https://github.com/redis/jedis/commit/faf17621bdc3f03a0fb05e9f08211e86fb2e4d03"><code>faf1762</code></a> Bump org.jacoco:jacoco-maven-plugin from 0.8.12 to 0.8.13 (<a href="https://redirect.github.com/redis/jedis/issues/4137">#4137</a>)</li> <li><a href="https://github.com/redis/jedis/commit/3037f6308bd63cbb5a9f3c691e86084f2ec7c578"><code>3037f63</code></a> Speed up cluster tests (<a href="https://redirect.github.com/redis/jedis/issues/4150">#4150</a>)</li> <li><a href="https://github.com/redis/jedis/commit/2755b7372383eebbd25bbe613162beea3df4b138"><code>2755b73</code></a> Bump org.apache.httpcomponents.client5:httpclient5-fluent from 5.4.2 to 5.4.4...</li> <li><a href="https://github.com/redis/jedis/commit/93dd26c992ed0de2eaa05cd4add7fe8f72b3867b"><code>93dd26c</code></a> Fix for connectionAuthWithExpiredTokenTest (<a href="https://redirect.github.com/redis/jedis/issues/4142">#4142</a>)</li> <li><a href="https://github.com/redis/jedis/commit/1d1b268f9be5b093f6684bc814d2fdab376a1ee3"><code>1d1b268</code></a> Migrate test to JUnit5 (<a href="https://redirect.github.com/redis/jedis/issues/4139">#4139</a>)</li> <li><a href="https://github.com/redis/jedis/commit/8e78a9307e6d6c47d395fe2eb33117dc4a439a45"><code>8e78a93</code></a> Fix flaky test JedisPoolTest.testCloseConnectionOnMakeObject (<a href="https://redirect.github.com/redis/jedis/issues/4138">#4138</a>)</li> <li><a href="https://github.com/redis/jedis/commit/582df928396267b140e87ed6f30a174515e83e0f"><code>582df92</code></a> Update "Pipelines and transactions" doc example to include pipeline.close() (...</li> <li>Additional commits viewable in <a href="https://github.com/redis/jedis/compare/v5.2.0...v6.0.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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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]
