Skip to content

Commit f0bb7a4

Browse files
Merge pull request #50 from fivetran/MagicBot_ce3ce40b64
[MagicBot] Bumping package version
2 parents 6d8b987 + 1cbf88b commit f0bb7a4

27 files changed

+26
-14
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ target/
22
dbt_modules/
33
logs/
44
.DS_Store
5-
models/intermediate/int_jira__all_field_options.sql
5+
models/intermediate/int_jira__all_field_options.sql
6+
dbt_packages/

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# dbt_jira v0.7.0
2+
🎉 dbt v1.0.0 Compatibility 🎉
3+
## 🚨 Breaking Changes 🚨
4+
- 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.
5+
- For help upgrading your package, I recommend reviewing this GitHub repo's Release Notes on what changes have been implemented since your last upgrade.
6+
- 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.
7+
- Upgrades the package dependency to refer to the latest `dbt_jira_source`. Additionally, the latest `dbt_jira_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"].
8+
- 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.
9+
110
# dbt_jira v0.6.0
211
## 🚨 Breaking Changes 🚨
312
- This release of the `dbt_jira` packages implements changes to the incremental logic within various models highlighted in the Bug Fixes section below. As such, a `dbt run --full-refresh` will be required after upgrading this dependency for this package in your `packages.yml`.
@@ -11,4 +20,4 @@
1120
- @thibonacci ([#45](https://github.com/fivetran/dbt_jira/pull/45))
1221

1322
# dbt_jira v0.1.0 -> v0.5.1
14-
Refer to the relevant release notes on the Github repository for specific details for the previous releases. Thank you!
23+
Refer to the relevant release notes on the Github repository for specific details for the previous releases. Thank you!

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Apache License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![dbt logo and version](https://img.shields.io/static/v1?logo=dbt&label=dbt-version&message=0.20.x&color=orange)
1+
[![Apache License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
22
# Jira
33

44
This package models Jira data from [Fivetran's connector](https://fivetran.com/docs/applications/jira). It uses data in the format described by [this ERD](https://fivetran.com/docs/applications/jira/#schemainformation).
@@ -29,7 +29,7 @@ Check [dbt Hub](https://hub.getdbt.com/) for the latest installation instruction
2929
# packages.yml
3030
packages:
3131
- package: fivetran/jira
32-
version: [">=0.6.0", "<0.7.0"]
32+
version: [">=0.7.0", "<0.8.0"]
3333
```
3434
3535
## Configuration

dbt_project.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 'jira'
2-
version: '0.6.0'
2+
version: '0.7.0'
33
config-version: 2
4-
require-dbt-version: ">=0.20.0"
4+
require-dbt-version: [">=1.0.0", "<2.0.0"]
55

66

77
vars:
@@ -29,11 +29,10 @@ vars:
2929
jira_using_versions: true # disable if you are not using versions in Jira
3030
jira_issue_history_buffer: 1 # in months
3131

32-
3332
models:
3433
jira:
3534
+materialized: table # field history tables are configured to be incremental, except for int_jira__field_history_scd, which has to be a table
3635
+schema: jira
3736
intermediate:
38-
+materialized: ephemeral
39-
+schema: int_jira # field history models will be written here (and are not ephemeral, so they'll exist in the warehouse)
37+
+materialized: ephemeral
38+
+schema: int_jira # field history models will be written here (and are not ephemeral, so they'll exist in the warehouse)

integration_tests/requirements.txt

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
dbt~=0.20.0
2-
dbt-spark~=0.20.0
3-
dbt-spark[PyHive]~=0.20.0
1+
dbt-snowflake==1.0.0
2+
dbt-bigquery==1.0.0
3+
dbt-redshift==1.0.0
4+
dbt-postgres==1.0.0
5+
dbt-spark==1.0.0
6+
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.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

packages.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
packages:
2-
- package: fivetran/jira_source
3-
version: [">=0.3.0","<0.4.0"]
2+
- package: fivetran/jira_source
3+
version: [">=0.4.0", "<0.5.0"]

0 commit comments

Comments
 (0)