[PR #313] [MERGED] Support checkpoint_ns, refactor #652

Closed
opened 2026-02-15 19:15:23 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs/pull/313
Author: @jacoblee93
Created: 8/13/2024
Status: Merged
Merged: 8/14/2024
Merged by: @jacoblee93

Base: 0.2Head: jacob/checkpoint


📝 Commits (6)

📊 Changes

13 files changed (+430 additions, -131 deletions)

View changed files

📝 langgraph/src/checkpoint/base.ts (+16 -19)
📝 langgraph/src/checkpoint/id.ts (+13 -1)
📝 langgraph/src/checkpoint/memory.ts (+198 -45)
📝 langgraph/src/checkpoint/sqlite.ts (+10 -0)
📝 langgraph/src/constants.ts (+2 -0)
📝 langgraph/src/graph/graph.ts (+11 -1)
📝 langgraph/src/pregel/algo.ts (+47 -8)
📝 langgraph/src/pregel/index.ts (+41 -5)
📝 langgraph/src/pregel/io.ts (+5 -5)
📝 langgraph/src/pregel/types.ts (+33 -1)
📝 langgraph/src/tests/checkpoints.test.ts (+14 -8)
📝 langgraph/src/tests/pregel.io.test.ts (+5 -0)
📝 langgraph/src/tests/pregel.test.ts (+35 -38)

📄 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/langgraphjs/pull/313 **Author:** [@jacoblee93](https://github.com/jacoblee93) **Created:** 8/13/2024 **Status:** ✅ Merged **Merged:** 8/14/2024 **Merged by:** [@jacoblee93](https://github.com/jacoblee93) **Base:** `0.2` ← **Head:** `jacob/checkpoint` --- ### 📝 Commits (6) - [`16bf263`](https://github.com/langchain-ai/langgraphjs/commit/16bf263fd0aba09e0b89dae15bbf5ab63eaee526) Refactor checkpoint - [`ad7b04c`](https://github.com/langchain-ai/langgraphjs/commit/ad7b04c836121973b6ab300b8750832a79efeb04) Fix lint and format - [`297e23b`](https://github.com/langchain-ai/langgraphjs/commit/297e23be902c3cc805d834a7da978fec6aa509a8) Merge - [`2c5792c`](https://github.com/langchain-ai/langgraphjs/commit/2c5792cc76bb040e0361ea483f8a61bd4cf90fc2) Merge - [`5801046`](https://github.com/langchain-ai/langgraphjs/commit/58010465df4ba1ed976c6fd09a97860ba432d885) Fix tests, fix UUIDv5 issue - [`d551ccf`](https://github.com/langchain-ai/langgraphjs/commit/d551ccf61b342e3cfa0a8cb5baa3deeec4b9f010) Fix build ### 📊 Changes **13 files changed** (+430 additions, -131 deletions) <details> <summary>View changed files</summary> 📝 `langgraph/src/checkpoint/base.ts` (+16 -19) 📝 `langgraph/src/checkpoint/id.ts` (+13 -1) 📝 `langgraph/src/checkpoint/memory.ts` (+198 -45) 📝 `langgraph/src/checkpoint/sqlite.ts` (+10 -0) 📝 `langgraph/src/constants.ts` (+2 -0) 📝 `langgraph/src/graph/graph.ts` (+11 -1) 📝 `langgraph/src/pregel/algo.ts` (+47 -8) 📝 `langgraph/src/pregel/index.ts` (+41 -5) 📝 `langgraph/src/pregel/io.ts` (+5 -5) 📝 `langgraph/src/pregel/types.ts` (+33 -1) 📝 `langgraph/src/tests/checkpoints.test.ts` (+14 -8) 📝 `langgraph/src/tests/pregel.io.test.ts` (+5 -0) 📝 `langgraph/src/tests/pregel.test.ts` (+35 -38) </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-15 19:15:23 -05:00
yindo closed this issue 2026-02-15 19:15:23 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraphjs#652