aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-webserver-core
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-14315 Cannot paginate /api/project_tags/searchDuarte Meneses2021-11-181-2/+1
|
* Fix code quality issuesDuarte Meneses2021-10-253-6/+5
|
* SONAR-15450 Take pull requests into account when counting instance's NLOCDuarte Meneses2021-09-271-2/+19
|
* Fix code quality issuesDuarte Meneses2021-09-243-4/+4
|
* SONAR-15425 'api/rules/repositories' is empty for new instancesDuarte Meneses2021-09-232-5/+9
|
* SONAR-15142 Audit internal propertiesDuarte Meneses2021-08-192-3/+2
|
* SONAR-15142 - Add componentKey to all logsBelen Pruvost2021-08-193-3/+3
|
* SONAR-15142 - Add component qualifier to new value in LogsBelen Pruvost2021-08-193-3/+4
|
* SONAR-11094 Add nodename to logs for DCE onlyJacek2021-08-111-0/+18
|
* SONAR-15243 Enable JSON logging on Elasticsearch processJacek2021-08-111-1/+1
|
* SONAR-15237 Register removal of pluginsDuarte Meneses2021-08-044-511/+94
|
* SONAR-15237 Improve startup performance of the web processDuarte Meneses2021-08-048-415/+117
|
* SONAR-15142 - Log Permission, Plugin, Secret Key, License and SettingsBelen Pruvost2021-07-274-12/+11
|
* Fix code smell: add package-info.javaZipeng WU2021-07-091-0/+24
|
* SONAR-10762 Drop usage of 'user_managed' columnJacek2021-07-072-57/+14
|
* SONAR-14917 Misleading memory amounts displayed in Administration > SystemDuarte Meneses2021-06-302-16/+16
|
* SONAR-14925 Remove code deprecated before 7.0 in the Plugin APIDuarte Meneses2021-06-173-31/+4
|
* SONAR-14792 Bump min upgrade version to current LTSJacek2021-06-161-13/+14
|
* SONAR-14951 Scanners require Java 11Sébastien Lesaint2021-06-091-1/+1
|
* SONAR-14625 Upgrade to Hazelcast 4.2Zipeng WU2021-04-152-10/+9
|
* SONAR-14662 Redirecting admin to the risk consent pageLukasz Jarocki2021-04-152-0/+269
|
* SONAR-14586 Move DefaultAdminCredentialsVerifier to sonar-webserver-authWouter Admiraal2021-03-188-554/+0
|
* SONAR-14519 - Update ALMs format and simplify System Info PageBelen Pruvost2021-03-122-12/+12
|
* SONAR-14523 implemented splitting plugins into twoLukasz Jarocki2021-03-087-12/+142
|
* SONAR-14519 add ALM info to system info filePierre2021-03-084-3/+169
|
* SONAR-14520 - Add Default Leak Period to System Info FilePhilippe Perrin2021-03-082-10/+64
|
* SONAR-14525 include CI usage information in telemetryMichal Duda2021-03-044-8/+22
|
* SONAR-14518 Telemetry - include number of sonarlint usersDuarte Meneses2021-03-044-6/+22
|
* SONAR-14525 include SCM usage information in telemetryMichal Duda2021-03-044-30/+37
|
* SONAR-13515 Telemetry - include external authentication providersDuarte Meneses2021-03-045-4/+9
|
* SONAR-14501 Custom security config telemetryJacek2021-02-262-13/+68
|
* SONAR-14369 Add ALM integration telemetryJacek2021-02-045-2/+48
|
* SONAR-14245 Drop organization related tablesDuarte Meneses2021-01-112-4/+0
|
* Update license headers for 2021 [update headers]Wouter Admiraal2021-01-08195-199/+195
|
* SONAR-13999 Remove OrganizationDbTesterMichal Duda2020-12-222-15/+10
|
* fix code smellsPierre2020-12-143-8/+8
|
* Code smell fix: remove unused codeZipeng WU2020-12-111-1/+0
|
* Add missing package-info.javaJacek2020-12-091-0/+23
|
* SONAR-8427 Add a timeZone param to api/issues/searchJulien HENRY2020-12-031-24/+23
|
* SONAR-13793 improve ncloc count performance by using projects instead of ↵Pierre Guillot2020-12-022-8/+5
| | | | components
* SONAR-14176 Move warning from web.log to sonar.logJulien Lancelot2020-12-021-4/+12
|
* SONAR-14176 Send email to admins when default admin credential is detectedJulien Lancelot2020-12-027-16/+365
|
* SONAR-14175 SONAR-14176 Detect usage of admin account with default credentialJulien Lancelot2020-12-022-0/+178
| | | | SONAR-14175 Add a startup task to detect admin default credential usage and set reset_password flag to true SONAR-14176 Warn administrators when default admin credential is detected
* Speed up unit tests by improving indexing in unit testsDuarte Meneses2020-11-301-4/+3
| | | | | * Unit tests no longer use the LargeSizeHandler for indexing. This handler is designed for indexing large amounts of data and is slower for the data sets used in unit tests. * Insert all data in DB before indexing in unit tests (there is a huge overhead in each call to index)
* SONAR-14159 enforce user authentication by defaultJacek2020-11-264-3/+33
|
* SONAR-12686 upgrade es client to 7.9.3 and move to HTTPJacek2020-11-059-93/+95
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - add should minimum match eq 1 to user index queries ES 7.X changed behaviour in case filter query with bool it defaults to '0' https://www.elastic.co/guide/en/elasticsearch/reference/7.x/breaking-changes-7.0.html#_the_filter_context_has_been_removed - fix issue index routing param ES 7.X helped discover this bug as new setting has been auto configured which is 'index.number_of_routing_shards'. This has changed how documents are distributed across shards depending on how many shards the index has. Without that change issues docs has been incorrectly routed to the same shard hash as projects and it worked no matter what routing key you used projectUuid or auth_projectUuid. - update ngram and edge_ngram names to match with es 7.x nGram and edgeNgram has been deprecated in favour of ngram and edge_ngram https://www.elastic.co/guide/en/elasticsearch/reference/current/breaking-changes-7.0.html#deprecated-ngram-edgengram-token-filter-cannot-be-used - remove `_all : enabled` usage from UT This field was already deprecated in 6.X, now it has been removed. https://www.elastic.co/guide/en/elasticsearch/reference/current/breaking-changes-7.0.html#all-meta-field-removed - add Elasticsearch High Level REST client dependency - use sonar.search.port for ES HTTP - main process use ES Rest client to check ES status - sonar.cluster.search.hosts has HTTP ports on APP nodes also sonar.search.port and sonar.search.host MUST be configured on each Search node with the host and HTTP port of the current node - use Elasticsearch high level rest client - use in EsTester - use as primary es client - use indices api to get all indices name instead of cluster api - use cluster health api to check cluster state - support raw requests for 'nodes/_stats' and '_cluster/stats' - support raw requests for 'indices/_stats' - leave netty4plugin as testCompile dependency it is used in UTs - all ES non-test calls go through EsClient class - add rest client ES profiling
* SONAR-13913 Remove tables and indexes clean up used in Integration TestsJulien Lancelot2020-11-032-410/+0
|
* Revert "SONAR-13913 Remove tables and indexes clean up used in Integration ↵Julien Lancelot2020-10-212-0/+410
| | | | | | Tests" This reverts commit 6d13dd2f
* SONAR-13913 Remove tables and indexes clean up used in Integration TestsJulien Lancelot2020-10-202-410/+0
| | | | | | | | | | | * SONAR-13913 Remove usage of Orchestrator#resetData * Remove ProjectAnalysisRule * Upgrade to Orchestrator 3.31 * SONAR-13913 Remove BackendCleanup class * Remove code related to no more existing tables
* SONAR-13936 Fix quality flaws after merge to masterJulien Lancelot2020-10-191-1/+0
|