Merged
Conversation
tomi
approved these changes
Feb 25, 2026
Collaborator
tomi
left a comment
There was a problem hiding this comment.
To the moon 🌔 and beyond 🚀
Contributor
There was a problem hiding this comment.
No issues found across 6 files
Architecture diagram
sequenceDiagram
participant Monitor as Monitoring / K8s
participant LB as Proxy / Load Balancer
participant Core as n8n Core Server
participant Broker as Task Broker
participant Env as Config / Env Vars
participant UI as Editor UI (Safari)
Note over Monitor, Broker: Health Check Flow (Core Fixes)
Monitor->>LB: GET /healthz
LB->>Broker: CHANGED: Route to /healthz
Broker->>Env: Check N8N_ENDPOINT_HEALTH
Note right of Broker: NEW: Always responds to /healthz<br/>ignoring N8N_ENDPOINT_HEALTH
Broker-->>LB: 200 OK
Monitor->>LB: GET [sub-path]/healthz
LB->>Core: Forward with base path
Core->>Core: CHANGED: Validate base path prefix
Core-->>LB: 200 OK
Note over UI, Env: Application Initialization (Core & Editor Fixes)
UI->>Core: GET /api/v1/settings
Core->>Env: Check Demo Mode & Setup Status
Env-->>Core: demoMode: true
alt NEW: Demo Mode Active
Core-->>UI: Suppress setup instructions
else Standard Mode
Core-->>UI: Return setup configuration
end
Note over UI: UI Rendering
UI->>UI: CHANGED: Apply Safari 18.6<br/>grid alignment fixes
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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.9.4 (2026-02-25)
Bug Fixes