Skip to content

Commit

Permalink
Updated default mapping for Jira Issue to prevent parentIssue error spam
Browse files Browse the repository at this point in the history
  • Loading branch information
oiadebayo committed Jan 16, 2025
1 parent 8de5565 commit a1ff464
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
8 changes: 4 additions & 4 deletions integrations/jira/.port/resources/port-app-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ resources:
status: .fields.status.name
issueType: .fields.issuetype.name
components: .fields.components
creator: .fields.creator.emailAddress // ""
creator: .fields.creator.emailAddress // empty
priority: .fields.priority.name
labels: .fields.labels
created: .fields.created
updated: .fields.updated
resolutionDate: .fields.resolutiondate // ""
resolutionDate: .fields.resolutiondate // empty
relations:
project: .fields.project.key
parentIssue: .fields.parent.key // ""
parentIssue: .fields.parent.key // empty
subtasks: .fields.subtasks | map(.key)
assignee: .fields.assignee.accountId // ""
assignee: .fields.assignee.accountId // empty
reporter: .fields.reporter.accountId
9 changes: 9 additions & 0 deletions integrations/jira/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- towncrier release notes start -->

## 0.2.24 (2025-01-16)


### Bug Fixes

- Updated default mapping for Jira Issue to use `empty` instead of `""` to prevent `parentIssue` error spam


## 0.2.23 (2025-01-16)


Expand All @@ -21,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Improvements

- Added rate limit support to avoid failures due to 429 errors
- Added rate limit support to avoid failures due to 429 errors



Expand Down
2 changes: 1 addition & 1 deletion integrations/jira/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <mor@getport.io>"]

Expand Down

0 comments on commit a1ff464

Please sign in to comment.