Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- **`redis` 8.1 broke the first query on every fresh install** —
`falkordb`'s cluster probe forwarded async-pool kwargs to the sync
`redis.Redis()` constructor, which rejects them. Fixed upstream in
`falkordb` 1.7.0, so the floor moves to `falkordb>=1.7` — the old
`>=1.0` still allowed 1.6.x to resolve against the broken redis.

## [1.4.0] - 2026-08-10

Chunk-level extraction cache for `update()` (#288): re-ingesting a
Expand Down
4 changes: 3 additions & 1 deletion graphrag_sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ classifiers = [

dependencies = [
"pydantic>=2.0,<3.0",
"falkordb>=1.0,<2",
# >=1.7: earlier versions crash on redis 8.1 and don't bound it.
# falkordb owns the redis dependency, so it isn't declared here.
"falkordb>=1.7,<2",
"numpy>=1.24,<3",
"python-dotenv>=1.0",
"tiktoken>=0.5,<1.0",
Expand Down