Skip to content
Merged
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
50 changes: 50 additions & 0 deletions .semversioner/3.0.3.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"changes": [
{
"description": "Add filtering, timestamp explosion, insert/count/remove/update operations to vector store API. Add top-level vector_size config to VectorStoreConfig.",
"type": "patch"
},
{
"description": "add csv table smoke tests",
"type": "patch"
},
{
"description": "add manual release instructions",
"type": "patch"
},
{
"description": "add streamming to the two first workflows",
"type": "patch"
},
{
"description": "add support for cosmosdb output",
"type": "patch"
},
{
"description": "create_communities streaming",
"type": "patch"
},
{
"description": "create_final_documents streaming",
"type": "patch"
},
{
"description": "create_final_text_units streaming",
"type": "patch"
},
{
"description": "finalize_graph streaming",
"type": "patch"
},
{
"description": "generate_text_embeddings streaming",
"type": "patch"
},
{
"description": "write stats.json per workflow",
"type": "patch"
}
],
"created_at": "2026-02-24T20:13:49+00:00",
"version": "3.0.3"
}
10 changes: 10 additions & 0 deletions .semversioner/3.0.4.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"description": "fix versions release",
"type": "patch"
}
],
"created_at": "2026-02-24T22:08:37+00:00",
"version": "3.0.4"
}
4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20260212002508389038.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20260213160631396575.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20260215034903124458.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20260219000129871426.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20260219013931620740.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20260219144634370703.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20260219225535725727.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20260220143557050413.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20260220214632816094.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20260223133523034773.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20260223204942781936.json

This file was deleted.

4 changes: 4 additions & 0 deletions .semversioner/next-release/patch-20260224222358053700.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type": "patch",
"description": "update version"
}
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
# Changelog
Note: version releases in the 0.x.y range may introduce breaking changes.

## 3.0.4

- patch: fix versions release

## 3.0.3

- patch: Add filtering, timestamp explosion, insert/count/remove/update operations to vector store API. Add top-level vector_size config to VectorStoreConfig.
- patch: add csv table smoke tests
- patch: add manual release instructions
- patch: add streamming to the two first workflows
- patch: add support for cosmosdb output
- patch: create_communities streaming
- patch: create_final_documents streaming
- patch: create_final_text_units streaming
- patch: finalize_graph streaming
- patch: generate_text_embeddings streaming
- patch: write stats.json per workflow

## 3.0.2

- patch: Add CSVTableProvider
Expand Down
29 changes: 8 additions & 21 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,30 +20,17 @@ Pull the latest changes on `main` and run the release task:
```sh
git checkout main
git pull
uv run poe release
```

This runs the following steps automatically:
You need to run the following commands:

1. `semversioner release` -- consumes all pending change files and bumps the
version.
2. Regenerates `CHANGELOG.md`.
3. Updates `project.version` in every package's `pyproject.toml`.
4. Updates cross-package dependency version pins (e.g. `graphrag-common==X.Y.Z`
in all packages that depend on it).
5. Runs `uv sync --all-packages` to update the lockfile.

### Cutting a release on Windows

`uv run poe release` does not work on Windows unless you are using WSL. Poe
defaults to `cmd.exe` and there is no straightforward way to force it to use
PowerShell. Run each step manually in PowerShell instead:

```powershell
```zsh
uv run semversioner release
uv run semversioner changelog > CHANGELOG.md

# verify if the version is correct
$version = uv run semversioner current-version
# check this only on Windows:
if (-not $version) { Write-Error "Failed to get version"; exit 1 }

uv run update-toml update --file packages/graphrag/pyproject.toml --path project.version --value $version
Expand All @@ -65,11 +52,11 @@ Check `CHANGELOG.md` or any package's `pyproject.toml` to find the new version,
then move the changes to a release branch:

```sh
git switch -c release/vVERSION
git switch -c release/v<VERSION>
git add .
git commit -m "Release vVERSION"
git tag -a vVERSION -m "Release vVERSION"
git push origin release/vVERSION -u
git commit -m "Release v<VERSION>"
git tag -a v<VERSION> -m "Release v<VERSION>"
git push origin release/v<VERSION> -u
```

Open a PR targeting `main`. CI checks (semver, linting, tests) will run
Expand Down
6 changes: 3 additions & 3 deletions packages/graphrag-cache/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "graphrag-cache"
version = "3.0.2"
version = "3.0.4"
description = "GraphRAG cache package."
authors = [
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},
Expand Down Expand Up @@ -31,8 +31,8 @@ classifiers = [
"Programming Language :: Python :: 3.13",
]
dependencies = [
"graphrag-common==3.0.2",
"graphrag-storage==3.0.2",
"graphrag-common==3.0.4",
"graphrag-storage==3.0.4",
]

[project.urls]
Expand Down
4 changes: 2 additions & 2 deletions packages/graphrag-chunking/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "graphrag-chunking"
version = "3.0.2"
version = "3.0.4"
description = "Chunking utilities for GraphRAG"
authors = [
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},
Expand Down Expand Up @@ -30,7 +30,7 @@ classifiers = [
"Programming Language :: Python :: 3.13",
]
dependencies = [
"graphrag-common==3.0.2",
"graphrag-common==3.0.4",
"pydantic~=2.10",
]

Expand Down
2 changes: 1 addition & 1 deletion packages/graphrag-common/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "graphrag-common"
version = "3.0.2"
version = "3.0.4"
description = "Common utilities and types for GraphRAG"
authors = [
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},
Expand Down
6 changes: 3 additions & 3 deletions packages/graphrag-input/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "graphrag-input"
version = "3.0.2"
version = "3.0.4"
description = "Input document loading utilities for GraphRAG"
authors = [
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},
Expand Down Expand Up @@ -30,8 +30,8 @@ classifiers = [
"Programming Language :: Python :: 3.13",
]
dependencies = [
"graphrag-common==3.0.2",
"graphrag-storage==3.0.2 ",
"graphrag-common==3.0.4",
"graphrag-storage==3.0.4 ",
"pydantic~=2.10",
"markitdown~=0.1.0",
"markitdown[pdf]"
Expand Down
6 changes: 3 additions & 3 deletions packages/graphrag-llm/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "graphrag-llm"
version = "3.0.2"
version = "3.0.4"
description = "GraphRAG LLM package."
authors = [
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},
Expand Down Expand Up @@ -33,8 +33,8 @@ classifiers = [
]
dependencies = [
"azure-identity~=1.25",
"graphrag-cache==3.0.2",
"graphrag-common==3.0.2",
"graphrag-cache==3.0.4",
"graphrag-common==3.0.4",
"jinja2~=3.1",
"litellm~=1.80",
"nest-asyncio2~=1.7",
Expand Down
4 changes: 2 additions & 2 deletions packages/graphrag-storage/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "graphrag-storage"
version = "3.0.2"
version = "3.0.4"
description = "GraphRAG storage package."
authors = [
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},
Expand Down Expand Up @@ -34,7 +34,7 @@ dependencies = [
"azure-cosmos~=4.9",
"azure-identity~=1.25",
"azure-storage-blob~=12.24",
"graphrag-common==3.0.2",
"graphrag-common==3.0.4",
"pandas~=2.3",
"pydantic~=2.10",
]
Expand Down
4 changes: 2 additions & 2 deletions packages/graphrag-vectors/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "graphrag-vectors"
version = "3.0.2"
version = "3.0.4"
description = "GraphRAG vector store package."
authors = [
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},
Expand Down Expand Up @@ -34,7 +34,7 @@ dependencies = [
"azure-cosmos~=4.9",
"azure-identity~=1.25",
"azure-search-documents~=11.6",
"graphrag-common==3.0.2",
"graphrag-common==3.0.4",
"lancedb~=0.24.1",
"numpy~=2.1",
"pyarrow~=22.0",
Expand Down
16 changes: 8 additions & 8 deletions packages/graphrag/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "graphrag"
# Maintainers: do not change the version here manually
version = "3.0.2"
version = "3.0.4"
description = "GraphRAG: A graph-based retrieval-augmented generation (RAG) system."
authors = [
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},
Expand Down Expand Up @@ -36,13 +36,13 @@ dependencies = [
"azure-search-documents~=11.5",
"azure-storage-blob~=12.24",
"devtools~=0.12",
"graphrag-cache==3.0.2",
"graphrag-chunking==3.0.2",
"graphrag-common==3.0.2",
"graphrag-input==3.0.2",
"graphrag-llm==3.0.2",
"graphrag-storage==3.0.2",
"graphrag-vectors==3.0.2",
"graphrag-cache==3.0.4",
"graphrag-chunking==3.0.4",
"graphrag-common==3.0.4",
"graphrag-input==3.0.4",
"graphrag-llm==3.0.4",
"graphrag-storage==3.0.4",
"graphrag-vectors==3.0.4",
"graspologic-native~=1.2",
"json-repair~=0.30",
"networkx~=3.4",
Expand Down
Loading
Loading