diff --git a/CHANGELOG.md b/CHANGELOG.md index d40bf60..c60ebb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# dbt_sage_intacct_source v0.1.2 + +## Updates +- Removed the `_fivetran_deleted` filter in the `stg_sage_intacct__gl_account`. We saw there were records in the `gl_detail` table that were associated with accounts that were deleted, which affected our joins and bubbled up later in the final P&L and balance sheet models. By removing the filter the balances tie out. However, we've kept `_fivetran_deleted` as a column so the user may filter that out on their own. +([#8](https://github.com/fivetran/dbt_sage_intacct_source/pull/8)) + # dbt_sage_intacct_source v0.1.1 ## Updates diff --git a/dbt_project.yml b/dbt_project.yml index d5d786d..83add18 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'sage_intacct_source' -version: '0.1.1' +version: '0.1.2' config-version: 2 require-dbt-version: [">=1.0.0", "<2.0.0"] diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index c5b58a7..caa69a2 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -1,6 +1,6 @@ name: 'sage_intacct_source_integration_tests' -version: '0.1.1' +version: '0.1.2' config-version: 2 profile: 'integration_tests' diff --git a/models/stg_sage_intacct__gl_account.sql b/models/stg_sage_intacct__gl_account.sql index 4fe7b74..3c778a8 100644 --- a/models/stg_sage_intacct__gl_account.sql +++ b/models/stg_sage_intacct__gl_account.sql @@ -59,5 +59,5 @@ final as ( from fields ) -select * from final -where not coalesce(_fivetran_deleted, false) \ No newline at end of file +select * +from final \ No newline at end of file