dbt_marketo v0.8.0
Hello again, friends! ๐ธ
PR #22 incorporates the following updates:
๐จ Breaking Changes ๐จ
Some of the more complex transformation logic has been moved from the Marketo source package to the transform package. This was done so the delineation between staging and intermediate models is in line with Fivetran's other packages. This does not affect the final tables created by the transform package, but this will affect the staging tables as outlined below.
- Model
stg_marketo__lead_base
fromdbt_marketo_source
has been rolled intostg_marketo__lead
. - Parts from model
stg_marketo__lead
fromdbt_marketo_source
have been moved to a new modelint_marketo__lead
indbt_marketo
. - Because of the above changes, model
marketo__lead_adapter
is now redundant and has been removed.
Features
- ๐ Databricks and Postgres compatibility ๐
- The starting date of the date range for the leads data can now be adjusted (see README for instructions).
- Ability to disable
activity_delete_lead
model if necessary (see README for instructions).
Under the Hood
- Updates structure of config default variables for enabling
campaigns
andprogram
models to avoid conflicting with a user's settings. - Updates the incremental strategy used by Postgres and Redshift adapters to
delete+insert
.