Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Disable 'repository check' feature in 8.7.0 | Jacob Vosmaer | 2016-04-21 | 2 | -2/+13 |
| | | | | It still causes too many false alarms. | ||||
* | Merge branch 'add-pg-trgrm-in-migration' into 'master' | Yorick Peterse | 2016-04-21 | 1 | -0/+11 |
|\ | | | | | | | | | Attempt to create pg_trgm extension in migration for test/dev environments See merge request !3805 | ||||
| * | Attempt to create pg_trgm extension in migration for test/dev environments | Stan Hu | 2016-04-20 | 1 | -0/+11 |
| | | | | | | | | Closes #15210 | ||||
* | | Merge branch 'ci-commit-as-pipeline' into 'master' | Kamil Trzciński | 2016-04-21 | 5 | -1/+70 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ci::Commit becomes a Pipeline object 1. Ci::Commit receives context: ref, :tag. 1. One Ci::Commit describes a one Pipeline 1. Pipeline is created from `.gitlab-ci.yml` 1. Pipeline is a ordered group of builds 1. We test MR against Pipeline 1. Pipelines have a separate view (https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3703) 1. Pipeline can be triggered from UI (https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3703) 1. Later we change `Trigger -> TriggerRequest -> Build` to `Trigger -> Pipeline` (future) 1. We add a Pipeline Hook that will be triggered on Pipeline status change (future) 1. We extend notifications to use `Pipeline Hook` to send summary on pipeline changes (future) After merging that I'll prepare a separate MR that will unify naming, database columns, table names: ``` Ci::Commit -> Pipeline Ci::Build -> Build CommitStatus -> Job GenericCommitStatus -> ExternalJob ci_commits -> pipelines ci_builds -> jobs ``` This MR implements first 5 points. This is made to solve this issue https://gitlab.com/gitlab-org/gitlab-ce/issues/14149. See merge request !3653 | ||||
| * \ | Merge remote-tracking branch 'origin/master' into ci-commit-as-pipelineci-commit-as-pipeline | Kamil Trzcinski | 2016-04-19 | 3 | -8/+21 |
| |\ \ | | |/ | | | | | | | | | | # Conflicts: # db/schema.rb | ||||
| * | | Merge remote-tracking branch 'origin/master' into ci-commit-as-pipeline | Kamil Trzcinski | 2016-04-16 | 6 | -1/+159 |
| |\ \ | | | | | | | | | | | | | | | | | # Conflicts: # db/schema.rb | ||||
| * | | | Fix migrations on MySQL | Kamil Trzcinski | 2016-04-13 | 1 | -1/+5 |
| | | | | |||||
| * | | | Update db/schema.rb | Kamil Trzcinski | 2016-04-13 | 1 | -1/+8 |
| | | | | |||||
| * | | | Cleanup changes | Kamil Trzcinski | 2016-04-13 | 1 | -302/+292 |
| | | | | |||||
| * | | | Merge remote-tracking branch 'origin/master' into ci-commit-as-pipeline | Kamil Trzcinski | 2016-04-13 | 4 | -0/+46 |
| |\ \ \ | |||||
| * | | | | Cleanup required migrations | Kamil Trzcinski | 2016-04-13 | 5 | -10/+7 |
| | | | | | |||||
| * | | | | Add indexes concurrently on PostgreSQL | Kamil Trzcinski | 2016-04-13 | 1 | -3/+9 |
| | | | | | |||||
| * | | | | Remove the use of default scope for Builds | Kamil Trzcinski | 2016-04-13 | 1 | -304/+298 |
| | | | | | |||||
| * | | | | Optimise CI status accessor | Kamil Trzcinski | 2016-04-12 | 2 | -0/+38 |
| | | | | | |||||
| * | | | | Fix specs | Kamil Trzcinski | 2016-04-11 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | Use Ci::Commit as Pipeline | Kamil Trzcinski | 2016-04-11 | 4 | -2/+35 |
| | | | | | |||||
* | | | | | Address MR feedback | Rémy Coutable | 2016-04-20 | 3 | -18/+1 |
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | | | | | Add index to issues due date | Mehmet Beydogan | 2016-04-20 | 1 | -0/+5 |
| | | | | | |||||
* | | | | | Add due_date:time field to Issue model | Mehmet Beydogan | 2016-04-20 | 2 | -0/+20 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add due_date text field to sidebar issue#show Add ability sorting issues by due date ASC and DESC Add ability to filtering issues by No Due Date, Any Due Date, Due to tomorrow, Due in this week options Add handling issue due_date field for MergeRequest Update CHANGELOG Fix ambigous match for issues#show sidebar Fix SCREAMING_SNAKE_CASE offenses for due date contants Add specs for due date sorting and filtering on issues | ||||
* | | | | | formatting and test structure | Sebastian Klier | 2016-04-20 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | add slack notifications for wiki pages | Sebastian Klier | 2016-04-20 | 3 | -0/+12 |
| | | | | | | | | | | | | | | | | | | | | update changelog | ||||
* | | | | | Configuring of points per UDP packettoggle-points-per-packet | Yorick Peterse | 2016-04-19 | 2 | -19/+25 |
| |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows users to configure the number of points stored in a single UDP packet. This in turn can be used to reduce the number of UDP packets being sent at the cost of these packets being somewhat larger. The default setting is 1 point per packet so nothing changes for existing users. | ||||
* | | | | Merge branch 'configurable-shared-runners-text' into 'master' | Kamil Trzciński | 2016-04-19 | 2 | -1/+7 |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add configurable shared runners text cc @axil @rspeicher @grzesiek See merge request !3750 | ||||
| * | | | | Add configurable shared runners text | Kamil Trzcinski | 2016-04-18 | 2 | -1/+7 |
| | |_|/ | |/| | | |||||
* | | | | Use raw SQL commands for 20140502125220 MigrateRepoSize | Stan Hu | 2016-04-18 | 1 | -7/+14 |
|/ / / | | | | | | | | | | Partial fix for #15210 | ||||
* | | | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into ↵ | James Lopez | 2016-04-15 | 4 | -2/+19 |
|\ \ \ | | | | | | | | | | | | | fix/project-import_url | ||||
| * | | | Fix datetime format when migrating new notification settings on MySQL | Douglas Barbosa Alexandre | 2016-04-14 | 1 | -1/+1 |
| | | | | |||||
| * | | | Merge branch 'master' of https://gitlab.com/gitlab-org/gitlab-ce into auto-fsck | Jacob Vosmaer | 2016-04-13 | 4 | -0/+46 |
| |\ \ \ | | | |/ | | |/| | |||||
| * | | | Schema improvements suggested by Yorick | Jacob Vosmaer | 2016-04-13 | 2 | -2/+5 |
| | | | | |||||
| * | | | Merge branch 'master' of https://gitlab.com/gitlab-org/gitlab-ce into auto-fsck | Jacob Vosmaer | 2016-04-12 | 7 | -21/+30 |
| |\ \ \ | | | |/ | | |/| | |||||
| * | | | Add repository_checks_enabled setting | Jacob Vosmaer | 2016-04-12 | 2 | -1/+7 |
| | | | | |||||
| * | | | Rename almost all the things | Jacob Vosmaer | 2016-04-06 | 3 | -8/+8 |
| | | | | |||||
| * | | | Rebase repo check MR | Jacob Vosmaer | 2016-04-04 | 2 | -0/+8 |
| | | | | |||||
* | | | | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into ↵ | James Lopez | 2016-04-14 | 10 | -22/+77 |
|\ \ \ \ | | |_|/ | |/| | | | | | | fix/project-import_url | ||||
| * | | | Merge branch 'master' into decouple-member-notification | Douglas Barbosa Alexandre | 2016-04-11 | 7 | -21/+30 |
| |\ \ \ | | | |/ | | |/| | |||||
| | * | | Use false/true mixin in migration from !3640 | Stan Hu | 2016-04-10 | 1 | -4/+6 |
| | | | | |||||
| | * | | Merge branch 'fix-raw-sql-migrations' into 'master' | Stan Hu | 2016-04-11 | 4 | -12/+18 |
| | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix more SQL migrations to use raw commands gitlab-org/gitlab-development-kit#109 See merge request !3640 | ||||
| | | * | | Fix more SQL migrations to use raw commands | Stan Hu | 2016-04-10 | 4 | -12/+18 |
| | | | | | | | | | | | | | | | | | | | | gitlab-org/gitlab-development-kit#109 | ||||
| | * | | | Fix seed_fu failure with inserting milestones into test DB | Stan Hu | 2016-04-10 | 1 | -1/+1 |
| | |/ / | | | | | | | | | | | | | Milestones were not being saved due to "invalid state" validation errors | ||||
| | * | | Use raw SQL instead of Rails models in 20130403003950 migration | Stan Hu | 2016-04-09 | 1 | -7/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | Closes gitlab-org/gitlab-development-kit#109 Closes https://github.com/gitlabhq/gitlabhq/issues/10123 | ||||
| | * | | Apparently I missed updating the schema.rb when removing the Twitter ↵ | connorshea | 2016-04-09 | 1 | -2/+1 |
| | |/ | | | | | | | | | | | | | | | | "Congrats" button From commit 85cc1729596ac1e5b31d8cfa1daa07477db6033d | ||||
| * | | Fix schema.rb | Douglas Barbosa Alexandre | 2016-04-08 | 1 | -4/+4 |
| | | | |||||
| * | | Use query instead of model on migrations | Douglas Barbosa Alexandre | 2016-04-08 | 1 | -1/+1 |
| | | | |||||
| * | | Merge branch 'master' into decouple-member-notification | Douglas Barbosa Alexandre | 2016-04-08 | 5 | -2/+48 |
| |\ \ | | |/ | |||||
| * | | Update migration comment | Dmitriy Zaporozhets | 2016-03-30 | 1 | -2/+6 |
| | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
| * | | Improve db migrations for notification settings | Dmitriy Zaporozhets | 2016-03-30 | 3 | -14/+13 |
| | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
| * | | Migrate notification setting from members table | Dmitriy Zaporozhets | 2016-03-30 | 3 | -1/+23 |
| | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
| * | | Introduce NotificationSetting model | Dmitriy Zaporozhets | 2016-03-30 | 2 | -3/+24 |
| | | | | | | | | | | | | | | | | | | | | | It will hold notification setting per group or per project. It will allow get rid of notification level stored in Member model Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
* | | | updated migration based on testing findings | James Lopez | 2016-04-14 | 1 | -6/+13 |
| | | | |||||
* | | | typo | James Lopez | 2016-04-11 | 1 | -1/+1 |
| | | |