From 76783d656dc3a78ad0f6d1005170da80f3225f57 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 eb8919dba54f81d7a13cf8945952da2d78c11c93 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 c7f96a58c4ff818be5f0a7076b462414e0407b26 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 1269883b7a9b80ccb001b2f6063131945c119c04 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 ], }, )