Skip to content

Releases: dataform-co/dataform

1.19.0: Add support for Application Default Credentials for BigQuery users.

22 Apr 15:40
42bedcb
Compare
Choose a tag to compare

1.18.0: Support --vars CLI flag.

22 Apr 15:39
32c1d0e
Compare
Choose a tag to compare
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.

26 Nov 16:28
df4e29b
Compare
Choose a tag to compare

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`.

26 Nov 16:26
c716577
Compare
Choose a tag to compare

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

25 Nov 17:27
528413c
Compare
Choose a tag to compare
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.

25 Nov 11:37
2d7dac4
Compare
Choose a tag to compare
Fix database action overrides (#1116)

* Fix database action overrides

* Bump version

1.16.2: Fix single-query compilation for empty query strings.

25 Nov 10:30
e3c5aca
Compare
Choose a tag to compare
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

12 Nov 16:14
defb077
Compare
Choose a tag to compare
Handle compile child process events better. (#1101)

1.16.0: Add database suffix functionality

11 Nov 16:45
19541a7
Compare
Choose a tag to compare

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

11 Nov 16:43
95b5176
Compare
Choose a tag to compare

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.