Skip to content

Releases: dbt-labs/snowplow

0.15.1

30 Jan 18:16
b1efa7b
Compare
Choose a tag to compare

⛔🏚️ As of January 2023, this package is obsolete and no longer developed. We strongly recommend that you instead use the snowplow/snowplow_web package, maintained by the team at Snowplow.

Other than an updated readme reflecting the above deprecation, this release contains no changes.

Full Changelog: 0.15.0...0.15.1

0.15.0

02 Dec 06:30
9c86b20
Compare
Choose a tag to compare

What's Changed

  • Upversion dbt-utils dependency accounting for features moved to core by @epapineau in #111
  • Raise minimum dbt Core version to v1.3

New Contributors

Full Changelog: 0.14.0...0.15.0

0.14.0

07 Dec 21:46
99601e3
Compare
Choose a tag to compare

This release supports any version (minor and patch) of v1, which means far less need for compatibility releases in the future.

0.13.3

03 Dec 23:46
3a48d23
Compare
Choose a tag to compare

🚨 This is a compatibility release in preparation for dbt-core v1.0.0 (🎉). Projects using this version with dbt-core v1.0.x can expect to see a deprecation warning. This will be resolved in the next minor release.

dbt: snowplow 0.13.2

17 Nov 10:03
b63a562
Compare
Choose a tag to compare

This is a bugfix release:

  • Remove a duplicated test. This raises an error in dbt Core v1.0.0. By removing the duplication, the package is forward compatible with v1. (#108)
  • Use dbt_utils.unique_combination_of_columns instead of unique test with manually concatenated columns. This fixes a known issue on BigQuery; it's also better overall (#108)

dbt: snowplow 0.13.1

23 Aug 12:01
7604394
Compare
Choose a tag to compare

This is a bugfix release:

  • Fix ordering of arguments to dbt_utils.datediff in snowplow_web_timing_context model (#106, thanks @vlambertgrove!)

dbt: snowplow 0.13.0

07 Jul 01:17
606c37d
Compare
Choose a tag to compare

🚨 Breaking changes

  • This package now requires dbt v0.20.0 and dbt-utils v0.7.0. dbt v0.20.0rc2 is currently available as a release candidate. If you are not ready to upgrade, consider using a previous version of this package.
  • This package depends on dbt-labs/dbt_utils. If the latest version of another installed package depends on fishtown-analytics/dbt_utils, you'll need to wait to upgrade. See discourse for details.

Under the hood

  • Reorganize integration tests (#99)
  • Use new adapter.dispatch syntax (#104)

dbt: snowplow 0.12.0

14 Sep 14:34
3795d06
Compare
Choose a tag to compare

🚨 Breaking change — this package now requires dbt v0.18.0

Quality of life:

  • Use 0.18.0 functionality, in particular the adapter.dispatch macro (#97)
  • Better potential compatibility with community-contributed plugins

dbt: snowplow 0.11.0

31 Jul 18:33
30c28d7
Compare
Choose a tag to compare

🚨 There is a breaking change in this release — the lower bound of dbt-utils is now 0.4.0.

This won't affect most users, since dbt-utils was likely upgraded to achieve 0.17.0 compatibility.

Quality of life:

  • Change dbt-utils dependencies to [>=0.4.0, <0.6.0] (#96)
  • Updates to integration tests (#96, #93)

dbt: snowplow 0.10.0

12 Jun 20:21
ac423b6
Compare
Choose a tag to compare

This release incorporates changes to dbt_project.yml in dbt v0.17.0.

Breaking changes

  • Requires dbt>=0.17.0

Features

  • Optional web timing context model run on all default adapters
  • Optional models (web timing, user agent) dynamically enable or disable based on the values of their associated vars. Previously, these models had to be enabled in a dbt_project.yml config.

Quality of life

  • Updated README to ensure example dbt_project.yml code adheres to config-version: 2
  • Updated bug, feature, PR templates