• Contract Generation - Users can now easily generate contracts from a data asset. Simply navigate to the data asset details page and then click the Generate Contract button in the top-right corner of the page. Clicking the button will open a window that displays the inferred contract from the given data asset.
  • Updated Tutorial - Our Gable tutorial has been updated with new images and examples, including database tables!
  • Command Line Interface (CLI) Updates -
    • Added --debug and --trace flags for more detailed logging to help debug issues
    • The --table flag of the data-asset register and data-asset check commands now accepts a comma delimited string of table names, so you can specify multiple tables at once (gable data-asset register --table one,two,three)
    • The CLI now exits with a non-zero exit code if the data-asset register and data-asset check commands don’t find anything to register/check (tables or files). Previously the CLI would print a success message and an empty array to indicate it didn’t check/register anything
    • Fixed the issue where the CLI hangs if unable to connect to a database when running the data-asset register or data-asset check commands
    • Fixed issues caused by some options, like --schema, incorrectly being optional. These options are now required.