Skip to content

Release Notes

0.11.3

October 23, 2025 10:11 PM UTC

October 23, 2025 10:11 PM UTC

Version 0.11.3 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
  • Data stream synchronization is now smarter and more efficient! With this update, data streams are reset automatically only when the columns of a source table actually change—such as when columns are added, removed, or modified. Changes to table metadata that don’t affect columns (like adding tags or enabling change tracking) no longer cause unnecessary stream resets.

0.11.2

October 20, 2025 8:04 PM UTC

October 20, 2025 8:04 PM UTC

Version 0.11.2 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
  • You can now configure a maximum query execution time in the RelationalAI Python client using the new query_timeout_mins setting. By default, queries time out after 24 hours, but you can reduce this limit in your config file or per query to better control long-running operations.

    If a query exceeds the specified timeout, a clear QueryTimeoutExceededException is raised with guidance on how to resolve the issue—replacing the previous behavior where timeouts returned empty results without explanation.

    Example usage:

    In you raiconfig.toml file:

    query_timeout_mins = 30 # Set max query time to 30 minutes

    As a query-specific override:

    from relationalai.errors import QueryTimeoutExceededException
    import relationalai as rai
    model = rai.Model("MyModel")
    try:
    # Set a 10-minute timeout for this specific query
    with model.query(query_timeout_mins=10) as select:
    # ... some long-running query logic ...
    except QueryTimeoutExceededException as e:
    print(e)

    This enhancement helps prevent runaway queries to control costs and resource usage, while providing clear feedback when timeouts occur.

  • Improved the CLI progress indicator to better detect continuous integration (CI) environments by disabling certain terminal features. When running queries in CI, the progress display now shows a single, clean progress line instead of multiple lines, preventing cluttered logs.

  • Improved error messages for internal system errors encountered during query execution. When such errors occur, the message now includes clear troubleshooting steps to help you resolve the issue:

    1. Retry using a new model name to work around possible state-related problems.
    2. If the error persists, set the use_lqp flag to False when creating your model (e.g., model = Model(..., use_lqp=False)) to switch to the legacy backend, which may avoid the error at some performance cost.

    These enhancements provide actionable guidance directly in the error output, making it easier to diagnose and work around internal engine errors without needing additional support.

  • Fixed a bug where failed some transactions could incorrectly update the internal model cache when using use_lqp=True. Now, if a transaction or its result processing fails, the model cache is reverted to its previous valid state. This ensures that only successful transactions update the model cache, preventing future queries from using an inconsistent or partially updated model.

0.11.1

October 6, 2025 9:53 AM UTC

October 6, 2025 9:53 AM UTC

Version 0.11.1 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
  • This release includes only internal code refactoring and testing updates with no user-facing changes.

2025.11.10-59f3cf6

November 12, 2025 10:00 PM UTC

November 12, 2025 10:00 PM UTC

Version 2025.11.10-59f3cf6 of the RelationalAI Native App is now available!

Note that RelationalAI Native App upgrades are applied automatically and require no action on your part, unless you have opted-in to manual upgrades.

  • This release adds a new optional Snowflake privilege for all RelationalAI (RAI) Native App installations. The privilege is IMPORTED PRIVILEGES ON SNOWFLAKE DB. It supports upcoming features that integrate with Snowflake Cortex AI.

    Existing installations will continue to operate without this privilege. However, to take advantage of new features that require it, you must grant this privilege to the RAI Native App.

    To grant this privilege to your RAI Native App, execute the following SQL command in a Snowflake worksheet:

    GRANT IMPORTED PRIVILEGES ON DATABASE SNOWFLAKE TO APPLICATION RELATIONALAI;
  • We have improved how RAI engines estimate available memory. Previously, engines were overly conservative and treated reclaimable kernel memory as unavailable. This could lead to underused resources. The new approach provides a more accurate lower bound, allowing better resource utilization.

    There are no changes to user-facing APIs or commands, but you may notice improved engine performance.

2025.11.2-6a8205c

November 5, 2025 11:00 PM UTC

November 5, 2025 11:00 PM UTC

Version 2025.11.2-6a8205c of the RelationalAI Native App is now available!

Note that RelationalAI Native App upgrades are applied automatically and require no action on your part, unless you have opted-in to manual upgrades.

  • Minor updates to performance and stability.

2025.10.27-1e82ecf-1

October 30, 2025 11:00 PM UTC

October 30, 2025 11:00 PM UTC

Version 2025.10.27-1e82ecf-1 of the RelationalAI Native App is now available!

Note that RelationalAI Native App upgrades are applied automatically and require no action on your part, unless you have opted-in to manual upgrades.

  • User-initiated transactions now have a default timeout of 24 hours (1,440 minutes). Currently there is no way to change this timeout globally, but Python API users can adjust it for their models by specifying the query_timeout_mins parameter in their raiconfig.toml file. See Changing the Query Timeout for more information about setting this parameter.

    This breaking change improves resource management by preventing long-running transactions from consuming system resources indefinitely.