Skip to content

Commit 6d5df57

Browse files
authored
langgraph-checkpoint-aws: release 0.1.1 (#578)
Fixes: #546 This is a patch release to unblock usage of `langgraph-checkpoint-aws` with LangGraph >=0.5. A more comprehensive update for LangGraph >=0.5 compatibility is pending investigation with #550.
1 parent 14071e3 commit 6d5df57

File tree

4 files changed

+457
-410
lines changed

4 files changed

+457
-410
lines changed

libs/langgraph-checkpoint-aws/langgraph_checkpoint_aws/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
LangGraph Checkpoint AWS - A LangChain checkpointer implementation using Bedrock Session Management Service.
33
"""
44

5-
__version__ = "0.1.0"
5+
__version__ = "0.1.1"
66
SDK_USER_AGENT = f"LangGraphCheckpointAWS#{__version__}"

libs/langgraph-checkpoint-aws/langgraph_checkpoint_aws/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def create_session_checkpoint(
262262
checkpoint_copy = checkpoint.copy()
263263

264264
# Remove pending sends as they are handled separately
265-
checkpoint_copy.pop("pending_sends")
265+
checkpoint_copy.pop("pending_sends", None)
266266

267267
# Extract required config values
268268
thread_id = config["configurable"]["thread_id"]

0 commit comments

Comments
 (0)