File tree Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change
1
+ # dbt_netsuite_source v0.2.2
2
+
3
+ ## 🚨 Breaking Changes 🚨:
4
+ [ PR #9 ] ( https://github.com/swishbi/dbt_netsuite_source/pull/9 ) includes the following breaking changes:
5
+ - Changes the default identifier for the budgets table from ` budget ` to ` budgets ` .
6
+
7
+ ## Contributors
8
+ - [ phillem15] ( https://github.com/phillem15 ) ([ #9 ] ( https://github.com/swishbi/dbt_netsuite_source/pull/9 ) )
9
+
1
10
# dbt_netsuite_source v0.2.1
2
11
3
12
## 🎉 Feature Updates 🎉
Original file line number Diff line number Diff line change @@ -76,10 +76,10 @@ Include the following netsuite_source package version in your `packages.yml` fil
76
76
` ` ` yaml
77
77
packages:
78
78
- git: "https://github.com/swishbi/dbt_netsuite_source.git"
79
- revision: 0.1.0
79
+ revision: v0.X.X # See latest version in releases
80
80
# use this format when accessing your repository via a github application token
81
81
- git: "https://{{env_var('DBT_ENV_SECRET_GIT_CREDENTIAL')}}@github.com/swishbi/dbt_netsuite_source.git" # git HTTPS URL
82
- revision: 0.1.0
82
+ revision: v0.X.X # See latest version in releases
83
83
` ` `
84
84
85
85
# # Step 3: Define database and schema variables
Original file line number Diff line number Diff line change 1
1
config-version : 2
2
2
require-dbt-version : [">=1.3.0", "<2.0.0"]
3
3
name : ' netsuite_source'
4
- version : ' 0.1.0 '
4
+ version : ' 0.2.2 '
5
5
6
6
models :
7
7
netsuite_source :
Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ sources:
185
185
- name : budget_categories
186
186
identifier : " {{ var('netsuite_budget_category_identifier', 'budgetcategory') }}"
187
187
- name : budgets
188
- identifier : " {{ var('netsuite_budget_identifier', 'budget ') }}"
188
+ identifier : " {{ var('netsuite_budget_identifier', 'budgets ') }}"
189
189
- name : budgets_machine
190
190
identifier : " {{ var('netsuite_budgets_machine_identifier', 'budgetsmachine') }}"
191
191
You can’t perform that action at this time.
0 commit comments