Back to the changelog

v0.29.2

June 30, 2026

Flow variables and global settings: define values like thresholds and limits once, reuse them anywhere in the flow. Timeout and iteration fields become expressions, and a new `{x}` picker helps insert variables and fields in the right spots.

  • Feature

    Flow variables and global variables

    You can now define **global** variables (valid across the whole tenant, under *Settings → Global variables*) and **flow** variables (specific to a single flow, in the designer panel). Each variable has a name, a type (text, number, boolean) and a value. Use them in templates with `{{global.vars.name}}` and `{{flow.vars.name}}` — in transition rules, AI prompts, webhook/event payloads, timeout and iteration fields. Change the value in one place and it updates everywhere.

  • Feature

    Timeout and iteration fields as expressions

    The status *Timeout (minutes)* field and the AI status *Max iterations* field now accept, besides a fixed number, an expression — e.g. `{{flow.vars.slaMinutes}}` — resolved at runtime against variable values and item data.

  • Design

    Expression picker `{x}`

    Next to template-capable fields a `{x}` button now opens a menu listing the available global and flow variables, item fields (`item.id`, `item.entityRefId`, `item.assignedTo`) and data-schema fields. Picking an entry inserts the correct expression into the field, with no need to type it by hand.