Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ilias1111 committed Dec 10, 2024
1 parent d276963 commit 79ef5b4
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
snowplow-media-player 0.9.2 (2024-12-10)
---------------------------------------
## Summary
This feature release introduces dynamic aggregation for passthrough fields in ad_views, allowing greater flexibility in managing session-level analytics.

## Features

**- Dynamic Aggregation for Passthrough Fields:**
Introduced the ability to apply optional aggregation logic (e.g., MAX, MIN) to passthrough fields in the media_player_media_ad_views model. This feature prevents cardinality violations while maintaining compatibility for non-aggregation fields.
**Example configuration:**
```yaml
snowplow__ad_views_passthroughs: [
"v_collector",
{"sql": "v_tracker || app_id", "alias": "tracker_app_id", "agg": "max"},
{"sql": "v_collector", "alias": "v_collector_alias", "agg": "min"}
]
```

This is an optional feature and can be implemented if required by your use case.

## Upgrading

Update the snowplow-media-player version in your packages.yml file.

snowplow-media-player 0.9.1 (2024-10-23)
---------------------------------------
## Summary
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: 'snowplow_media_player'
version: '0.9.1'
version: '0.9.2'
config-version: 2

require-dbt-version: ['>=1.4.0', '<2.0.0']
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'snowplow_media_player_integration_tests'
version: '0.9.1'
version: '0.9.2'
config-version: 2

profile: 'integration_tests'
Expand Down

0 comments on commit 79ef5b4

Please sign in to comment.