Skip to content

Commit f76e108

Browse files
authored
Merge pull request #118 from ansible/AAP-55904
To fix reported CVE-2025-7647 against older llama-index package
2 parents f8e28c4 + cdac720 commit f76e108

File tree

4 files changed

+173
-101
lines changed

4 files changed

+173
-101
lines changed

docs/openapi.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -792,6 +792,7 @@
792792
"type": "string"
793793
},
794794
{
795+
"additionalProperties": true,
795796
"type": "object"
796797
}
797798
]
@@ -802,10 +803,12 @@
802803
"title": "Content"
803804
},
804805
"additional_kwargs": {
806+
"additionalProperties": true,
805807
"type": "object",
806808
"title": "Additional Kwargs"
807809
},
808810
"response_metadata": {
811+
"additionalProperties": true,
809812
"type": "object",
810813
"title": "Response Metadata"
811814
},
@@ -1365,6 +1368,7 @@
13651368
"title": "Functionality"
13661369
},
13671370
"status": {
1371+
"additionalProperties": true,
13681372
"type": "object",
13691373
"title": "Status"
13701374
}

pdm.lock

Lines changed: 97 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,9 @@ dependencies = [
7474
"fastapi>=0.121.0",
7575
"langchain>=0.3.25",
7676
"langchain-ibm>=0.3.10",
77-
"llama-index>=0.12.28",
78-
"llama-index-core>=0.12.28",
77+
"llama-index>=0.12.52",
78+
"llama-index-core>=0.12.52",
79+
"llama-index-workflows>=1.0.1",
7980
"llama-index-vector-stores-faiss==0.3.0",
8081
"llama-index-embeddings-huggingface==0.4.0",
8182
"uvicorn==0.32.1",
@@ -87,8 +88,8 @@ dependencies = [
8788
"ibm-generative-ai==3.0.0",
8889
"ibm-cos-sdk==2.13.6",
8990
"langchain-openai>=0.3.16",
90-
"pydantic==2.9.2",
91-
"setuptools==78.1.1",
91+
"pydantic>=2.11.5",
92+
"setuptools>=80.9.0",
9293
"prometheus-client==0.20.0",
9394
"kubernetes==30.1.0",
9495
"psycopg2-binary==2.9.9",
@@ -143,7 +144,7 @@ dev = [
143144
"pytest==8.3.2",
144145
"pytest-cov==5.0.0",
145146
"pytest-asyncio==0.24.0",
146-
"pydantic==2.9.2",
147+
"pydantic>=2.11.5",
147148
"rouge-score==0.1.2",
148149
"ruff>=0.11.7",
149150
"bandit==1.7.9",

0 commit comments

Comments
 (0)