Skip to content

🚀 Release 1.123.29#28090

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

🚀 Release 1.123.29#28090
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 7, 2026

1.123.29 (2026-04-07)

Bug Fixes

  • core: Restore missing axios request interceptor dropped during 1.x backport (#27842) (1fe07e9)

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

Architecture diagram
sequenceDiagram
    participant Engine as n8n Core Engine
    participant Axios as Axios Client
    participant Interceptor as NEW: Request Interceptor
    participant API as External API

    Note over Engine, API: Workflow Execution: HTTP Request Node

    Engine->>Axios: execute(requestConfig)
    
    activate Axios
    Note over Axios, Interceptor: Hooking into request lifecycle
    
    Axios->>Interceptor: NEW: intercept(config)
    activate Interceptor
    
    Interceptor->>Interceptor: Apply global configurations<br/>(e.g., Proxy settings, Auth, Headers)
    
    Interceptor-->>Axios: return modifiedConfig
    deactivate Interceptor

    Axios->>API: Send HTTP Request (with intercepted config)
    activate API
    API-->>Axios: HTTP Response
    deactivate API

    Axios-->>Engine: return responseData
    deactivate Axios

    alt Request Error
        Axios-->>Engine: throw error (with interceptor context)
    end
Loading

@codecov
Copy link
Copy Markdown

codecov bot commented Apr 7, 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 6ab8bad into release/1.123.29 Apr 7, 2026
39 checks passed
@n8n-release-helper n8n-release-helper bot deleted the release-pr/1.123.29 branch April 7, 2026 08:58
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