Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,16 @@

## [Unreleased]

## [2025.5.0](https://github.com/ICTU/sonar/releases/tag/2025.5.0) - 2025-10-09

### Added

- Option in Helm chart to disable deployment of Bitnami PostgreSQL (#122).

### Changed

- Update to [SonarQube version 2025.5](https://www.sonarsource.com/products/sonarqube/whats-new/2025-5/) (#124).

## [2025.4.2](https://github.com/ICTU/sonar/releases/tag/2025.4.2) - 2025-09-05

### Added
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG IMAGE_NAME=sonarqube
ARG IMAGE_VERSION=2025.4.2
ARG IMAGE_VERSION=2025.5.0
ARG IMAGE_EDITION=developer

FROM $IMAGE_NAME:$IMAGE_VERSION-$IMAGE_EDITION
Expand Down
6 changes: 3 additions & 3 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
apiVersion: v2
name: ictu-sonarqube
version: 2025.4.2
appVersion: "2025.4.2"
version: 2025.5.0
appVersion: "2025.5.0"
description: A SonarQube helm chart with plugins, profiles and config used at ICTU
type: application
home: https://github.com/ICTU/sonar
Expand All @@ -12,5 +12,5 @@ dependencies:
repository: oci://registry-1.docker.io/bitnamicharts # https://github.com/bitnami/charts/blob/main/bitnami/postgresql/Chart.yaml
condition: postgresql.enabled
- name: sonarqube
version: 2025.4.2
version: 2025.5.0
repository: https://SonarSource.github.io/helm-chart-sonarqube # https://github.com/SonarSource/helm-chart-sonarqube/blob/master/charts/sonarqube/Chart.yaml
2 changes: 1 addition & 1 deletion helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ sonarqube:
# https://github.com/SonarSource/helm-chart-sonarqube/blob/master/charts/sonarqube/values.yaml
image:
repository: ictu/sonar
tag: 2025.4.2-developer
tag: 2025.5.0-developer
pullPolicy: IfNotPresent
jdbcOverwrite:
enabled: true
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sonar.organization=ictu
sonar.projectKey=ICTU_sonar
sonar.projectName=sonar
sonar.projectVersion=2025.4.2
sonar.projectVersion=2025.5.0

sonar.sources=docker,helm,src
sonar.tests=tests
Expand Down
16 changes: 8 additions & 8 deletions src/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,31 +9,31 @@
"profiles": {
"ansible": {
"plugin_name": "iac-plugin",
"version": "ansible-profile-v1.48.0"
"version": "ansible-profile-v1.50.0"
},
"cs": {
"plugin_name": "csharp-plugin",
"version": "cs-profile-v10.15.0"
},
"css": {
"plugin_name": "javascript-plugin",
"version": "css-profile-v10.25.0"
"version": "css-profile-v11.4.0"
},
"dart": {
"plugin_name": "dart-plugin",
"version": "dart-profile-v1.3.0"
},
"docker": {
"plugin_name": "iac-plugin",
"version": "docker-profile-v1.48.0"
"version": "docker-profile-v1.50.0"
},
"java": {
"plugin_name": "java-plugin",
"version": "java-profile-v8.18.0"
},
"js": {
"plugin_name": "javascript-plugin",
"version": "js-profile-v10.25.0"
"version": "js-profile-v11.4.0"
},
"kotlin": {
"plugin_name": "kotlin-plugin",
Expand All @@ -45,19 +45,19 @@
},
"py": {
"plugin_name": "python-plugin",
"version": "py-profile-v5.7.0"
"version": "py-profile-v5.10.0"
},
"rust": {
"plugin_name": "rust-plugin",
"version": "rust-profile-v1.0.3"
"version": "rust-profile-v1.1.0"
},
"swift": {
"plugin_name": "swift-plugin",
"version": "swift-profile-v4.14.0"
},
"ts": {
"plugin_name": "javascript-plugin",
"version": "ts-profile-v10.25.0"
"version": "ts-profile-v11.4.0"
},
"vbnet": {
"plugin_name": "vbnet-plugin",
Expand All @@ -78,7 +78,7 @@
"version": "yaml-profile-v1.9.1"
}
},
"rules_version": 20250902,
"rules_version": 20251009,
"rules": {
"ansible": [
"+ansible:S1135 # Track uses of TODO tags; https://quality-time.readthedocs.io/en/latest/reference.html#todo-and-fixme-comments-from-sonarqube",
Expand Down