Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | SONAR-8445 add a DAO for SCHEMA_MIGRATIONS | Sébastien Lesaint | 2016-12-16 | 4 | -11/+4 | |
| | | | | | | | | and remove direct usages of MyBatis mapper | |||||
* | | improving stability of DatabaseMigrationImplConcurrentAccessTest | Sébastien Lesaint | 2016-12-16 | 1 | -17/+17 | |
| | | ||||||
* | | SONAR-8445 move DataChange subclasses from sonar-db to sonar-db-migration | Sébastien Lesaint | 2016-12-16 | 49 | -93/+744 | |
| | | ||||||
* | | SONAR-8445 move def and sql builder classes to sonar-db-migration | Sébastien Lesaint | 2016-12-16 | 125 | -242/+4811 | |
| | | ||||||
* | | SONAR-8445 move package charset from sonar-db to sonar-db-migration | Sébastien Lesaint | 2016-12-16 | 26 | -8/+1843 | |
| | | ||||||
* | | SONAR-8445 a bit of Ruby code cleaning + fix quality flaws | Sébastien Lesaint | 2016-12-16 | 3 | -11/+2 | |
| | | ||||||
* | | Fix quality flaws | Julien HENRY | 2016-12-16 | 2 | -15/+3 | |
| | | ||||||
* | | SONAR-7293 Replace Ruby WS api/issues/delete_comment by Java WS | Julien Lancelot | 2016-12-15 | 9 | -208/+292 | |
| | | ||||||
* | | SONAR-7294 Replace Ruby WS api/issues/edit_comment | Julien Lancelot | 2016-12-15 | 12 | -168/+372 | |
| | | ||||||
* | | SONAR-7292 IssueChangeDao#selectCommentByKey now returns a dto | Julien Lancelot | 2016-12-15 | 2 | -8/+8 | |
| | | ||||||
* | | SONAR-7292 Move IssueTesting to sonar-db for IssueDto and keep ↵ | Julien Lancelot | 2016-12-15 | 23 | -250/+227 | |
| | | | | | | | | IssueDocTesting for IssueDoc | |||||
* | | SONAR-7292 Sanitize IssuesWsParameters and add some missing actions in ↵ | Julien Lancelot | 2016-12-15 | 16 | -387/+427 | |
| | | | | | | | | IssueService | |||||
* | | SONAR-7292 Replace Ruby WS api/issues/add_comment | Julien Lancelot | 2016-12-15 | 11 | -355/+310 | |
| | | ||||||
* | | Fix quality flaws | Teryk Bellahsene | 2016-12-14 | 4 | -14/+13 | |
| | | ||||||
* | | Drop some Ruby code | Simon Brandhof | 2016-12-14 | 22 | -2389/+0 | |
| | | | | | | | | | | | | | | * Drop color-tools ruby gem * Drop unused jrails.rb * Sanitize database_version.rb | |||||
* | | SONAR-8467 Fix total number of analyses when filtering by category | Teryk Bellahsene | 2016-12-14 | 2 | -7/+8 | |
| | | ||||||
* | | SONAR-8468 Create WS api/project_analyses/delete | Teryk Bellahsene | 2016-12-14 | 7 | -4/+256 | |
| | | ||||||
* | | SONAR-7728 Return file long name in changelog during a file move | Julien Lancelot | 2016-12-14 | 2 | -7/+67 | |
| | | ||||||
* | | SONAR-8445 do auto upgrade on fresh install without Ruby | Sébastien Lesaint | 2016-12-14 | 21 | -346/+273 | |
| | | ||||||
* | | SONAR-8445 move SQ 5.6 create schema migrations out of Ruby | Sébastien Lesaint | 2016-12-14 | 26 | -339/+1446 | |
| | | | | | | | | and start some cleaning of migration related code in Ruby | |||||
* | | SONAR-8445 move SQ 5.6.1 migration out of Ruby | Sébastien Lesaint | 2016-12-14 | 9 | -32/+292 | |
| | | ||||||
* | | SONAR-8445 move SQ 6.0 migrations out of Ruby | Sébastien Lesaint | 2016-12-14 | 270 | -2208/+12247 | |
| | | ||||||
* | | SONAR-8445 move SQ 6.1 migrations out of Ruby | Sébastien Lesaint | 2016-12-14 | 66 | -500/+2724 | |
| | | ||||||
* | | SONAR-8445 support multiple migrations referencing same MigrationStep | Sébastien Lesaint | 2016-12-14 | 5 | -6/+121 | |
| | | | | | | | | includes add support for support components per DbVersion | |||||
* | | SONAR-8445 move SQ 6.2 migrations out of Ruby | Sébastien Lesaint | 2016-12-14 | 99 | -699/+4113 | |
| | | ||||||
* | | SONAR-8445 run DB migration of SQ 6.3 with Java | Sébastien Lesaint | 2016-12-14 | 65 | -99/+3013 | |
| | | | | | | | | | | add Java toolkit to run DB migrations port last 3 DB migrations (ie. from current SQ 6.3) to this Java toolkit and make it run after Ruby migration | |||||
* | | SONAR-8445 fork BaseDataChange and DdlChange in sonar-db-migration | Sébastien Lesaint | 2016-12-14 | 10 | -0/+730 | |
| | | | | | | | | interface DataChange is dropped and BaseDataChange renamed to DataChange | |||||
* | | SONAR-8445 move PlatformDatabaseMigration to package migration | Sébastien Lesaint | 2016-12-14 | 10 | -42/+58 | |
| | | | | | | | | instead of package migrations, so that it is located as if it was in sonar-db-migration | |||||
* | | SONAR-8445 move DatabaseMigration to sonar-db-migration | Sébastien Lesaint | 2016-12-14 | 23 | -209/+523 | |
| | | | | | | | | also, split state (which must be stored at platform level 2 because we need to keep state until SQ is shutdown) from migration code, which doesn't need to be kept in memory once Platform is out of safe mode | |||||
* | | SONAR-8445 handle creation of table SCHEMA_MIGRATIONS in Java | Sébastien Lesaint | 2016-12-14 | 8 | -4/+274 | |
| | | ||||||
* | | SONAR-8445 create maven module sonar-db-migration | Sébastien Lesaint | 2016-12-14 | 4 | -0/+65 | |
| | | ||||||
* | | SONAR-8535 SONAR-7304 sanitize WS api/server/* | Simon Brandhof | 2016-12-14 | 12 | -318/+44 | |
| | | | | | | | | | | | | | | - SONAR-8535 drop api/server/index - SONAR-8535 drop api/server/setup - SONAR-7304 refactor api/server/version in Java Signed-off-by: Simon Brandhof <simon.brandhof@sonarsource.com> | |||||
* | | Remove file related to measure filters | Julien Lancelot | 2016-12-14 | 1 | -61/+0 | |
| | | ||||||
* | | SONAR-8467 Fix pagination result when filtering by category | Teryk Bellahsene | 2016-12-13 | 2 | -3/+10 | |
| | | ||||||
* | | SONAR-7290 Add changelog action in IssueClient from ws-client | Julien Lancelot | 2016-12-13 | 4 | -63/+64 | |
| | | ||||||
* | | SONAR-8531 api/issues/changelog should return raw value of effort | Julien Lancelot | 2016-12-13 | 1 | -1/+2 | |
| | | ||||||
* | | SONAR-7290 Rewrite api/issues/changelog in Java | Julien Lancelot | 2016-12-13 | 9 | -61/+419 | |
| | | ||||||
* | | SONAR-7290 Remove api/issues/changelog from rails | Julien Lancelot | 2016-12-13 | 7 | -242/+1 | |
| | | ||||||
* | | SONAR-7290 Move issues classes related to ws to IssueWsModule | Julien Lancelot | 2016-12-13 | 3 | -25/+25 | |
| | | ||||||
* | | SONAR-7290 Simplify and rename ActionService to ActionFinder | Julien Lancelot | 2016-12-13 | 6 | -76/+36 | |
| | | ||||||
* | | SONAR-5471 use v5.6 as version of initial schema | Simon Brandhof | 2016-12-13 | 6 | -96/+3 | |
| | | | | | | | | Signed-off-by: Simon Brandhof <simon.brandhof@sonarsource.com> | |||||
* | | SONAR-5471 create initial schema (version 5.5) | Simon Brandhof | 2016-12-13 | 250 | -9209/+4 | |
| | | ||||||
* | | SONAR-8467 Create WS api/project_analyses/search | Teryk Bellahsene | 2016-12-13 | 7 | -2/+691 | |
| | | ||||||
* | | use yarn (#1453) | Stas Vilchik | 2016-12-12 | 2 | -15/+5967 | |
| | | ||||||
* | | support old project permalinks | Stas Vilchik | 2016-12-12 | 2 | -4/+7 | |
| | | ||||||
* | | SONAR-7291 Extract transition methods from IssueService to TransitionService | Julien Lancelot | 2016-12-12 | 19 | -193/+845 | |
| | | ||||||
* | | SONAR-7291 Rename IssueUpdater to IssueFieldsSetter | Julien Lancelot | 2016-12-12 | 31 | -120/+99 | |
| | | | | | | | | A new IssueUpdater used to update issue in db needs to be created | |||||
* | | SONAR-7291 Drop WS api/issues/transitions | Julien Lancelot | 2016-12-12 | 6 | -82/+9 | |
| | | ||||||
* | | SONAR-7291 Clean up no more used code related to rails | Julien Lancelot | 2016-12-12 | 7 | -262/+4 | |
| | | | | | | | | | | Remove no more used rails Issue.to_hash Remove no more used method from InternalRubyIssueService | |||||
* | | use nodejs 6.x (#1451) | Stas Vilchik | 2016-12-12 | 1 | -1/+1 | |
| | |