diff --git a/integrations/jira/.port/resources/blueprints.json b/integrations/jira/.port/resources/blueprints.json index 2789a8124b..444ebe757d 100644 --- a/integrations/jira/.port/resources/blueprints.json +++ b/integrations/jira/.port/resources/blueprints.json @@ -66,6 +66,13 @@ "type": "string", "description": "The priority of the issue" }, + "labels": { + "items": { + "type": "string" + }, + "title": "Labels", + "type": "array" + }, "created": { "title": "Created At", "type": "string", diff --git a/integrations/jira/.port/resources/port-app-config.yaml b/integrations/jira/.port/resources/port-app-config.yaml index 0de11bcdfe..02b2aadd06 100644 --- a/integrations/jira/.port/resources/port-app-config.yaml +++ b/integrations/jira/.port/resources/port-app-config.yaml @@ -31,6 +31,7 @@ resources: reporter: .fields.reporter.displayName creator: .fields.creator.displayName priority: .fields.priority.id + labels: .fields.labels created: .fields.created updated: .fields.updated relations: diff --git a/integrations/jira/CHANGELOG.md b/integrations/jira/CHANGELOG.md index 66dee38aa7..d100a64f3c 100644 --- a/integrations/jira/CHANGELOG.md +++ b/integrations/jira/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +0.1.36 (2024-03-25) + +### Improvements + +- Updated default blueprints and config mapping to include issue labels (port-7311) + + 0.1.35 (2024-03-20) ### Improvements diff --git a/integrations/jira/pyproject.toml b/integrations/jira/pyproject.toml index 464268bf85..24b6347baa 100644 --- a/integrations/jira/pyproject.toml +++ b/integrations/jira/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Jira" -version = "0.1.35" +version = "0.1.36" description = "Integration to bring information from Jira into Port" authors = ["Mor Paz "]