Merged
Conversation
Matsuuu
approved these changes
Mar 2, 2026
Contributor
There was a problem hiding this comment.
1 issue found across 30 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:33">
P3: Fix the typo in the changelog entry: "no-chaneglog" should be "no-changelog".</violation>
</file>
Architecture diagram
sequenceDiagram
participant UI as Editor / Chat Hub
participant API as Backend API
participant Auth as AuthRolesService
participant Engine as Workflow Execution Engine
participant Secrets as External Secret Store (Vault)
participant Redactor as Data Redaction Service
Note over Auth: CHANGED: Resolved multi-main startup race condition
UI->>API: Execute Workflow / Request Chat
API->>Auth: Validate Scopes
Note right of Auth: NEW: Check for 'execution:reveal' <br/>and split 'share'/'unshare' scopes
Auth-->>API: Authorized
API->>Engine: runWorkflow()
rect rgb(23, 37, 84)
Note over Engine, Secrets: NEW: Project-level External Secrets Flow
Engine->>Engine: Initialize ITaskData
Engine->>Secrets: Fetch Credentials
Note right of Secrets: CHANGED: Multi-connection support <br/>for Vault & Project-scoped secrets
Secrets-->>Engine: Decrypted Credentials
Engine->>Engine: NEW: Track dynamic credential resolution in ITaskData
end
opt Chat Hub Interaction
Engine->>UI: NEW: Push Suggested Prompts to UI
UI->>API: POST /chat/file-upload
API->>API: NEW: Check Chat Trigger file permission flag
alt Files NOT permitted
API-->>UI: 403 Forbidden (Blocked by Trigger config)
else Files permitted
API-->>Engine: Process File
end
end
rect rgb(5, 46, 22)
Note over Engine, Redactor: NEW: Execution Data Privacy
Engine->>Redactor: redactTaskData(executionId)
Redactor-->>Engine: Sanitized Execution Object
end
Engine-->>UI: Workflow Finished / Result Displayed
opt Workflow History
UI->>API: GET /history/compare
API-->>UI: NEW: Return version diff for canvas/builder
end
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
| * **editor:** Prevent scrollbar flashing when toasts are shown ([#26338](https://github.com/n8n-io/n8n/issues/26338)) ([bfa4550](https://github.com/n8n-io/n8n/commit/bfa45502003791b966796dee910da7e9ced45a08)) | ||
| * **editor:** Replace jsonpath with jsonpath-plus to resolve CVE ([#26399](https://github.com/n8n-io/n8n/issues/26399)) ([4e0cd02](https://github.com/n8n-io/n8n/commit/4e0cd02d5c92ace6f7615afac8f7a6cd7c5e12fc)) | ||
| * **editor:** Resolve credential modal expressions without workflow co… ([#26191](https://github.com/n8n-io/n8n/issues/26191)) ([e0ef26b](https://github.com/n8n-io/n8n/commit/e0ef26bf1ddeee22e22206b42df978f697c2203e)) | ||
| * **editor:** Setup panel visual tweaks (no-chaneglog) ([#26107](https://github.com/n8n-io/n8n/issues/26107)) ([2e07bb8](https://github.com/n8n-io/n8n/commit/2e07bb8d04e7f06b2e0f52b229eef55e6f020f49)) |
Contributor
There was a problem hiding this comment.
P3: Fix the typo in the changelog entry: "no-chaneglog" should be "no-changelog".
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At CHANGELOG.md, line 33:
<comment>Fix the typo in the changelog entry: "no-chaneglog" should be "no-changelog".</comment>
<file context>
@@ -1,3 +1,73 @@
+* **editor:** Prevent scrollbar flashing when toasts are shown ([#26338](https://github.com/n8n-io/n8n/issues/26338)) ([bfa4550](https://github.com/n8n-io/n8n/commit/bfa45502003791b966796dee910da7e9ced45a08))
+* **editor:** Replace jsonpath with jsonpath-plus to resolve CVE ([#26399](https://github.com/n8n-io/n8n/issues/26399)) ([4e0cd02](https://github.com/n8n-io/n8n/commit/4e0cd02d5c92ace6f7615afac8f7a6cd7c5e12fc))
+* **editor:** Resolve credential modal expressions without workflow co… ([#26191](https://github.com/n8n-io/n8n/issues/26191)) ([e0ef26b](https://github.com/n8n-io/n8n/commit/e0ef26bf1ddeee22e22206b42df978f697c2203e))
+* **editor:** Setup panel visual tweaks (no-chaneglog) ([#26107](https://github.com/n8n-io/n8n/issues/26107)) ([2e07bb8](https://github.com/n8n-io/n8n/commit/2e07bb8d04e7f06b2e0f52b229eef55e6f020f49))
+* **editor:** Stop hijacking search shortcut for layouts without search ([#26222](https://github.com/n8n-io/n8n/issues/26222)) ([4fd3fd7](https://github.com/n8n-io/n8n/commit/4fd3fd75942189ab49a8c26b92b95ed4c8cd3325))
+* Enable external secrets multi-connection to vault ([#26189](https://github.com/n8n-io/n8n/issues/26189)) ([fc5c842](https://github.com/n8n-io/n8n/commit/fc5c8424e285198fde1f962ae294bce427ef656f))
</file context>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Bundle ReportBundle size has no change ✅ Affected Assets, Files, and Routes:view changes for bundle: editor-ui-esmAssets Changed:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
2.11.0 (2026-03-02)
Bug Fixes
arraySize(#26168) (a3d5937)shift+spacekey combo in canvas (#26169) (8803226)Features
execution:revealscope (#26252) (81ab10d)