aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-server-common
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-14245 Drop organization related tablesDuarte Meneses2021-01-1133-947/+18
|
* Update license headers for 2021 [update headers]Wouter Admiraal2021-01-08505-507/+505
|
* SONAR-13999 Remove OrganizationDbTesterMichal Duda2020-12-227-58/+45
|
* SONAR-13999 remove all organization WSMichal Duda2020-12-225-330/+0
|
* SONAR-13999 remove orgs from application WSMichal Duda2020-12-223-12/+7
|
* SONAR-13999 drop organization from QualityGate WSJacek2020-12-222-52/+60
|
* SONAR-13999 removed OrganizationMemberDaoMichal Duda2020-12-223-52/+27
|
* SONAR-13999 remove orgs from hotspots WSMichal Duda2020-12-227-73/+32
|
* SONAR-13999 remove orgs webhook WSMichal Duda2020-12-223-39/+34
|
* fix code smellsPierre2020-12-1412-41/+41
|
* Fix various code smellsJacek2020-12-092-3/+3
|
* Add missing package-info.javaJacek2020-12-091-0/+23
|
* Code smells test fixesJacek2020-12-096-51/+55
|
* remove use of Stream.peek()Pierre2020-12-092-18/+10
|
* fix floating point equalityZipeng WU2020-12-091-1/+1
|
* fix assertions on incompatible types on overall codePierre2020-12-091-1/+3
|
* SONAR-14189 sonar.dbcleaner.branchesToKeepWhenInactive ignored when set on ↵Michal Duda2020-12-043-0/+315
| | | | project level
* SONAR-14157 Rename quality gate events to Passed/Failed instead of Green/RedJulien HENRY2020-12-031-16/+16
|
* SONAR-8427 Add a timeZone param to api/issues/searchJulien HENRY2020-12-036-12/+23
|
* SONAR-14176 Send email to admins when default admin credential is detectedJulien Lancelot2020-12-021-0/+2
|
* Speed up unit tests by improving indexing in unit testsDuarte Meneses2020-11-3013-20/+117
| | | | | * 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-12686 turn off Elasticsearch client deprecation loggingJacek2020-11-051-0/+5
|
* SONAR-14039 replace 'sonar.search.transportPort' with 'sonar.es.port' on non-DCEJacek2020-11-051-2/+2
|
* SONAR-12686 upgrade es client to 7.9.3 and move to HTTPJacek2020-11-0575-3168/+1940
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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-12686 use Jetty for TCP ElasticSearch transport in unit testsSébastien Lesaint2020-11-052-544/+95
| | | | LocalTransport is dropped in ElasticSearch 7.X
* SONAR-13122 Reduce Log Level of rule indexing warnings on startupcolin-mueller-sonarsource2020-11-042-14/+14
|
* SONAR-13936 Fix quality flaws after merge to masterJulien Lancelot2020-10-193-6/+1
|
* SONAR-13936 Move default permission templates to internal propertiesJulien Lancelot2020-10-161-0/+7
|
* SONAR-13936 Remove use of organizations in GroupsMichal Duda2020-10-161-0/+1
|
* SONAR-13936 Drop some Organization code related to Users/Groups/PermissionDuarte Meneses2020-10-162-34/+20
|
* SONAR-13903 Remove use of organizations in Quality Profiles and Active RulesPierre2020-10-0517-494/+91
|
* SONAR-13869 Add a flag in telemetry to know if there's some c/c++ unanalyzed ↵Julien Lancelot2020-09-295-9/+140
| | | | | | | code * SONAR-13869 Compute number of unanalyzed C and C++ files measures * SONAR-13869 Send unanalyzed C and C++ flags in Telemetry
* SONAR-13592 add facet to filter by file pathsJacek2020-09-242-7/+7
|
* SONAR-13450 Deprecate 'id' parameter in `api/user_groups/update`Duarte Meneses2020-09-223-148/+5
|
* SONAR-13843 Fail if git or svn plugins are installedDuarte Meneses2020-09-182-70/+1
|
* SONAR-13643 Save plugins with typeDuarte Meneses2020-09-181-0/+5
|
* SONAR-13644 load bundled plugins from 'lib/extension' directoryJacek2020-09-183-4/+123
|
* SONAR-12692 add project_uuid to issues_changesPierre2020-09-081-3/+6
|
* SONAR-13597 Add new 'Scope' facet to list of issue facetsMichal Duda2020-09-038-2/+193
|
* SONAR-12459 Security Category filters vulnerability issues onlyJacek2020-08-263-22/+48
|
* SONAR-13572 Add "Buffer Overflow" security categoryJacek2020-08-261-0/+2
|
* SONAR-13151 api/issues/search page size parameter negative value should not ↵Duarte Meneses2020-08-143-49/+36
| | | | be allowed
* SONAR-13398 clean api/issues/search WS from deprecated codeJacek2020-06-261-44/+0
|
* SONAR-13444 background tasks for issue indexation implementationPierre2020-06-265-9/+123
|
* SONAR-13291 deprecate 'language' param and remove 'language' field from ↵Jacek2020-05-264-18/+1
| | | | component ES index
* SONAR-13291 index components with qualifier ['APP', 'TRK', 'VW', 'SVW'] ↵Jacek2020-05-261-44/+17
| | | | only in Component ES index
* SONAR-13221 change PK of RULES and update FKMichal Duda2020-05-2523-310/+283
|
* SONAR-13221 change USER_ROLES user_id FK to user_uuidJacek2020-05-255-28/+23
|
* SONAR-13221 change PROPERTIES user_id FK to user_uuidJacek2020-05-252-23/+23
|
* SONAR-13221 change ORGANIZATION_MEMBERS user_id FK to user_uuidJacek2020-05-251-4/+9
|