From 6d5519357d8f0f488783d3e19ee62b67d75916f8 Mon Sep 17 00:00:00 2001 From: ACHAHBAR Adnane Date: Thu, 18 Dec 2025 11:20:04 +0100 Subject: [PATCH 1/4] pin langgraph-checkpoint --- pyagentspec/constraints/constraints.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/pyagentspec/constraints/constraints.txt b/pyagentspec/constraints/constraints.txt index 84a8077f..c2153d97 100644 --- a/pyagentspec/constraints/constraints.txt +++ b/pyagentspec/constraints/constraints.txt @@ -13,3 +13,4 @@ langgraph==0.6.5 langchain-core==0.3.75 langchain-openai==0.3.30 langchain-ollama==0.3.6 +langgraph-checkpoint>=3.0.1,<4.0.0 From 6aa3651e05fc41b4a303cfc9326c397ff9db18ab Mon Sep 17 00:00:00 2001 From: ACHAHBAR Adnane Date: Thu, 18 Dec 2025 14:14:31 +0100 Subject: [PATCH 2/4] upgrade langgraph --- pyagentspec/constraints/constraints.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyagentspec/constraints/constraints.txt b/pyagentspec/constraints/constraints.txt index c2153d97..4688e97e 100644 --- a/pyagentspec/constraints/constraints.txt +++ b/pyagentspec/constraints/constraints.txt @@ -9,8 +9,9 @@ autogen-ext==0.7.4 autogen-agentchat==0.7.4 # LangGraph adapter -langgraph==0.6.5 +langgraph==0.6.11 langchain-core==0.3.75 langchain-openai==0.3.30 langchain-ollama==0.3.6 +# To mitigate CVE-2025-64439. langgraph-checkpoint>=3.0.1,<4.0.0 From e8da0fe8a1d9674593d930cfc47b5b5991bbd57f Mon Sep 17 00:00:00 2001 From: ACHAHBAR Adnane Date: Thu, 18 Dec 2025 15:01:05 +0100 Subject: [PATCH 3/4] set langgraph-checkoint in setup.py --- pyagentspec/constraints/constraints.txt | 2 -- pyagentspec/setup.py | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pyagentspec/constraints/constraints.txt b/pyagentspec/constraints/constraints.txt index 4688e97e..adaf3e18 100644 --- a/pyagentspec/constraints/constraints.txt +++ b/pyagentspec/constraints/constraints.txt @@ -13,5 +13,3 @@ langgraph==0.6.11 langchain-core==0.3.75 langchain-openai==0.3.30 langchain-ollama==0.3.6 -# To mitigate CVE-2025-64439. -langgraph-checkpoint>=3.0.1,<4.0.0 diff --git a/pyagentspec/setup.py b/pyagentspec/setup.py index 083de0e6..6c4b1fd5 100644 --- a/pyagentspec/setup.py +++ b/pyagentspec/setup.py @@ -73,6 +73,7 @@ def read(file_name): "langchain-core>=0.3,<1.0.0", "langchain-openai>=0.3.7", "langchain-ollama>=0.3.3", + "langgraph-checkpoint>=3.0.1,<4.0.0" # To mitigate CVE-2025-64439 ], }, ) From 095fa544c7fbabfde612b3400ed5a01712450ec3 Mon Sep 17 00:00:00 2001 From: ACHAHBAR Adnane Date: Thu, 18 Dec 2025 15:09:56 +0100 Subject: [PATCH 4/4] fix format --- pyagentspec/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyagentspec/setup.py b/pyagentspec/setup.py index 6c4b1fd5..22bd7274 100644 --- a/pyagentspec/setup.py +++ b/pyagentspec/setup.py @@ -73,7 +73,7 @@ def read(file_name): "langchain-core>=0.3,<1.0.0", "langchain-openai>=0.3.7", "langchain-ollama>=0.3.3", - "langgraph-checkpoint>=3.0.1,<4.0.0" # To mitigate CVE-2025-64439 + "langgraph-checkpoint>=3.0.1,<4.0.0", # To mitigate CVE-2025-64439 ], }, )