CommandObjects refactoring Part 4: Backport deprecations to 7.5.x#4517
Merged
Conversation
🛡️ Jit Security Scan Results✅ No security findings were detected in this PR
Security scan by Jit
|
ggivo
approved these changes
May 8, 2026
mergify Bot
added a commit
to ArcadeData/arcadedb
that referenced
this pull request
May 31, 2026
Bumps [redis.clients:jedis](https://github.com/redis/jedis) from 7.5.0 to 7.5.2. Release notes *Sourced from [redis.clients:jedis's releases](https://github.com/redis/jedis/releases).* > 7.5.2 > ----- > > This is a maintenance release focused on improving the stability of the [**Automatic Failover** feature](https://redis.github.io/jedis/failover/) (`MultiDbClient`). Recommended for any deployment using `MultiDbClient` / multi-database failover. > > 🐛 Bug Fixes > ----------- > > * Fixes a connection pool leak in experimental multi-database failover when ping() fails during acquisition. [redis/jedis#4546](https://redirect.github.com/redis/jedis/pull/4546) > > 🧰 Maintenance > ------------- > > * CommandObjects refactoring Part 4: Backport deprecations to 7.5.x by [`@uglide`](https://github.com/uglide) in [redis/jedis#4517](https://redirect.github.com/redis/jedis/pull/4517) Commits * [`e5c1e55`](redis/jedis@e5c1e55) Use validated flag to close connection * [`9ccfe9f`](redis/jedis@9ccfe9f) Fix connection leak in MultiDbConnectionSupplier * [`9673859`](redis/jedis@9673859) CommandObjects refactoring Part 4: Backport deprecations to 7.5.x ([#4517](https://redirect.github.com/redis/jedis/issues/4517)) * See full diff in [compare view](redis/jedis@v7.5.0...v7.5.2) [](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) --- Dependabot commands and options 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 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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Note
Medium Risk
Enables HTTPS-style hostname verification by default for TLS sockets and changes cluster pipelining execution semantics, which can break existing deployments relying on permissive TLS or implicit executor lifecycle.
Overview
Bumps project version to
7.5.0-SNAPSHOTand continues theCommandObjectsrefactor by deprecating the no-arg constructors andsetProtocol, steering callers to constructor-injectedRedisProtocol(also deprecatingAbstractClientBuilder.applyCommandObjectsConfiguration).Adds opt-in support for shared
ExecutorServiceusage in cluster pipelining:JedisCluster/RedisClusterClientgainpipelined(ExecutorService)andMultiNodePipelineBasenow reuses a provided executor instead of always creating/shutting down its own; new tests cover shared-executor concurrency and lifecycle.Hardens TLS behavior by defaulting
DefaultJedisSocketFactoryto enable hostname verification (SSLParametersendpoint identificationHTTPS) when no custom parameters are provided, and expands TLS integration tests/endpoints to validate failure on wrong-host certificates and the ability to disable verification via customSSLParameters.Reviewed by Cursor Bugbot for commit ffb1917. Bugbot is set up for automated code reviews on this repo. Configure here.