Highlights
- Follow an Assistant response as it develops inside its active conversation.
- Use shared low-code libraries with typed members available during authoring.
- Write structured Database queries with editor-aware support.
- Expand and organise favourite navigation items into a hierarchy.
- Focus dense server-backed grids in a dedicated larger working view.
In detail
Stay in the conversation while work is happening
Stay in the conversation while work is happening
The Assistant becomes a more active conversation workspace. Instead of treating a response as one completed block that arrives after a wait, the application can keep the current thread, its messages and streamed activity together as the response develops. The composer, message presentation and conversation list are reworked around that live state, so a user can remain oriented in the same task while the result is still taking shape.This makes longer exchanges more usable. The person asking the question can see the current conversation in context and continue operating the application around it, rather than moving through a disconnected chat surface. It is a meaningful step in the Assistant’s progression, but it remains an early platform-aware Assistant rather than the later stable Agentic System, governed change workflow or autonomous operation.
Make reusable logic easier to call correctly
Make reusable logic easier to call correctly
Low-code Components often need shared business rules, not duplicated snippets copied from one element to another. This release improves the authoring contract for shared libraries by making typed library members available in the editor. A builder can work against a clearer description of a reusable member and its inputs, which makes the relationship between a Component and its shared logic easier to understand before execution.The managed V8 runtime remains the place where the Component is executed; the improvement is about helping the builder express valid code in the first place. Reusable logic can stay in a library, while the Component keeps the application-specific orchestration that belongs to its own workflow.
Give Database queries a structured low-code surface
Give Database queries a structured low-code surface
Structured query authoring is added to the low-code runtime and editor support. Instead of requiring every data-oriented Component to invent its own unstructured access pattern, a builder can describe a Database request through the supported query capability and receive validation and authoring assistance.For example, the structured query surface supports a Component that loads a record by a value supplied in its execution input:The snippet illustrates a bounded application task: read a managed Database, make the structured filter explicit and return a defined result when no matching row exists. It is not an invitation to bypass the managed data model or a claim that arbitrary database access is available.

