Releases: dataform-co/dataform
1.20.3: Removing run caching
This release removes support for run caching, and introduces a number of proto API cleanups in advance of Dataform's GCP integration.
Importantly, this removes name
and dependencies
fields from the CompiledGraph
proto. Please migrate to target.*
and dependencyTargets
instead.
(This release was previously rolled back in 1.20.2
).
1.20.2: Rollback of 1.20.1 to 1.20.0
This reverts Dataform packages back to code at version 1.20.0
while we continue to debug some issues with the last release.
1.20.1: Removing run caching
This release removes support for run caching, and introduces a number of proto API cleanups in advance of Dataform's GCP integration.
Importantly, this removes name
and dependencies
fields from the CompiledGraph
proto. Please migrate to target.*
and dependencyTargets
instead.
1.20.0: Add a --timeout flag to the CLI.
Implement a --timeout flag for the CLI. Make the CLI options much mor…
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