Skip to content

🚀 Release 2.9.4-exp.0#26337

Merged
MiloradFilipovic merged 1 commit intorelease/2.9.4-exp.0from
release-pr/2.9.4-exp.0
Feb 27, 2026
Merged

🚀 Release 2.9.4-exp.0#26337
MiloradFilipovic merged 1 commit intorelease/2.9.4-exp.0from
release-pr/2.9.4-exp.0

Conversation

@n8n-assistant
Copy link
Contributor

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

2.9.4-exp.0 (2026-02-27)

Bug Fixes

  • editor: Selectively apply credentials for http request nodes (#26003) (2763cc6)
  • editor: Setup panel visual tweaks (no-chaneglog) (#26107) (0f10fa5)
  • editor: Show existing credentials in template setup modal (#25598) (b46181b)

Features

  • editor: Highlight nodes in canvas on card hover in setup panel (#25862) (22532e6)
  • editor: In setup panel only mark credentials as completed if they are tested (#25658) (0a4e94e)

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 (unresolved 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="CHANGELOG.md">

<violation number="1" location="CHANGELOG.md:7">
P3: Fix the typo in the changelog label (“no-chaneglog” → “no-changelog”) to match the intended wording.</violation>
</file>
Architecture diagram
sequenceDiagram
    participant User
    participant SetupPanel as Editor: Setup Panel
    participant Canvas as Editor: Canvas
    participant CredStore as Credential Store/Service
    participant Backend as n8n Backend API

    Note over User, Backend: Template Setup & Credential Management

    User->>SetupPanel: Open Template Setup Modal
    SetupPanel->>CredStore: NEW: Fetch existing credentials for template
    CredStore-->>SetupPanel: Return matching credentials
    SetupPanel-->>User: Show existing credentials in modal

    Note over User, Canvas: Canvas Interaction
    User->>SetupPanel: Hover over Node Card
    SetupPanel->>Canvas: NEW: Highlight specific node on canvas

    Note over User, Backend: Credential Verification Flow
    User->>SetupPanel: Input/Select Credentials
    SetupPanel->>Backend: Test Credentials
    Backend-->>SetupPanel: Test Result (Success/Failure)
    
    alt Test Successful
        SetupPanel->>SetupPanel: NEW: Mark credential card as "Completed"
    else Test Failed or Not Run
        SetupPanel->>SetupPanel: Keep credential card in "Pending" state
    end

    Note over User, CredStore: HTTP Request Node Configuration
    User->>Canvas: Configure HTTP Request Node
    Canvas->>CredStore: CHANGED: Selectively apply credentials based on node type/config
    CredStore-->>Canvas: Validated credential reference
Loading

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

### Bug Fixes

* **editor:** Selectively apply credentials for http request nodes ([#26003](https://github.com/n8n-io/n8n/issues/26003)) ([2763cc6](https://github.com/n8n-io/n8n/commit/2763cc6926c2a075738140b9a9f2dd8dc7d73fb5))
* **editor:** Setup panel visual tweaks (no-chaneglog) ([#26107](https://github.com/n8n-io/n8n/issues/26107)) ([0f10fa5](https://github.com/n8n-io/n8n/commit/0f10fa53467d860e01247ce4726c00561bfe2c3d))
Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot Feb 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P3: Fix the typo in the changelog label (“no-chaneglog” → “no-changelog”) to match the intended wording.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At CHANGELOG.md, line 7:

<comment>Fix the typo in the changelog label (“no-chaneglog” → “no-changelog”) to match the intended wording.</comment>

<file context>
@@ -1,3 +1,20 @@
+### Bug Fixes
+
+* **editor:** Selectively apply credentials for http request nodes ([#26003](https://github.com/n8n-io/n8n/issues/26003)) ([2763cc6](https://github.com/n8n-io/n8n/commit/2763cc6926c2a075738140b9a9f2dd8dc7d73fb5))
+* **editor:** Setup panel visual tweaks (no-chaneglog) ([#26107](https://github.com/n8n-io/n8n/issues/26107)) ([0f10fa5](https://github.com/n8n-io/n8n/commit/0f10fa53467d860e01247ce4726c00561bfe2c3d))
+* **editor:** Show existing credentials in template setup modal ([#25598](https://github.com/n8n-io/n8n/issues/25598)) ([b46181b](https://github.com/n8n-io/n8n/commit/b46181bf5b0edbe41f594a28fe29c091871b12d3))
+
</file context>
Fix with Cubic

@codecov
Copy link

codecov bot commented Feb 27, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

@MiloradFilipovic MiloradFilipovic merged commit 580cee7 into release/2.9.4-exp.0 Feb 27, 2026
111 of 119 checks passed
@MiloradFilipovic MiloradFilipovic deleted the release-pr/2.9.4-exp.0 branch February 27, 2026 12:57
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