diff --git a/integrations/jira/.port/resources/port-app-config.yaml b/integrations/jira/.port/resources/port-app-config.yaml index ad71ff57b2..4c205f2860 100644 --- a/integrations/jira/.port/resources/port-app-config.yaml +++ b/integrations/jira/.port/resources/port-app-config.yaml @@ -63,15 +63,15 @@ resources: status: .fields.status.name issueType: .fields.issuetype.name components: .fields.components - creator: .fields.creator.emailAddress // "" + creator: .fields.creator.emailAddress priority: .fields.priority.name labels: .fields.labels created: .fields.created updated: .fields.updated - resolutionDate: .fields.resolutiondate // "" + resolutionDate: .fields.resolutiondate relations: project: .fields.project.key - parentIssue: .fields.parent.key // "" + parentIssue: .fields.parent.key subtasks: .fields.subtasks | map(.key) - assignee: .fields.assignee.accountId // "" + assignee: .fields.assignee.accountId reporter: .fields.reporter.accountId diff --git a/integrations/jira/CHANGELOG.md b/integrations/jira/CHANGELOG.md index 1a20aa1e3e..8f67bbcbcf 100644 --- a/integrations/jira/CHANGELOG.md +++ b/integrations/jira/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.2.24 (2025-01-16) + + +### Bug Fixes + +- Updated default mapping for Jira Issue to use by removing `""` to prevent `parentIssue` error spam + + ## 0.2.23 (2025-01-16) diff --git a/integrations/jira/pyproject.toml b/integrations/jira/pyproject.toml index 27a7facaaa..dfe2fe8bda 100644 --- a/integrations/jira/pyproject.toml +++ b/integrations/jira/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "jira" -version = "0.2.23" +version = "0.2.24" description = "Integration to bring information from Jira into Port" authors = ["Mor Paz "]