v0.5.99: local dev improvements, live workflow logs in terminal #3308
Merged
waleedlatif1 merged 3 commits intomainfrom Feb 23, 2026
Merged
v0.5.99: local dev improvements, live workflow logs in terminal #3308waleedlatif1 merged 3 commits intomainfrom
waleedlatif1 merged 3 commits intomainfrom
Conversation
Collaborator
waleedlatif1
commented
Feb 23, 2026
- fix(security): allow HTTP for localhost and loopback addresses (fix(security): allow HTTP for localhost and loopback addresses #3304)
- fix(parallel): correct active state pulsing and duration display for parallel subflow blocks (fix(parallel): correct active state pulsing and duration display for parallel subflow blocks #3305)
- feat(terminal): expandable child workflow blocks in console (feat(terminal): expandable child workflow blocks in console #3306)
* fix(security): allow localhost HTTP without weakening SSRF protections * fix(security): remove extraneous comments and fix failing SSRF test * fix(security): derive isLocalhost from hostname not resolved IP in validateUrlWithDNS * fix(security): verify resolved IP is loopback when hostname is localhost in validateUrlWithDNS --------- Co-authored-by: aayush598 <aayushgid598@gmail.com>
…parallel subflow blocks (#3305) * fix(executor): resolve block ID for parallel subflow active state * fix timing for parallel block * refactor(parallel): extract shared updateActiveBlockRefCount helper * fix(parallel): error-sticky block run status to prevent branch success masking failure * Revert "fix(parallel): error-sticky block run status to prevent branch success masking failure" This reverts commit 9c087cd.
* feat(terminal): expandable child workflow blocks in console * fix(terminal): cycle guard in collectWorkflowDescendants, workflow node running/canceled state * fix(terminal): expand workflow blocks nested inside loop/parallel iterations * fix(terminal): prevent child block mixing across loop iterations for workflow blocks * ack PR comments, remove extranoeus logs * feat(terminal): real-time child workflow block propagation in console * fix(terminal): align parallel guard in WorkflowBlockHandler.getIterationContext with BlockExecutor * fix(terminal): fire onChildWorkflowInstanceReady regardless of nodeMetadata presence * fix(terminal): use shared isWorkflowBlockType from executor/constants
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
Greptile SummaryThis PR implements three significant improvements for local development and workflow execution visualization: Security Enhancement
Parallel Workflow Fixes
Child Workflow Visualization
Critical Issues Found
Confidence Score: 3/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Client as Client/Terminal
participant API as Workflow API
participant Executor as Workflow Executor
participant Handler as WorkflowHandler
participant ChildExec as Child Workflow
participant Console as Console Store
Client->>API: Execute workflow (SSE stream)
API->>Executor: Start execution with callbacks
Executor->>Handler: Execute workflow block
Note over Handler: Generate unique instanceId
Handler->>Console: onChildWorkflowInstanceReady(instanceId)
Console-->>Client: Update entry with instanceId
Handler->>ChildExec: Start child with callbacks & context
Note over ChildExec: depth <= MAX_SSE_CHILD_DEPTH
loop For each child block
ChildExec->>Console: onBlockStart(childWorkflowContext)
Console-->>Client: Add console entry with parentBlockId
ChildExec->>ChildExec: Execute block
ChildExec->>Console: onBlockComplete(childWorkflowContext)
Console-->>Client: Update with childWorkflowInstanceId
end
ChildExec-->>Handler: Return result with instanceId
Handler-->>Executor: Return workflow block output
Executor->>Console: onBlockComplete(instanceId)
Console-->>Client: Mark workflow block complete
Note over Client: Tree builder groups children<br/>by instanceId for display
Last reviewed commit: 69ec70a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.