Skip to content

Commit

Permalink
PR fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fivetran-avinash committed Nov 21, 2024
2 parents 9ab70d3 + c0ca2ea commit c65bad5
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 19 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# dbt_quickbooks v0.17.0
[PR #146](https://github.com/fivetran/dbt_quickbooks/pull/146) introduces the following updates:

## Feature Updates
## Breaking Changes
- We have introduced the following fields in the `quickbooks__general_ledger` to better analyze real-time transaction data:
- `created_at`: The time a transaction was first created.
- `updated_at`: The time a transaction was last updated.
- This required updates to all our double entry transaction models to bring in these specific fields for each transaction type.
- This isn't necessarily a breaking change, but as this introduces new fields to an end model, we determined it was best to bump the version up.
- This required updates to all our double entry transaction models to bring in these specific fields for each transaction type.
- This is a breaking change as this adds new fields to the existing schema for one of our end models.

# dbt_quickbooks v0.16.0
[PR #143](https://github.com/fivetran/dbt_quickbooks/pull/143) introduces the following updates:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ This dbt package is dependent on the following dbt packages. These dependencies
```yml
packages:
- package: fivetran/quickbooks_source
version: [">=0.11.0", "<0.12.0"]
version: [">=0.12.0", "<0.13.0"]
- package: fivetran/fivetran_utils
version: [">=0.4.0", "<0.5.0"]
Expand Down
6 changes: 5 additions & 1 deletion docs/catalog.json

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion docs/manifest.json

Large diffs are not rendered by default.

12 changes: 0 additions & 12 deletions integration_tests/dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,6 @@ profile: 'integration_tests'
config-version: 2
models:
+schema: "quickbooks_{{ var('directed_schema','dev') }}"
quickbooks:
+materialized: table
double_entry_transactions:
+materialized: table
transaction_lines:
+materialized: table
intermediate:
+materialized: table
quickbooks_source:
+materialized: table
tmp:
+materialized: view

vars:
quickbooks_source:
Expand Down
1 change: 0 additions & 1 deletion models/intermediate/int_quickbooks__retained_earnings.sql
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ net_income_loss as (
join expense_starter
using (period_first_day, source_relation)
),

retained_earnings_starter as (

select
Expand Down

0 comments on commit c65bad5

Please sign in to comment.