summaryrefslogtreecommitdiff
path: root/lib/gitlab
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'zj-gitaly-pipelines-n-1' into 'master'Robert Speicher2017-12-192-0/+22
|\
| * Load commit in batches for pipelines#indexZeger-Jan van de Weg2017-12-192-0/+22
* | Merge branch 'sh-add-schedule-pipeline-run-now' into 'master'Kamil Trzciński2017-12-181-0/+47
|\ \ | |/ |/|
| * Address review comments with playing pipeline schedulersh-add-schedule-pipeline-run-nowStan Hu2017-12-121-1/+17
| * Fix Rubocop offense and use a symbol instead of a stringStan Hu2017-12-121-1/+1
| * Add spec for ActionRateLimiterStan Hu2017-12-121-2/+2
| * Add rate limiting to guard against excessive scheduling of pipelinesStan Hu2017-12-121-0/+31
* | Merge branch 'no-ivar-in-modules' into 'master'Robert Speicher2017-12-1523-62/+87
|\ \
| * \ Merge remote-tracking branch 'upstream/master' into no-ivar-in-modulesLin Jen-Shin2017-12-1568-422/+1864
| |\ \
| * \ \ Merge remote-tracking branch 'upstream/master' into no-ivar-in-modulesLin Jen-Shin2017-11-3037-183/+487
| |\ \ \
| * | | | Cache allowed_idsLin Jen-Shin2017-11-221-1/+1
| * | | | Merge remote-tracking branch 'upstream/master' into no-ivar-in-modulesLin Jen-Shin2017-11-2250-53/+305
| |\ \ \ \
| * | | | | Move ModuleWithInstanceVariables to Gitlab namespaceLin Jen-Shin2017-11-228-11/+11
| * | | | | Just define allowed_ids and override it with empty valueLin Jen-Shin2017-11-226-16/+8
| * | | | | Updates based on feedbackLin Jen-Shin2017-11-221-3/+3
| * | | | | Use StrongMemoize and enable/disable cops properlyLin Jen-Shin2017-11-1815-50/+52
| * | | | | Merge remote-tracking branch 'upstream/master' into no-ivar-in-modulesLin Jen-Shin2017-11-17116-720/+3902
| |\ \ \ \ \
| * | | | | | WIPLin Jen-Shin2017-11-061-0/+4
| * | | | | | Merge remote-tracking branch 'upstream/master' into no-ivar-in-modulesLin Jen-Shin2017-11-06144-895/+4562
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge remote-tracking branch 'upstream/master' into no-ivar-in-modulesLin Jen-Shin2017-09-2531-169/+620
| |\ \ \ \ \ \ \
| * | | | | | | | Allow simple ivar ||= form. Update accordinglyLin Jen-Shin2017-09-1916-19/+17
| * | | | | | | | Add cop to make sure we don't use ivar in a moduleLin Jen-Shin2017-09-1828-30/+61
* | | | | | | | | Merge branch 'dm-ldap-email-readonly' into 'master'Sean McGivern2017-12-153-22/+32
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | Make sure user email is read only when synced with LDAPDouwe Maan2017-12-153-22/+32
* | | | | | | | | | Merge branch 'gitaly-conflicts-prep' into 'master'Sean McGivern2017-12-152-33/+32
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | Simplify conflict resolver interfacegitaly-conflicts-prepAlejandro Rodríguez2017-12-142-33/+32
| | |_|_|_|_|_|_|_|/ | |/| | | | | | | |
* | | | | | | | | | Merge branch '41016-import-gitlab-shell-projects' into 'master'Douwe Maan2017-12-153-35/+365
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|/ |/| | | | | | | | |
| * | | | | | | | | Import gitlab_projects.rb from gitlab-shellNick Thomas2017-12-143-35/+365
* | | | | | | | | | Merge branch 'feature/migrate-merge-base-to-gitaly' into 'master'Robert Speicher2017-12-143-2/+19
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | |
| * | | | | | | | | Migrate Gitlab::Git::Repository#merge_base_commit to Gitalyfeature/migrate-merge-base-to-gitalyAhmad Sherif2017-12-133-2/+19
* | | | | | | | | | Merge branch 'dm-dedicated-sidekiq-queues' into 'master'Sean McGivern2017-12-143-13/+61
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | Use a dedicated queue for each workerDouwe Maan2017-12-123-13/+61
| | |_|/ / / / / / / | |/| | | | | | | |
* | | | | | | | | | Merge branch 'pawel/cache_feature_check_for_5_minutes_for_method_call' into '...Robert Speicher2017-12-131-1/+16
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | Use class variable and add rubocop exceptionpawel/cache_feature_check_for_5_minutes_for_method_callPawel Chojnacki2017-12-121-0/+2
| * | | | | | | | | | Expire feature flag cache after 1minutePawel Chojnacki2017-12-121-1/+1
| * | | | | | | | | | use class variables instead of CONSTANTsPawel Chojnacki2017-12-121-6/+10
| * | | | | | | | | | move call_measurement_enabled? method to the bottom of the filePawel Chojnacki2017-12-121-11/+11
| * | | | | | | | | | Use AtomicFixNum to implement CAS isolated cache update.Pawel Chojnacki2017-12-121-10/+7
| * | | | | | | | | | Implemente measurement enabled cache using AtomicReferencePawel Chojnacki2017-12-121-18/+13
| * | | | | | | | | | Set cache expire only once the cache is filled,Pawel Chojnacki2017-12-121-1/+4
| * | | | | | | | | | Implement simple in memory cache that expires after 5 minutesPawel Chojnacki2017-12-121-7/+19
| * | | | | | | | | | Cache feature check for 5 minutes for MethodCall instrumentation togglePawel Chojnacki2017-12-121-1/+3
* | | | | | | | | | | Merge branch 'add-tcp-check-rake-task' into 'master'Rémy Coutable2017-12-131-0/+45
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / |/| | | | | | | | | |
| * | | | | | | | | | Add a gitlab:tcp_check rake taskNick Thomas2017-12-131-0/+45
* | | | | | | | | | | Merge branch 'tmlee/gitlab-ce-28004-consider-refactoring-member-view-by-using...Robert Speicher2017-12-121-1/+1
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | Present member collection at the controller leveltmlee/gitlab-ce-28004-consider-refactoring-member-view-by-using-presenterRémy Coutable2017-12-121-1/+1
* | | | | | | | | | | | Merge branch 'zj-memoization-mr-commits' into 'master'Sean McGivern2017-12-122-5/+17
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / |/| | | | | | | | | | |
| * | | | | | | | | | | Use memoization for commits on diffsZeger-Jan van de Weg2017-12-122-5/+17
* | | | | | | | | | | | Merge branch 'repo-write-ref-client-prep' into 'master'Robert Speicher2017-12-121-3/+8
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / / |/| | | | | | | | | | |
| * | | | | | | | | | | Move Repository#write_ref to Git::Repository#write_refrepo-write-ref-client-prepKim "BKC" Carlbäcker2017-12-121-3/+8