What's New in Version 0.13.6
Version 0.13.6 of the relationalai Python package is now available!
To upgrade, activate your virtual environment and run the following command:
pip install --upgrade relationalaiNew Features and Enhancements
Section titled “New Features and Enhancements”-
Query timeouts now raise
QueryTimeoutExceededExceptionwhen the underlying job times out. This makes timeout failures easier to identify and handle explicitly in application error handling. For example, you can catchQueryTimeoutExceededExceptionand retry with a higherquery_timeout_minsvalue for long-running workloads. You can setquery_timeout_minsin yourraiconfig.tomlfile, in aConfigobject, 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.
Upgrade Notes
Section titled “Upgrade Notes”- No migration is required for most users. Existing code continues to work as before.