-
Notifications
You must be signed in to change notification settings - Fork 2
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
bugfix/timestamp-without-time-zone #8
Changes from 3 commits
91c00ff
80dbbfc
d04c480
5ea5578
8462803
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
|
||
env/ | ||
target/ | ||
dbt_modules/ | ||
logs/ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
# dbt_qualtrics v0.2.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Source Changelog has v.Number.Number in front of the package, transform has v.Number.Number behind it. I know the auto-releaser will usually take care of this but since it's broken, something to watch out for here if you're manually releasing. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good call, I just updated the ordering to be consistent with the source and our other packages. |
||
|
||
[PR #8](https://github.com/fivetran/dbt_qualtrics/pull/8) includes the following updates: | ||
|
||
## 🚨 Breaking Changes: Upstream Changes 🚨 | ||
- This release includes an update to the upstream dbt_qualtrics_source dependency which includes breaking changes. These breaking changes included **all** staging model timestamps to be cast using the `dbt.type_timestamp()` macro in order to ensure datatype consistency with timestamp fields. | ||
- For an overview of all breaking changes in the dbt_qualtrics_source data model, please refer to the [respective release notes](https://github.com/fivetran/dbt_qualtrics_source/releases/tag/v0.2.0). | ||
|
||
# dbt_qualtrics v0.1.1 | ||
|
||
[PR #6](https://github.com/fivetran/dbt_qualtrics/pull/6) applies the following changes: | ||
|
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
packages: | ||
- package: fivetran/qualtrics_source | ||
version: [">=0.1.0", "<0.2.0"] | ||
# - package: fivetran/qualtrics_source | ||
# version: [">=0.2.0", "<0.3.0"] | ||
- git: https://github.com/fivetran/dbt_qualtrics_source.git | ||
revision: bugfix/timestamp-without-time-zone | ||
warn-unpinned: false | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will swap before release
fivetran-joemarkiewicz marked this conversation as resolved.
Show resolved
Hide resolved
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably should add
package-lock.yml
for good measure.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The package-lock.yml is already included in the .gitignore.