From c1f55479a9ffe9c3e761f0968a1a693693a4bf58 Mon Sep 17 00:00:00 2001 From: semantic-release-bot <semantic-release-bot@martynus.net> Date: Fri, 5 Aug 2022 08:41:54 +0000 Subject: [PATCH] chore(release): 3.0.0 [skip ci] # [3.0.0](https://gitlab.com/to-be-continuous/sonar/compare/2.1.0...3.0.0) (2022-08-05) ### Features * adaptive pipeline rules ([8ac4615](https://gitlab.com/to-be-continuous/sonar/commit/8ac4615400e6e1992a179576d20ee9f220aa117b)) * switch to Merge Request pipelines as default ([48fdc64](https://gitlab.com/to-be-continuous/sonar/commit/48fdc6442ec9a5bf4a09be849f3edbefcd7a6524)) ### BREAKING CHANGES * change default workflow from Branch pipeline to MR pipeline * removed SONAR_AUTO_ON_DEV_DISABLED --- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- templates/gitlab-ci-sonar.yml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b63513..70a87a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# [3.0.0](https://gitlab.com/to-be-continuous/sonar/compare/2.1.0...3.0.0) (2022-08-05) + + +### Features + +* adaptive pipeline rules ([8ac4615](https://gitlab.com/to-be-continuous/sonar/commit/8ac4615400e6e1992a179576d20ee9f220aa117b)) +* switch to Merge Request pipelines as default ([48fdc64](https://gitlab.com/to-be-continuous/sonar/commit/48fdc6442ec9a5bf4a09be849f3edbefcd7a6524)) + + +### BREAKING CHANGES + +* change default workflow from Branch pipeline to MR pipeline +* removed SONAR_AUTO_ON_DEV_DISABLED + # [2.1.0](https://gitlab.com/to-be-continuous/sonar/compare/2.0.1...2.1.0) (2022-05-01) diff --git a/README.md b/README.md index 4078bac..a2d4694 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: '2.1.0' + ref: '3.0.0' file: '/templates/gitlab-ci-sonar.yml' ``` diff --git a/templates/gitlab-ci-sonar.yml b/templates/gitlab-ci-sonar.yml index bac2086..6b76602 100644 --- a/templates/gitlab-ci-sonar.yml +++ b/templates/gitlab-ci-sonar.yml @@ -302,7 +302,7 @@ sonar: entrypoint: [""] services: - name: "$TBC_TRACKING_IMAGE" - command: ["--service", "sonar", "2.1.0" ] + command: ["--service", "sonar", "3.0.0" ] variables: # Tells git to fetch all the branches of the project, required by the analysis task # see: https://docs.sonarqube.org/8.5/analysis/gitlab-cicd/#header-2 -- GitLab