docs: add Jedis 4.x compatibility layer migration guide - #289
Open
Aryex wants to merge 1 commit into
Open
Conversation
Aryex
force-pushed
the
alexl/agent/jedis-v4-migration-docs
branch
from
July 26, 2026 21:27
6ef10a0 to
e522629
Compare
Signed-off-by: kiro-agent <kiro-agent@users.noreply.github.com>
Aryex
force-pushed
the
alexl/agent/jedis-v4-migration-docs
branch
from
July 27, 2026 14:48
e522629 to
dd76c66
Compare
Aryex
marked this pull request as ready for review
July 27, 2026 14:48
jeremyprime
requested review from
prateek-kumar-improving
and removed request for
jeremyprime
July 27, 2026 15:36
jeremyprime
reviewed
Jul 27, 2026
| ```diff lang="groovy" | ||
| dependencies { | ||
| - implementation 'redis.clients:jedis:4.4.8' | ||
| + implementation group: 'io.valkey', name: 'valkey-glide-jedis-4-compatibility', version: '2.1.0', classifier: 'linux-x86_64' |
Collaborator
There was a problem hiding this comment.
The version in this file (2.1.0) is outdated. We should use a placeholder or pull from versions.ts. See other uses of versions throughout the docs to ensure consistent.
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.
Summary
Adds documentation for the new Jedis 4.x Compatibility Layer, a drop-in replacement for Jedis 4.0.x–4.4.x applications migrating to Valkey GLIDE.
Source Commits
f7394d2— feat(jedis-v4): add jedis-v4 migration layer (#5751)Changes
migration/java/jedis/jedis-4-compatibility-layer/migration/java/jedis/index.mdxto add a LinkCard for the Jedis 4.x layerastro.config.mjssidebar to include the new sectionContext
The source commit adds a new Gradle module
jedis-4-compatibilityunderjava/that provides Jedis 4.x API compatibility for Valkey GLIDE. This is separate from the existingjedis-compatibilitymodule (targeting Jedis 5.x) because Jedis 5 introduced breaking type changes (JedisPooledgenerics, RESP3 APIs). Applications still on Jedis 4.x need this dedicated compatibility artifact.cc @prashanna-frsh
This PR was generated by the automated documentation pipeline.