Release v1.1.0 (#1588)

This commit is contained in:
Alonso Guevara 2025-01-07 16:16:17 -06:00 committed by GitHub
parent 7ec9ef0261
commit f000309829
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
16 changed files with 75 additions and 53 deletions

58
.semversioner/1.1.0.json Normal file
View File

@ -0,0 +1,58 @@
{
"changes": [
{
"description": "Make gleanings independent of encoding",
"type": "minor"
},
{
"description": "Remove DataShaper (first steps).",
"type": "minor"
},
{
"description": "Remove old pipeline runner.",
"type": "minor"
},
{
"description": "new search implemented as a new option for the api",
"type": "minor"
},
{
"description": "Fix gleanings loop check",
"type": "patch"
},
{
"description": "Implement cosmosdb storage option for cache and output",
"type": "patch"
},
{
"description": "Move extractor code to co-locate with operations.",
"type": "patch"
},
{
"description": "Remove config input models.",
"type": "patch"
},
{
"description": "Ruff update",
"type": "patch"
},
{
"description": "Simplify and streamline internal config.",
"type": "patch"
},
{
"description": "Simplify callbacks model.",
"type": "patch"
},
{
"description": "Streamline flows.",
"type": "patch"
},
{
"description": "fix instantiation of storage classes.",
"type": "patch"
}
],
"created_at": "2025-01-07T20:25:57+00:00",
"version": "1.1.0"
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "new search implemented as a new option for the api"
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Remove old pipeline runner."
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Remove DataShaper (first steps)."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Implement cosmosdb storage option for cache and output"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Streamline flows."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Move extractor code to co-locate with operations."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Simplify and streamline internal config."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Fix gleanings loop check"
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Make gleanings independent of encoding"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Remove config input models."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Ruff update"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "fix instantiation of storage classes."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Simplify callbacks model."
}

View File

@ -1,6 +1,22 @@
# Changelog
Note: version releases in the 0.x.y range may introduce breaking changes.
## 1.1.0
- minor: Make gleanings independent of encoding
- minor: Remove DataShaper (first steps).
- minor: Remove old pipeline runner.
- minor: new search implemented as a new option for the api
- patch: Fix gleanings loop check
- patch: Implement cosmosdb storage option for cache and output
- patch: Move extractor code to co-locate with operations.
- patch: Remove config input models.
- patch: Ruff update
- patch: Simplify and streamline internal config.
- patch: Simplify callbacks model.
- patch: Streamline flows.
- patch: fix instantiation of storage classes.
## 1.0.1
- patch: Fix encoding model config parsing

View File

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