Skip to content

Commit

Permalink
[Integration][SonarQube] Add component object to analysis (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
PeyGis authored Feb 17, 2024
1 parent e6fb139 commit 6d534ec
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions integrations/sonarqube/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 -->

# Port_Ocean 0.1.28 (2024-02-15)

### Improvements

- Add Sonarqube component object sonarQube analysis data (PORT-6656)


# Port_Ocean 0.1.27 (2024-02-04)

### Improvements
Expand Down
2 changes: 1 addition & 1 deletion integrations/sonarqube/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ async def get_analysis_by_project(
analysis_data["__commit"] = branch_data.get(
"commit", pr_data.get("commit")
)

analysis_data["__component"] = component
analysis_data["__project"] = component_key

component_analysis_data.append(analysis_data)
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.27"
version = "0.1.28"
description = "SonarQube projects and code quality analysis integration"
authors = ["Port Team <[email protected]>"]

Expand Down

0 comments on commit 6d534ec

Please sign in to comment.