Skip to content

dbt-utils v0.6.0

Compare
Choose a tag to compare
@clrcrl clrcrl released this 03 Sep 17:59
48567a6

dbt-utils v0.6.0

Thanks to our contributors @tayloramurphy and @JoshuaHuntley

Breaking changes

  • 🚨 dbt v0.18.0 or greater is required for this release. If you are not ready to upgrade, consider using a previous release of this package
  • 🚨 The get_tables_by_prefix, union_tables and get_tables_by_pattern macros have been removed

Migration instructions

Migration instructions can be found in the Changelog

Features

  • Switch usage of adapter_macro to adapter.dispatch, and define dbt_utils_dispatch_list,
    enabling users of community-supported database plugins to add or override macro implementations
    specific to their database (#267)
  • Use add_ephemeral_prefix instead of hard-coding a string literal, to support
    database adapters that use different prefixes (#267)
  • Implement a quote_columns argument in the unique_combination_of_columns schema test (#270 @JoshuaHuntley)

Quality of life

  • Remove deprecated macros get_tables_by_prefix and union_tables (#268)
  • Remove get_tables_by_pattern macro, which is equivalent to the get_tables_by_pattern_sql macro (the latter has a more logical name) (#268)