Skip to content

What's New in Version 0.13.1

January 14, 2026 7:53 PM UTC

Version 0.13.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
  • Queries that are automatically stopped by our performance guard rails (such as when a missing join creates a large, slow cross-product) now raise a GuardRailsException instead of a generic error. This helps you see which relation caused the problem and why, so you can fix your query faster. If your code handles exceptions, consider adding special handling for GuardRailsException (along with timeouts and other errors) to show clearer messages or help users review their joins and query logic.