Release/v2.2.0 (#1897)

* Release v2.2.0

* Missing patch
This commit is contained in:
Alonso Guevara 2025-04-25 18:19:29 -06:00 committed by GitHub
parent fbf11f3a7b
commit c8621477ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
13 changed files with 60 additions and 41 deletions

46
.semversioner/2.2.0.json Normal file
View File

@ -0,0 +1,46 @@
{
"changes": [
{
"description": "Support OpenAI reasoning models.",
"type": "minor"
},
{
"description": "Add option to snapshot raw extracted graph tables.",
"type": "patch"
},
{
"description": "Added batching logic to the prompt tuning autoselection embeddings workflow",
"type": "patch"
},
{
"description": "Align config classes and docs better.",
"type": "patch"
},
{
"description": "Align embeddings table loading with configured fields.",
"type": "patch"
},
{
"description": "Brings parity with our latest NLP extraction approaches.",
"type": "patch"
},
{
"description": "Fix fnllm to 0.2.3",
"type": "patch"
},
{
"description": "Fixes to basic search.",
"type": "patch"
},
{
"description": "Update llm args for consistency.",
"type": "patch"
},
{
"description": "add vector store integration tests",
"type": "patch"
}
],
"created_at": "2025-04-25T23:30:57+00:00",
"version": "2.2.0"
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Support OpenAI reasoning models."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Update llm args for consistency."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Align config classes and docs better."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Added batching logic to the prompt tuning autoselection embeddings workflow"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Fix fnllm to 0.2.3"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "add vector store integration tests"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Brings parity with our latest NLP extraction approaches."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Add option to snapshot raw extractd graph tables."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Align embeddings table loading with configured fields."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Fixes to basic search."
}

View File

@ -1,6 +1,19 @@
# Changelog
Note: version releases in the 0.x.y range may introduce breaking changes.
## 2.2.0
- minor: Support OpenAI reasoning models.
- patch: Add option to snapshot raw extracted graph tables.
- patch: Added batching logic to the prompt tuning autoselection embeddings workflow
- patch: Align config classes and docs better.
- patch: Align embeddings table loading with configured fields.
- patch: Brings parity with our latest NLP extraction approaches.
- patch: Fix fnllm to 0.2.3
- patch: Fixes to basic search.
- patch: Update llm args for consistency.
- patch: add vector store integration tests
## 2.1.0
- minor: Add support for JSON input files.

View File

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