Skip to content

Commit

Permalink
Merge pull request #106 from fivetran/bcolbert978-patch-1
Browse files Browse the repository at this point in the history
preserve whitespace in int_zendesk__field_history
  • Loading branch information
fivetran-jamie committed Aug 22, 2023
2 parents 31d6a5f + 1430b04 commit 86e87d0
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 12 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# dbt_zendesk v0.11.1

Tiny release ahead!
## Under the Hood:
- Removes whitespace-escaping from Jinja code in `int_zendesk__field_history_scd`. In different whitepace parsing environments, this can jumble code up with SQL comments ([PR #106](https://github.com/fivetran/dbt_zendesk/pull/106)).

## Contributors:
- [@bcolbert978](https://github.com/bcolbert978) ([PR #106](https://github.com/fivetran/dbt_zendesk/pull/106))

# dbt_zendesk v0.11.0
## Feature Updates:
- Added support of the new `schedule_holiday` table in the `schedule_spine` intermediate model in order to properly capture how holidays impact ticket schedules and their respective SLAs. ([PR #98](https://github.com/fivetran/dbt_zendesk/pull/98))
Expand Down
2 changes: 1 addition & 1 deletion dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'zendesk'
version: '0.11.0'
version: '0.11.1'

config-version: 2
require-dbt-version: [">=1.3.0", "<2.0.0"]
Expand Down
2 changes: 1 addition & 1 deletion docs/catalog.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions docs/index.html

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.

2 changes: 1 addition & 1 deletion integration_tests/dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
config-version: 2

name: 'zendesk_integration_tests'
version: '0.11.0'
version: '0.11.1'

profile: 'integration_tests'

Expand Down
4 changes: 2 additions & 2 deletions models/ticket_history/int_zendesk__field_history_scd.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-- model needs to materialize as a table to avoid erroneous null values
{{ config( materialized='table') }}

{%- set ticket_columns = adapter.get_columns_in_relation(ref('int_zendesk__field_history_pivot')) -%}
{% set ticket_columns = adapter.get_columns_in_relation(ref('int_zendesk__field_history_pivot')) %}

with change_data as (

Expand Down Expand Up @@ -43,4 +43,4 @@ with change_data as (
)

select *
from fill_values
from fill_values

0 comments on commit 86e87d0

Please sign in to comment.