|
1 | 1 | # @object-ui/app-shell — Changelog |
2 | 2 |
|
| 3 | +## 6.2.2 |
| 4 | + |
| 5 | +### Patch Changes |
| 6 | + |
| 7 | +- c5821ce: `AiChatPage` no longer PATCHes a client-side title-from-first-message |
| 8 | + on the freshly-created conversation. The server (`@objectstack/service-ai` |
| 9 | + ≥ next minor) now generates a concise LLM-summarised title fire-and-forget |
| 10 | + after the first assistant turn lands, and a client-side truncated title |
| 11 | + would race that and win — pinning every conversation row to a 40-char |
| 12 | + substring of the first user message instead of a real summary. |
| 13 | + |
| 14 | + Drop the PATCH; bump the sidebar list a couple of times (2.5 s + 6 s) |
| 15 | + to pick up the LLM title whenever the model finally responds. |
| 16 | + |
| 17 | +- 3b35084: Fix: floating chatbot now replays persisted conversation history on mount. |
| 18 | + |
| 19 | + The right-corner floating chatbot (`ConsoleFloatingChatbot`) was passing only |
| 20 | + `conversationId` to its inner `useObjectChat`, dropping the `initialMessages` |
| 21 | + returned by `useChatConversation`. Backend persistence already worked — the |
| 22 | + server-side `ai_conversation` + `ai_message` rows were created and survived a |
| 23 | + page refresh — but the UI started each session with just the static "welcome" |
| 24 | + bubble, making users believe their history had been lost. |
| 25 | + |
| 26 | + Now matches the `/ai/:conversationId` full-page chat: history is hydrated |
| 27 | + into the chat surface, and the welcome bubble is suppressed when prior turns |
| 28 | + exist (showing it above real user/assistant turns is confusing). |
| 29 | + |
| 30 | +- Updated dependencies [a66f788] |
| 31 | + - @object-ui/react@6.2.2 |
| 32 | + - @object-ui/components@6.2.2 |
| 33 | + - @object-ui/fields@6.2.2 |
| 34 | + - @object-ui/layout@6.2.2 |
| 35 | + - @object-ui/plugin-editor@6.2.2 |
| 36 | + - @object-ui/types@6.2.2 |
| 37 | + - @object-ui/core@6.2.2 |
| 38 | + - @object-ui/i18n@6.2.2 |
| 39 | + - @object-ui/data-objectstack@6.2.2 |
| 40 | + - @object-ui/auth@6.2.2 |
| 41 | + - @object-ui/permissions@6.2.2 |
| 42 | + - @object-ui/collaboration@6.2.2 |
| 43 | + - @object-ui/providers@6.2.2 |
| 44 | + |
3 | 45 | ## 6.2.1 |
4 | 46 |
|
5 | 47 | ### Patch Changes |
|
0 commit comments