chore: bump console to 1.1.8 - #13474
Merged
Merged
Conversation
Contributor
Greptile SummaryUpdates the stock Docker Compose deployment to use console image
Confidence Score: 5/5The PR appears safe to merge. No blocking failure remains. Important Files Changed
Reviews (4): Last reviewed commit: "chore: bump console to 1.1.8" | Re-trigger Greptile |
✨ Benchmark resultsComparing
Per-scenario breakdown & investigation detailsMetrics below reflect the current branch (after). Δ P95 compares against the base.
Top API waits (after)
|
ChiragAgg5k
force-pushed
the
chore/console-1.1.0
branch
from
September 3, 2026 18:25
21fd707 to
06a829a
Compare
0.6.1 renders the cloud Region/Edge picker and appwrite.network domains on a self-hosted install. 1.1.8 also carries the secure-context UUID fix (appwrite/vibes#248), without which every project page crashes when the console is served over plain HTTP on a non-loopback host.
ChiragAgg5k
force-pushed
the
chore/console-1.1.0
branch
from
September 4, 2026 13:30
06a829a to
0bbb152
Compare
loks0n
approved these changes
Sep 4, 2026
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.
Release metadata for
2.0.0-rc.3.docker-compose.ymlpinned the console toappwrite/new:0.6.1, which on a self-hosted install renders the cloud Region/Edge picker andappwrite.networkdomains in function create, and reloads over-eagerly on stale chunks.1.1.8fixes those, keeps pre-launch mode off so/initdoes not lock a self-hosted install behind the marketing page, and carries the secure-context UUID fix from appwrite/vibes#248.Why the UUID fix matters here
crypto.randomUUIDis only exposed in a secure context. Served over plain HTTP on anything that isn't literallylocalhost/127.0.0.1/::1it isundefined, and the console's CLI-shell provider called it from auseStateinitializer — so it threw on first render and the error boundary replaced every/projects/...page with a full-page error.Our own installer explicitly provisions that setup: HTTPS is off for loopback,
.local,.internaland bare IPs. So a stock self-hosted install on a LAN IP or internal hostname had a console that could not open a single project. Reported against 2.0.0-rc.2.Test Plan
Verified against the published
appwrite/new:1.1.8image on a local 2.0.0 stack.Image contents:
Over
http://appwrite.test— a genuinely insecure origin, confirmed in-page:fix(organizations): keep every organization reachable on single-tenant profiles, which landed between 1.1.5 and 1.1.8./v1/console/plansand/v1/avatars/favicon— cloud-only endpoints, expected on self-hosted, unrelated.On
http://localhost(secure context, where the bug never reproduced): fresh signup, project creation, no Region/Edge picker, domain suffix.functions.localhost, and a Node template function built in 5s and executedCompleted/200/ 733ms.