Skip to content

🚀 Release 2.11.2#26663

Merged
Matsuuu merged 1 commit intorelease/2.11.2from
release-pr/2.11.2
Mar 6, 2026
Merged

🚀 Release 2.11.2#26663
Matsuuu merged 1 commit intorelease/2.11.2from
release-pr/2.11.2

Conversation

@n8n-assistant
Copy link
Contributor

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

2.11.2 (2026-03-06)

Bug Fixes

  • ai-builder: Don't use autoGenerate for UUID columns for WFB persistence migration (backport to release-candidate/2.11.x) (#26589) (d672e4c)
  • Form Node: Improve form rendering consistency (backport to release-candidate/2.11.x) (#26652) (2481969)
  • Log streaming config works with proxy (backport to release-candidate/2.11.x) (#26590) (2034f5f)

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 20 files

Architecture diagram
sequenceDiagram
    participant UI as Editor UI (Frontend)
    participant Server as n8n Server (Backend)
    participant DB as Database (TypeORM)
    participant Proxy as Outbound Proxy
    participant Logs as External Log Service

    Note over Server, DB: System Update / Migration Phase (AI Builder)
    
    Server->>DB: Start WFB persistence migration
    DB-->>Server: Table schema check
    Server->>Server: Generate UUIDs in application logic
    Server->>DB: NEW: Insert/Update records with explicit UUIDs
    Note right of Server: CHANGED: Bypasses DB 'autoGenerate' to ensure<br/>consistency across migration environments

    Note over UI, Server: Runtime: Form Node Interaction
    
    UI->>Server: Request Form Node configuration
    Server->>Server: Process Form schema
    Server-->>UI: CHANGED: Return normalized form rendering data
    Note left of UI: Logic ensures consistent UI component<br/>mapping across different browsers

    Note over Server, Logs: Runtime: Log Streaming Flow
    
    Server->>Server: Check Log Streaming Configuration
    alt Proxy Configured (NEW: Fixed Behavior)
        Server->>Proxy: Forward log payload with Proxy Headers
        Proxy->>Logs: Stream logs to external destination
    else No Proxy
        Server->>Logs: Stream logs directly
    end

    alt Migration Error
        DB-->>Server: Conflict or Schema Error
        Server-->>Server: Log error and rollback
    end
Loading

@codecov
Copy link

codecov bot commented Mar 6, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

@Matsuuu Matsuuu enabled auto-merge (squash) March 6, 2026 10:56
@blacksmith-sh

This comment has been minimized.

@Matsuuu Matsuuu merged commit 9cbb83c into release/2.11.2 Mar 6, 2026
80 of 82 checks passed
@Matsuuu Matsuuu deleted the release-pr/2.11.2 branch March 6, 2026 11:13
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