Skip to content

Commit 9452156

Browse files
Merge pull request #51 from FrankTub/feature/enable-entity-pass-through-columns
Feature #50: Enable teams to configure additional columns for staging entities models
2 parents e343e7e + db170a2 commit 9452156

File tree

14 files changed

+44
-78
lines changed

14 files changed

+44
-78
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,6 @@ body:
8383
description: Our team will assess this issue and let you know if we will add it to a future sprint. However, if you would like to expedite the solution, we encourage you to contribute to the package via a PR. Our team will then work with you to approve and merge your contributions as soon as possible.
8484
options:
8585
- label: Yes.
86-
- label: Yes, but I will need assistance and will schedule time during our [office hours](https://calendly.com/fivetran-solutions-team/fivetran-solutions-team-office-hours) for guidance
86+
- label: Yes, but I will probably need assistance.
8787
- label: No.
8888
required: false

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ body:
3434
description: Our team will assess this feature and let you know if we will add it to a future sprint. However, if you would like to expedite the feature, we encourage you to contribute to the package via a PR. Our team will then work with you to approve and merge your contributions as soon as possible.
3535
options:
3636
- label: Yes.
37-
- label: Yes, but I will need assistance and will schedule time during your [office hours](https://calendly.com/fivetran-solutions-team/fivetran-solutions-team-office-hours) for guidance.
37+
- label: Yes, but I will probably need assistance.
3838
- label: No.
3939
required: false
4040
- type: textarea

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ logs/
55
keyfile.json
66
.DS_Store
77
develop/
8-
9-
dbt_packages/
8+
env/
9+
dbt_packages/
10+
package-lock.yml

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# dbt_netsuite_source v0.10.1
2+
[PR #51](https://github.com/fivetran/dbt_netsuite_source/pull/51) includes the following update:
3+
4+
## Feature Update
5+
- Added the `entities_pass_through_columns` variable to be leveraged within the `stg_netsuite2__entities` model. This variable will allow users to pass through fields which are not natively included to the package staging model.
6+
- Removed fields from the `get_entity_columns` macro that are not brought into the `stg_netsuite2__entities` model to ensure that the passthrough feature works properly.
7+
8+
## Contributors:
9+
- [@FrankTub](https://github.com/FrankTub) ([PR #51](https://github.com/fivetran/dbt_netsuite_source/pull/51))
10+
111
# dbt_netsuite_source v0.10.0
212
[PR #47](https://github.com/fivetran/dbt_netsuite_source/pull/47) includes the following update:
313
## 🚨 Breaking Changes 🚨

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,9 @@ vars:
148148
customers_pass_through_columns:
149149
- name: "customer_custom_field"
150150
alias: "customer_field"
151+
entities_pass_through_columns:
152+
- name: "entity_custom_field"
153+
alias: "entity_field"
151154
locations_pass_through_columns:
152155
- name: "location_custom_field"
153156
subsidiaries_pass_through_columns:
@@ -222,5 +225,4 @@ We highly encourage and welcome contributions to this package. Check out [this d
222225

223226
# 🏪 Are there any resources available?
224227
- If you have questions or want to reach out for help, please refer to the [GitHub Issue](https://github.com/fivetran/dbt_netsuite_source/issues/new/choose) section to find the right avenue of support for you.
225-
- If you would like to provide feedback to the dbt package team at Fivetran or would like to request a new dbt package, fill out our [Feedback Form](https://www.surveymonkey.com/r/DQ7K7WW).
226-
- Have questions or want to be part of the community discourse? Create a post in the [Fivetran community](https://community.fivetran.com/t5/user-group-for-dbt/gh-p/dbt-user-group) and our team along with the community can join in on the discussion!
228+
- If you would like to provide feedback to the dbt package team at Fivetran or would like to request a new dbt package, fill out our [Feedback Form](https://www.surveymonkey.com/r/DQ7K7WW).

dbt_project.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
config-version: 2
22
require-dbt-version: [">=1.3.0", "<2.0.0"]
33
name: 'netsuite_source'
4-
version: '0.10.0'
4+
version: '0.10.1'
55

66
models:
77
netsuite_source:
@@ -67,6 +67,7 @@ vars:
6767
consolidated_exchange_rates_pass_through_columns: []
6868
vendors_pass_through_columns: []
6969
items_pass_through_columns: []
70+
entities_pass_through_columns: []
7071

7172
clean-targets:
7273
- target

docs/catalog.json

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

docs/index.html

Lines changed: 5 additions & 32 deletions
Large diffs are not rendered by default.

docs/manifest.json

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

docs/run_results.json

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

0 commit comments

Comments
 (0)