Bugs, Performance & Reliability
Report bugs, performance issues, availability problems, or unexpected behavior. Describe steps to reproduce and how it affects your roadmap workflow.
Share your comment
The /api/db/* endpoints had grown organically and a few of them were missing the consistent auth-guard middleware. Easy to miss when shipping new endpoints quickly.All DB endpoints now go through a...
Signup was occasionally failing with an opaque error when two users tried to register at the same time with similar names (the auto-derived username would collide on the unique index). The new flow...
The SSR auth pass was loading only the session token, not the full user record. Pages that depended on user fields (avatar, display name, biography) had to fetch them again on the client, which cau...
The feedback portal is now fully containerised with a multi-stage Docker build and a CI/CD pipeline that runs unit tests on every commit and deploys on the protected branches. Builds are reproducib...
A foundational pass on the server side:Observability: structured logging on all /api/db endpoints with request-id correlation, plus a per-route latency histogram surfaced in the dashboard.Security ...
Signing out used to occasionally leave you on a stale 404 or briefly show the previous user's dashboard if you signed back in quickly. The root cause was the service worker holding the route table ...
The marketing site got a perf and accessibility pass that mirrors the admin and portal work but with one extra: the critical CSS for the first viewport is now inlined into the document head instead...
Mirror pass to the admin perf work, but for the feedback portal — and with one extra: SWR caching on the public read-only routes (boards, stages, posts) so subsequent visitors hit a warm cache whil...