Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
agnessnowplow committed Jul 29, 2024
1 parent 84fab99 commit e8348df
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
# Install latest patch version. Upgrade if cache contains old patch version.
- name: Install dependencies
run: |
pip install --upgrade pip wheel setuptools
pip install wheel setuptools
pip install -Iv dbt-${{ matrix.warehouse }}==${{ matrix.dbt_version }} --upgrade
dbt deps
if: ${{matrix.warehouse != 'spark'}}
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
snowplow-utils 0.16.8 (2024-07-29)
---------------------------------------
## Summary
This release extends support for those users who would like to use the Snowplow incremental base macros but are using specific older versions of the AMP tracker or the Pixel tracker which do not send dvce_created / dvce_sent_tstamp fields. It also fixes a bug in the apply_grands() macro when the users does not have a grants config defined.

## Features
- Add allow_null_dvce_tstamps var

## Fixes
- Add default for grant_config macro

## Upgrading
To upgrade, bump the package version in your `packages.yml` file.

snowplow-utils 0.16.7 (2024-06-10)
---------------------------------------
## Summary
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ This macro generates the sessions lifecycle manifest table that Snowplow leverag
- `user_identifiers`: An array of key:value maps of user identifiers that have at least the following properties: `schema`, `field`.
- `user_sql`: A SQL statement that will be used to create the `user_identifier`.
- `quarantined_sessions`: The name of the table containing all quarantined sessions.
- `derived_tstamp_partitioned`: Whether or not to partition on derived timestamps (BQ only).
- `derived_tstamp_partitioned`: Whether or not the events table is partitioned on derived timestamps (BQ only), used for optimization.
- `days_late_allowed`: The maximum allowed number of days between the event creation and it being sent to the collector.
- `max_session_days`: The maximum allowed session length in days.
- `app_ids`: A list of app_ids to filter the events table on for processing within the package.
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_utils'
version: '0.16.7'
version: '0.16.8'
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_utils_integration_tests'
version: '0.16.7'
version: '0.16.8'
config-version: 2

profile: 'integration_tests'
Expand Down

0 comments on commit e8348df

Please sign in to comment.