Skip to content

Commit c3b89f6

Browse files
Materialize int_zendesk__commenter_reply_at ephemerally (#203)
* Stage changes * polish * Docs * add using_ticket_schedules (#195) * add using_ticket_schedules * pr template * make pre-release * Ready for normal release * polishes * Catherine feedback * packages.yml
1 parent dc0dc8b commit c3b89f6

File tree

7 files changed

+32
-7
lines changed

7 files changed

+32
-7
lines changed

.quickstart/quickstart.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ table_variables:
1010
- daylight_time
1111
- schedule
1212
- time_zone
13+
using_ticket_schedules:
14+
- ticket_schedule
1315
using_domain_names:
1416
- domain_name
1517
using_user_tags:

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# dbt_zendesk v0.24.2
2+
3+
This release includes the following updates:
4+
5+
## Schema/Data Changes
6+
7+
**2 total changes • 0 possible breaking changes**
8+
| **Data Model** | **Change type** | **Old** | **New** | **Notes** |
9+
| -------------- | --------------- | ------------ | ------------ | --------- |
10+
| [`int_zendesk__commenter_reply_at`](https://fivetran.github.io/dbt_zendesk/#!/model/model.zendesk.int_zendesk__commenter_reply_at) | Materialization | View | Ephemeral | This intermediate model is now ephemeral, meaning the view will no longer be updated in the warehouse. While the view will still exist in the warehouse, it will become outdated. We therefore recommend manually dropping the `int_zendesk__commenter_reply_at` view. ([PR #203](https://github.com/fivetran/dbt_zendesk/pull/203)) |
11+
| [`stg_zendesk__ticket_chat_event`](https://fivetran.github.io/dbt_zendesk/#!/model/model.zendesk_source.stg_zendesk__ticket_chat_event) | Filter | | | Excludes `ticket_chat_event` records where the `actor_id` is `__trigger` or `__system` (instead of the expected `######` or `agent:######` formats). This was done to avoid data-casting errors and maintain downstream joins and comment metrics. ([Source PR #72](https://github.com/fivetran/dbt_zendesk_source/pull/72)) |
12+
13+
## Under the Hood
14+
- Added a system-facing `using_ticket_schedules` variable to the `quickstart.yml` to better support Quickstart. This variable is not available for use otherwise. ([PR #195](https://github.com/fivetran/dbt_zendesk/pull/195))
15+
116
# dbt_zendesk v0.24.1
217

318
This release includes the following updates:
@@ -38,6 +53,13 @@ If you are using dbt Core < 1.9.6 and want to continue running Zendesk freshness
3853
## Under the Hood
3954
- Updates to ensure integration tests use latest version of dbt.
4055

56+
# dbt_zendesk v0.23.1-a1
57+
58+
[PR #195](https://github.com/fivetran/dbt_zendesk/pull/195) includes the following update:
59+
60+
## Under the Hood
61+
- Added a system-facing `using_ticket_schedules` variable to the `quickstart.yml` to better support Quickstart. This variable is not available for use otherwise.
62+
4163
# dbt_zendesk v0.23.0
4264
[PR #193](https://github.com/fivetran/dbt_zendesk/pull/193) includes the following updates from pre-release `v0.23.0-a1`:
4365

dbt_project.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 'zendesk'
2-
version: '0.24.1'
2+
version: '0.24.2'
33

44
config-version: 2
55
require-dbt-version: [">=1.3.0", "<2.0.0"]
@@ -24,8 +24,9 @@ models:
2424
sla_policy:
2525
+schema: zendesk_intermediate
2626
+materialized: table
27-
int_zendesk__commenter_reply_at:
28-
+materialized: ephemeral
27+
reply_time:
28+
int_zendesk__commenter_reply_at:
29+
+materialized: ephemeral
2930
ticket_history:
3031
+schema: zendesk_intermediate
3132
+materialized: ephemeral

docs/catalog.json

Lines changed: 1 addition & 1 deletion
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,7 +1,7 @@
11
config-version: 2
22

33
name: 'zendesk_integration_tests'
4-
version: '0.24.1'
4+
version: '0.24.2'
55

66
profile: 'integration_tests'
77

packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
packages:
22
- package: fivetran/zendesk_source
3-
version: [">=0.18.0", "<0.19.0"]
3+
version: [">=0.18.0", "<0.19.0"]

0 commit comments

Comments
 (0)