Skip to content

Commit

Permalink
Merge pull request #25 from fivetran/feature/update-readme
Browse files Browse the repository at this point in the history
feature/update-readme
  • Loading branch information
fivetran-catfritz authored Jan 25, 2023
2 parents 7eac08f + 275b097 commit 2fc2e75
Show file tree
Hide file tree
Showing 8 changed files with 119 additions and 98 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# dbt_iterable v0.6.0

## 🚨 Breaking Changes 🚨
- Added `iterable_[source_table_name]_identifier` variables to the source package to allow easier flexibility of the package to refer to source tables with different names.
- **Note!** For the table `campaign_suppression_list_history`, the identifier variable has been updated from `iterable__campaign_suppression_list_history_table` to `iterable_campaign_suppression_list_history_identifier` to align with the current naming convention. If you are using the former variable in your `dbt_project.yml`, you will need to update it for the package to run. ([#25](https://github.com/fivetran/dbt_iterable/pull/25))

## 🎉 Features
- Updated README with identifier instructions and format update. ([#25](https://github.com/fivetran/dbt_iterable/pull/25))

# dbt_iterable v0.5.0

## 🚨 Breaking Changes 🚨:
Expand Down
166 changes: 89 additions & 77 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'iterable'
version: '0.5.0'
version: '0.6.0'
config-version: 2
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.

32 changes: 16 additions & 16 deletions integration_tests/dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
config-version: 2
name: 'iterable_integration_tests'
version: '0.5.0'
version: '0.6.0'
profile: 'integration_tests'
vars:
iterable_source:
campaign_history: "{{ ref('campaign_history_data') }}"
campaign_label_history: "{{ ref('campaign_label_history_data') }}"
campaign_list_history: "{{ ref('campaign_list_history_data') }}"
campaign_metrics: "{{ ref('campaign_metrics_data') }}"
campaign_suppression_list_history: "{{ ref('campaign_suppression_list_history_data') }}"
channel: "{{ ref('channel_data') }}"
event: "{{ ref('event_data') }}"
event_extension: "{{ ref('event_extension_data') }}"
list: "{{ ref('list_data') }}"
message_type: "{{ ref('message_type_data') }}"
template_history: "{{ ref('template_history_data') }}"
user_history: "{{ ref('user_history_data') }}"
user_device_history: "{{ ref('user_device_history_data') }}"
user_unsubscribed_channel_history: "{{ ref('user_unsubscribed_channel_history_data') }}"
user_unsubscribed_message_type_history: "{{ ref('user_unsubscribed_message_type_history_data') }}"
iterable_schema: iterable_integration_tests
iterable_campaign_history_identifier: "campaign_history_data"
iterable_campaign_label_history_identifier: "campaign_label_history_data"
iterable_campaign_list_history_identifier: "campaign_list_history_data"
iterable_campaign_suppression_list_history_identifier: "campaign_suppression_list_history_data"
iterable_channel_identifier: "channel_data"
iterable_event_identifier: "event_data"
iterable_event_extension_identifier: "event_extension_data"
iterable_list_identifier: "list_data"
iterable_message_type_identifier: "message_type_data"
iterable_template_history_identifier: "template_history_data"
iterable_user_history_identifier: "user_history_data"
iterable_user_device_history_identifier: "user_device_history_data"
iterable_user_unsubscribed_channel_history_identifier: "user_unsubscribed_channel_history_data"
iterable_user_unsubscribed_message_type_history_identifier: "user_unsubscribed_message_type_history_data"
seeds:
iterable_integration_tests:
+quote_columns: "{{ true if target.type == 'redshift' else false }}"
Expand Down
2 changes: 1 addition & 1 deletion packages.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
packages:
- package: fivetran/iterable_source
version: [">=0.5.0", "<0.6.0"]
version: [">=0.6.0", "<0.7.0"]

0 comments on commit 2fc2e75

Please sign in to comment.