]>
source.dussan.org Git - sonarqube.git/log
Malena Ebert [Fri, 10 Jul 2020 13:26:49 +0000 (15:26 +0200)]
SONAR-12886 Enable the publication of pom files
MikeBirnstiehl [Tue, 7 Jul 2020 14:19:22 +0000 (09:19 -0500)]
DOCS update Upgrade Notes
Michal Duda [Wed, 1 Jul 2020 09:43:29 +0000 (11:43 +0200)]
SONAR-13341 improved error message
Wouter Admiraal [Tue, 16 Jun 2020 12:11:39 +0000 (14:11 +0200)]
SONAR-13324 SONAR-13354 Fix SSF-108 and SSF-111
Jacek [Fri, 26 Jun 2020 13:41:48 +0000 (15:41 +0200)]
SONAR-13461 fix SSF-112
Michal Duda [Mon, 29 Jun 2020 09:45:46 +0000 (11:45 +0200)]
SONAR-13341 fix SSF-110
Michal Duda [Thu, 18 Jun 2020 12:46:04 +0000 (14:46 +0200)]
SONAR-13328 fix SSF-106
Wouter Admiraal [Thu, 2 Jan 2020 14:20:29 +0000 (15:20 +0100)]
SONAR-12886 Update LTS handling in static documentation
Wouter Admiraal [Fri, 27 Mar 2020 12:38:20 +0000 (13:38 +0100)]
SONAR-13259 Fix branch analysis on Travis CI for public repo
Sébastien Lesaint [Wed, 25 Mar 2020 14:58:49 +0000 (15:58 +0100)]
increase analysis log level
Jacek [Mon, 23 Mar 2020 13:19:53 +0000 (14:19 +0100)]
Set version 7.9.4-SNAPSHOT
Jacek [Tue, 24 Mar 2020 07:49:27 +0000 (08:49 +0100)]
Release 7.9.3
Wouter Admiraal [Fri, 20 Mar 2020 10:21:05 +0000 (11:21 +0100)]
Migrate release procedure to GH actions
Julien Lancelot [Wed, 11 Mar 2020 12:14:13 +0000 (13:14 +0100)]
SONAR-13160 Fix display of Portfolio Admin page when project contains UTF-8 characters
Jeremy Davis [Mon, 24 Feb 2020 10:02:37 +0000 (11:02 +0100)]
SONAR-13117 Handle 403 gracefully
Julien Lancelot [Fri, 21 Feb 2020 16:47:01 +0000 (17:47 +0100)]
SONAR-13117 Fix SSF-103
Julien Lancelot [Wed, 19 Feb 2020 09:11:56 +0000 (10:11 +0100)]
SONAR-12862 Fix SSF-101
Julien Lancelot [Tue, 18 Feb 2020 13:43:37 +0000 (14:43 +0100)]
SONAR-13089 Fix permission template issue when lot of groups
tomverin [Fri, 14 Feb 2020 08:44:37 +0000 (09:44 +0100)]
Update github token
Duarte Meneses [Wed, 29 Jan 2020 16:06:07 +0000 (10:06 -0600)]
SONAR-12802 SONAR-12927 Fix moved file detection for cobol and when calculating new lines
Duarte Meneses [Wed, 29 Jan 2020 21:35:22 +0000 (15:35 -0600)]
SONAR-13019 Keys of rules created from template are not renamed when template rule key is renamed
Pierre Guillot [Mon, 9 Dec 2019 14:47:25 +0000 (15:47 +0100)]
Set version 7.9.3-SNAPSHOT
Pierre Guillot [Mon, 9 Dec 2019 13:03:50 +0000 (14:03 +0100)]
Release 7.9.2
MikeBirnstiehl [Mon, 2 Dec 2019 20:50:04 +0000 (14:50 -0600)]
SONAR-12770 Update Java requirements
Julien Lancelot [Wed, 4 Dec 2019 12:04:53 +0000 (13:04 +0100)]
SONAR-12770 Do not let people think that a Java version > 11 is officially supported
Philippe Perrin [Fri, 29 Nov 2019 16:34:38 +0000 (17:34 +0100)]
SONAR-12758 Security report page doesn't deal properly with the current branch
Julien Lancelot [Mon, 2 Dec 2019 15:45:24 +0000 (16:45 +0100)]
SONAR-12666 Fix groups sorting when high number of groups
Julien Lancelot [Thu, 28 Nov 2019 13:28:31 +0000 (14:28 +0100)]
SONAR-12736 Fix loading of QProfile using deprecated rule keys
Pierre Guillot [Fri, 8 Nov 2019 15:50:36 +0000 (16:50 +0100)]
review
Julien Lancelot [Fri, 8 Nov 2019 12:39:52 +0000 (13:39 +0100)]
SONAR-12663 Fix migration when 2 conditions on same metric
Pierre Guillot [Tue, 30 Jul 2019 11:18:56 +0000 (13:18 +0200)]
SONAR-12358 fix SSF 85
Sébastien Lesaint [Wed, 9 Oct 2019 10:47:08 +0000 (12:47 +0200)]
SONAR-12513 last used date is never set on new Quality Profiles
all QP start with no last used date in the Database, which is represented by a null value in the column,
the update method ensures no update is done if new date is older than the current one
it does so by comparing the new date with the current value, however, this test always returns false if the current value is null
this way of updating the last used date was introduced to fix SONAR-10462 (Update of last used date on Quality Profile can fail with Deadlock on Postgres)
since then, last used date of new QP (which includes any new install of SQ since 7.8, including the LTS) is never set
Sébastien Lesaint [Thu, 5 Sep 2019 12:34:52 +0000 (14:34 +0200)]
SONAR-12369 fix build from source of non snapshot version
Sébastien Lesaint [Wed, 4 Sep 2019 09:22:51 +0000 (11:22 +0200)]
SONAR-12449 fix code move issue tracking missing some random issues
an initial piece of code of code move heuristic would index issues by line in a MultiMap
issues are DefaultIssue objects which hashCode method is based solely on DefaultIssue's key field
Multimap implementation used in code move was Set based
unfortunately, at this point in time, no DefaultIssue instance have a key set yet
which implies that all of them have the same hashcode
which implies when stored in the MultiMap for the same key, only one DefaultIssue instance was stored (the first added, which is unpredictable)
this change make code move heuristic use List based Multimaps which do not use DefaultIssue's hashcode
Simon Brandhof [Wed, 18 Sep 2019 11:53:03 +0000 (13:53 +0200)]
Move CirrusCI build machines to US
Sébastien Lesaint [Mon, 16 Sep 2019 09:23:58 +0000 (11:23 +0200)]
SONAR-12398 fix too long lock name for Portfolio Refresh
which prevented the whole feature to actually work
Wouter Admiraal [Fri, 26 Jul 2019 07:53:03 +0000 (09:53 +0200)]
SONAR-12348 Update extension guide documentation
Wouter Admiraal [Thu, 15 Aug 2019 09:33:47 +0000 (11:33 +0200)]
SONAR-12368 Fix documentation in IE11
Jeremy [Wed, 14 Aug 2019 15:26:50 +0000 (17:26 +0200)]
SONAR-12334 Add primary location in snippets
MikeBirnstiehl [Wed, 17 Jul 2019 18:15:09 +0000 (20:15 +0200)]
SONAR-12294 update docs for NodeJS min requirement of 8
Pierre Guillot [Wed, 10 Jul 2019 14:31:16 +0000 (16:31 +0200)]
Set version 7.9.2-SNAPSHOT
Pierre Guillot [Wed, 10 Jul 2019 12:20:33 +0000 (14:20 +0200)]
Release 7.9.1
Christophe Levis [Tue, 9 Jul 2019 16:12:30 +0000 (18:12 +0200)]
SONAR-12260 Update upgrade notes
Julien Lancelot [Tue, 9 Jul 2019 12:40:07 +0000 (14:40 +0200)]
SONAR-12274 Fix Pylint execution in SonarPython on Windows
Simon Brandhof [Thu, 4 Jul 2019 20:46:12 +0000 (22:46 +0200)]
Fix display of DB tests in Burgr
Bypass the limitation of Burgr that ignores tasks when names
are greater than 16 characters (BURGR-338)
Sébastien Lesaint [Fri, 5 Jul 2019 09:51:50 +0000 (11:51 +0200)]
SONAR-12251 use setNull(Types.DOUBLE) instead of setNull(Types.DECIMAL)
on SQL Server only
Sébastien Lesaint [Mon, 1 Jul 2019 13:34:55 +0000 (15:34 +0200)]
SONAR-12251 use MsSQL JDBC driver build for Java 11
Sébastien Lesaint [Tue, 2 Jul 2019 11:44:49 +0000 (13:44 +0200)]
SONAR-12261 fix project QG search on MsSQL
Sébastien Lesaint [Mon, 1 Jul 2019 15:49:24 +0000 (17:49 +0200)]
SONAR-12260 fix failing DeleteFileMeasures on MsSQL
colin-mueller-sonarsource [Wed, 3 Jul 2019 15:38:27 +0000 (17:38 +0200)]
SONAR-12263 reflect new DB requirements in sonar.properties
Sébastien Lesaint [Tue, 2 Jul 2019 10:29:28 +0000 (12:29 +0200)]
SONAR-12251 change docker image for QA to not run SQ as root
G. Ann Campbell [Wed, 3 Jul 2019 14:57:00 +0000 (10:57 -0400)]
DOC add whitespace to fix formatting
Simon Brandhof [Tue, 2 Jul 2019 19:00:46 +0000 (21:00 +0200)]
Drop MySQL tests from Cirrus
Julien HENRY [Tue, 2 Jul 2019 07:59:40 +0000 (09:59 +0200)]
Update API changes documentation
Simon Brandhof [Tue, 2 Jul 2019 11:38:31 +0000 (13:38 +0200)]
Use GA release of SQLServer 2017 for tests
Simon Brandhof [Tue, 2 Jul 2019 11:38:20 +0000 (13:38 +0200)]
Drop tests on SQLServer 2019
The preview version of SQLServer 2019 has an expiration period. Let's
wait for the GA release instead of upgrading preview versions from
time to time.
G. Ann Campbell [Mon, 1 Jul 2019 16:13:08 +0000 (12:13 -0400)]
DOC drop link to 6.7 "LTS"
Julien Lancelot [Mon, 1 Jul 2019 12:56:42 +0000 (14:56 +0200)]
Set version 7.9.1-SNAPSHOT
Simon Brandhof [Mon, 1 Jul 2019 07:56:26 +0000 (09:56 +0200)]
Use Orchestrator RELEASE
Simon Brandhof [Sun, 30 Jun 2019 18:05:18 +0000 (20:05 +0200)]
Release 7.9
Christophe Levis [Sun, 30 Jun 2019 15:09:45 +0000 (17:09 +0200)]
SONAR-12251 add warning about migration with MSSQL Server
Simon Brandhof [Fri, 28 Jun 2019 15:28:00 +0000 (17:28 +0200)]
SONAR-12251 fix statement leak in DB migrations
Signed-off-by: Simon Brandhof <simon.brandhof@sonarsource.com>
Julien Lancelot [Fri, 28 Jun 2019 15:09:56 +0000 (17:09 +0200)]
SONAR-12140 Improve stability by reducing thread sleep in unit test
Julien Lancelot [Fri, 28 Jun 2019 12:57:46 +0000 (14:57 +0200)]
SONAR-12249 Update SonarSource Security categories with the latest definition
Julien Lancelot [Fri, 28 Jun 2019 13:59:00 +0000 (15:59 +0200)]
SONAR-12216 Upgrade SonarCSS to 1.1.1.1010
Evgeny Mandrikov [Fri, 28 Jun 2019 14:10:19 +0000 (16:10 +0200)]
Upgrade sonar-jacoco-plugin to 1.0.2
Sébastien Lesaint [Thu, 27 Jun 2019 09:31:14 +0000 (11:31 +0200)]
SONAR-11874 ignore inaccessible files when cleaning tmp dir
Duarte Meneses [Fri, 28 Jun 2019 13:41:09 +0000 (15:41 +0200)]
DOCS update Oracle JDBC driver recommendation
Sébastien Lesaint [Wed, 26 Jun 2019 13:57:04 +0000 (15:57 +0200)]
SONAR-12127 don't run new migrations when upgrading from 7.0
Sébastien Lesaint [Wed, 26 Jun 2019 13:56:09 +0000 (15:56 +0200)]
SONAR-12127 optimize migrations on LIVE_MEASURES and PROJECT_MEASURES
Julien Lancelot [Fri, 28 Jun 2019 07:21:02 +0000 (09:21 +0200)]
SONAR-11964 Fail at startup when detecting MySQL
Michal Duda [Wed, 26 Jun 2019 08:19:48 +0000 (10:19 +0200)]
SONAR-12023 Remove "Not OWASP" CWE mapping, and move all unmapped CWEs to "Others" (SonarSource Security)
Julien Lancelot [Fri, 28 Jun 2019 08:34:12 +0000 (10:34 +0200)]
SONAR-12216 Upgrade code analyzers to latest released versions
Wouter Admiraal [Thu, 27 Jun 2019 12:49:52 +0000 (14:49 +0200)]
SONAR-11723 Don't pass name and email values when updating a non-local user
Pierre Guillot [Thu, 27 Jun 2019 08:50:51 +0000 (10:50 +0200)]
SONAR-11723 Prevent updating attributes of non-local users
Tom [Fri, 28 Jun 2019 08:22:41 +0000 (10:22 +0200)]
Switch sonarqube build to openjdk11
Julien Lancelot [Tue, 25 Jun 2019 11:50:25 +0000 (13:50 +0200)]
SONAR-12140 Do not return "Warning" in quality gate facet when no project in warning
Julien Lancelot [Tue, 25 Jun 2019 11:50:36 +0000 (13:50 +0200)]
SONAR-12140 Compute number of projects in warning in a daemon
Duarte Meneses [Thu, 27 Jun 2019 09:57:09 +0000 (11:57 +0200)]
Fix unit test on Windows
Sébastien Lesaint [Thu, 27 Jun 2019 12:37:27 +0000 (14:37 +0200)]
SONAR-11849 increase SQ max size
new SonarCSS plugin added 970Kb
Michal Duda [Thu, 27 Jun 2019 11:57:22 +0000 (13:57 +0200)]
Merge pull request #1789 from SonarSource/fix/md/SONAR-11845-project-import-should-handle-external-issues
SONAR-11845 project import should handle external issues
MikeBirnstiehl [Thu, 27 Jun 2019 11:57:12 +0000 (13:57 +0200)]
DOCS update Security HS wording
MikeBirnstiehl [Thu, 27 Jun 2019 09:20:33 +0000 (11:20 +0200)]
DOCS update Java reqs for Server and Analysis
Duarte Meneses [Thu, 27 Jun 2019 09:18:24 +0000 (11:18 +0200)]
SONAR-12002 Fail startup of SonarQube server if JRE < 11
colin-mueller-sonarsource [Thu, 27 Jun 2019 10:51:01 +0000 (03:51 -0700)]
DOCS: Ported License Manger Docs
* Created license-manager.md
* Added support-information-file.png
* Added License Managemer to ToC
* Added License Manager to static docs index
* Update SonarQubeNavigationTree.json
* Update StaticNavigationTree.json
* Update license-manager.md
* Update license-manager.md
* Update max size of distribution
* Update license-manager.md
colin-mueller-sonarsource [Thu, 27 Jun 2019 10:50:17 +0000 (03:50 -0700)]
DOCS: Removed 5.6 / 6.0 - 6.6 references
Sébastien Lesaint [Wed, 19 Jun 2019 07:22:32 +0000 (09:22 +0200)]
SONAR-12081 fail CE processing if branch/pr on Community Edition
G. Ann Campbell [Wed, 26 Jun 2019 13:48:54 +0000 (15:48 +0200)]
DOC update versions inclusion
Wouter Admiraal [Thu, 23 May 2019 07:07:00 +0000 (09:07 +0200)]
SONAR-12137 Introduce a new comment syntax for rendering plugin data
We can now fetch plugin data from updates.sonarsource.com, and
dynamically render this information on the page.
nicolas-harraudeau-sonarsource [Thu, 27 Jun 2019 08:53:38 +0000 (10:53 +0200)]
DOC add SONARPY-339 to upgrade notes
G. Ann Campbell [Thu, 27 Jun 2019 08:08:28 +0000 (10:08 +0200)]
DOC Java 11 requirement in upgrade notes
MikeBirnstiehl [Thu, 27 Jun 2019 07:12:11 +0000 (09:12 +0200)]
DOCS update requirement to Java 11
Wouter Admiraal [Wed, 26 Jun 2019 13:28:32 +0000 (15:28 +0200)]
SONAR-12118 Disable UNKNOWN issue type for custom rules
Wouter Admiraal [Wed, 26 Jun 2019 10:12:30 +0000 (12:12 +0200)]
SONAR-11714 Make badges round
Wouter Admiraal [Wed, 26 Jun 2019 10:09:14 +0000 (12:09 +0200)]
SONAR-12070 Make large modals scrollable
colin-mueller-sonarsource [Wed, 26 Jun 2019 20:50:30 +0000 (13:50 -0700)]
Document Additional Permissions for GitHub Checks
MikeBirnstiehl [Wed, 26 Jun 2019 18:22:17 +0000 (20:22 +0200)]
DOCS add security engine custom configuration
Jeremy Davis [Wed, 26 Jun 2019 12:34:26 +0000 (14:34 +0200)]
SONAR-12236 Fix SSF-81
Jeremy Davis [Wed, 26 Jun 2019 09:36:59 +0000 (11:36 +0200)]
SONAR-12235 Adjust portfolio metric freshness font size
Pierre Guillot [Wed, 26 Jun 2019 15:42:26 +0000 (17:42 +0200)]
SONAR-12007 & SONAR-12008 tasks can be executed by any node of the cluster
SONAR-12007 & SONAR-12008 tasks can be executed by any node of the cluster