aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-ce
Commit message (Collapse)AuthorAgeFilesLines
* Release 6.2-RC26.2-RC2Tom2016-12-021-1/+1
|
* SONAR-8422 add visible error in sonar.log when DB is not okSébastien Lesaint2016-12-011-0/+3
|
* SONAR-8335 make changing root level change level of all loggersSébastien Lesaint2016-12-014-8/+15
|
* SONAR-8335 move LogBackHelper to subpackage loggingSébastien Lesaint2016-12-011-1/+1
|
* [maven-release-plugin] prepare for next development iterationDavid Rautureau2016-11-211-1/+1
|
* [maven-release-plugin] prepare release 6.2-RC16.2-RC1David Rautureau2016-11-211-1/+1
|
* SONAR-8151 remove property category Organizations from UI for 6.2Sébastien Lesaint2016-11-171-1/+1
|
* SONAR-8336 add properties to control SQL logs level in CE and WebSébastien Lesaint2016-11-162-1/+3
|
* SONAR-8385 Provide an option to extend the landing pageStas Vilchik2016-11-161-1/+1
|
* SONAR-8353 add WebhookDeliveryDaoSimon Brandhof2016-11-141-1/+1
|
* SONAR-8363 Mark just created projects as favoriteTeryk Bellahsene2016-11-141-1/+0
|
* SONAR-8377 Remove issue filters daoJulien Lancelot2016-11-101-1/+1
|
* SONAR-8351 Send JSON payload over HTTP when project analysis is completeSimon Brandhof2016-11-091-1/+1
|
* SONAR-8351 share OkHttpClient utilitiesSimon Brandhof2016-11-092-1/+4
| | | | | | | | | | sonar-ws correctly configures OkHttpClient for the support of HTTPS, proxy (incl. authentication), timeouts and user agent. This code should be reused by web server and compute engine, for example when sending webhook payloads. The new class OkHttpClientProvider allows web server/CE to instantiate and configure a single instance of OkHttpClient.
* SONAR-8355 Remove measure filters DaoJulien Lancelot2016-11-091-1/+1
|
* SONAR-8354 Remove dao related to dashboardsJulien Lancelot2016-11-091-1/+1
|
* SONAR-8134 merge PermissionRepository into PermissionTemplateServiceSimon Brandhof2016-10-212-3/+1
|
* SONAR-8134 rename PermissionServiceSimon Brandhof2016-10-211-2/+2
| | | | | It's only about templates, so class is renamed PermissionTemplateService.
* SONAR-8227 Rename AuthorizationIndexer to PermissionIndexerJulien Lancelot2016-10-201-3/+3
|
* SONAR-8227 Move org.sonar.server.issue.index.IssueAuthorizationIndexer to ↵Julien Lancelot2016-10-201-2/+2
| | | | | | org.sonar.server.permission.index.AuthorizationIndexer This indexer will also be used to feed the authorization type of projectmeasures index
* SONAR-8287 Refactor project measures index and WS domainTeryk Bellahsene2016-10-181-1/+1
|
* SONAR-8134 merge PermissionMapper into AuthorizationDaoSimon Brandhof2016-10-161-1/+1
|
* SONAR-8134 add support of organizations in UserSessionSimon Brandhof2016-10-161-0/+10
|
* SONAR-8134 add dao to verify authorizationsSimon Brandhof2016-10-161-1/+1
|
* SONAR-8134 Remove check of authorization in PermissionUpdaterSimon Brandhof2016-10-162-1/+10
| | | | | | | so that Compute Engine can call it without emulating authroization stack. Authorization is verified directly in the api/permissions web services.
* SONAR-8222 Update project measures index at the end of each project analysisJulien Lancelot2016-10-122-1/+3
|
* SONAR-8155 add UserSession#isRoot and checkIsRootSébastien Lesaint2016-10-121-0/+10
|
* SONAR-8155 drop mutability in UserSession impls where possibleSébastien Lesaint2016-10-121-1/+1
|
* SONAR-8151 add property sonar.organizations.anyoneCanCreateSébastien Lesaint2016-10-121-1/+1
|
* Fix Quality flawsSimon Brandhof2016-09-301-1/+0
|
* Remove unused QProfileProjectLookupSimon Brandhof2016-09-282-3/+1
|
* Add UserPermissionDao to DbClientSimon Brandhof2016-09-281-1/+1
|
* SONAR-8100 add DefaultOrganization to Pico container in CE and WebSébastien Lesaint2016-09-282-2/+4
| | | | includes a ThreadLocal cache to avoid multiple calls to DB for same information
* SONAR-8095 add OrganizationDaoSébastien Lesaint2016-09-261-1/+1
|
* Prepare for next development iterationDavid Rautureau2016-09-191-1/+1
|
* SONAR-8079 drop cache RuleRepositoriesSimon Brandhof2016-09-142-4/+2
|
* Remove unused QProfileComparison from Compute EngineSimon Brandhof2016-09-142-4/+2
|
* Remove unused class BuiltInProfilesSimon Brandhof2016-09-142-4/+2
|
* SONAR-7851 drop ActivityDaoSimon Brandhof2016-09-122-10/+2
|
* SONAR-7851 add QProfileChangeDaoSimon Brandhof2016-09-121-1/+1
|
* SONAR-7908 allow web followers to index docs into ElasticsearchSimon Brandhof2016-09-124-135/+0
|
* SONAR-6992 make sonar.core.id persistent and always a UUIDSébastien Lesaint2016-09-122-1/+3
|
* SONAR-7676 PropertiesDao supports IS_EMPTY, TEXT_VALUE and CLOB_VALUESébastien Lesaint2016-09-093-11/+19
|
* SONAR-7676 removing dead code from Properties related classesSébastien Lesaint2016-09-092-52/+0
| | | | PropertiesDao, PropertiesMapper, Persistentsettings and their tests
* SONAR-8055 Declare emails configuration with PropertyDefinitionJulien Lancelot2016-09-061-1/+1
|
* SONAR-7678 server-side stateless settingsSimon Brandhof2016-09-062-9/+12
| | | | | | | | | | | | | | | | | | | | * Settings class becomes abstract as multiple implementations are used. Can't become an interface for binary backward-compatibility of API * tests should use MapSettings, an in-memory implementation of Settings * web server uses a thread-specific cache of settings when processing HTTP requests * web server does not have a cache of settings during startup, except for the system settings loaded from sonar.properties * Compute Engine uses a thread-specific cache of settings when processing a task. Cache is clear at end of task. * some useless methods of PersistentSettings are removed
* SONAR-7675 add InternalPropertiesImpl to Web and Ce containersSébastien Lesaint2016-09-052-1/+3
|
* remove commented out code in ComputeEngineContainerImplSébastien Lesaint2016-09-051-267/+0
|
* SONAR-7675 add InternalPropertiesDaoSébastien Lesaint2016-09-051-1/+1
|
* Rename package org.sonar.server.settings.ws to org.sonar.server.setting.wsJulien Lancelot2016-08-311-1/+1
|