Skip to content

checkpointpostgres==2.0.9

Choose a tag to compare

@github-actions github-actions released this 20 Dec 22:51
a3c5b8f

langgraph-checkpoint-postgres 2.0.9

Summary of Changes

  • Added new lightweight PostgreSQL checkpointers that only store the most recent checkpoint, reducing storage requirements and improving performance when time travel is not needed (#2826)
  • Removed redundant batch method from AsyncPostgresStore, use abatch instead (#2673)

Detailed Changes

langgraph.checkpoint.postgres.ShallowPostgresSaver

  • Added new lightweight checkpoint saver that only stores the most recent checkpoint and does not retain history (#2826)
  • Designed as a drop-in replacement for PostgresSaver with lower storage requirements
  • Supports all functionality except time travel

langgraph.checkpoint.postgres.aio.AsyncShallowPostgresSaver

  • Added async version of ShallowPostgresSaver with the same lightweight storage approach (#2826)
  • Provides async interface while maintaining full compatibility with the synchronous API

langgraph.store.postgres.aio.AsyncPostgresStore

  • Removed redundant batch method from AsyncPostgresStore (#2673)
  • Use the async abatch method directly instead