Skip to content

🚀 Release 1.124.0#26264

Closed
n8n-assistant[bot] wants to merge 1 commit intorelease/1.124.0from
release-pr/1.124.0
Closed

🚀 Release 1.124.0#26264
n8n-assistant[bot] wants to merge 1 commit intorelease/1.124.0from
release-pr/1.124.0

Conversation

@n8n-assistant
Copy link
Contributor

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

1.124.0 (2026-02-25)

Bug Fixes

Copy link
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 10 files

Architecture diagram
sequenceDiagram
    participant User as User Browser
    participant UI as Editor UI (@n8n/editor-ui)
    participant Client as API Client (@n8n/rest-api-client)
    participant Server as n8n Server (cli)
    participant Auth as Permissions (@n8n/permissions)
    participant DB as DB Layer (@n8n/db)
    participant Ext as External Service

    Note over UI,Server: Communication uses shared types (@n8n/api-types)

    User->>UI: Trigger Workflow Action
    UI->>Client: Call API Method
    Client->>Server: HTTP Request (REST)
    
    Server->>Auth: Validate User Permissions
    Auth-->>Server: Permission Granted
    
    alt Data Persistence
        Server->>DB: Query / Save Workflow
        DB-->>Server: Result
    end

    Note right of Server: Execution Engine (Decorators applied)

    Server->>Ext: Execute Node (HTTP/Credentials)
    Ext-->>Server: Response Data
    
    Server-->>Client: API Response (JSON)
    Client-->>UI: Update State
    UI-->>User: Reflect Change in UI
Loading

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