Releases: calogica/dbt-expectations
Releases · calogica/dbt-expectations
dbt-expectations 0.5.3
New Features
- Add
group_by
parameter toexpect_column_values_to_be_increasing
andexpect_column_values_to_be_decreasing
(#146 @Lucasthenoob)
New Contributors
- @Lucasthenoob made their first contribution in #146
Full Changelog: 0.5.2...0.5.3
dbt-expectations 0.5.2
Fixes
- Fix
expect_row_values_to_have_recent_data
to use current timestamp by @MrJoosh in #145 (also fixes #104)
New Features
- Add new
expect_column_values_to_have_consistent_casing
test by @agusfigueroa-htg in #138
Doc Updates 💌
- Update README.md by @kdw2126 in #134
- Fix documentation to note DBT 1.0.0 compatibility by @kdw2126 in #136
New Contributors
dbt-expectations 0.5.1
What's Changed
- Fix
expect_column_values_to_be_in_type_list
for Redshift in 0.5.0 by @nicholasyager in #131 - Make string field types more explicit by @clausherther in #132
New Contributors
- @nicholasyager made their first contribution in #131
Full Changelog: 0.5.0...0.5.1
dbt-expectations 0.5.0
What's Changed
- Upgrade project to support dbt 0.1.x by @clausherther in #127
This release is NOT backwards-compatible with versions of dbt < 1.0.0. Please use 0.4.7
if you're not yet ready to upgrade to dbt v1.
Full Changelog: 0.4.7...0.5.0
dbt-expectations 0.4.7
What's Changed
- Patch release to support dbt 0.1.x by @clausherther in #128
Full Changelog: 0.4.6...0.4.7
dbt-expectations 0.4.6
What's Changed
- Append missing optional parameters documentation to README.md by @makotonium in #124
- Fix missing group_by default value in string_matching macros by @samantha-guerriero-cko in #126
New Contributors
- @makotonium made their first contribution in #124
- @samantha-guerriero-cko made their first contribution in #126
Full Changelog: 0.4.5...0.4.6
dbt-expectations 0.4.5
What's Changed
- make non-core a little more clear by @chapmanjacobd in #119
- Add expect_table_columns_to_contain_set to README by @epapineau in #121
- Fix Redshift compatibility by @mirosval in #123
- Add an optional argument to allow for intervals of
date_part
inexpect_row_values_to_have_data_for_every_n_datepart
by @lewisarmistead in #110
New Contributors
- @chapmanjacobd made their first contribution in #119
- @epapineau made their first contribution in #121
- @lewisarmistead made their first contribution in #110
Full Changelog: 0.4.4...0.4.5
dbt-expectations 0.4.4
What's Changed
- Fix expect_row_values_to_have_data_for_every_n_datepart errors when both start and end dates are set by @jeremyyeo in #115
- Replace hardcoded transform in expect_column_to_exist by @UselessAlias in #118
New Contributors
- @jeremyyeo made their first contribution in #115
- @UselessAlias made their first contribution in #118
Full Changelog: 0.4.3...0.4.4
dbt-expectations 0.4.3
What's Changed
- expect_table_columns_to_match_ordered_list: refactor row_number to use loop.index by @clausherther in #112
- Add support for dbt 0.21 by @clausherther in #116
Full Changelog: 0.4.2...0.4.3
dbt-expectations v0.4.2
Features
- Added
row_condition
toexpect_grouped_row_values_to_have_recent_data
andexpect_row_values_to_have_recent_data
to allow for partition filtering before applying the recency test (#106 w/ @edbizarro)
Under the hood
- Converted Jinja set logic to SQL joins to make it easier to follow and iterate in the future (#108)