Back to the changelog

v0.25.8

June 24, 2026

Data-contract diagnostics in the designer + data governance extended to the Flow Agent

  • Feature

    Data diagnostics in the designer

    A new **"Data diagnostics"** badge in the visual designer flags fields used by an AI task or a rule that are **not declared in the dataSchema** (they would be dropped before reaching the AI when minimization is on) or **not collected by any form** (they must be populated by a form/event/task first). It catches the silent "the AI decides without the data" case — e.g. the "accept if order > 1000€" task that never received the amount.

  • Security

    Data governance on the Flow Agent

    When the Flow Agent (and external agents via MCP) reads an item, its data now comes **minimized to the dataSchema fields** (respecting the flow/tenant minimization setting) and with **sensitive fields redacted** (`[redacted]`). The agent can answer on operational data (amount, status) without raw personal data reaching the model.

  • Improvement

    n8n & uploads deploy fixes

    Docker Compose now **auto-creates the `n8n` database** (n8n previously failed to start because its dedicated database was never created), idempotently. Added the **persistent uploads volume** (tenant logos/attachments) to the production compose so files survive redeploys.