Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SONAR-14245 Drop organization related tables | Duarte Meneses | 2021-01-11 | 33 | -947/+18 |
| | |||||
* | Update license headers for 2021 [update headers] | Wouter Admiraal | 2021-01-08 | 505 | -507/+505 |
| | |||||
* | SONAR-13999 Remove OrganizationDbTester | Michal Duda | 2020-12-22 | 7 | -58/+45 |
| | |||||
* | SONAR-13999 remove all organization WS | Michal Duda | 2020-12-22 | 5 | -330/+0 |
| | |||||
* | SONAR-13999 remove orgs from application WS | Michal Duda | 2020-12-22 | 3 | -12/+7 |
| | |||||
* | SONAR-13999 drop organization from QualityGate WS | Jacek | 2020-12-22 | 2 | -52/+60 |
| | |||||
* | SONAR-13999 removed OrganizationMemberDao | Michal Duda | 2020-12-22 | 3 | -52/+27 |
| | |||||
* | SONAR-13999 remove orgs from hotspots WS | Michal Duda | 2020-12-22 | 7 | -73/+32 |
| | |||||
* | SONAR-13999 remove orgs webhook WS | Michal Duda | 2020-12-22 | 3 | -39/+34 |
| | |||||
* | fix code smells | Pierre | 2020-12-14 | 12 | -41/+41 |
| | |||||
* | Fix various code smells | Jacek | 2020-12-09 | 2 | -3/+3 |
| | |||||
* | Add missing package-info.java | Jacek | 2020-12-09 | 1 | -0/+23 |
| | |||||
* | Code smells test fixes | Jacek | 2020-12-09 | 6 | -51/+55 |
| | |||||
* | remove use of Stream.peek() | Pierre | 2020-12-09 | 2 | -18/+10 |
| | |||||
* | fix floating point equality | Zipeng WU | 2020-12-09 | 1 | -1/+1 |
| | |||||
* | fix assertions on incompatible types on overall code | Pierre | 2020-12-09 | 1 | -1/+3 |
| | |||||
* | SONAR-14189 sonar.dbcleaner.branchesToKeepWhenInactive ignored when set on ↵ | Michal Duda | 2020-12-04 | 3 | -0/+315 |
| | | | | project level | ||||
* | SONAR-14157 Rename quality gate events to Passed/Failed instead of Green/Red | Julien HENRY | 2020-12-03 | 1 | -16/+16 |
| | |||||
* | SONAR-8427 Add a timeZone param to api/issues/search | Julien HENRY | 2020-12-03 | 6 | -12/+23 |
| | |||||
* | SONAR-14176 Send email to admins when default admin credential is detected | Julien Lancelot | 2020-12-02 | 1 | -0/+2 |
| | |||||
* | Speed up unit tests by improving indexing in unit tests | Duarte Meneses | 2020-11-30 | 13 | -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 logging | Jacek | 2020-11-05 | 1 | -0/+5 |
| | |||||
* | SONAR-14039 replace 'sonar.search.transportPort' with 'sonar.es.port' on non-DCE | Jacek | 2020-11-05 | 1 | -2/+2 |
| | |||||
* | SONAR-12686 upgrade es client to 7.9.3 and move to HTTP | Jacek | 2020-11-05 | 75 | -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 tests | Sébastien Lesaint | 2020-11-05 | 2 | -544/+95 |
| | | | | LocalTransport is dropped in ElasticSearch 7.X | ||||
* | SONAR-13122 Reduce Log Level of rule indexing warnings on startup | colin-mueller-sonarsource | 2020-11-04 | 2 | -14/+14 |
| | |||||
* | SONAR-13936 Fix quality flaws after merge to master | Julien Lancelot | 2020-10-19 | 3 | -6/+1 |
| | |||||
* | SONAR-13936 Move default permission templates to internal properties | Julien Lancelot | 2020-10-16 | 1 | -0/+7 |
| | |||||
* | SONAR-13936 Remove use of organizations in Groups | Michal Duda | 2020-10-16 | 1 | -0/+1 |
| | |||||
* | SONAR-13936 Drop some Organization code related to Users/Groups/Permission | Duarte Meneses | 2020-10-16 | 2 | -34/+20 |
| | |||||
* | SONAR-13903 Remove use of organizations in Quality Profiles and Active Rules | Pierre | 2020-10-05 | 17 | -494/+91 |
| | |||||
* | SONAR-13869 Add a flag in telemetry to know if there's some c/c++ unanalyzed ↵ | Julien Lancelot | 2020-09-29 | 5 | -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 paths | Jacek | 2020-09-24 | 2 | -7/+7 |
| | |||||
* | SONAR-13450 Deprecate 'id' parameter in `api/user_groups/update` | Duarte Meneses | 2020-09-22 | 3 | -148/+5 |
| | |||||
* | SONAR-13843 Fail if git or svn plugins are installed | Duarte Meneses | 2020-09-18 | 2 | -70/+1 |
| | |||||
* | SONAR-13643 Save plugins with type | Duarte Meneses | 2020-09-18 | 1 | -0/+5 |
| | |||||
* | SONAR-13644 load bundled plugins from 'lib/extension' directory | Jacek | 2020-09-18 | 3 | -4/+123 |
| | |||||
* | SONAR-12692 add project_uuid to issues_changes | Pierre | 2020-09-08 | 1 | -3/+6 |
| | |||||
* | SONAR-13597 Add new 'Scope' facet to list of issue facets | Michal Duda | 2020-09-03 | 8 | -2/+193 |
| | |||||
* | SONAR-12459 Security Category filters vulnerability issues only | Jacek | 2020-08-26 | 3 | -22/+48 |
| | |||||
* | SONAR-13572 Add "Buffer Overflow" security category | Jacek | 2020-08-26 | 1 | -0/+2 |
| | |||||
* | SONAR-13151 api/issues/search page size parameter negative value should not ↵ | Duarte Meneses | 2020-08-14 | 3 | -49/+36 |
| | | | | be allowed | ||||
* | SONAR-13398 clean api/issues/search WS from deprecated code | Jacek | 2020-06-26 | 1 | -44/+0 |
| | |||||
* | SONAR-13444 background tasks for issue indexation implementation | Pierre | 2020-06-26 | 5 | -9/+123 |
| | |||||
* | SONAR-13291 deprecate 'language' param and remove 'language' field from ↵ | Jacek | 2020-05-26 | 4 | -18/+1 |
| | | | | component ES index | ||||
* | SONAR-13291 index components with qualifier ['APP', 'TRK', 'VW', 'SVW'] ↵ | Jacek | 2020-05-26 | 1 | -44/+17 |
| | | | | only in Component ES index | ||||
* | SONAR-13221 change PK of RULES and update FK | Michal Duda | 2020-05-25 | 23 | -310/+283 |
| | |||||
* | SONAR-13221 change USER_ROLES user_id FK to user_uuid | Jacek | 2020-05-25 | 5 | -28/+23 |
| | |||||
* | SONAR-13221 change PROPERTIES user_id FK to user_uuid | Jacek | 2020-05-25 | 2 | -23/+23 |
| | |||||
* | SONAR-13221 change ORGANIZATION_MEMBERS user_id FK to user_uuid | Jacek | 2020-05-25 | 1 | -4/+9 |
| |