Releases: dataform-co/dataform-segment
1.5
Dataform Segment 1.4
- Start using dataform/sql
Installation
Add the following to the list of dependencies in the package.json
file in your Dataform project:
"dataform-segment": "git+https://github.com/dataform-co/dataform-segment.git#1.4"
Dataform Segment 1.3
- Upgrade dataform/core
Installation
Add the following to the list of dependencies in the package.json
file in your Dataform project:
"dataform-segment": "git+https://github.com/dataform-co/dataform-segment.git#1.3"
Dataform Segment 1.2
- Switch from
sessions.config.defaultDatabase
todataform.projectConfig.defaultDatabase
Installation
Add the following to the list of dependencies in the package.json
file in your Dataform project:
"dataform-segment": "git+https://github.com/dataform-co/dataform-segment.git#1.2"
Dataform Segment 1.1
Minor bug fixes.
Installation
Add the following to the list of dependencies in the package.json
file in your Dataform project:
"dataform-segment": "git+https://github.com/dataform-co/dataform-segment.git#1.1"
Dataform Segment 1.0
This release adds support for Screens. You can now include any / all of tracks, pages or screens in the sessions table built by this package.
- To create a web-only sessions table, use
includeTracks: true, includePages: true, includeScreens: false
- To create an app-only sessions table, use
includeTracks: true, includePages: false, includeScreens: true
- To create a cross-platform sessions table, use
includeTracks: true, includePages: true, includeScreens: true
Installation
Add the following to your package.json file in your Dataform project:
{
"dataform-segment": "git+https://github.com/dataform-co/dataform-segment.git#1.0"
}
Dataform Segment 0.10
- actually resolves issue in segment_user_map leading to duplicate events in sessions table
Installation
Add the following to your package.json file in your Dataform project:
{
"dataform-segment": "git+https://github.com/dataform-co/dataform-segment.git#0.10"
}
Dataform Segment 0.9
- resolve issue in segment_user_map leading to duplicate events in sessions table
Installation
Add the following to your package.json file in your Dataform project:
{
"dataform-segment": "git+https://github.com/dataform-co/dataform-segment.git#0.9"
}
Dataform Segment 0.8
- Include nulls when searching for first- and last-page-values.
Installation
Add the following to your package.json file in your Dataform project:
{
"dataform-segment": "git+https://github.com/dataform-co/dataform-segment.git#0.8"
}
Dataform Segment 0.7
- Resolve an issue in the segment_user_map table
- added an (advanced) option to disable declarations, useful if you'd like to use custom input tables
Installation
Add the following to your package.json file in your Dataform project:
{
"dataform-segment": "git+https://github.com/dataform-co/dataform-segment.git#0.7"
}