What's New in Version 0.14.2
Version 0.14.2 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”-
Model.exporttable-materialization flows now preserve Hash-typed columns. This fixes cases where those columns could be dropped unexpectedly when materializing export outputs into Snowflake tables. -
Materializing solver outputs into Snowflake tables now fails less often and keeps output schemas more consistent. In practice, this means fewer table-load errors and fewer unexpected schema differences in downstream workflows.
-
Experimental solver APIs are now located in
relationalai.semantics.reasoners.optimization. If you previously imported fromrelationalai.early_access.solvers, move those imports torelationalai.semantics.reasoners.optimization.
Upgrade Notes
Section titled “Upgrade Notes”-
No migration is required for most users. Existing stable user-facing APIs and workflows remain unchanged.
-
If you use experimental solver interfaces directly, update imports from
relationalai.early_access.solverstorelationalai.semantics.reasoners.optimization.