Skip to content

Commit

Permalink
Merge pull request #16 from fivetran/bugfix/using-bills-variable
Browse files Browse the repository at this point in the history
bugfix/using-bills-variable
  • Loading branch information
fivetran-joemarkiewicz authored Feb 27, 2024
2 parents 4d4b76e + 4325bfc commit 05ae576
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# dbt_sage_intacct_source v0.3.1
[PR #16](https://github.com/fivetran/dbt_sage_intacct_source/pull/16) includes the following updates:

## Bug Fixes
- Included the `sage_intacct__using_bills` variable as an enablement config for the following models as it was erroneously omitted in previously releases:
- `stg_sage_intacct__ap_bill_item_tmp`
- `stg_sage_intacct__ap_bill_tmp`

# dbt_sage_intacct_source v0.3.0

[PR #14](https://github.com/fivetran/dbt_sage_intacct_source/pull/14) includes the following updates.
Expand Down
2 changes: 1 addition & 1 deletion dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'sage_intacct_source'
version: '0.3.0'
version: '0.3.1'
config-version: 2
require-dbt-version: [">=1.3.0", "<2.0.0"]
models:
Expand Down
2 changes: 1 addition & 1 deletion docs/catalog.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manifest.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/run_results.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion integration_tests/dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'sage_intacct_source_integration_tests'
version: '0.3.0'
version: '0.3.1'
config-version: 2

profile: 'integration_tests'
Expand Down
2 changes: 2 additions & 0 deletions models/tmp/stg_sage_intacct__ap_bill_item_tmp.sql
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
{{ config(enabled=var('sage_intacct__using_bills', True)) }}

select * from {{ var('ap_bill_item') }}
2 changes: 2 additions & 0 deletions models/tmp/stg_sage_intacct__ap_bill_tmp.sql
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
{{ config(enabled=var('sage_intacct__using_bills', True)) }}

select * from {{ var('ap_bill') }}

0 comments on commit 05ae576

Please sign in to comment.