Skip to content

checkpointsqlite==2.0.3

Choose a tag to compare

langgraph-checkpoint-sqlite 2.0.3

Summary of Changes

  • Added task_path parameter to write tracking methods for improved task traceability (#3049)
  • Updated type annotations to use modern Python syntax with built-in collection types (#3049)
  • Improved async context manager syntax for better readability (#3049)

Detailed Changes

langgraph.checkpoint.sqlite.SqliteSaver

  • Added new optional task_path parameter (with default empty string) to put_writes() method for tracking the path of the task creating writes (#3049)

langgraph.checkpoint.sqlite.aio.AsyncSqliteSaver

  • Added new optional task_path parameter to put_writes() and aput_writes() methods (#3049)
  • Updated type annotations from Dict to dict and Tuple to tuple for PEP 585 compliance (#3049)
  • Improved context manager syntax using parenthesized form for multiple context managers (#3049)
  • Updated imports to use collections.abc types instead of typing versions (#3049)