Release v2.3.0 (#1951)

This commit is contained in:
Alonso Guevara 2025-05-23 15:19:29 -06:00 committed by GitHub
parent f1e2041f07
commit 4a42ac81af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 45 additions and 29 deletions

34
.semversioner/2.3.0.json Normal file
View File

@ -0,0 +1,34 @@
{
"changes": [
{
"description": "Remove Dynamic Max Retries support. Refactor typer typing in cli interface",
"type": "minor"
},
{
"description": "Update fnllm to latest. Update default graphrag configuration",
"type": "minor"
},
{
"description": "A few fixes and enhancements for better reuse and flow.",
"type": "patch"
},
{
"description": "Add full llm response to LLM PRovider output",
"type": "patch"
},
{
"description": "Fix Drift Reduce Response for non streaming calls",
"type": "patch"
},
{
"description": "Fix global search prompt to include missing formatting key",
"type": "patch"
},
{
"description": "Upgrade pyarrow dependency to >=17.0.0 to fix CVE-2024-52338",
"type": "patch"
}
],
"created_at": "2025-05-23T21:02:47+00:00",
"version": "2.3.0"
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Update fnllm to latest. Update default graphrag configuration"
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Remove Dynamic Max Retries support. Refactor typer typing in cli interface"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "A few fixes and enhancements for better reuse and flow."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Upgrade pyarrow dependency to >=17.0.0 to fix CVE-2024-52338"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Fix global search prompt to include missing formatting key"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Add full llm response to LLM PRovider output"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Fix Drift Reduce Response for non streaming calls"
}

View File

@ -1,6 +1,16 @@
# Changelog
Note: version releases in the 0.x.y range may introduce breaking changes.
## 2.3.0
- minor: Remove Dynamic Max Retries support. Refactor typer typing in cli interface
- minor: Update fnllm to latest. Update default graphrag configuration
- patch: A few fixes and enhancements for better reuse and flow.
- patch: Add full llm response to LLM PRovider output
- patch: Fix Drift Reduce Response for non streaming calls
- patch: Fix global search prompt to include missing formatting key
- patch: Upgrade pyarrow dependency to >=17.0.0 to fix CVE-2024-52338
## 2.2.1
- patch: Fix Community Report prompt tuning response

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "graphrag"
# Maintainers: do not change the version here manually, use ./scripts/release.sh
version = "2.2.1"
version = "2.3.0"
description = "GraphRAG: A graph-based retrieval-augmented generation (RAG) system."
authors = [
"Alonso Guevara Fernández <alonsog@microsoft.com>",