Skip to content

🚀 Release 1.123.29#28154

Merged
n8n-release-helper[bot] merged 1 commit intorelease/1.123.29from
release-pr/1.123.29
Apr 8, 2026
Merged

🚀 Release 1.123.29#28154
n8n-release-helper[bot] merged 1 commit intorelease/1.123.29from
release-pr/1.123.29

Conversation

@n8n-assistant
Copy link
Copy Markdown
Contributor

@n8n-assistant n8n-assistant bot commented Apr 8, 2026

1.123.29 (2026-04-08)

Bug Fixes

  • core: Restore missing axios request interceptor dropped during 1.x backport (#27842) (1fe07e9)
  • core: Support reconnecting on Redis failover (#28106) (6e66377)

@n8n-release-helper n8n-release-helper bot enabled auto-merge (squash) April 8, 2026 05:42
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 13 files

Architecture diagram
sequenceDiagram
    participant Engine as Workflow Engine
    participant Core as n8n Core
    participant Axios as Axios Client
    participant API as External API
    participant Redis as Redis / Cluster

    Note over Core, API: HTTP Request Flow (Axios Fix)
    Engine->>Core: Execute Node Request
    Core->>Axios: Call HTTP Method
    Axios->>Axios: NEW: Apply Restored Request Interceptor
    Note right of Axios: Handles headers, auth, or proxying
    Axios->>API: Send Request
    API-->>Axios: Response
    Axios-->>Core: Data
    Core-->>Engine: Output

    Note over Core, Redis: State / Queue Management (Redis Fix)
    Core->>Redis: Execute Command (e.g. Bull queue)
    alt Standard Operation
        Redis-->>Core: Success
    else CHANGED: Redis Failover Event
        Redis-->>Core: Connection Error / ReadOnly
        Core->>Core: CHANGED: Trigger Reconnection Logic
        Core->>Redis: Re-establish Connection to New Master
        Core->>Redis: Retry Operation
        Redis-->>Core: Success
    end
Loading

@codecov
Copy link
Copy Markdown

codecov bot commented Apr 8, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

@n8n-release-helper n8n-release-helper bot merged commit 302186d into release/1.123.29 Apr 8, 2026
38 checks passed
@n8n-release-helper n8n-release-helper bot deleted the release-pr/1.123.29 branch April 8, 2026 06:05
@n8n-release-helper n8n-release-helper bot temporarily deployed to minor-release-tag-merge April 8, 2026 06:24 Inactive
@n8n-release-helper n8n-release-helper bot temporarily deployed to minor-release-tag-merge April 8, 2026 06:24 Inactive
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