v1.5.7
v1.5.7
-
Replace
ast.literal_eval()
withjson.loads()
when filtering JSON columns.
This patch replaces the use ofstr
andast.literal_eval()
withjson.dumps()
andjson.loads()
to preserve accuracy. -
Fix a subtle bug with subprocesses.
The functionrun_python_package()
now better handles environment passing and raises a more verbose warning when something goes wrong. -
Allow columns with
'create'
in the name.
A security measure previously disallowed certain keywords when sanitizing input. Now columns are allowed to contain certain keywords.