diff --git a/CHANGELOG b/CHANGELOG index b1913443..d65f648b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,11 +1,16 @@ -snowplow-unified 0.2.0 (2024-0X-XX) +snowplow-unified 0.2.0 (2024-01-30) --------------------------------------- ## Summary +This release adds the ability to calculate mobile screen engagement using the screen summary context. There is also a new optional module for a conversions table. Other changes are the ability to stitch the users table during session stitching and heatset is a recognised platform now. + +## 🚨 Breaking Changes 🚨 +Existing users on Snowflake / Databricks / Redshift will need to make changes to some of their derived tables. For a full sql script on how to achieve this, check out the relevant [migration guide](https://docs.snowplow.io/docs/modeling-your-data/modeling-your-data-with-dbt/migration-guides/unified/). The other option is to do a [complete refresh](https://docs.snowplow.io/docs/modeling-your-data/modeling-your-data-with-dbt/dbt-operation/full-or-partial-refreshes/#complete-refresh-of-snowplow-package) of the package. ## Features - Add mobile screen engagement calculation using the screen summary context (#16) - Adds user stitching to the users table (enabled with `snowplow__session_stitching`) - Adds "headset" to the list of recognized platforms +- Add optional conversions module ## Fixes - Consider screen view ID from the screen view context (#14) @@ -15,9 +20,6 @@ snowplow-unified 0.2.0 (2024-0X-XX) ## Upgrading Bump the snowplow-unified version in your `packages.yml` file. -## 🚨 Breaking Changes 🚨 -Existing users on Snowflake / Databricks / Redshift will need to make changes to some of their derived tables. For a full sql script on how to achieve this, check out the relevant [migration guide](https://docs.snowplow.io/docs/modeling-your-data/modeling-your-data-with-dbt/migration-guides/unified/). The other option is to do a [complete refresh](https://docs.snowplow.io/docs/modeling-your-data/modeling-your-data-with-dbt/dbt-operation/full-or-partial-refreshes/#complete-refresh-of-snowplow-package) of the package. - snowplow-unified 0.1.2 (2023-11-23) --------------------------------------- ## Summary diff --git a/dbt_project.yml b/dbt_project.yml index d41fc968..148bbcdb 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'snowplow_unified' -version: '0.1.2' +version: '0.2.0' config-version: 2 require-dbt-version: [">=1.6.0", "<2.0.0"] diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index 88746172..584c0d61 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -1,5 +1,5 @@ name: 'snowplow_unified_integration_tests' -version: '0.1.2' +version: '0.2.0' config-version: 2 profile: 'integration_tests' diff --git a/packages.yml b/packages.yml index f7e4826e..dfaa8664 100644 --- a/packages.yml +++ b/packages.yml @@ -1,3 +1,3 @@ packages: - package: snowplow/snowplow_utils - version: [">=0.16.0", "<0.17.0"] + version: [">=0.16.1", "<0.17.0"]