-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from fivetran/MagicBot_7cbbf8431d
[MagicBot] Bumping package version
- Loading branch information
Showing
18 changed files
with
42 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
target/ | ||
dbt_modules/ | ||
logs/ | ||
.DS_Store | ||
.DS_Store | ||
dbt_packages/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
# dbt_asana (next release) | ||
# dbt_asana v0.5.0 | ||
🎉 dbt v1.0.0 Compatibility 🎉 | ||
## 🚨 Breaking Changes 🚨 | ||
- Adjusts the `require-dbt-version` to now be within the range [">=1.0.0", "<2.0.0"]. Additionally, the package has been updated for dbt v1.0.0 compatibility. If you are using a dbt version <1.0.0, you will need to upgrade in order to leverage the latest version of the package. | ||
- For help upgrading your package, I recommend reviewing this GitHub repo's Release Notes on what changes have been implemented since your last upgrade. | ||
- For help upgrading your dbt project to dbt v1.0.0, I recommend reviewing dbt-labs [upgrading to 1.0.0 docs](https://docs.getdbt.com/docs/guides/migration-guide/upgrading-to-1-0-0) for more details on what changes must be made. | ||
- Upgrades the package dependency to refer to the latest `dbt_asana_source`. Additionally, the latest `dbt_asana_source` package has a dependency on the latest `dbt_fivetran_utils`. Further, the latest `dbt_fivetran_utils` package also has a dependency on `dbt_utils` [">=0.8.0", "<0.9.0"]. | ||
- Please note, if you are installing a version of `dbt_utils` in your `packages.yml` that is not in the range above then you will encounter a package dependency error. | ||
|
||
# dbt_asana v0.1.0 -> v0.4.0 | ||
Refer to the relevant release notes on the Github repository for specific details for the previous releases. Thank you! | ||
Refer to the relevant release notes on the Github repository for specific details for the previous releases. Thank you! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
config-version: 2 | ||
|
||
name: 'asana' | ||
version: '0.4.0' | ||
version: '0.5.0' | ||
|
||
require-dbt-version: ">=0.20.0" | ||
require-dbt-version: [">=1.0.0", "<2.0.0"] | ||
|
||
models: | ||
asana: | ||
+schema: asana | ||
materialized: table | ||
intermediate: | ||
materialized: ephemeral | ||
asana: | ||
+schema: asana | ||
materialized: table | ||
intermediate: | ||
materialized: ephemeral | ||
|
||
vars: | ||
asana: | ||
project_task: "{{ ref('stg_asana__project_task') }}" | ||
project: "{{ ref('stg_asana__project') }}" | ||
section: "{{ ref('stg_asana__section') }}" | ||
story: "{{ ref('stg_asana__story') }}" | ||
tag: "{{ ref('stg_asana__tag') }}" | ||
task_follower: "{{ ref('stg_asana__task_follower') }}" | ||
task_section: "{{ ref('stg_asana__task_section') }}" | ||
task_tag: "{{ ref('stg_asana__task_tag') }}" | ||
task: "{{ ref('stg_asana__task') }}" | ||
team: "{{ ref('stg_asana__team') }}" | ||
user: "{{ ref('stg_asana__user') }}" | ||
asana: | ||
project_task: "{{ ref('stg_asana__project_task') }}" | ||
project: "{{ ref('stg_asana__project') }}" | ||
section: "{{ ref('stg_asana__section') }}" | ||
story: "{{ ref('stg_asana__story') }}" | ||
tag: "{{ ref('stg_asana__tag') }}" | ||
task_follower: "{{ ref('stg_asana__task_follower') }}" | ||
task_section: "{{ ref('stg_asana__task_section') }}" | ||
task_tag: "{{ ref('stg_asana__task_tag') }}" | ||
task: "{{ ref('stg_asana__task') }}" | ||
team: "{{ ref('stg_asana__team') }}" | ||
user: "{{ ref('stg_asana__user') }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
dbt~=0.20.0 | ||
dbt-snowflake==1.0.0 | ||
dbt-bigquery==1.0.0 | ||
dbt-redshift==1.0.0 | ||
dbt-postgres==1.0.0 | ||
dbt-spark==1.0.0 | ||
dbt-spark[PyHive]==1.0.0 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
packages: | ||
- package: fivetran/asana_source | ||
version: [">=0.4.0","<0.5.0"] | ||
- package: fivetran/asana_source | ||
version: [">=0.5.0", "<0.6.0"] |