Merge branch 'main' into v3/main

This commit is contained in:
Nathan Evans 2025-10-10 17:03:52 -07:00
commit f7a8a0888d
7 changed files with 27 additions and 15 deletions

18
.semversioner/2.7.0.json Normal file
View File

@ -0,0 +1,18 @@
{
"changes": [
{
"description": "Set LiteLLM as default in init_content.",
"type": "minor"
},
{
"description": "Fix Azure auth scope issue with LiteLLM.",
"type": "patch"
},
{
"description": "Housekeeping toward 2.7.",
"type": "patch"
}
],
"created_at": "2025-10-08T22:39:42+00:00",
"version": "2.7.0"
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Set LiteLLM as default in init_content."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Fix Azure auth scope issue with LiteLLM."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Housekeeping toward 2.7."
}

View File

@ -1,6 +1,12 @@
# Changelog
Note: version releases in the 0.x.y range may introduce breaking changes.
## 2.7.0
- minor: Set LiteLLM as default in init_content.
- patch: Fix Azure auth scope issue with LiteLLM.
- patch: Housekeeping toward 2.7.
## 2.6.0
- minor: Add LiteLLM chat and embedding model providers.

View File

@ -1,7 +1,7 @@
[project]
name = "graphrag"
# Maintainers: do not change the version here manually, use ./scripts/release.sh
version = "2.6.0"
version = "2.7.0"
description = "GraphRAG: A graph-based retrieval-augmented generation (RAG) system."
authors = [
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},
@ -114,7 +114,7 @@ _convert_local_search_nb = 'jupyter nbconvert --output-dir=docsite/posts/query/n
_convert_global_search_nb = 'jupyter nbconvert --output-dir=docsite/posts/query/notebooks/ --output="{notebook_name}_nb" --template=docsite/nbdocsite_template --to markdown examples_notebooks/global_search.ipynb'
_semversioner_release = "semversioner release"
_semversioner_changelog = "semversioner changelog > CHANGELOG.md"
_semversioner_update_toml_version = "update-toml update --path project.version --value $(semversioner current-version)"
_semversioner_update_toml_version = "update-toml update --path project.version --value $(uv run semversioner current-version)"
semversioner_add = "semversioner add-change"
coverage_report = 'coverage report --omit "**/tests/**" --show-missing'
check_format = 'ruff format . --check'

2
uv.lock generated
View File

@ -1036,7 +1036,7 @@ wheels = [
[[package]]
name = "graphrag"
version = "2.6.0"
version = "2.7.0"
source = { editable = "." }
dependencies = [
{ name = "aiofiles" },