Skip to content

🚀 Release 2.9.3-exp.0#26242

Merged
MiloradFilipovic merged 2 commits intorelease/2.9.3-exp.0from
release-pr/2.9.3-exp.0
Feb 25, 2026
Merged

🚀 Release 2.9.3-exp.0#26242
MiloradFilipovic merged 2 commits intorelease/2.9.3-exp.0from
release-pr/2.9.3-exp.0

Conversation

@n8n-assistant
Copy link
Contributor

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

2.9.3-exp.0 (2026-02-25)

Bug Fixes

  • editor: Selectively apply credentials for http request nodes (#26003) (cda5c58)
  • editor: Setup panel visual tweaks (no-chaneglog) (#26107) (78abe02)
  • editor: Show existing credentials in template setup modal (#25598) (2ab9be0)

Features

  • editor: Highlight nodes in canvas on card hover in setup panel (#25862) (8f715be)
  • editor: In setup panel only mark credentials as completed if they are tested (#25658) (cb8c5c0)

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.

1 issue found across 5 files

Prompt for AI agents (all issues)

Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.


<file name="packages/frontend/@n8n/i18n/package.json">

<violation number="1" location="packages/frontend/@n8n/i18n/package.json:4">
P2: Incorrect version bump; should match the release version `2.9.3-exp.0`.</violation>
</file>
Architecture diagram
sequenceDiagram
    participant User
    participant Panel as Setup Panel
    participant Canvas as Workflow Canvas
    participant API as Backend API
    participant Engine as Execution Engine

    Note over User, Engine: NEW/CHANGED: Workflow Configuration & Execution Flow

    rect rgb(30, 41, 59)
    Note right of User: Visual & Template Interactions
    User->>Panel: Hover over node card
    Panel->>Canvas: NEW: highlightNode(nodeId)
    
    User->>Panel: Open Template Setup
    Panel->>API: CHANGED: fetchExistingCredentials()
    API-->>Panel: Return available matches
    Panel-->>User: Show existing credentials in modal
    end

    rect rgb(23, 37, 84)
    Note right of User: Credential Validation Logic
    User->>Panel: Configure credentials
    Panel->>API: Test Credential Connection
    API-->>Panel: Test Result (Success/Failure)
    alt Result is Success
        Panel->>Panel: CHANGED: Mark step as "Completed"
    else Result is Failure
        Panel->>Panel: Keep step as "Incomplete"
    end
    end

    rect rgb(69, 26, 3)
    Note right of User: Node Execution (Runtime)
    User->>Engine: Execute HTTP Request Node
    Engine->>API: GET Credentials
    Note over Engine, API: CHANGED: Selective application logic<br/>for HTTP request nodes
    API-->>Engine: Filtered Credential Data
    Engine->>Engine: Apply Auth to Request
    end
Loading

Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
@MiloradFilipovic MiloradFilipovic merged commit 731ff37 into release/2.9.3-exp.0 Feb 25, 2026
69 of 72 checks passed
@MiloradFilipovic MiloradFilipovic deleted the release-pr/2.9.3-exp.0 branch February 25, 2026 12:56
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