-
Notifications
You must be signed in to change notification settings - Fork 2
feat: relax dependency constraints for pymongo, elasticsearch, cachetools, and diskcache #139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…ools, and diskcache Lower minimum versions based on compatibility research: - pymongo: 4.15.0 → 4.0.0 (supports MongoDB 5.0+) - elasticsearch: 9.0.0 → 8.0.0 (required for Elasticsearch 8.x) - cachetools: 6.0.0 → 5.0.0 (stable API) - diskcache: 5.6.0 → 5.0.0 (no breaking changes) This provides broader compatibility while maintaining support for the tested store versions. Fixes #118 Co-authored-by: William Easton <[email protected]>
📝 WalkthroughWalkthroughUpdated Python optional-dependency version constraints across two projects to support older package versions. Minimum versions relaxed for cachetools, diskcache, pymongo, and elasticsearch across both key-value-aio and key-value-sync packages. Changes
Pre-merge checks and finishing touches❌ Failed checks (2 warnings)
✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: ASSERTIVE Plan: Pro ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (2)
🧰 Additional context used📓 Path-based instructions (1)key-value/key-value-sync/**📄 CodeRabbit inference engine (AGENTS.md)
Files:
🔇 Additional comments (2)
Comment |
|
Resolved conflicts by accepting relaxed version constraints from main (#139) while keeping DuckDB store additions from this branch. Co-authored-by: William Easton <[email protected]>



Summary
Relaxes minimum version constraints for several library dependencies based on compatibility research and testing. This provides broader compatibility while maintaining support for all tested store versions.
Changes
Relaxed Constraints:
>=4.15.0→>=4.0.0(supports MongoDB 5.0+)>=9.0.0→>=8.0.0(required for Elasticsearch 8.x)>=6.0.0→>=5.0.0(stable API)>=5.6.0→>=5.0.0(no breaking changes)All changes verified through:
uv sync --resolution=lowest-directTesting
Fixes #118
Generated with Claude Code
Summary by CodeRabbit
Release Notes