summaryrefslogtreecommitdiffstats
path: root/sonar-core/src
Commit message (Collapse)AuthorAgeFilesLines
* Db migration to remove sort criteria from existing issue filtersSimon Brandhof2014-12-112-1/+2
|
* fix purge task when trying to delete a non existant componentTeryk Bellahsene2014-12-051-2/+5
|
* Refactor issue indexer (project-agnostic approach)Simon Brandhof2014-12-0437-167/+162
|
* SONAR-5826 Fix reentrance of migration, add unique constraint on ↵Jean-Baptiste Lievremont2014-12-041-1/+1
| | | | file_sources to prevent dups
* SONAR-5869 Drop snapshot_sources tableJean-Baptiste Lievremont2014-12-043-11/+2
|
* SONAR-5817 remove snapshot_sources use during purge and snapshot deleteTeryk Bellahsene2014-12-048-92/+89
|
* SONAR-5804 fix source lines purge of multi module projectsTeryk Bellahsene2014-12-035-27/+55
|
* compute engine – move ProjectPurgeTask on the server sideTeryk Bellahsene2014-12-0323-227/+51
|
* Fix messageStas Vilchik2014-12-031-1/+1
|
* SONAR-5804 delete source lines from index while purging and deleting a projectTeryk Bellahsene2014-12-036-16/+138
|
* SONAR-5869 Remove persistence of highlighting and symbols in snapshot_dataJulien HENRY2014-12-021-1/+0
|
* SONAR-5869 Remove SnapshotSourceDto and all related code. Remove colorizer ↵Julien HENRY2014-12-0210-339/+13
| | | | stuff on server side.
* rename subProjectId by parentProjectId in ComponentDto except in WS useTeryk Bellahsene2014-12-023-9/+9
| | | | | | Conflicts: server/sonar-server/src/test/java/org/sonar/server/component/db/ComponentDaoTest.java sonar-core/src/test/java/org/sonar/core/component/ComponentDtoTest.java
* SONAR-5804 delete file_sources when deleting a project or during the data ↵Teryk Bellahsene2014-12-0214-131/+356
| | | | cleaning step
* Scroll FILE_SOURCES rows one by oneSimon Brandhof2014-12-025-0/+20
|
* Merge remote-tracking branch 'origin/branch-4.5'Julien HENRY2014-12-011-0/+19
|\ | | | | | | | | | | | | | | Conflicts: sonar-colorizer/src/main/java/org/sonar/colorizer/HtmlOptions.java sonar-plugin-api/src/main/java/org/sonar/api/batch/SonarIndex.java sonar-plugin-api/src/main/java/org/sonar/api/component/ResourcePerspectives.java sonar-plugin-api/src/main/java/org/sonar/api/web/CodeColorizerFormat.java
| * SONAR-5864 API cleanupJulien HENRY2014-12-011-0/+19
| | | | | | | | | | | | * add a proper way to create perspective on InputFile * add a proper way to convert InputFile to resource * deprecate colorizer
* | Delete unused class IssueAuthorizationDtoSimon Brandhof2014-12-013-150/+0
| |
* | Fix memory leaks in server medium testsSimon Brandhof2014-11-281-0/+1
| |
* | SONAR-5718 Apply feedbackStas Vilchik2014-11-281-0/+5
| |
* | Change type of column PROJECTS.AUTHORIZATION_UPDATED_AT from TIMESTAMP to BIGINTSimon Brandhof2014-11-2628-164/+40
| |
* | SONAR-5868 Add WS to fetch line hashes for issue trackingJean-Baptiste Lievremont2014-11-255-0/+29
| |
* | Fix some quality flawsSimon Brandhof2014-11-251-1/+0
| |
* | SONAR-5868 Allow issue tracking mechanism to work without full previous sourcesJulien HENRY2014-11-247-6/+27
| |
* | SONAR-5826 Use (big) integer column instead of DB timestamp for file_sourcesJean-Baptiste Lievremont2014-11-246-18/+19
| |
* | SONAR-5718 Handle big filesStas Vilchik2014-11-241-1/+2
| |
* | SONAR-5801 fix compatibility with all dbsSimon Brandhof2014-11-235-22/+20
| |
* | SONAR-5827 Use byte[] instead of String to manipulate file_sources data so ↵Julien HENRY2014-11-215-10/+25
| | | | | | | | that all DBs are happy
* | SONAR-5544 Make the Complexity widget comply with the new SonarQube widget ↵Stas Vilchik2014-11-211-1/+0
| | | | | | | | Look and Feel
* | Fix quality flawsSimon Brandhof2014-11-211-2/+2
| |
* | Centralize algorithm of UUID generationSimon Brandhof2014-11-216-15/+12
| |
* | SONAR-5827 Select all previous file lines data hash with a single SQL queryJulien HENRY2014-11-202-1/+11
| |
* | SONAR-5827 Feed the new "file_sources" tableJulien HENRY2014-11-1911-14/+382
| |
* | SONAR-5818 add todo for futur use of ProjectSettings classTeryk Bellahsene2014-11-194-9/+9
| |
* | SONAR-5628 add medium testTeryk Bellahsene2014-11-193-2/+14
| |
* | Refactor the way to declare ES indices.Simon Brandhof2014-11-192-15/+31
| | | | | | | | | | - BaseIndex has too many responsibilities - SearchClient must not override TransportClient, else it can't be easily used in tests
* | SONAR-5826 Migrate sources and SCM data to file_sourcesJean-Baptiste Lievremont2014-11-172-1/+2
| |
* | SONAR-5718 Different fixesStas Vilchik2014-11-131-1/+1
| |
* | SONAR-5845 Update the layout and tune the UI of the issue boxStas Vilchik2014-11-131-1/+1
| |
* | improve code coverage of DataCleaner classesTeryk Bellahsene2014-11-103-10/+33
| |
* | Fix quality flawsJulien Lancelot2014-11-101-8/+2
| |
* | fix quality flaws and refactoringsTeryk Bellahsene2014-11-104-16/+16
| |
* | Computation: propagate the same session object everywhereJulien HENRY2014-11-077-59/+107
| | | | | | | | to avoid DB lock (avoid nested session)
* | fix views plugin large tests failingTeryk Bellahsene2014-11-072-13/+38
| | | | | | | | it was linked to asynchronous switch in the compute engine. Views datacleaner (batch side) could be launched before than the snapshot switch happened on the server side. It's a temporary hack waiting for next views plugin release (which won't call the PurgeTask#purge(...) method anymore)
* | Merge remote-tracking branch 'origin/branch-4.5'Julien Lancelot2014-11-071-0/+2
|\| | | | | | | | | | | Conflicts: sonar-core/src/main/java/org/sonar/core/persistence/DatabaseVersion.java sonar-core/src/main/resources/org/sonar/core/persistence/rows-h2.sql
| * SONAR-4950 Add missing unique index in the H3 schemaJulien Lancelot2014-11-071-0/+2
| |
| * SONAR-4950 update the users.updated_at in order to block other sessionsJulien Lancelot2014-11-072-2/+2
| |
* | SONAR-5814 Simplify migration based on MassUpdateJean-Baptiste Lievremont2014-11-072-73/+0
| |
* | SONAR-4950 update the users.updated_at in order to block other sessionsJulien Lancelot2014-11-072-2/+2
| |
* | Speed-up db testsSimon Brandhof2014-11-061-3/+4
| |