[PR #1203] [MERGED] checkpoint-sqlite: new library for sqlite checkpointer implementation #1946

Closed
opened 2026-02-20 17:45:55 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraph/pull/1203
Author: @vbarda
Created: 8/2/2024
Status: Merged
Merged: 8/2/2024
Merged by: @vbarda

Base: mainHead: vb/add-sqlite-checkpointer-lib


📝 Commits (10+)

  • 3b59c67 checkpoint-sqlite: new library for sqlite checkpointer implementation
  • 14b38a4 makefile
  • a56dbd5 update CI
  • 03cbf72 monorepo
  • ebef0fb py.typed
  • 24e2e4d Merge branch 'main' into vb/add-sqlite-checkpointer-lib
  • 5518479 update methods in readme
  • 5679a6b Merge branch 'main' into vb/add-sqlite-checkpointer-lib
  • f1474b6 add pytest watcher
  • b7a457d exit savers in tests

📊 Changes

20 files changed (+1164 additions, -120 deletions)

View changed files

📝 .github/workflows/ci.yml (+6 -2)
libs/checkpoint-sqlite/Makefile (+34 -0)
libs/checkpoint-sqlite/README.md (+91 -0)
libs/checkpoint-sqlite/langgraph/checkpoint/py.typed (+0 -0)
📝 libs/checkpoint-sqlite/langgraph/checkpoint/sqlite/__init__.py (+0 -0)
📝 libs/checkpoint-sqlite/langgraph/checkpoint/sqlite/aio.py (+0 -0)
📝 libs/checkpoint-sqlite/langgraph/checkpoint/sqlite/utils.py (+0 -0)
libs/checkpoint-sqlite/poetry.lock (+835 -0)
libs/checkpoint-sqlite/pyproject.toml (+54 -0)
libs/checkpoint-sqlite/tests/__init__.py (+0 -0)
📝 libs/checkpoint-sqlite/tests/test_aiosqlite.py (+18 -32)
📝 libs/checkpoint-sqlite/tests/test_sqlite.py (+61 -54)
📝 libs/checkpoint/Makefile (+2 -2)
📝 libs/checkpoint/poetry.lock (+2 -20)
📝 libs/checkpoint/pyproject.toml (+0 -1)
📝 libs/langgraph/Makefile (+1 -1)
📝 libs/langgraph/poetry.lock (+18 -2)
📝 libs/langgraph/pyproject.toml (+1 -0)
📝 poetry.lock (+40 -6)
📝 pyproject.toml (+1 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/langgraph/pull/1203 **Author:** [@vbarda](https://github.com/vbarda) **Created:** 8/2/2024 **Status:** ✅ Merged **Merged:** 8/2/2024 **Merged by:** [@vbarda](https://github.com/vbarda) **Base:** `main` ← **Head:** `vb/add-sqlite-checkpointer-lib` --- ### 📝 Commits (10+) - [`3b59c67`](https://github.com/langchain-ai/langgraph/commit/3b59c67998b06d9cce7405924decb791cd472bce) checkpoint-sqlite: new library for sqlite checkpointer implementation - [`14b38a4`](https://github.com/langchain-ai/langgraph/commit/14b38a474ae7bb5dc0c4743b2791a3663271385e) makefile - [`a56dbd5`](https://github.com/langchain-ai/langgraph/commit/a56dbd55ee826a1948b2c6cc08f0089b1fe884ea) update CI - [`03cbf72`](https://github.com/langchain-ai/langgraph/commit/03cbf727b063841c6a4fb03f34eb0b151ac2e5c0) monorepo - [`ebef0fb`](https://github.com/langchain-ai/langgraph/commit/ebef0fbe11947f903400c91f68b6bc79313abf8a) py.typed - [`24e2e4d`](https://github.com/langchain-ai/langgraph/commit/24e2e4d9e0f181cbfaf0ee5e3a44a10967f74ea5) Merge branch 'main' into vb/add-sqlite-checkpointer-lib - [`5518479`](https://github.com/langchain-ai/langgraph/commit/55184796f4f20146db8d056bb60fe376d28b360d) update methods in readme - [`5679a6b`](https://github.com/langchain-ai/langgraph/commit/5679a6b635f1ae310c2018d6dd4a74ed844e7703) Merge branch 'main' into vb/add-sqlite-checkpointer-lib - [`f1474b6`](https://github.com/langchain-ai/langgraph/commit/f1474b62232f1ef7b8695ac750d3fa5b029ec625) add pytest watcher - [`b7a457d`](https://github.com/langchain-ai/langgraph/commit/b7a457da691d55c620a3b3304bf9a1cc6654688c) exit savers in tests ### 📊 Changes **20 files changed** (+1164 additions, -120 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci.yml` (+6 -2) ➕ `libs/checkpoint-sqlite/Makefile` (+34 -0) ➕ `libs/checkpoint-sqlite/README.md` (+91 -0) ➕ `libs/checkpoint-sqlite/langgraph/checkpoint/py.typed` (+0 -0) 📝 `libs/checkpoint-sqlite/langgraph/checkpoint/sqlite/__init__.py` (+0 -0) 📝 `libs/checkpoint-sqlite/langgraph/checkpoint/sqlite/aio.py` (+0 -0) 📝 `libs/checkpoint-sqlite/langgraph/checkpoint/sqlite/utils.py` (+0 -0) ➕ `libs/checkpoint-sqlite/poetry.lock` (+835 -0) ➕ `libs/checkpoint-sqlite/pyproject.toml` (+54 -0) ➕ `libs/checkpoint-sqlite/tests/__init__.py` (+0 -0) 📝 `libs/checkpoint-sqlite/tests/test_aiosqlite.py` (+18 -32) 📝 `libs/checkpoint-sqlite/tests/test_sqlite.py` (+61 -54) 📝 `libs/checkpoint/Makefile` (+2 -2) 📝 `libs/checkpoint/poetry.lock` (+2 -20) 📝 `libs/checkpoint/pyproject.toml` (+0 -1) 📝 `libs/langgraph/Makefile` (+1 -1) 📝 `libs/langgraph/poetry.lock` (+18 -2) 📝 `libs/langgraph/pyproject.toml` (+1 -0) 📝 `poetry.lock` (+40 -6) 📝 `pyproject.toml` (+1 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-20 17:45:55 -05:00
yindo closed this issue 2026-02-20 17:45:56 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraph#1946