Skip to content

Commit 0da2a4d

Browse files
gaudybGaudy Blanco
andauthored
Release v3.0.9 (#2321)
Co-authored-by: Gaudy Blanco <gaudy-microsoft@MacBook-Pro-m4-Gaudy-For-Work.local>
1 parent 080e665 commit 0da2a4d

File tree

14 files changed

+64
-53
lines changed

14 files changed

+64
-53
lines changed

.semversioner/3.0.9.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"changes": [
3+
{
4+
"description": "Support client side json validation.",
5+
"type": "patch"
6+
},
7+
{
8+
"description": "fix broken documentation links.",
9+
"type": "patch"
10+
},
11+
{
12+
"description": "implement parquet reader",
13+
"type": "patch"
14+
}
15+
],
16+
"created_at": "2026-04-11T01:32:05+00:00",
17+
"version": "3.0.9"
18+
}

.semversioner/next-release/patch-20260330124917517235.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.semversioner/next-release/patch-20260330133539844301.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.semversioner/next-release/patch-20260409021555501931.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Changelog
2-
32
Note: version releases in the 0.x.y range may introduce breaking changes.
43

4+
## 3.0.9
5+
6+
- patch: Support client side json validation.
7+
- patch: fix broken documentation links.
8+
- patch: implement parquet reader
9+
510
## 3.0.8
611

712
- patch: bump nltk to resolve [CVE-2025-14009](https://github.com/advisories/GHSA-7p94-766c-hgjp)
@@ -63,16 +68,16 @@ Note: version releases in the 0.x.y range may introduce breaking changes.
6368
- major: Monorepo restructure
6469

6570
New Packages:
66-
- graphrag-cache
67-
- graphrag-chunking
68-
- graphrag-common
69-
- graphrag-input
70-
- graphrag-llm
71-
- graphrag-storage
72-
- graphrag-vectors
71+
- graphrag-cache
72+
- graphrag-chunking
73+
- graphrag-common
74+
- graphrag-input
75+
- graphrag-llm
76+
- graphrag-storage
77+
- graphrag-vectors
7378

7479
Changes:
75-
- New config: run graphrag init --force to reinitialize config with new layout and options.
80+
- New config: run graphrag init --force to reinitialize config with new layout and options.
7681

7782
## 2.7.1
7883

packages/graphrag-cache/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "graphrag-cache"
3-
version = "3.0.8"
3+
version = "3.0.9"
44
description = "GraphRAG cache package."
55
authors = [
66
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},
@@ -31,8 +31,8 @@ classifiers = [
3131
"Programming Language :: Python :: 3.13",
3232
]
3333
dependencies = [
34-
"graphrag-common==3.0.8",
35-
"graphrag-storage==3.0.8",
34+
"graphrag-common==3.0.9",
35+
"graphrag-storage==3.0.9",
3636
]
3737

3838
[project.urls]

packages/graphrag-chunking/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "graphrag-chunking"
3-
version = "3.0.8"
3+
version = "3.0.9"
44
description = "Chunking utilities for GraphRAG"
55
authors = [
66
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},
@@ -30,7 +30,7 @@ classifiers = [
3030
"Programming Language :: Python :: 3.13",
3131
]
3232
dependencies = [
33-
"graphrag-common==3.0.8",
33+
"graphrag-common==3.0.9",
3434
"pydantic~=2.10",
3535
]
3636

packages/graphrag-common/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "graphrag-common"
3-
version = "3.0.8"
3+
version = "3.0.9"
44
description = "Common utilities and types for GraphRAG"
55
authors = [
66
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},

packages/graphrag-input/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "graphrag-input"
3-
version = "3.0.8"
3+
version = "3.0.9"
44
description = "Input document loading utilities for GraphRAG"
55
authors = [
66
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},
@@ -30,8 +30,8 @@ classifiers = [
3030
"Programming Language :: Python :: 3.13",
3131
]
3232
dependencies = [
33-
"graphrag-common==3.0.8",
34-
"graphrag-storage==3.0.8 ",
33+
"graphrag-common==3.0.9",
34+
"graphrag-storage==3.0.9 ",
3535
"pydantic~=2.10",
3636
"markitdown~=0.1.0",
3737
"markitdown[pdf]",

packages/graphrag-llm/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "graphrag-llm"
3-
version = "3.0.8"
3+
version = "3.0.9"
44
description = "GraphRAG LLM package."
55
authors = [
66
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},
@@ -33,8 +33,8 @@ classifiers = [
3333
]
3434
dependencies = [
3535
"azure-identity~=1.25",
36-
"graphrag-cache==3.0.8",
37-
"graphrag-common==3.0.8",
36+
"graphrag-cache==3.0.9",
37+
"graphrag-common==3.0.9",
3838
"jinja2~=3.1",
3939
"litellm==1.82.6",
4040
"nest-asyncio2~=1.7",

0 commit comments

Comments
 (0)