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
14 changes: 14 additions & 0 deletions .semversioner/3.1.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"changes": [
{
"description": "Native CosmosTableProvider with namespace partitioning, transactional batch writes, and simplified AzureCosmosStorage.",
"type": "minor"
},
{
"description": "Update litellm dependency.",
"type": "patch"
}
],
"created_at": "2026-05-28T15:17:20+00:00",
"version": "3.1.0"
}
4 changes: 0 additions & 4 deletions .semversioner/next-release/minor-20260511223255237407.json

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog
Note: version releases in the 0.x.y range may introduce breaking changes.

## 3.1.0

- minor: Native CosmosTableProvider with namespace partitioning, transactional batch writes, and simplified AzureCosmosStorage.
- patch: Update litellm dependency.

## 3.0.9

- patch: Support client side json validation.
Expand Down
7 changes: 4 additions & 3 deletions docs/get_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ mkdir graphrag_quickstart
cd graphrag_quickstart
python -m venv .venv
```

### Activate Python Virtual Environment - Unix/MacOS

```bash
Expand Down Expand Up @@ -78,17 +79,17 @@ In addition to setting your API key, Azure OpenAI users should set the variables
type: chat
model_provider: azure
model: gpt-4.1
deployment_name: <AZURE_DEPLOYMENT_NAME>
azure_deployment_name: <AZURE_DEPLOYMENT_NAME>
api_base: https://<instance>.openai.azure.com
api_version: 2024-02-15-preview # You can customize this for other versions
```

#### Using Managed Auth on Azure

To use managed auth, edit the auth_type in your model config and *remove* the api_key line:
To use managed auth, edit the auth_method in your model config and remove the api_key line:

```yaml
auth_type: azure_managed_identity # Default auth_type is is api_key
auth_method: azure_managed_identity # Default auth_method is is api_key
```

You will also need to login with [az login](https://learn.microsoft.com/en-us/cli/azure/authenticate-azure-cli) and select the subscription with your endpoint.
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.9"
version = "3.1.0"
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.9",
"graphrag-storage==3.0.9",
"graphrag-common==3.1.0",
"graphrag-storage==3.1.0",
]

[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.9"
version = "3.1.0"
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.9",
"graphrag-common==3.1.0",
"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.9"
version = "3.1.0"
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.9"
version = "3.1.0"
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.9",
"graphrag-storage==3.0.9 ",
"graphrag-common==3.1.0",
"graphrag-storage==3.1.0 ",
"pydantic~=2.10",
"markitdown~=0.1.0",
"markitdown[pdf]",
Expand Down
8 changes: 4 additions & 4 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.9"
version = "3.1.0"
description = "GraphRAG LLM package."
authors = [
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},
Expand Down Expand Up @@ -33,10 +33,10 @@ classifiers = [
]
dependencies = [
"azure-identity~=1.25",
"graphrag-cache==3.0.9",
"graphrag-common==3.0.9",
"graphrag-cache==3.1.0",
"graphrag-common==3.1.0",
"jinja2~=3.1",
"litellm==1.82.6",
"litellm==1.86.2",
"nest-asyncio2~=1.7",
"pydantic~=2.10",
"typing-extensions~=4.12"
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.9"
version = "3.1.0"
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.9",
"graphrag-common==3.1.0",
"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.9"
version = "3.1.0"
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.9",
"graphrag-common==3.1.0",
"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.9"
version = "3.1.0"
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.9",
"graphrag-chunking==3.0.9",
"graphrag-common==3.0.9",
"graphrag-input==3.0.9",
"graphrag-llm==3.0.9",
"graphrag-storage==3.0.9",
"graphrag-vectors==3.0.9",
"graphrag-cache==3.1.0",
"graphrag-chunking==3.1.0",
"graphrag-common==3.1.0",
"graphrag-input==3.1.0",
"graphrag-llm==3.1.0",
"graphrag-storage==3.1.0",
"graphrag-vectors==3.1.0",
"graspologic-native~=1.2",
"json-repair~=0.30",
"networkx~=3.4",
Expand Down
Loading
Loading