[PR #1827] [MERGED] fix(langgraph): add resumable stream support to remote graph #1760

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs/pull/1827
Author: @jdrogers940
Created: 12/17/2025
Status: Merged
Merged: 12/17/2025
Merged by: @jdrogers940

Base: mainHead: jdr/add-resumable-stream-to-remote


📝 Commits (6)

📊 Changes

16 files changed (+360 additions, -68 deletions)

View changed files

.changeset/huge-snakes-sit.md (+5 -0)
📝 .gitignore (+4 -0)
📝 libs/checkpoint-mongodb/.gitignore (+7 -2)
📝 libs/checkpoint-postgres/.gitignore (+7 -4)
📝 libs/checkpoint-redis/.gitignore (+7 -6)
📝 libs/checkpoint-sqlite/.gitignore (+7 -2)
📝 libs/checkpoint-validation/.gitignore (+7 -2)
📝 libs/checkpoint/.gitignore (+7 -2)
📝 libs/langgraph-core/.gitignore (+6 -14)
📝 libs/langgraph-core/src/pregel/remote.ts (+5 -0)
libs/langgraph-core/src/tests/remote-graph-resumable.test.ts (+265 -0)
📝 libs/langgraph-cua/.gitignore (+7 -4)
📝 libs/langgraph-supervisor/.gitignore (+7 -2)
📝 libs/langgraph-swarm/.gitignore (+7 -2)
📝 libs/langgraph/.gitignore (+6 -14)
📝 libs/sdk/.gitignore (+6 -14)

📄 Description

  • Adding support for the resumableStreams parameter in remote graph. Without this, streaming retry logic won't be triggered.
  • Updated .gitignore files to more generally ignore generated files from builds.

🔄 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/1827 **Author:** [@jdrogers940](https://github.com/jdrogers940) **Created:** 12/17/2025 **Status:** ✅ Merged **Merged:** 12/17/2025 **Merged by:** [@jdrogers940](https://github.com/jdrogers940) **Base:** `main` ← **Head:** `jdr/add-resumable-stream-to-remote` --- ### 📝 Commits (6) - [`d240c31`](https://github.com/langchain-ai/langgraphjs/commit/d240c310686ba6062b54d6549f30976cc1624b00) first pass - adding param and tests - [`a3e7163`](https://github.com/langchain-ai/langgraphjs/commit/a3e71634c11bdad98fe52a18d8f6a749e03b6c21) tests working - [`6d6fe51`](https://github.com/langchain-ai/langgraphjs/commit/6d6fe516d048ae34a3666102175b54fabc008bef) add changeset - [`96abd8c`](https://github.com/langchain-ai/langgraphjs/commit/96abd8c06deca1316d4b036220ef8a959454fea8) Merge branch 'main' into jdr/add-resumable-stream-to-remote - [`38784e5`](https://github.com/langchain-ai/langgraphjs/commit/38784e537c59f6f36783382b4c38e181902de244) comments - [`a56e3b0`](https://github.com/langchain-ai/langgraphjs/commit/a56e3b0d9d4a452f6db569d511f702bc4844033c) comments ### 📊 Changes **16 files changed** (+360 additions, -68 deletions) <details> <summary>View changed files</summary> ➕ `.changeset/huge-snakes-sit.md` (+5 -0) 📝 `.gitignore` (+4 -0) 📝 `libs/checkpoint-mongodb/.gitignore` (+7 -2) 📝 `libs/checkpoint-postgres/.gitignore` (+7 -4) 📝 `libs/checkpoint-redis/.gitignore` (+7 -6) 📝 `libs/checkpoint-sqlite/.gitignore` (+7 -2) 📝 `libs/checkpoint-validation/.gitignore` (+7 -2) 📝 `libs/checkpoint/.gitignore` (+7 -2) 📝 `libs/langgraph-core/.gitignore` (+6 -14) 📝 `libs/langgraph-core/src/pregel/remote.ts` (+5 -0) ➕ `libs/langgraph-core/src/tests/remote-graph-resumable.test.ts` (+265 -0) 📝 `libs/langgraph-cua/.gitignore` (+7 -4) 📝 `libs/langgraph-supervisor/.gitignore` (+7 -2) 📝 `libs/langgraph-swarm/.gitignore` (+7 -2) 📝 `libs/langgraph/.gitignore` (+6 -14) 📝 `libs/sdk/.gitignore` (+6 -14) </details> ### 📄 Description - Adding support for the `resumableStreams` parameter in remote graph. Without this, streaming retry logic won't be triggered. - Updated .gitignore files to more generally ignore generated files from builds. --- <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 20:16:44 -05:00
yindo closed this issue 2026-02-15 20:16:44 -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#1760