Skip to content

Migration Guides

Migrating from 0.8.3 to 0.9.0

This will only affect users using the pit() macro.

Changes

  • The stage_tables parameter has been changed to stage_table_ldts to match with the equivalent parameter in the bridge() macro.

    1
    2
    3
    4
    5
    {{ dbtvault.pit(source_model=source_model, src_pk=src_pk,
                    as_of_dates_table=as_of_dates_table,
                    satellites=satellites,
                    stage_tables=stage_tables,
                    src_ldts=src_ldts) }}
    
    1
    2
    3
    4
    5
    {{ dbtvault.pit(source_model=source_model, src_pk=src_pk,
                    as_of_dates_table=as_of_dates_table,
                    satellites=satellites,
                    stage_tables_ldts=stage_tables_ldts,
                    src_ldts=src_ldts) }}
    
Source