Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into add-total-issues-field
Browse files Browse the repository at this point in the history
  • Loading branch information
lordsarcastic committed Dec 24, 2024
2 parents c8b42e7 + 456614b commit f2a3c4e
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 3 deletions.
2 changes: 1 addition & 1 deletion integrations/jira/.port/resources/port-app-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ resources:
issueType: .fields.issuetype.name
components: .fields.components
creator: .fields.creator.emailAddress
priority: .fields.priority.id
priority: .fields.priority.name
labels: .fields.labels
created: .fields.created
updated: .fields.updated
Expand Down
10 changes: 9 additions & 1 deletion integrations/jira/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- towncrier release notes start -->

## 0.2.7 (2024-12-24)
## 0.2.8 (2024-12-24)


### Features

- Added a field to display total issues in a project


## 0.2.7 (2024-12-24)


### Improvements

- Changed issue priority from id to name


## 0.2.6 (2024-12-22)


Expand Down
8 changes: 8 additions & 0 deletions integrations/sonarqube/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- towncrier release notes start -->


## 0.1.123 (2024-12-24)


### Improvements

- Added __branches as project attribute in order to map project branches


## 0.1.122 (2024-12-23)


Expand Down
1 change: 1 addition & 0 deletions integrations/sonarqube/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ async def get_single_project(self, project: dict[str, Any]) -> dict[str, Any]:
project["__measures"] = await self.get_measures(project_key)

branches = await self.get_branches(project_key)
project["__branches"] = branches
main_branch = [branch for branch in branches if branch.get("isMain")]
project["__branch"] = main_branch[0]

Expand Down
2 changes: 1 addition & 1 deletion integrations/sonarqube/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sonarqube"
version = "0.1.122"
version = "0.1.123"
description = "SonarQube projects and code quality analysis integration"
authors = ["Port Team <[email protected]>"]

Expand Down

0 comments on commit f2a3c4e

Please sign in to comment.