FLUIDFLUID
  • Introduction
  • Quickstart
  • Why FLUID
  • FAQ
  • What FLUID Is
  • Core Principles
  • Agentic-Native Layer
  • FLUID vs ODCS / ODPS
  • Anatomy
  • Cheatsheet
  • Full Specification
  • Versions
  • JSON Schema 0.7.5 ↗
  • Reference (HTML) ↗
Examples
How-to
What's New
Deck
GitHub
GitHub
  • Introduction
  • Quickstart
  • Why FLUID
  • FAQ
  • What FLUID Is
  • Core Principles
  • Agentic-Native Layer
  • FLUID vs ODCS / ODPS
  • Anatomy
  • Cheatsheet
  • Full Specification
  • Versions
  • JSON Schema 0.7.5 ↗
  • Reference (HTML) ↗
Examples
How-to
What's New
Deck
GitHub
GitHub
  • What's New

    • What's New
    • What's New in FLUID 0.7.5 — Streaming Kafka → Iceberg Sink & Confluent Tableflow
    • What's New in FLUID 0.7.4 — Runtime agentPolicy Enforcement at the MCP Gateway
    • What's New in FLUID 0.7.3 — Source-Aligned Acquisition
    • What's New in FLUID 0.7.2 — Semantic Truth Engine
    • What's New in FLUID 0.7.1 — Agentic Governance + Provider-First Orchestration

What's New in FLUID 0.7.4 — Runtime agentPolicy Enforcement at the MCP Gateway

FLUID 0.7.4 makes an expose agent-consumable over MCP and turns exposes[].policy.agentPolicy into a gate the FLUID MCP output-port gateway enforces on every read.

The headline change is behavioral, not structural: policy.agentPolicy's shape is unchanged from 0.7.3. What's new is that the gateway now actually enforces it at request time instead of treating it as advisory metadata.

✅ 0.7.4 is fully backward-compatible with 0.7.3. This release is purely additive — every valid 0.7.3 contract validates as 0.7.4 unchanged. See Backward compatibility — fully additive for details.


🔌 exposes[].mcp — opt an expose into the MCP gateway (NEW)

A new exposeMcp block declares an expose as agent-consumable over MCP and carries per-expose overrides for the output-port server:

exposes:
  - exposeId: customer_profiles
    kind: table
    # ...contract, binding, policy...
    mcp:                          # NEW in v0.7.4
      sampling:
        maxRows: 100              # integer ≥ 1, default 100
      classification:
        dataClass: confidential   # public | internal | confidential | restricted
  • mcp.sampling.maxRows — integer, minimum 1, default 100. A hard cap for the sample MCP tool. Defends against an over-curious agent asking for petabyte-scale samples.
  • mcp.classification.dataClass — one of public | internal | confidential | restricted. Surfaced on the describe tool so consumer agents can declare downstream handling. Advisory only — it is a hint, not an enforced control.

🛡️ Runtime agentPolicy enforcement (behavioral change)

The FLUID MCP output-port gateway now enforces exposes[].policy.agentPolicy on every read:

  • allowedModels / deniedModels — the calling model is checked against the allow/deny lists before any data is returned.
  • allowedUseCases / deniedUseCases — the declared use case is checked against the controlled vocabulary.

Requests that violate the policy are rejected at the gateway rather than served. The agentPolicy shape is unchanged from 0.7.3 — if you already declared it, no edits are needed; it simply becomes a live gate.


🙈 PII / PHI value redaction

When a column is classified as PII/PHI, the gateway redacts the values, not the column: the column stays visible in the response shape, but each value is replaced with [REDACTED-PII]. Agents still see the schema and can reason about structure without ever receiving the sensitive payload.

phi is not new in 0.7.4 — it has been a value in the column sensitivity enum since 0.7.3.


🐘 New binding platform and formats (NEW, additive)

  • binding.platform gains postgres — for the MCP output-port PostgreSQL driver. Existing platforms (gcp, aws, azure, snowflake, databricks, kafka, local, kubernetes, other) are unchanged.
  • binding.format gains postgres_table, athena_table, and glue_table — added alongside (not replacing) the existing formats including snowflake_view and the redshift_* values.
binding:
  platform: postgres        # NEW in v0.7.4
  format: postgres_table    # NEW in v0.7.4 (also: athena_table, glue_table)
  location: { ... }

fluidVersion also moves from const: "0.7.3" to enum: ["0.7.3", "0.7.4"], so existing 0.7.3 values still validate against the 0.7.4 schema.


Backward compatibility — fully additive

0.7.4 is fully backward-compatible with 0.7.3. Every valid 0.7.3 contract validates as 0.7.4 unchanged — the release only adds optional fields and enum values. Nothing was removed:

  • Top-level governance and binding.governance (the AWS Lake Formation blocks — data-lake admins, LF-tag / TBAC definitions, per-resource principal grants, row/column filters) remain valid.
  • binding.format still accepts snowflake_view, redshift_table, redshift_serverless, and redshift_external_schema — the new postgres_table / athena_table / glue_table values are added alongside them.
  • runtime.platform still accepts athena, glue, and redshift.
  • Acquisition enums are unchanged: catalog register still accepts datamesh_manager; managed-deployment target still accepts opentofu.

The only schema-level change beyond the additions is that fluidVersion moves from const: "0.7.3" to enum: ["0.7.3", "0.7.4"], so a 0.7.3 value keeps validating.

Upgrading

fluidVersion: "0.7.4"   # optional — "0.7.3" still validates against the 0.7.4 schema

Bumping the version is all it takes — there are no removed fields to migrate off. The new exposes[].mcp block, the postgres platform, and the postgres_table / athena_table / glue_table formats are all optional and additive.


References

  • Schema Changelog — the field-by-field machine diff for every version.
  • Full 0.7.3 → 0.7.4 diff — the complete auto-generated change list (additive: new exposes[].mcp block, new postgres platform and postgres_table / athena_table / glue_table formats, and fluidVersion widened to an enum).
Edit this page on GitHub
Last Updated: 5/29/26, 5:26 PM
Contributors: fas89, Claude Opus 4.8
Prev
What's New in FLUID 0.7.5 — Streaming Kafka → Iceberg Sink & Confluent Tableflow
Next
What's New in FLUID 0.7.3 — Source-Aligned Acquisition