From 1e1c871afe93007e6146c06bee412bc57fa15039 Mon Sep 17 00:00:00 2001 From: Mor Paz Date: Mon, 25 Mar 2024 10:00:58 +0200 Subject: [PATCH] Update default blueprints and mapping (#459) # Description What - Update the default blueprints and mapping for the Jira integration, to also ingest issue labels Why - To bring more common information out of the box How - Reference the labels field from the issue response JSON ## Type of change Please leave one option from the following and delete the rest: - [ ] Bug fix (non-breaking change which fixes an issue) - [X] New feature (non-breaking change which adds functionality) - [ ] New Integration (non-breaking change which adds a new integration) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Non-breaking change (fix of existing functionality that will not change current behavior) - [ ] Documentation (added/updated documentation) ## Screenshots Include screenshots from your environment showing how the resources of the integration will look. ## API Documentation Provide links to the API documentation used for this integration. --- integrations/jira/.port/resources/blueprints.json | 7 +++++++ integrations/jira/.port/resources/port-app-config.yaml | 1 + integrations/jira/CHANGELOG.md | 7 +++++++ integrations/jira/pyproject.toml | 2 +- 4 files changed, 16 insertions(+), 1 deletion(-) 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 "]