Utils
Upgrading to 0.14.0
- Version 1.4.0 of 
dbt-corenow required - Any custom models using the 
snowplow_incrementalmaterialization should be changed to use theincrementalmaterialization withsnowplow_optimize=trueset in the model config.snowplow_incrementalhas been deprecated - BigQuery incremental models now require the 
upsert_date_keyconfig snowplow_utils.type_stringit has been deprecated and should be replaced withdbt.type_string()for non-length specific calls, andsnowplow_utils.type_max_stringfor redshift strings above 256 characters.snowplow_utils.get_cluster_byandsnowplow_utils.get_partition_bythey have been deprecated and should be replaced withsnowplow_utils.get_value_by_target_typewith arg namesbigquery_val,databricks_valetc.snowplow_utils.snowplow_is_incrementalhas been deprecated and should be replaced with standardis_incremental()to align with removal of the custom materialization- You must add the following to the top level of your project yaml to take advantage of our optimized incremental materialization
# dbt_project.yml
...
dispatch:
- macro_namespace: dbt
search_order: ['snowplow_utils', 'dbt'] 
Upgrading to 0.13.0
- Version 1.3.0 of 
dbt-corenow required