Skip to content

What's New in Version 0.13.6

February 17, 2026 1:01 PM UTC

Version 0.13.6 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
  • Query timeouts now raise QueryTimeoutExceededException when the underlying job times out. This makes timeout failures easier to identify and handle explicitly in application error handling. For example, you can catch QueryTimeoutExceededException and retry with a higher query_timeout_mins value for long-running workloads. You can set query_timeout_mins in your raiconfig.toml file, in a Config object, or as a per-query override. See Configuration keys and Changing the Query Timeout for usage details.

  • Query workflows now provide clearer progress updates with more responsive polling behavior. In long-running query operations, progress output should update more smoothly and feel less idle between checks.

  • This release updates the NiceGUI dependency to the 3.x line for debugger compatibility.

  • Snowflake table exports created with Model.export() now run faster in export-heavy workloads. If you use @model.export(...) to materialize outputs in Snowflake, total export time should be lower in larger export jobs. See Exporting SQL Stored Procedures for usage details.

  • No migration is required for most users. Existing code continues to work as before.