Skip to content

Commit

Permalink
Update default blueprints and mapping (#459)
Browse files Browse the repository at this point in the history
# 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.
  • Loading branch information
MPTG94 authored Mar 25, 2024
1 parent fa275ba commit 1e1c871
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
7 changes: 7 additions & 0 deletions integrations/jira/.port/resources/blueprints.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 1 addition & 0 deletions integrations/jira/.port/resources/port-app-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
7 changes: 7 additions & 0 deletions integrations/jira/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- towncrier release notes start -->

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
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.1.35"
version = "0.1.36"
description = "Integration to bring information from Jira into Port"
authors = ["Mor Paz <[email protected]>"]

Expand Down

0 comments on commit 1e1c871

Please sign in to comment.