aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-ce
Commit message (Collapse)AuthorAgeFilesLines
* Release 6.3.26.3.2Julien Lancelot2017-04-241-1/+1
|
* Reset version to 6.3-SNAPSHOTSimon Brandhof2017-04-111-1/+1
|
* Release 6.3.1Simon Brandhof2017-04-111-1/+1
|
* Set development version 6.3-SNAPSHOTSimon Brandhof2017-03-141-1/+1
|
* Release 6.36.3Simon Brandhof2017-03-141-1/+1
|
* Back to development version 6.3-SNAPSHOTSimon Brandhof2017-03-061-1/+1
|
* Publish 6.3-RC4Simon Brandhof2017-03-031-1/+1
|
* Set version 6.3-SNAPSHOTSimon Brandhof2017-02-221-1/+1
|
* Publish version 6.3-RC3Simon Brandhof2017-02-221-1/+1
|
* SONAR-8761 remove misleading UserSession#checkIsRoot()Simon Brandhof2017-02-101-5/+0
|
* SONAR-8761 add UserSession#checkIsSystemAdministrator()Simon Brandhof2017-02-101-0/+10
|
* SONAR-8753 add hidden property sonar.organizations.createPersonalOrgSébastien Lesaint2017-02-101-1/+1
|
* SONAR-8637 Update POM parent versionTeryk Bellahsene2017-02-1045-90/+90
|
* SONAR-8758 Remove settings related to periods 2 to 5Julien Lancelot2017-02-091-1/+1
|
* SONAR-8716 drop global permissions from UserSessionSimon Brandhof2017-02-081-6/+0
|
* SONAR-8716 drop UserSession#hasPermission()Simon Brandhof2017-02-081-6/+0
| | | | because it does not support organizations.
* SONAR-8716 Simplify CeUserSessionSimon Brandhof2017-02-081-21/+17
|
* SONAR-8716 drop UserSession#checkPermission(String)Simon Brandhof2017-02-071-5/+0
|
* WebServerBarrierTest may not shutdown all threads it spawnsSébastien Lesaint2017-02-071-13/+20
|
* SONAR-8208 Remove property "sonar.authenticator.createUser"Julien Lancelot2017-02-061-1/+1
|
* SONAR-7762 Remove remaing property definitionJulien Lancelot2017-02-031-1/+1
|
* SONAR-8610 Remove setting sonar.technicalDebt.hoursInDayJulien Lancelot2017-02-021-1/+1
|
* SONAR-8704 drop unused UserSession#getUserGroups()Simon Brandhof2017-02-011-6/+0
|
* SONAR-8716 drop UserSession#hasComponentPermission(permission, componentKey)Simon Brandhof2017-02-011-5/+0
|
* SONAR-8716 drop UserSession#checkComponentPermission(String,String)Simon Brandhof2017-02-011-5/+0
|
* SONAR-8716 Add methods in UserSession with ComponentDto parameters.Simon Brandhof2017-02-011-0/+12
| | | | | | The new methods hasComponentPermission(String,ComponentDto) and checkComponentPermission(String,ComponentDto) will help to drop the same methods with key/uuid String parameters.
* SONAR-8716 Remove unused method UserSession#hasGlobalPermission(String)Simon Brandhof2017-02-011-6/+0
|
* SONAR-8716 Remove unused method UserSession#checkAnyPermissions(Collection)Simon Brandhof2017-02-011-5/+0
|
* SONAR-8716 Remove unused method UserSession#checkGlobalPermission(String)Simon Brandhof2017-02-011-5/+0
|
* SONAR-8704 add UserSession#getGroups()Simon Brandhof2017-01-311-0/+6
| | | | | | Contrary to getUserGroups(), this method returns GroupDto but not only the group names. It also doesn't return the virtual group "Anyone"
* SONAR-8704 Refactor Elasticsearch types "authorization"Simon Brandhof2017-01-311-1/+1
| | | | | | | | | | | Multiple indices define a type "authorization". The related code was duplicated, and sometimes had some minor differences. This commits share all the management of these types in the same bunch of classes. It also allows to quickly create a project-related index, without having to fix the different locations which may require project re-indexing.
* Remove UserSession#localeJulien Lancelot2017-01-301-6/+0
| | | | This method was useless as it was always returning Locale#ENGLISH
* SONAR-8690 read and write default templates from ORGANIZATIONS tableSébastien Lesaint2017-01-272-1/+3
|
* SONAR-8684 Cleanup code related to railsJulien Lancelot2017-01-261-1/+1
| | | | Signed-off-by: Julien Lancelot <julien.lancelot@sonarsource.com>
* SONAR-8675 drop usage of table resource_indexSimon Brandhof2017-01-251-1/+1
|
* Refactor WS about association of Q profiles and projectsSimon Brandhof2017-01-232-3/+1
| | | | | | | - remove class from CE - do not use multiple DB sessions - reuse existing code - load project once
* SONAR-7282 implement global search with elasticsearchDaniel Schwarz2017-01-162-1/+3
| | | | | | Change api/component/suggestions. The index is not yet cleaned up if a project's content changes or a project is deleted. Delete previous ruby implementation of the webservice.
* SONAR-7282 rename .component.es to .measure.indexDaniel Schwarz2017-01-161-1/+1
| | | | | | | | * All other elastic search indexes reside in "index" subpackages. * We want to introduce a new component index and need the .component.index-package name for that one.
* SONAR-8557 Create WS api/notifications/listTeryk Bellahsene2016-12-292-3/+13
|
* SONAR-8555 SONAR-8556 Create WS api/notifications/add and removeTeryk Bellahsene2016-12-292-13/+3
|
* SONAR-8445 drop field DatabaseVersion.LAST_VERSIONSébastien Lesaint2016-12-162-2/+5
| | | | | | replace usages of this field by either MigrationSteps.getMaxMigrationNumber() or DatabaseVersion.getStatus() also, change return type of DatabaseVersion.getVersion from int to Optional<Long> MigrationStep configuration is now avaiable at level2, in both web and CE container (because it is used by DatabaseVersion class)
* SONAR-8445 move DatabaseVersion to sonar-db-migrationSébastien Lesaint2016-12-161-1/+1
|
* SONAR-8445 move DatabaseVersion to level2Sébastien Lesaint2016-12-162-4/+5
| | | | also moved DatabaseServerCompatibility which depends on it
* SONAR-8445 add a DAO for SCHEMA_MIGRATIONSSébastien Lesaint2016-12-161-1/+1
| | | | and remove direct usages of MyBatis mapper
* SONAR-7291 Rename IssueUpdater to IssueFieldsSetterJulien Lancelot2016-12-121-3/+3
| | | | A new IssueUpdater used to update issue in db needs to be created
* Merge branch 'branch-6.2'Sébastien Lesaint2016-12-011-0/+3
|\
| * SONAR-8422 add visible error in sonar.log when DB is not okSébastien Lesaint2016-12-011-0/+3
| |
* | Automatic merge from branch-6.2ssjenka2016-12-014-9/+16
|\| | | | | | | | | | | | | | | | | | | | | * origin/branch-6.2: SONAR-8335 rename LogDomain#ES_CLIENT to LogDomain#ES SONAR-8335 add IT on dynamic log level change SONAR-8335 make changing root level change level of all loggers SONAR-8335 add missing coverage on jmx log property SONAR-8335 drop dead code ServerLogging#getCurrentLogFile SONAR-8335 move RootLoggerConfig out of LogbackHelper SONAR-8335 move LogBackHelper to subpackage logging
| * 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
| |