Three user-reported failures in the assistant panel, one root cause each:
1. "The chat asks what I'm referring to" when continuing a thread. The
single-call console (general.help, AskConsole -> /api/agent/ask) was
stateless since the 08-20 model-agnostic cutover: conversationId was only
the tool actor id, so every turn was answered blind, reload or not.
The provider-agnostic GenerateTextRequest gains an optional `history`
(real message turns before the prompt, in both the Anthropic-family and
the OpenAI-compatible adapter; absent/empty leaves the request
byte-identical to the single-turn call). The route loads the thread's
earlier turns server-side (loadChatHistory: text only, hidden and tool
rows dropped, alternation repaired, newest 16 rows / 10k chars) before
writing the new question, and hands them to the model.
2. A full page reload (the deploy prompt's "Ladda om") closed the docked
panel and dropped the thread from view. The panel now remembers its open
thread per tab in sessionStorage (lib/agent-panel/session-restore) and
the provider reopens it on mount; the sheet loads it exactly like a pick
from "Tidigare konversationer". Close and "Ny konversation" forget it; a
thread that no longer opens is dropped instead of retried on every reload.
3. "Can't type any more" once the update banner shows. DeployReloadPrompt's
full-width wrapper sits at z-[60] after the panel in DOM order and
swallowed clicks on the panel's composer; only the card takes input now.
Claude-Session: https://claude.ai/code/session_01VjoXN3xdNZrHZeYA6qMi3g
Co-authored-by: Jakob Wennberg <311770904+jakobwennberg-oss@users.noreply.github.com>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Long-open tabs keep running the JS bundle they first loaded, so a shipped
change can look "missing" (e.g. a new settings field appearing only after a
full reload) until the whole app is reloaded. Add a small, unobtrusive prompt
that detects a newer deploy and offers a one-click reload.
- next.config: inline the deploy's commit SHA into the client bundle as
NEXT_PUBLIC_BUILD_ID (empty in dev / self-hosted, which disables the check).
- /api/version: public, no-store route returning the running deployment's SHA
at request time.
- DeployReloadPrompt: compares the two on load, on tab focus, and on a 30-min
backstop; shows a bottom banner with "Ladda om" on mismatch. Mounted once in
the root layout. No service worker, degrades to a no-op with no build id.
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>