Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix/using-bills-variable #16

Merged
merged 2 commits into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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') }}
Loading