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

Remove stg_quickbooks__bill_linked_txn not null test #41

Merged
merged 8 commits into from
Feb 16, 2023
Merged
Show file tree
Hide file tree
Changes from 4 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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# dbt_quickbooks_source v0.7.0
# dbt_quickbooks_source v0.7.1
## 🎉 Feature Updates 🎉
- Removed `bill_payment_id` not null test in `stg_quickbooks__bill_linked_txn` to account for bills with empty bill payment values. [#41](https://github.com/fivetran/dbt_quickbooks_source/pull/41)
fivetran-avinash marked this conversation as resolved.
Show resolved Hide resolved

# dbt_quickbooks_source v0.7.0
## 🎉 🚨 Breaking Changes and New Feature 🚨 🎉:
- Add union schema ability to run QuickBooks across a number of schemas. ([#26](https://github.com/fivetran/dbt_quickbooks_source/pull/26) and [#35](https://github.com/fivetran/dbt_quickbooks_source/pull/35))
- Huge thanks to [@ligfx](https://github.com/ligfx) for [putting in the hard work](https://github.com/fivetran/dbt_quickbooks_source/pull/26) to help integrate this feature!
Expand Down
2 changes: 1 addition & 1 deletion dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
config-version: 2
name: 'quickbooks_source'

version: '0.7.0'
version: '0.7.1'
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: 'quickbooks_source_integration_tests'
version: '0.7.0'
version: '0.7.1'

profile: 'integration_tests'
config-version: 2
Expand Down
2 changes: 0 additions & 2 deletions models/stg_quickbooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,6 @@ models:
description: Index count of records from a single bill record associated with payment ids.
- name: bill_payment_id
description: "The {{ doc('id') }} bill payment id record."
tests:
- not_null

- name: stg_quickbooks__bill_payment_line
description: "{{ doc('bill_payment_line_table') }}"
Expand Down