0.8.54
New Features and Enhancements
Section titled “New Features and Enhancements”- Improved handling of validation errors when preparing data from Snowflake tables or views.
Previously, unhandled validation errors could cause confusing query failures, such as
database not found.
Bug Fixes
Section titled “Bug Fixes”- Fixed Python client parsing of source table and view names with double quotes (
"
). Previously,my_db."my_schema".my_table
caused errors likeSchema 'my_db.my_schema' does not exist or not authorized
because quotes weren’t handled correctly. The client now parsesmy_db."my_schema".my_table
correctly, allowing use without errors.
Removals
Section titled “Removals”- The undocumented
experimental.graphs.ego_network()
function has been removed. Early access users who may have used this function should migrate to thestd.graphs.Compute.ego_network()
method that was released in version0.8.36
.