aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api/src
Commit message (Collapse)AuthorAgeFilesLines
...
* SONAR-5812 Remove the "accessors" metricSimon Brandhof2018-03-282-22/+2
|
* VSTS-142 Handle authentication to display private project in VSTS widgetsGrégoire Aubert2018-03-261-2/+4
|
* VSTS-141 Add VSTS Quality widgetGrégoire Aubert2018-03-262-5/+12
|
* Don't use assumeTrue to not break the quality gateJulien HENRY2018-03-141-8/+9
|
* MMF-1134 Make pull request a 1st class citizenTeryk Bellahsene2018-03-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SONAR-10366 Add pull request object to api/project_branches/list and api/ce/activity SONAR-10365 Analyze pull requests as 1st class citizen SONAR-10366 SONAR-10367 Create WS api/projet_pull_requests/list and delete SONAR-10383 Add Pull Request information when listing CE tasks SONAR-10365 Add key type in PROJECT_BRANCHES (#3063) SONAR-10371 Add pullRequest parameter in the Web API (#3076) * ComponentFinder searches by branch or pull request * Add pullRequest parameter to WS api/issues/* WS * Add pullRequest parameter to api/settings/* WS * Add pullRequest parameter to api/badges/* WS * Add pullRequest parameter to api/components/* WS * Add pullRequest parameter to api/sources/* WS SONAR-10368 Copy issue states from pull request after it's merged SONAR-10373 Send notifications for events on issues of a pull request SONAR-10365 Add pull_request_binary column in project_branches (#3073) SONAR-10433 Store pull request in projects table SONAR-10371 Add pullRequest field in the Web API SONAR-10365 Analyze pull requests as 1st class citizen BRANCH-45 Expose issue resolution for PR decoration BRANCH-49 Basic support of pull request analysis on pull request branch BRANCH-47 Fail when user tries to analyze a pull request and the plugin is not available SONAR-10366 update pull request decorated links to project and issues SONAR-10365 Use pull request id as key instead of branch name SONAR-10454 Update embedded Git 1.4 and SVN 1.7 SONAR-10365 rename sonar.pullrequest.id to sonar.pullrequest.key SONAR-10383 api/navigation/component returns the pull request key
* Fix tests on WindowsJulien HENRY2018-03-132-2/+3
|
* Fix some Java compiler warningsSimon Brandhof2018-03-129-21/+21
|
* Move To GradleDavid Rautureau2018-03-092-2/+2
|
* SONAR-10346 Add latest deliveries information to webhooks search ws.Guillaume Jambet2018-03-011-4/+5
|
* SONAR-10347 Add pagination to webhook deliveries search ws.Guillaume Jambet2018-03-011-0/+19
|
* SONAR-10299 Drop the project link "developer connection"Julien Lancelot2018-02-202-1/+3
|
* Merge branch 'branch-6.7'Sébastien Lesaint2018-02-091-0/+5
|\
| * SONAR-10410 Rule#getSystemTags is populated with definition tagsSébastien Lesaint2018-02-091-0/+5
| |
* | SONAR-10304 add deprecatedRuleKeys to RuleDefinition#RuleSébastien Lesaint2018-02-082-0/+188
| |
* | SONAR-10290 Add ability to provide help message for identity providersJulien Lancelot2018-02-072-8/+40
| |
* | SONAR-10321 Add scope to rule definition APIDuarte Meneses2018-02-073-16/+45
| |
* | SONAR-10321 Add scope to rule definition APIDuarte Meneses2018-02-072-0/+44
| |
* | Add Java API Plugin.Context#getBootConfiguration()Simon Brandhof2018-02-063-5/+124
| | | | | | | | | | That allows plugins to check configuration when providing the list of extensions.
* | SONAR-10300 Forbid system properties in api/settingsJulien Lancelot2018-02-012-0/+10
| |
* | SONAR-10052 fix Quality flawsSimon Brandhof2018-01-291-3/+0
| |
* | SONAR-10122 remove dead code in DefaultInputModuleSébastien Lesaint2018-01-252-20/+0
| |
* | SONAR-10288 scanner multivalue property parsing ignore empty fieldsSébastien Lesaint2018-01-251-2/+4
| |
* | Mark InputFileFilter as @SonarLintSideJulien HENRY2018-01-251-0/+2
| |
* | SLCORE-167 Introduce a parameter to control SonarLint component lifecycleJulien HENRY2018-01-231-0/+17
| |
* | Upgrade assertJ from 3.4.1 to 3.9.0Simon Brandhof2018-01-141-2/+2
| |
* | SONAR-10138 remove deprecated API AbstractSumChildrenDecoratorSimon Brandhof2018-01-142-177/+0
| |
* | SONAR-10117 SONAR-1018 Update measures after relevant issue changes and send ↵Simon Brandhof2018-01-102-2/+33
| | | | | | | | webhooks
* | Clean-up unused code of ResourceTypesSimon Brandhof2018-01-092-129/+1
| | | | | | | | | | | | This class should be dropped as no plugins provide new types anymore. That was used only by the developer cockpit plugin, which is end of life.
* | Drop deprecated class PersistenceModeSimon Brandhof2018-01-095-133/+3
| |
* | Drop deprecated class org.sonar.api.utils.SemaphoresSimon Brandhof2018-01-091-131/+0
| |
* | Add javadoc to WebService.NewParamSimon Brandhof2018-01-081-0/+14
| |
* | SONAR-10154 Stream when writing protobuf messageTeryk Bellahsene2018-01-081-1/+4
| |
* | Fix license headers for 2018Simon Brandhof2018-01-07753-755/+753
| |
* | SONAR-10223 add optional organization to PostProjectAnalysisTaskSébastien Lesaint2018-01-054-7/+118
| |
* | SONAR-10154 No streaming of web services response by defaultTeryk Bellahsene2018-01-033-28/+33
| | | | | | | | | | | | - most of the WS rely on protobuf with one encapsulating object. In effect, streaming is useless in this case - for WS relying on JsonWriter directly, if an exception was thrown when it has started writing, the WebServiceEngine error handling cannot work properly (clear response and format an error message with an appropriate HTTP response code) - a new factory method is added to JsonWriter to have a non streamable JsonWriter. The response is effectively written when the JsonWriter is closed
* | SONAR-10181 mandatory WS Params are automatically validated on retrievalGuillaume Jambet2017-12-212-5/+15
| |
* | Merge branch 'branch-6.7'Stas Vilchik2017-12-112-3/+2
|\|
| * Fix typo in JavaDocJulien HENRY2017-12-112-3/+2
| |
* | SONAR-10125 Add project relative path for all componentsJanos Gyerik2017-12-052-7/+49
| |
* | SONAR-10153 Add ScmProvider methods to get last revision and relative paths ↵Janos Gyerik2017-12-052-9/+40
| | | | | | | | from SCM root
* | SONAR-10116 Better scalability of loading of project measuresDaniel Schwarz2017-12-054-34/+9
| |
* | SONAR-10059 Increase timeout to download pluginsGuillaume Jambet2017-12-011-0/+19
| |
* | fix logback configuration in UTs to drastically reduce build verbositySébastien Lesaint2017-11-241-0/+22
| |
* | Support build of SonarQube with JDK 9Simon Brandhof2017-11-232-51/+4
| |
* | SONAR-10046 adding minimum length validation to Request apiGuillaume Jambet2017-11-093-0/+45
| |
* | SONAR-10040 add maximum value to ws APIJulien Lancelot2017-11-084-22/+105
| |
* | SONAR-10040 add length validation to Request api and api/projects/createJulien Lancelot2017-11-084-18/+94
|/
* Fix quality flawsJulien Lancelot2017-10-261-2/+2
|
* SONAR-10008 Make date facet tests independent from the machine's time zoneDaniel Schwarz2017-10-241-0/+12
|
* Fix quality flawsEric Hartmann2017-10-201-1/+1
|