@qified/redis - chore: upgrade redis to 6.0.0 (breaking)#202
Merged
Conversation
Upgrades the redis client from 5.12.1 to 6.0.0 (new major) in the @qified/redis provider. redis 6 makes RESP3 the default protocol and requires Node 20+ (qified already requires Node 22+). The provider uses only basic pub/sub and list/sorted-set commands. Full workspace build and the package's 78 tests pass against a live Redis at 100% coverage. https://claude.ai/code/session_01PMNkABBFNLZF5131aiGwrZ
Contributor
|
Warning Gemini encountered an error creating the review. You can try again by commenting |
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #202 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 10 10
Lines 1392 1392
Branches 247 248 +1
=========================================
Hits 1392 1392 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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
Upgrade the
redisclient to its latest major (v6) in the@qified/redisprovider. This is the only outdated runtime dependency in the monorepo.Versions
redis5.12.1→6.0.0Tests
pnpm buildpasses (full workspace)pnpm test:cipasses against a live Redis —@qified/redis: 78 tests, 100% coverage (statements/branches/functions/lines)pnpm install --frozen-lockfileBreaking notes
redis 6 makes RESP3 the default protocol and raises the minimum to Node 20+ (qified already requires Node 22+). The provider uses only basic pub/sub plus list/sorted-set commands, so no source changes were required — the message provider and task provider both build and pass their full test suites unchanged against a live Redis 6 server.
Generated by Claude Code