Merged
Conversation
Matsuuu
approved these changes
Mar 4, 2026
Contributor
There was a problem hiding this comment.
No issues found across 5 files
Architecture diagram
sequenceDiagram
participant User as User (Browser)
participant UI as Editor UI (Vue)
participant Srv as n8n Server (Node.js)
participant Eng as Workflow Engine
participant Lib as jsonpath-plus
Note over User,Lib: n8n v2.10.3 - Credential & Execution Flow Changes
section Credential Modal Fix
User->>UI: Open Credential Modal
UI->>UI: NEW: Force visibility of Auth Mode dropdown
Note right of UI: Fixes bug where dropdown was hidden in specific UI states
end
section Security Fix (CVE)
Srv->>Eng: Execute Workflow Step
Eng->>Lib: CHANGED: Evaluate expression (jsonpath-plus)
Note right of Lib: Replaced insecure 'jsonpath' library
Lib-->>Eng: Return sanitized data
Eng-->>Srv: Step complete
end
section Collaboration Fix
Srv->>UI: Push collaboration event (WebSocket)
alt Payload in "old format"
UI->>UI: NEW: Handle/transform legacy format
Note right of UI: Prevents crashes during version mismatch
else Standard format
UI->>UI: Update editor state
end
end
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
This comment has been minimized.
This comment has been minimized.
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.10.3 (2026-03-04)
Bug Fixes