Skip to content

Commit aaf0537

Browse files
Merge pull request #57 from fivetran/quickstart/source-table-updates
Update Quickstart.yml with proper source tables
2 parents 36ab649 + fd10578 commit aaf0537

File tree

10 files changed

+230
-48
lines changed

10 files changed

+230
-48
lines changed

.quickstart/quickstart.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ dbt_versions: ">=1.3.0 <2.0.0"
55

66
table_variables:
77
xero__using_credit_note:
8-
- credit_note
8+
- _credit_note
99
xero__using_bank_transaction:
10-
- bank_transaction
10+
- _bank_transaction
1111

1212
destination_configurations:
1313
databricks:

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# dbt_xero v0.8.0
2+
[PR #54](https://github.com/fivetran/dbt_xero/pull/54) includes the following updates:
3+
4+
## Bug Fixes
5+
- Fixed the `_credit_note` and `_bank_transaction` table variable naming in `quickstart.yml` to ensure their respective models are enabled and disabled appropriately.
6+
- We've made this release a **breaking change** to highlight to all Quickstart customers that this will have an impact on their model counts if either of these tables are selected in the schema tab and present in their destination.
7+
18
# dbt_xero v0.7.0
29
[PR #54](https://github.com/fivetran/dbt_xero/pull/54) includes the following updates:
310

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright © 2025 Fivetran Inc.
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Include the following xero package version in your `packages.yml` file:
5050
```yaml
5151
packages:
5252
- package: fivetran/xero
53-
version: [">=0.7.0", "<0.8.0"] # we recommend using ranges to capture non-breaking changes automatically
53+
version: [">=0.8.0", "<0.9.0"] # we recommend using ranges to capture non-breaking changes automatically
5454
```
5555
Do NOT include the `xero_source` package in this file. The transformation package itself has a dependency on it and will install the source package as well.
5656
### Step 3: Define database and schema variables

dbt_project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 'xero'
2-
version: '0.7.0'
2+
version: '0.8.0'
33
config-version: 2
44
require-dbt-version: [">=1.3.0", "<2.0.0"]
55
vars:

docs/catalog.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/index.html

Lines changed: 214 additions & 39 deletions
Large diffs are not rendered by default.

docs/manifest.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

integration_tests/dbt_project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 'xero_integration_tests'
2-
version: '0.7.0'
2+
version: '0.8.0'
33
profile: 'integration_tests'
44
config-version: 2
55

integration_tests/packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
packages:
2-
- local: ../
2+
- local: ../

0 commit comments

Comments
 (0)