[PR #1210] [MERGED] feat(langgraph): deferred nodes #1302

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs/pull/1210
Author: @dqbd
Created: 5/22/2025
Status: Merged
Merged: 5/29/2025
Merged by: @dqbd

Base: mainHead: dqbd/deferred-nodes


📝 Commits (1)

  • 68c6514 feat(langgraph): deferred nodes

📊 Changes

15 files changed (+731 additions, -78 deletions)

View changed files

📝 libs/langgraph/src/channels/any_value.ts (+4 -0)
📝 libs/langgraph/src/channels/base.ts (+32 -2)
📝 libs/langgraph/src/channels/binop.ts (+4 -0)
📝 libs/langgraph/src/channels/dynamic_barrier_value.ts (+119 -9)
📝 libs/langgraph/src/channels/ephemeral_value.ts (+4 -0)
📝 libs/langgraph/src/channels/last_value.ts (+77 -3)
📝 libs/langgraph/src/channels/named_barrier_value.ts (+94 -0)
📝 libs/langgraph/src/channels/topic.ts (+4 -0)
📝 libs/langgraph/src/graph/graph.ts (+2 -0)
📝 libs/langgraph/src/graph/state.ts (+24 -13)
📝 libs/langgraph/src/pregel/algo.ts (+49 -17)
📝 libs/langgraph/src/pregel/debug.test.ts (+6 -0)
📝 libs/langgraph/src/pregel/index.ts (+60 -26)
📝 libs/langgraph/src/pregel/loop.ts (+14 -4)
📝 libs/langgraph/src/tests/pregel.test.ts (+238 -4)

📄 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/1210 **Author:** [@dqbd](https://github.com/dqbd) **Created:** 5/22/2025 **Status:** ✅ Merged **Merged:** 5/29/2025 **Merged by:** [@dqbd](https://github.com/dqbd) **Base:** `main` ← **Head:** `dqbd/deferred-nodes` --- ### 📝 Commits (1) - [`68c6514`](https://github.com/langchain-ai/langgraphjs/commit/68c6514551dadb3022ce4578d8479d10fb6d03a5) feat(langgraph): deferred nodes ### 📊 Changes **15 files changed** (+731 additions, -78 deletions) <details> <summary>View changed files</summary> 📝 `libs/langgraph/src/channels/any_value.ts` (+4 -0) 📝 `libs/langgraph/src/channels/base.ts` (+32 -2) 📝 `libs/langgraph/src/channels/binop.ts` (+4 -0) 📝 `libs/langgraph/src/channels/dynamic_barrier_value.ts` (+119 -9) 📝 `libs/langgraph/src/channels/ephemeral_value.ts` (+4 -0) 📝 `libs/langgraph/src/channels/last_value.ts` (+77 -3) 📝 `libs/langgraph/src/channels/named_barrier_value.ts` (+94 -0) 📝 `libs/langgraph/src/channels/topic.ts` (+4 -0) 📝 `libs/langgraph/src/graph/graph.ts` (+2 -0) 📝 `libs/langgraph/src/graph/state.ts` (+24 -13) 📝 `libs/langgraph/src/pregel/algo.ts` (+49 -17) 📝 `libs/langgraph/src/pregel/debug.test.ts` (+6 -0) 📝 `libs/langgraph/src/pregel/index.ts` (+60 -26) 📝 `libs/langgraph/src/pregel/loop.ts` (+14 -4) 📝 `libs/langgraph/src/tests/pregel.test.ts` (+238 -4) </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 20:15:11 -05:00
yindo closed this issue 2026-02-15 20:15:11 -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#1302