Skip to content

checkpointpostgres==2.0.2

Choose a tag to compare

@github-actions github-actions released this 24 Oct 21:11
39d9cdb

langgraph-checkpoint-postgres 2.0.2

Summary of Changes

  • Fix example in docstring to use correct field name channel_values instead of data (#2145)
  • Improved docstring clarity in _search_where method (#2145)
  • Fixed duplicate assignment of conn attribute in AsyncPostgresStore (#2154)
  • Added py.typed files to enable better type checking support (#2177)

Detailed Changes

langgraph.checkpoint.postgres.PostgresSaver

  • Fixed example in docstring to show the correct field name channel_values instead of data in the checkpoint object, which better reflects the actual expected structure (#2145)

langgraph.checkpoint.postgres.base.BasePostgresSaver

  • Improved docstring clarity for the _search_where method, changing "cursor" to "before" to better describe the parameter's purpose (#2145)

langgraph.store.postgres.aio.AsyncPostgresStore

  • Fixed a bug where the conn attribute was being assigned twice in the __init__ method (#2154)