]> source.dussan.org Git - sonarqube.git/log
sonarqube.git
3 years agoSONAR-15029 C-Family tutorial for Bitbucket Pipelines
Jeremy Davis [Thu, 17 Jun 2021 09:36:05 +0000 (11:36 +0200)]
SONAR-15029 C-Family tutorial for Bitbucket Pipelines

3 years agoSONAR-15034 Adding C/C++/Objective C to gitlab tutorial.
Mathieu Suen [Wed, 16 Jun 2021 08:20:58 +0000 (10:20 +0200)]
SONAR-15034 Adding C/C++/Objective C to gitlab tutorial.

3 years agoSONAR-15028 C-Family config for GitHub Actions
Jeremy Davis [Wed, 16 Jun 2021 08:36:31 +0000 (10:36 +0200)]
SONAR-15028 C-Family config for GitHub Actions

3 years agoSONAR-15033 Add C/C++ tutorial for Jenkins
Mathieu Suen [Tue, 15 Jun 2021 12:48:21 +0000 (14:48 +0200)]
SONAR-15033 Add C/C++ tutorial for Jenkins

3 years agoSONAR-15033 Adding compilation info box
Mathieu Suen [Wed, 16 Jun 2021 09:01:13 +0000 (11:01 +0200)]
SONAR-15033 Adding compilation info box

3 years agoSONAR-15028 Add HOC for C Language Feature flag
Jeremy Davis [Tue, 15 Jun 2021 16:16:23 +0000 (18:16 +0200)]
SONAR-15028 Add HOC for C Language Feature flag

3 years agoSONAR-14851 Github QG status reporting - Add a note about App permissions
Jeremy Davis [Mon, 21 Jun 2021 15:59:20 +0000 (17:59 +0200)]
SONAR-14851 Github QG status reporting - Add a note about App permissions

3 years agoSONAR-14942 Improve Pull Request Decoration form if no DevOps Platforms are configured
Wouter Admiraal [Tue, 15 Jun 2021 08:52:57 +0000 (10:52 +0200)]
SONAR-14942 Improve Pull Request Decoration form if no DevOps Platforms are configured

3 years agoSONAR-14938 Fallback on the Create Project page on brand new instance
Wouter Admiraal [Thu, 17 Jun 2021 15:15:11 +0000 (17:15 +0200)]
SONAR-14938 Fallback on the Create Project page on brand new instance

3 years agoSONAR-14851 updated docs and upgrade notes to inform user about permissions needed
Lukasz Jarocki [Mon, 21 Jun 2021 15:08:24 +0000 (17:08 +0200)]
SONAR-14851 updated docs and upgrade notes to inform user about permissions needed

3 years agoSONAR-15056 It should be possible to create external issues with project location
Tobias Stadler [Sat, 25 Jul 2020 20:02:39 +0000 (22:02 +0200)]
SONAR-15056 It should be possible to create external issues with project location

3 years agoSONAR-15056 It should be possible to create external issues with project location
Tobias Stadler [Sat, 25 Jul 2020 20:02:39 +0000 (22:02 +0200)]
SONAR-15056 It should be possible to create external issues with project location

3 years agoSONAR-15035 Fix SQ quality issues related to the use of ImmutableList
Duarte Meneses [Wed, 16 Jun 2021 17:33:32 +0000 (12:33 -0500)]
SONAR-15035 Fix SQ quality issues related to the use of ImmutableList

3 years agoDOCS add note about JS custom rule API removal to upgrade notes
michaelbirnstiehl [Thu, 17 Jun 2021 15:33:01 +0000 (10:33 -0500)]
DOCS add note about JS custom rule API removal to upgrade notes

3 years agoFix gitlab QA depends on cirrus
Zipeng WU [Fri, 18 Jun 2021 08:10:00 +0000 (10:10 +0200)]
Fix gitlab QA depends on cirrus

3 years agoSONAR-14939 Mention in all tutorials that Pull Request Decoration will be automatical...
Wouter Admiraal [Fri, 18 Jun 2021 07:49:38 +0000 (09:49 +0200)]
SONAR-14939 Mention in all tutorials that Pull Request Decoration will be automatically set up

3 years agoSONAR-14930 Make Gitlab ITs work with HTTPS
Belen Pruvost [Thu, 17 Jun 2021 16:12:26 +0000 (18:12 +0200)]
SONAR-14930 Make Gitlab ITs work with HTTPS

3 years agoImprove test coverage
Duarte Meneses [Tue, 15 Jun 2021 20:53:40 +0000 (15:53 -0500)]
Improve test coverage

3 years agoSONAR-14925 Remove code deprecated before 7.0 in the Plugin API
Duarte Meneses [Wed, 9 Jun 2021 21:26:56 +0000 (16:26 -0500)]
SONAR-14925 Remove code deprecated before 7.0 in the Plugin API

3 years agoSONAR-14792 Fix issue on Oracle DB by recreating PK for 'snapshots' table
Jacek [Thu, 17 Jun 2021 10:33:39 +0000 (12:33 +0200)]
SONAR-14792 Fix issue on Oracle DB by recreating PK for 'snapshots' table

3 years agoSONAR-14792 Fix issue on Oracle DB by recreating PK for 'issues' table
Jacek [Thu, 17 Jun 2021 10:25:47 +0000 (12:25 +0200)]
SONAR-14792 Fix issue on Oracle DB by recreating PK for 'issues' table

3 years agoSONAR-14792 Fix issue on Oracle DB by recreating PK for 'events' table
Jacek [Thu, 17 Jun 2021 09:06:45 +0000 (11:06 +0200)]
SONAR-14792 Fix issue on Oracle DB by recreating PK for 'events' table

3 years agoSONAR-14792 Fix issue on Oracle DB by recreating PK for 'ce_activity'
Jacek [Thu, 17 Jun 2021 07:33:31 +0000 (09:33 +0200)]
SONAR-14792 Fix issue on Oracle DB by recreating PK for 'ce_activity'

When switching from ID to UUID for 'ce_activity' table, it has been forgotten to drop unique index on UUID, though PK has been created. In all DBs it worked well, but for Oracle already existing index has been associated with PK (worked well on upgrade path). When new schema has been introduced, that's not the case, as for Oracle when creating PK, unique index also will be created. That means we tried to create another index on top of PK index, which was causing failures.

To fix that issue previous UUID index will be dropped and PK will be recreated, so that we end with clean state.

3 years agoSONAR-14960 Fix Elasticsearch deprecation warning for JAVA_HOME
Jacek [Thu, 17 Jun 2021 11:53:05 +0000 (13:53 +0200)]
SONAR-14960 Fix Elasticsearch deprecation warning for JAVA_HOME

3 years agoUpdating contributing.md to be more transparent with the process
Lukasz Jarocki [Thu, 17 Jun 2021 09:28:18 +0000 (11:28 +0200)]
Updating contributing.md to be more transparent with the process

3 years agoMake it more explicit that we do not look for external contributions
Wouter Admiraal [Thu, 17 Jun 2021 08:03:29 +0000 (10:03 +0200)]
Make it more explicit that we do not look for external contributions

3 years agoSONAR-14933 Fix missing SVG path
Wouter Admiraal [Tue, 15 Jun 2021 09:33:26 +0000 (11:33 +0200)]
SONAR-14933 Fix missing SVG path

3 years agoSONAR-14934 Improve the manual tutorial
Wouter Admiraal [Tue, 15 Jun 2021 07:43:43 +0000 (09:43 +0200)]
SONAR-14934 Improve the manual tutorial

3 years agoSONAR-14933 Change wording
Wouter Admiraal [Tue, 15 Jun 2021 08:03:39 +0000 (10:03 +0200)]
SONAR-14933 Change wording

3 years agoSONAR-14935 Prompt users for next steps once the first analysis is finished
Wouter Admiraal [Fri, 11 Jun 2021 08:33:13 +0000 (10:33 +0200)]
SONAR-14935 Prompt users for next steps once the first analysis is finished

3 years agoSONAR-14935 add 'detectedCI' field
Jacek [Fri, 11 Jun 2021 14:01:12 +0000 (16:01 +0200)]
SONAR-14935 add 'detectedCI' field

3 years agoSONAR-14792 Add 9.0 nop migration to not enforce DB downgrade
Jacek [Wed, 16 Jun 2021 14:29:18 +0000 (16:29 +0200)]
SONAR-14792 Add 9.0 nop migration to not enforce DB downgrade

3 years agoDOCS add Java 11 requirement to upgrade notes
michaelbirnstiehl [Tue, 15 Jun 2021 18:43:48 +0000 (13:43 -0500)]
DOCS add Java 11 requirement to upgrade notes

3 years agoSONAR-14792 Code smell fixes
Jacek [Wed, 16 Jun 2021 06:27:32 +0000 (08:27 +0200)]
SONAR-14792 Code smell fixes

3 years agoSONAR-14792 Drop `newLenientVarcharBuilder` method from initial schema
Jacek [Tue, 15 Jun 2021 14:55:16 +0000 (16:55 +0200)]
SONAR-14792 Drop `newLenientVarcharBuilder` method from initial schema

3 years agoSONAR-14792 fix minimum zip version
Pierre [Tue, 15 Jun 2021 14:42:38 +0000 (16:42 +0200)]
SONAR-14792 fix minimum zip version

3 years agoSONAR-14792 Fix schema-sq.ddl - order of PKs
Jacek [Tue, 15 Jun 2021 12:58:27 +0000 (14:58 +0200)]
SONAR-14792 Fix schema-sq.ddl - order of PKs

3 years agoSONAR-14792 Fix PopulateInitialSchemaTest
Jacek [Tue, 15 Jun 2021 12:15:33 +0000 (14:15 +0200)]
SONAR-14792 Fix PopulateInitialSchemaTest

3 years agoSONAR-14792 cleanup CreateInitialSchema to be 9.0
Jacek [Mon, 14 Jun 2021 11:40:25 +0000 (13:40 +0200)]
SONAR-14792 cleanup CreateInitialSchema to be 9.0

3 years agoSONAR-14792 Drop not existing tables from init schema
Jacek [Mon, 14 Jun 2021 11:16:36 +0000 (13:16 +0200)]
SONAR-14792 Drop not existing tables from init schema

3 years agoSONAR-14792 Bump min upgrade version to current LTS
Jacek [Mon, 14 Jun 2021 10:25:54 +0000 (12:25 +0200)]
SONAR-14792 Bump min upgrade version to current LTS

3 years agoSONAR-14792 Drop migration classes prior 8.9
Jacek [Mon, 14 Jun 2021 09:36:38 +0000 (11:36 +0200)]
SONAR-14792 Drop migration classes prior 8.9

3 years agoSONAR-14792 Move MsSQL helper out specific DB migration version
Jacek [Mon, 14 Jun 2021 09:33:05 +0000 (11:33 +0200)]
SONAR-14792 Move MsSQL helper out specific DB migration version

3 years agoSONAR-14924 fixed a bug where running analysis inside submodule sometimes were not...
Lukasz Jarocki [Wed, 16 Jun 2021 10:26:19 +0000 (12:26 +0200)]
SONAR-14924 fixed a bug where running analysis inside submodule sometimes were not detecting any changes

3 years agoSONAR-15045 Update Scanner for Gradle version to 3.3 (#4247)
Julien HENRY [Wed, 16 Jun 2021 08:12:01 +0000 (10:12 +0200)]
SONAR-15045 Update Scanner for Gradle version to 3.3 (#4247)

3 years agoSONAR-15031 Reference Ktlint as a supported Kotlin External Analyzer (#4272)
MikeBirnstiehl [Wed, 16 Jun 2021 05:58:25 +0000 (00:58 -0500)]
SONAR-15031 Reference Ktlint as a supported Kotlin External Analyzer (#4272)

3 years agoSONAR-14936 Add new suggestions to the Overview page
Wouter Admiraal [Tue, 15 Jun 2021 06:34:38 +0000 (08:34 +0200)]
SONAR-14936 Add new suggestions to the Overview page

3 years agoSONAR-14933 Show all tutorials if no project binding
Wouter Admiraal [Thu, 10 Jun 2021 11:29:04 +0000 (13:29 +0200)]
SONAR-14933 Show all tutorials if no project binding

3 years agoDOCS fix proxy parameters formatting
Services Team [Mon, 14 Jun 2021 08:10:39 +0000 (10:10 +0200)]
DOCS fix proxy parameters formatting

3 years agoSONAR-14968 Enable Azure- pipeline for project bind to GitHub
Mathieu Suen [Mon, 14 Jun 2021 08:40:01 +0000 (10:40 +0200)]
SONAR-14968 Enable Azure- pipeline for project bind to GitHub

3 years agoSONAR-14899 Ingest IT monitoring data into ElasticSearch with logstash
Zipeng WU [Thu, 10 Jun 2021 12:41:12 +0000 (14:41 +0200)]
SONAR-14899 Ingest IT monitoring data into ElasticSearch with logstash

3 years agoSONAR-14851 Fix documentation page
Jeremy Davis [Mon, 14 Jun 2021 09:05:35 +0000 (11:05 +0200)]
SONAR-14851 Fix documentation page

3 years agoSONAR-14872 Always redirect users to PR decoration settings screen
Philippe Perrin [Fri, 11 Jun 2021 15:23:40 +0000 (17:23 +0200)]
SONAR-14872 Always redirect users to PR decoration settings screen

3 years agoDOCS fix conflicts in Bitbucket Cloud docs
michaelbirnstiehl [Thu, 10 Jun 2021 19:11:14 +0000 (14:11 -0500)]
DOCS fix conflicts in Bitbucket Cloud docs

3 years agoSONAR-14871 Bitbucket Server PR decoration validation improvement
Michal Duda [Wed, 9 Jun 2021 14:44:55 +0000 (16:44 +0200)]
SONAR-14871 Bitbucket Server PR decoration validation improvement

3 years agoSONAR-14871 Add handling group shared projects to GitLab PR decoration validation
Michal Duda [Wed, 9 Jun 2021 08:53:16 +0000 (10:53 +0200)]
SONAR-14871 Add handling group shared projects to GitLab PR decoration validation

3 years agoSONAR-14871 Extract global and project Gitlab validation to separate classes
Jacek [Mon, 7 Jun 2021 11:57:26 +0000 (13:57 +0200)]
SONAR-14871 Extract global and project Gitlab validation to separate classes

3 years agoSONAR-14871 GitHub project PR decoration settings validation
Michal Duda [Mon, 7 Jun 2021 10:19:21 +0000 (12:19 +0200)]
SONAR-14871 GitHub project PR decoration settings validation

3 years agoSONAR-14871 Add Azure Devops project binding validation
Jacek [Wed, 2 Jun 2021 07:29:46 +0000 (09:29 +0200)]
SONAR-14871 Add Azure Devops project binding validation

3 years agoSONAR-14871 Bitbucket Server project PR decoration settings validation
Michal Duda [Wed, 2 Jun 2021 13:19:50 +0000 (15:19 +0200)]
SONAR-14871 Bitbucket Server project PR decoration settings validation

3 years agoSONAR-14872 Display warning if PR deco cannot happen
Wouter Admiraal [Mon, 31 May 2021 14:22:08 +0000 (16:22 +0200)]
SONAR-14872 Display warning if PR deco cannot happen

3 years agoSONAR-14871 Add Gitlab project binding validation
Jacek [Tue, 1 Jun 2021 10:02:29 +0000 (12:02 +0200)]
SONAR-14871 Add Gitlab project binding validation

3 years agoSONAR-14871 Add PR decoration settings validation action
Philippe Perrin [Fri, 28 May 2021 16:22:34 +0000 (18:22 +0200)]
SONAR-14871 Add PR decoration settings validation action

3 years agoSONAR-14873 Ease comprehension of PR Decoration settings form
Wouter Admiraal [Fri, 28 May 2021 08:00:03 +0000 (10:00 +0200)]
SONAR-14873 Ease comprehension of PR Decoration settings form

3 years agoSONAR-14871 Basic project binding validation endpoint
Jacek [Thu, 27 May 2021 13:32:09 +0000 (15:32 +0200)]
SONAR-14871 Basic project binding validation endpoint
- Add 'scope' field to HTTP error messages

3 years agoSONAR-14952 DOC- Scanners require Java 11
michaelbirnstiehl [Wed, 9 Jun 2021 16:33:59 +0000 (11:33 -0500)]
SONAR-14952 DOC- Scanners require Java 11

3 years agoSONAR-14952 DOC - Scanners require Java 11
Duarte Meneses [Tue, 8 Jun 2021 21:41:45 +0000 (16:41 -0500)]
SONAR-14952 DOC - Scanners require Java 11

3 years agoSONAR-14951 Scanners require Java 11
Sébastien Lesaint [Tue, 12 May 2020 11:52:39 +0000 (13:52 +0200)]
SONAR-14951 Scanners require Java 11

3 years agofix begin parameters table, and also proxy environment variable names
Services Team [Thu, 3 Jun 2021 08:01:28 +0000 (10:01 +0200)]
fix begin parameters table, and also proxy environment variable names

3 years agoSONAR-14895 Add dot net example to Bitbucket Pipelines documentation
michaelbirnstiehl [Mon, 7 Jun 2021 18:29:13 +0000 (13:29 -0500)]
SONAR-14895 Add dot net example to Bitbucket Pipelines documentation

3 years agoSONAR-14894 Add Bitbucket Cloud to Jenkins Documentation
michaelbirnstiehl [Mon, 7 Jun 2021 18:27:46 +0000 (13:27 -0500)]
SONAR-14894 Add Bitbucket Cloud to Jenkins Documentation

3 years agoSONAR-14893 Adding Bitbucket pipline tutorial
Mathieu Suen [Fri, 4 Jun 2021 14:57:22 +0000 (16:57 +0200)]
SONAR-14893 Adding Bitbucket pipline tutorial

3 years agoSONAR-14892 Enable Jenkins tutorial to BitbucketCloud projects
Jeremy Davis [Tue, 8 Jun 2021 07:42:26 +0000 (09:42 +0200)]
SONAR-14892 Enable Jenkins tutorial to BitbucketCloud projects

3 years agoSONAR-14916 Add URL to BitbucketCloud instances
Jeremy Davis [Fri, 4 Jun 2021 15:44:23 +0000 (17:44 +0200)]
SONAR-14916 Add URL to BitbucketCloud instances

3 years agoSONAR-14886 Plugins should not modify SonarQube's home directory
Duarte Meneses [Fri, 28 May 2021 21:24:43 +0000 (16:24 -0500)]
SONAR-14886 Plugins should not modify SonarQube's home directory

3 years agoSONAR-14908 Deprecate 'RulesDefinitionXmlLoader' in the Sonar plugin API
Duarte Meneses [Mon, 7 Jun 2021 14:23:19 +0000 (09:23 -0500)]
SONAR-14908 Deprecate 'RulesDefinitionXmlLoader' in the Sonar plugin API

3 years agoSONAR-14851 Report Quality Gate status on branches in GitHub
Lukasz Jarocki [Mon, 7 Jun 2021 11:38:27 +0000 (13:38 +0200)]
SONAR-14851 Report Quality Gate status on branches in GitHub

3 years agoDOC - Generic test execution reports don't support modules
Duarte Meneses [Mon, 7 Jun 2021 20:34:48 +0000 (15:34 -0500)]
DOC - Generic test execution reports don't support modules

3 years agoFix typo when creating test DB
Duarte Meneses [Mon, 7 Jun 2021 13:41:28 +0000 (08:41 -0500)]
Fix typo when creating test DB

3 years agoSONAR-14682 - Fix Check URL Pattern Unit Test
Belen Pruvost [Mon, 7 Jun 2021 07:29:21 +0000 (09:29 +0200)]
SONAR-14682 - Fix Check URL Pattern Unit Test

3 years agoSONAR-14913 Update the Azure Pipelines logo
Wouter Admiraal [Fri, 4 Jun 2021 12:01:04 +0000 (14:01 +0200)]
SONAR-14913 Update the Azure Pipelines logo

3 years agoSONAR-14891 Fix references of search results in the javadocs.
Malena Ebert [Tue, 1 Jun 2021 13:48:59 +0000 (15:48 +0200)]
SONAR-14891 Fix references of search results in the javadocs.

3 years agoSONAR-14900 updated version of javascript analyzer
Lukasz Jarocki [Fri, 4 Jun 2021 07:58:30 +0000 (09:58 +0200)]
SONAR-14900 updated version of javascript analyzer

3 years agoSONAR-14909 updated version of cfamily analyzer
Lukasz Jarocki [Fri, 4 Jun 2021 07:55:29 +0000 (09:55 +0200)]
SONAR-14909 updated version of cfamily analyzer

3 years agoSONAR-14870 update docs
Duarte Meneses [Thu, 3 Jun 2021 15:18:32 +0000 (10:18 -0500)]
SONAR-14870 update docs

3 years agoSONAR-14870 DNS cache never expires causing PR decoration to fail
Duarte Meneses [Thu, 3 Jun 2021 13:32:51 +0000 (08:32 -0500)]
SONAR-14870 DNS cache never expires causing PR decoration to fail

3 years agoSONAR-14622 Use gender neutral wording in documentation
michaelbirnstiehl [Tue, 1 Jun 2021 20:56:54 +0000 (15:56 -0500)]
SONAR-14622 Use gender neutral wording in documentation

3 years agoSONAR-14812 - BBC Integration Tests
Belen Pruvost [Thu, 3 Jun 2021 10:42:55 +0000 (12:42 +0200)]
SONAR-14812 - BBC Integration Tests

3 years agoSONAR-14802 Fix repository display for bitbucket cloud onboarding
Mathieu Suen [Tue, 1 Jun 2021 06:54:20 +0000 (08:54 +0200)]
SONAR-14802 Fix repository display for bitbucket cloud onboarding

3 years agoSONAR-14801 Improve documentation for bitbucket onboarding
Mathieu Suen [Mon, 31 May 2021 15:26:19 +0000 (17:26 +0200)]
SONAR-14801 Improve documentation for bitbucket onboarding

3 years agoSONAR-14882 Restore support for BOM in RulesDefinitionXmlLoader
Julien HENRY [Tue, 1 Jun 2021 16:02:02 +0000 (18:02 +0200)]
SONAR-14882 Restore support for BOM in RulesDefinitionXmlLoader

3 years agoSONAR-14868 Fix the auto-populated values in the Environment Variables page
michaelbirnstiehl [Fri, 28 May 2021 18:52:36 +0000 (13:52 -0500)]
SONAR-14868 Fix the auto-populated values in the Environment Variables page

3 years agoSONAR-14867 Document migrating from the zip file to docker
michaelbirnstiehl [Fri, 28 May 2021 19:08:03 +0000 (14:08 -0500)]
SONAR-14867 Document migrating from the zip file to docker

3 years agoBUILD-890 Do not store elasticsearch distribution in the repository.
Malena Ebert [Tue, 1 Jun 2021 07:52:20 +0000 (09:52 +0200)]
BUILD-890 Do not store elasticsearch distribution in the repository.

3 years agoSONAR-14803 move create_bitbucketcloud to community edition
Pierre [Mon, 31 May 2021 08:17:25 +0000 (10:17 +0200)]
SONAR-14803 move create_bitbucketcloud to community edition

3 years agoSONAR-14885 Remove deprecated XMLRuleParser
Julien HENRY [Fri, 28 May 2021 09:34:53 +0000 (11:34 +0200)]
SONAR-14885 Remove deprecated XMLRuleParser

3 years agoSONAR-14882 Remove Staxmate and Woodstox dependencies from plugin API
Julien HENRY [Thu, 27 May 2021 13:10:28 +0000 (15:10 +0200)]
SONAR-14882 Remove Staxmate and Woodstox dependencies from plugin API

3 years agoSONAR-14870 DNS cache never expires causing PR decoration to fail
Duarte Meneses [Wed, 26 May 2021 21:12:07 +0000 (16:12 -0500)]
SONAR-14870 DNS cache never expires causing PR decoration to fail

3 years agoSONAR-14823 Document use of Actions for GitHub Actions
michaelbirnstiehl [Fri, 14 May 2021 13:42:45 +0000 (08:42 -0500)]
SONAR-14823 Document use of Actions for GitHub Actions

3 years agoSONAR-14818 Document use of Pipes for Bitbucket Pipes
michaelbirnstiehl [Fri, 14 May 2021 13:41:53 +0000 (08:41 -0500)]
SONAR-14818 Document use of Pipes for Bitbucket Pipes