Skip to content

What's New in Version 0.14.0

February 20, 2026 5:31 PM UTC

Version 0.14.0 of the relationalai Python package is now available!

To upgrade, activate your virtual environment and run the following command:

Terminal window
pip install --upgrade relationalai
  • Long-running queries started from Model.query no longer continue in the background after the client disconnects. If a notebook kernel, process, or network session drops while a query is still running, that query is now canceled. In those cases, execution raises ClientDisconnectedException. This change applies to query execution and does not change the current Model.export table-materialization path.

  • Query progress output is now enabled by default through print_txn_progress = true (see Configuration keys). This can change terminal/notebook output in scripts and tests that previously expected no progress text.

  • Review any workflows that relied on queries continuing in the background after a client/session disconnect. Update those flows to keep the client session alive for the operation duration or to retry safely after reconnect.

  • If progress output is too noisy for automation logs, set print_txn_progress = false in your raiconfig.toml file or Config object.