From f668e811adb3885a98ca8464b04185a3a333bef2 Mon Sep 17 00:00:00 2001 From: Ryan Hill Date: Wed, 28 Feb 2024 10:44:03 +0000 Subject: [PATCH] Prepare for release --- CHANGELOG | 9 ++++++--- dbt_project.yml | 2 +- integration_tests/dbt_project.yml | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 1dbd6fe..f64d8b3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,17 +1,20 @@ -snowplow-ecommerce 0.7.2 (2024-03-04) +snowplow-ecommerce 0.8.0 (2024-02-28) --------------------------------------- ## Summary -XXX +This release makes a few core changes to the sessions table. It stops non-ecommerce sessions being added to the derived table, and provides sensible defaults for numeric and boolean columns. ## 🚨 Breaking Changes 🚨 - The sessions table now has sensible defaults (0 or false) for most numeric or boolean fields, even when that session did not have e.g. any cart events. Previously these were null. ## Fixes - Fix issue where non-ecommerce sessions were showing in the sessions table. Note a full refresh is required to remove old sessions of this type. +- Fix an incorrect variable name in our package defaults +## Under the hood +- Simplified integration tests ## Upgrading -To upgrade simply bump the snowplow-ecommerce version in your `packages.yml` file. +To upgrade simply bump the snowplow-ecommerce version in your `packages.yml` file. If you want to remove old sessions that shouldn't have been included, or populate nulls in the sessions table column, please do a [full 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). snowplow-ecommerce 0.7.1 (2024-01-26) --------------------------------------- diff --git a/dbt_project.yml b/dbt_project.yml index 81bef8d..1b6075c 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,6 +1,6 @@ name: 'snowplow_ecommerce' -version: '0.7.1' +version: '0.8.0' config-version: 2 require-dbt-version: [">=1.5.0", "<2.0.0"] diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index ac8be05..70fdaa6 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -1,5 +1,5 @@ name: 'snowplow_ecommerce_integration_tests' -version: '0.7.1' +version: '0.8.0' config-version: 2 profile: 'integration_tests'