Skip to content

🚀 Release 1.123.27#27558

Merged
Matsuuu merged 1 commit intorelease/1.123.27from
release-pr/1.123.27
Mar 25, 2026
Merged

🚀 Release 1.123.27#27558
Matsuuu merged 1 commit intorelease/1.123.27from
release-pr/1.123.27

Conversation

@n8n-assistant
Copy link
Copy Markdown
Contributor

@n8n-assistant n8n-assistant bot commented Mar 25, 2026

1.123.27 (2026-03-25)

Copy link
Copy Markdown
Contributor

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 20 files

Architecture diagram
sequenceDiagram
    participant User as User (Browser)
    participant UI as Editor UI (@n8n/editor-ui)
    participant API as CLI / Server (n8n)
    participant Core as Core Engine (n8n-core)
    participant Task as Task Runner (@n8n/task-runner)
    participant Work as Workflow Logic (n8n-workflow)
    participant DB as Database (@n8n/db)
    participant Nodes as Nodes (n8n-nodes-base)
    participant Ext as External Service/API

    Note over User,Ext: High-Level n8n Architecture & Execution Flow

    User->>UI: Create/Edit Workflow
    UI->>API: Save Workflow (POST /workflows)
    API->>DB: Persist Workflow Data
    DB-->>API: Success
    API-->>UI: 200 OK

    User->>UI: Trigger Manual Execution
    UI->>API: Start Execution (POST /execute)
    API->>Core: Initialize Workflow Execution
    Core->>Work: Parse Workflow Graph & Parameters
    Work-->>Core: Validated Graph

    alt Out-of-process Execution
        Core->>Task: Dispatch Node Execution
        Task->>Nodes: Load Node Definition & Input
        Nodes->>Ext: Perform API Call / Action
        Ext-->>Nodes: Response Data
        Nodes-->>Task: Node Output
        Task-->>Core: Result Data
    else Main-process Execution
        Core->>Nodes: Execute Node Directly
        Nodes->>Ext: Perform API Call / Action
        Ext-->>Nodes: Response Data
        Nodes-->>Core: Node Output
    end

    Core->>DB: Save Execution History & Logs
    Core->>API: Stream Progress (WebSockets/SSE)
    API-->>UI: Update Node Status & Data
    UI-->>User: Visual Feedback (Execution Finished)
Loading

@codecov
Copy link
Copy Markdown

codecov bot commented Mar 25, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

@Matsuuu Matsuuu merged commit d9924ab into release/1.123.27 Mar 25, 2026
37 of 38 checks passed
@Matsuuu Matsuuu deleted the release-pr/1.123.27 branch March 25, 2026 12:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant