Skip to content

🚀 Release 1.123.23#26265

Merged
schrothbn merged 1 commit intorelease/1.123.23from
release-pr/1.123.23
Feb 26, 2026
Merged

🚀 Release 1.123.23#26265
schrothbn merged 1 commit intorelease/1.123.23from
release-pr/1.123.23

Conversation

@n8n-assistant
Copy link
Contributor

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

1.123.23 (2026-02-25)

Bug Fixes

@codecov
Copy link

codecov bot commented Feb 25, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

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 Browser / User
    participant UI as Editor UI (@n8n/editor-ui)
    participant Client as REST Client (@n8n/rest-api-client)
    participant CLI as Server (n8n CLI)
    participant Auth as Auth & Permissions (@n8n/permissions)
    participant DB as DB Layer (@n8n/db)

    Note over User,DB: Runtime Request Flow (Affected by dependency updates)

    User->>UI: Interact with Workflow
    UI->>Client: NEW/CHANGED: API Request (e.g. Save Workflow)
    
    Client->>CLI: HTTP POST /rest/workflows
    Note right of Client: Uses @n8n/api-types for validation

    CLI->>Auth: NEW/CHANGED: validatePermissions(userId)
    Note right of Auth: Uses @n8n/decorators for logic injection
    Auth-->>CLI: Permission Granted

    CLI->>DB: NEW/CHANGED: persistWorkflow(data)
    DB-->>CLI: Transaction Success

    CLI-->>Client: 200 OK (Workflow JSON)
    Client-->>UI: Update State
    UI-->>User: Visual Confirmation (Toast/Save Icon)

    alt Error in Dependency Logic
        CLI->>CLI: Global Error Handler
        CLI-->>Client: 500 Internal Server Error
        Client-->>UI: Handle Exception
    end
Loading

@schrothbn schrothbn merged commit 8de0ca3 into release/1.123.23 Feb 26, 2026
41 checks passed
@schrothbn schrothbn deleted the release-pr/1.123.23 branch February 26, 2026 05:45
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