Skip to content
This repository was archived by the owner on Jan 20, 2026. It is now read-only.

Commit 93f336a

Browse files
Merge pull request #25 from fivetran/MagicBot_925421fb83
[MagicBot] Bumping package version
2 parents 4f0489d + 568142d commit 93f336a

27 files changed

Lines changed: 26 additions & 13 deletions

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
target/
22
dbt_modules/
33
logs/
4-
.DS_Store
4+
.DS_Store
5+
dbt_packages/

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
1+
# dbt_jira_source v0.4.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_fivetran_utils`. 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+
10+
111
# dbt_jira_source v0.3.2
212
## Fixes
313
- Adjusted the `stg_jira__issue` and `stg_jira__issue_field_history` timestamp fields for `redshift` warehouses to explicitly cast the data type as `timestamp without time zone`. This ensures downstream `datediff` and `dateadd` functions to not result in an error if the timestamps are synced as `timestamp_tz`. ([#24](https://github.com/fivetran/dbt_jira_source/pull/24))
414

515
# dbt_jira_source v0.1.0 -> v0.3.1
6-
Refer to the relevant release notes on the Github repository for specific details for the previous releases. Thank you!
16+
Refer to the relevant release notes on the Github repository for specific details for the previous releases. Thank you!

README.md

Lines changed: 2 additions & 2 deletions
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 (Source)
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).
@@ -25,7 +25,7 @@ Add the following to your `packages.yml` file:
2525
# packages.yml
2626
packages:
2727
- package: fivetran/jira_source
28-
version: [">=0.3.0", "<0.4.0"]
28+
version: [">=0.4.0", "<0.5.0"]
2929
```
3030
3131
Check [dbt Hub](https://hub.getdbt.com/) for the latest installation instructions, or [read the dbt docs](https://docs.getdbt.com/docs/package-management) for more information on installing packages.

dbt_project.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 'jira_source'
2-
version: '0.3.2'
2+
version: '0.4.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:
@@ -33,4 +33,4 @@ models:
3333
tmp:
3434
+materialized: view
3535
+materialized: table
36-
+schema: stg_jira
36+
+schema: stg_jira

integration_tests/requirements.txt

Lines changed: 6 additions & 3 deletions
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

0 commit comments

Comments
 (0)