Closed
Conversation
tomi
approved these changes
Feb 25, 2026
Collaborator
tomi
left a comment
There was a problem hiding this comment.
To the moon 🌔 and beyond 🚀
Contributor
There was a problem hiding this comment.
No issues found across 21 files
Architecture diagram
sequenceDiagram
participant UI as Editor UI (@n8n/editor-ui)
participant API as API Client (@n8n/rest-api-client)
participant Server as Backend Server (n8n CLI)
participant DB as Database (@n8n/db)
participant Engine as Workflow Engine (n8n-core)
participant Runner as Task Runner (@n8n/task-runner)
participant Nodes as Nodes (@n8n/nodes-base)
Note over UI,Nodes: CHANGED: All components synchronized to v2.9.3 / v1.9.1
UI->>API: User triggers workflow execution
API->>Server: POST /workflow/:id/execute
Server->>DB: Load workflow and credentials
DB-->>Server: Workflow JSON + Encrypted Creds
Server->>Engine: Initialize Execution (n8n-workflow)
loop For each Node in Workflow
Engine->>Engine: Resolve expressions & data
alt Node type is isolated (e.g. Code/AI)
Engine->>Runner: Execute Task (Sandboxed)
Runner-->>Engine: Return result
else Standard Node execution
Engine->>Nodes: Execute Node logic
Nodes->>Nodes: Transform data / External API call
Nodes-->>Engine: Return result
end
Engine->>DB: Update execution progress
end
Engine-->>Server: Execution Finished
Server-->>API: 200 OK (Result summary)
API-->>UI: Update Canvas / Execution view
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
|
Found 34 test failures on Blacksmith runners: Failures
|
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.
2.9.3 (2026-02-25)