From 1dd5491dadc618c82dc0b4ff140c1fa70f7b8087 Mon Sep 17 00:00:00 2001 From: semantic-release-bot <semantic-release-bot@martynus.net> Date: Mon, 28 Aug 2023 16:50:55 +0000 Subject: [PATCH] chore(release): 4.0.0 [skip ci] # [4.0.0](https://gitlab.com/to-be-continuous/sonar/compare/3.3.0...4.0.0) (2023-08-28) ### Features * **oidc:** OIDC authentication support now requires explicit configuration (see doc) ([a617e8e](https://gitlab.com/to-be-continuous/sonar/commit/a617e8e48db080d489ac4824149150827d15f03f)) ### BREAKING CHANGES * **oidc:** OIDC authentication support now requires explicit configuration (see doc) --- CHANGELOG.md | 12 ++++++++++++ README.md | 6 +++--- templates/gitlab-ci-sonar-vault.yml | 2 +- templates/gitlab-ci-sonar.yml | 2 +- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec9343c..357f1ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [4.0.0](https://gitlab.com/to-be-continuous/sonar/compare/3.3.0...4.0.0) (2023-08-28) + + +### Features + +* **oidc:** OIDC authentication support now requires explicit configuration (see doc) ([a617e8e](https://gitlab.com/to-be-continuous/sonar/commit/a617e8e48db080d489ac4824149150827d15f03f)) + + +### BREAKING CHANGES + +* **oidc:** OIDC authentication support now requires explicit configuration (see doc) + # [3.3.0](https://gitlab.com/to-be-continuous/sonar/compare/3.2.0...3.3.0) (2023-06-15) diff --git a/README.md b/README.md index 94b3d1d..67d255f 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ In order to include this template in your project, add the following to your `gi ```yaml include: - project: 'to-be-continuous/sonar' - ref: '3.3.0' + ref: '4.0.0' file: '/templates/gitlab-ci-sonar.yml' ``` @@ -94,11 +94,11 @@ With: include: # main template - project: 'to-be-continuous/sonar' - ref: '3.3.0' + ref: '4.0.0' file: '/templates/gitlab-ci-sonar.yml' # Vault variant - project: 'to-be-continuous/sonar' - ref: '3.3.0' + ref: '4.0.0' file: '/templates/gitlab-ci-sonar-vault.yml' variables: diff --git a/templates/gitlab-ci-sonar-vault.yml b/templates/gitlab-ci-sonar-vault.yml index 1f605cc..cf1ddba 100644 --- a/templates/gitlab-ci-sonar-vault.yml +++ b/templates/gitlab-ci-sonar-vault.yml @@ -12,7 +12,7 @@ variables: sonar: services: - name: "$TBC_TRACKING_IMAGE" - command: ["--service", "sonar", "3.3.0" ] + command: ["--service", "sonar", "4.0.0" ] - name: "$TBC_VAULT_IMAGE" alias: "vault-secrets-provider" variables: diff --git a/templates/gitlab-ci-sonar.yml b/templates/gitlab-ci-sonar.yml index 7425c91..898fa12 100644 --- a/templates/gitlab-ci-sonar.yml +++ b/templates/gitlab-ci-sonar.yml @@ -276,7 +276,7 @@ sonar: entrypoint: [""] services: - name: "$TBC_TRACKING_IMAGE" - command: ["--service", "sonar", "3.3.0" ] + command: ["--service", "sonar", "4.0.0" ] variables: # see: https://docs.sonarqube.org/latest/analysis/gitlab-integration/#header-4 SONAR_USER_HOME: "${CI_PROJECT_DIR}/.sonar" # Defines the location of the analysis task cache -- GitLab