Releases: dataform-co/dataform
1.19.0: Add support for Application Default Credentials for BigQuery users.
1.18.0: Support --vars CLI flag.
Add vars option to CLI (#1184) * Add vars option to CLI * Wording * Ben comments * Disable redshift tests from builder
1.17.0: Extend full JavaScript support to standalone query compilation.
Standalone query compilation now has support for all JavaScript constructs, and also now has support for js { }
code blocks.
1.16.5: Single-query compilation now supports more forms of calls to `ref`/`resolve`.
In normal SQLX files, users can call ref
in a number of ways: ref("name")
, ref("schema", "name")
, ref(["schema", "name"])
, etc. Standalone queries previously only supported the ref("name")
form; but this has now been fixed.
1.16.4: Add the when() context function to operations and assertions
Add the when() function to all action types. (#1119) * Add the when() function to all action types. * bump version
1.16.3: Fix to allow overriding per-action schema and database at the same time.
Fix database action overrides (#1116) * Fix database action overrides * Bump version
1.16.2: Fix single-query compilation for empty query strings.
Fixes a bug where the compiler would return random stuff when asked t…
1.16.1: Add some better event handling around the Dataform compilation process
Handle compile child process events better. (#1101)
1.16.0: Add database suffix functionality
Dataform already supports schema suffixing and table name prefixing (usually used to isolate development work from production data).
This release adds support for database suffixes, which are particularly useful for Snowflake and BigQuery users, and can be used in the same way as (and alongside) schema suffixes.
1.15.5: Further fixes for trailing semicolon detection
Compilation errors were incorrectly returned for trailing semicolons in pre/post operations; this has now been fixed. In addition, trailing semi colons included in queries running in incremental
mode are now detected correctly.