Skip to content

Release Unified version 0.5.0 #1030

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ import {versions} from '@site/src/componentVersions';


<ReactMarkdown children={`
| snowplow-unified version | dbt versions | BigQuery | Databricks | Redshift | Snowflake | Postgres |
| -------------------------- | ------------------- | :------: | :--------: | :------: | :-------: | :------: |
| ${versions.dbtSnowplowUnified} | >=1.6.0 to <2.0.0 | ✅ | ✅ | ✅ | ✅ | ✅ |
| snowplow-unified version | dbt versions | BigQuery | Databricks | Redshift | Snowflake | Postgres | Spark |
| -------------------------- | ------------------- | :------: | :--------: | :------: | :-------: | :------: | :---: |
| ${versions.dbtSnowplowUnified} | >=1.6.0 to <2.0.0 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| 0.4.5 | >=1.6.0 to <2.0.0 | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |
`} remarkPlugins={[remarkGfm]} />


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,14 @@ While using any entity in our packages is possible thanks to [modeling entities]
| [YAUAA](/docs/collecting-data/collecting-from-own-applications/snowplow-tracker-protocol/ootb-data/device-and-browser/index.md#yauaa-context-for-user-agent-parsing) | web | snowplow__enable_yauaa |
| [IAB](/docs/collecting-data/collecting-from-own-applications/snowplow-tracker-protocol/ootb-data/device-and-browser/index.md#iab-context-for-spiders-and-robots) | web | snowplow__enable_iab |
| [UA](/docs/enriching-your-data/available-enrichments/ua-parser-enrichment/index.md) | web | snowplow__enable_ua |
| [Browser](/docs/collecting-data/collecting-from-own-applications/snowplow-tracker-protocol/ootb-data/device-and-browser/index.md#browser-context) | web | snowplow__enable_browser_context |
| [Browser](/docs/collecting-data/collecting-from-own-applications/snowplow-tracker-protocol/ootb-data/device-and-browser/index.md#browser-context) | web | snowplow\__enable_browser_context, snowplow\__enable_browser_context_2 (depending on schema versions tracked, when both are enabled the values are coalesced) |
| [Mobile](/docs/collecting-data/collecting-from-own-applications/snowplow-tracker-protocol/ootb-data/device-and-browser/index.md#mobile-context) | mobile | snowplow__enable_mobile_context |
| [Geolocation](/docs/collecting-data/collecting-from-own-applications/snowplow-tracker-protocol/ootb-data/geolocation/index.md#geolocation-context-entity-tracked-in-apps) | mobile | snowplow__enable_geolocation_context |
| [Application](/docs/collecting-data/collecting-from-own-applications/snowplow-tracker-protocol/ootb-data/app-information/index.md#application-context-entity-on-mobile-apps) | mobile | snowplow__enable_application_context |
| [Screen](/docs/collecting-data/collecting-from-own-applications/snowplow-tracker-protocol/ootb-data/page-and-screen-view-events/index.md#screen-view-events) | mobile | snowplow__enable_screen_context |
| [Deep Links](/docs/collecting-data/collecting-from-own-applications/snowplow-tracker-protocol/ootb-data/links-and-referrers/index.md#context-entity-attached-to-screen-view-events) | mobile | snowplow__enable_deep_link_context |
| [Screen Summary](/docs/collecting-data/collecting-from-own-applications/snowplow-tracker-protocol/ootb-data/page-activity-tracking/index.md#screen-summary-entity) | mobile | snowplow__enable_screen_summary_context |



### Optional Modules
| Module | Docs | Enabled via Variable |
| ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------- |
Expand Down
2 changes: 1 addition & 1 deletion src/componentVersions.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const versions = {
// Data Modelling
// dbt
dbtSnowplowAttribution: '0.3.0',
dbtSnowplowUnified: '0.4.5',
dbtSnowplowUnified: '0.5.0',
dbtSnowplowWeb: '1.0.1',
dbtSnowplowMobile: '1.0.0',
dbtSnowplowUtils: '0.16.8',
Expand Down
Loading