[PR #518] [MERGED] fix(langgraph): Update store api #819

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs/pull/518
Author: @bracesproul
Created: 9/26/2024
Status: Merged
Merged: 9/27/2024
Merged by: @bracesproul

Base: mainHead: brace/store-api-update


📝 Commits (10+)

📊 Changes

24 files changed (+1276 additions, -354 deletions)

View changed files

📝 libs/checkpoint/src/index.ts (+1 -0)
libs/checkpoint/src/store/base.ts (+257 -0)
libs/checkpoint/src/store/batch.ts (+142 -0)
📝 libs/checkpoint/src/store/index.ts (+0 -0)
libs/checkpoint/src/store/memory.ts (+145 -0)
libs/checkpoint/src/tests/store.test.ts (+475 -0)
📝 libs/langgraph/src/constants.ts (+0 -1)
📝 libs/langgraph/src/graph/graph.ts (+1 -1)
📝 libs/langgraph/src/graph/state.ts (+5 -2)
📝 libs/langgraph/src/managed/shared_value.ts (+21 -19)
📝 libs/langgraph/src/pregel/algo.ts (+22 -6)
📝 libs/langgraph/src/pregel/index.ts (+46 -32)
📝 libs/langgraph/src/pregel/loop.ts (+5 -3)
📝 libs/langgraph/src/pregel/read.ts (+4 -2)
libs/langgraph/src/pregel/runnable_types.ts (+6 -0)
📝 libs/langgraph/src/pregel/types.ts (+5 -4)
📝 libs/langgraph/src/pregel/utils/config.ts (+5 -3)
libs/langgraph/src/store/base.ts (+0 -18)
libs/langgraph/src/store/batch.ts (+0 -166)
libs/langgraph/src/store/memory.ts (+0 -34)

...and 4 more files

📄 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/518 **Author:** [@bracesproul](https://github.com/bracesproul) **Created:** 9/26/2024 **Status:** ✅ Merged **Merged:** 9/27/2024 **Merged by:** [@bracesproul](https://github.com/bracesproul) **Base:** `main` ← **Head:** `brace/store-api-update` --- ### 📝 Commits (10+) - [`699b8e6`](https://github.com/langchain-ai/langgraphjs/commit/699b8e68112533b1eb4174509402d4142afe1c67) fix(langgraph): Update store api - [`a3bfd4d`](https://github.com/langchain-ai/langgraphjs/commit/a3bfd4dd5bf16f924a529c3d9dd7db276a8aae74) cr - [`a0f9e1e`](https://github.com/langchain-ai/langgraphjs/commit/a0f9e1e18907452d8d63ad8117dfde392b2927fb) format - [`67c117a`](https://github.com/langchain-ai/langgraphjs/commit/67c117ac539c4ccd53bb05c6313e8b3c9827f78f) update types - [`0bef97b`](https://github.com/langchain-ai/langgraphjs/commit/0bef97bf51f98f2abce9c3ec48dab0c731227105) format and lint - [`b28ab68`](https://github.com/langchain-ai/langgraphjs/commit/b28ab683cf8f35174b9d4344dbbd85e83d1a20c4) super hacky - [`a991db3`](https://github.com/langchain-ai/langgraphjs/commit/a991db3361432f116f34659cf4fc534d26123f2e) pass store top level config - [`3ae4d2e`](https://github.com/langchain-ai/langgraphjs/commit/3ae4d2eabdb15e603a72c53e4cefb4e1866fb73e) lint n format - [`714f682`](https://github.com/langchain-ai/langgraphjs/commit/714f682986222f71abd0d36ec0664dcd946c321a) cr - [`2585768`](https://github.com/langchain-ai/langgraphjs/commit/2585768111c79bb71e4578ef95306ade41013524) fix build ### 📊 Changes **24 files changed** (+1276 additions, -354 deletions) <details> <summary>View changed files</summary> 📝 `libs/checkpoint/src/index.ts` (+1 -0) ➕ `libs/checkpoint/src/store/base.ts` (+257 -0) ➕ `libs/checkpoint/src/store/batch.ts` (+142 -0) 📝 `libs/checkpoint/src/store/index.ts` (+0 -0) ➕ `libs/checkpoint/src/store/memory.ts` (+145 -0) ➕ `libs/checkpoint/src/tests/store.test.ts` (+475 -0) 📝 `libs/langgraph/src/constants.ts` (+0 -1) 📝 `libs/langgraph/src/graph/graph.ts` (+1 -1) 📝 `libs/langgraph/src/graph/state.ts` (+5 -2) 📝 `libs/langgraph/src/managed/shared_value.ts` (+21 -19) 📝 `libs/langgraph/src/pregel/algo.ts` (+22 -6) 📝 `libs/langgraph/src/pregel/index.ts` (+46 -32) 📝 `libs/langgraph/src/pregel/loop.ts` (+5 -3) 📝 `libs/langgraph/src/pregel/read.ts` (+4 -2) ➕ `libs/langgraph/src/pregel/runnable_types.ts` (+6 -0) 📝 `libs/langgraph/src/pregel/types.ts` (+5 -4) 📝 `libs/langgraph/src/pregel/utils/config.ts` (+5 -3) ➖ `libs/langgraph/src/store/base.ts` (+0 -18) ➖ `libs/langgraph/src/store/batch.ts` (+0 -166) ➖ `libs/langgraph/src/store/memory.ts` (+0 -34) _...and 4 more files_ </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:16:01 -05:00
yindo closed this issue 2026-02-15 19:16:01 -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#819