Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-02-01Track and act upon the number of executed queriesYorick Peterse
This ensures that we have more visibility in the number of SQL queries that are executed in web requests. The current threshold is hardcoded to 100 as we will rarely (maybe once or twice) change it. In production and development we use Sentry if enabled, in the test environment we raise an error. This feature is also only enabled in production/staging when running on GitLab.com as it's not very useful to other users.
2018-01-11Adds Rubocop rule for line break around conditionals🙈 jacopo beschi 🙉
2017-08-31API: Use defined project requirementsRobert Schilling
2017-05-31Introduce source to pipeline entityKamil Trzcinski
2017-05-02Improve documentationShinya Maeda
2017-05-02Add constant as ALLOWED_INDEXED_COLUMNSShinya Maeda
2017-05-02Use HasStatus::AVAILABLE_STATUSES instead of hard codingShinya Maeda
2017-05-02Revert "Use JSON type for sorting parameter (halfway)"Shinya Maeda
This reverts commit 34127cb13ad72f65a24bdc8fc051363d3edd77cb.
2017-05-02Use JSON type for sorting parameter (halfway)Shinya Maeda
2017-05-02No need to support sha for sortingShinya Maeda
2017-05-02Reduce playable columns for sortingShinya Maeda
2017-05-02Add name(User)Shinya Maeda
2017-05-02Fix how to use PipelinesFinderShinya Maeda
2017-05-02%[] to %w[]Shinya Maeda
2017-05-02%w() to %[]Shinya Maeda
2017-05-02Fix rubocop offences and rspec failuresShinya Maeda
2017-05-02Add specs. Plus, minor fixes.Shinya Maeda
2017-05-02Fixed those points.Shinya Maeda
- username to user_id - Drop duration - Resolve comments - Add Changelog - Edit docs
2017-05-02- Add new parameters for Pipeline APIShinya Maeda
- Expand PipelinesFinder functions
2017-03-16Add `requirements: { id: %r{[^/]+} }` for all projects and groups namespaced ↵Rémy Coutable
API routes Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-03-03Expose pipelines as PipelineBasic `projects/:id/pipelines`Toon Claes
The `projects/:id/pipelines` exposed a lot of extra details that are superfluous and it was taking extra resources to fetch them. To get more details about a pipeline, use `projects/:id/pipelines/:pipeline_id`.
2017-02-23Revert "Enable Style/DotPosition"Douwe Maan
This reverts commit e00fb2bdc2090e9cabeb1eb35a2672a882cc96e9. # Conflicts: # .rubocop.yml # .rubocop_todo.yml # lib/gitlab/ci/config/entry/global.rb # lib/gitlab/ci/config/entry/jobs.rb # spec/lib/gitlab/ci/config/entry/factory_spec.rb # spec/lib/gitlab/ci/config/entry/global_spec.rb # spec/lib/gitlab/ci/config/entry/job_spec.rb # spec/lib/gitlab/ci/status/build/factory_spec.rb # spec/lib/gitlab/incoming_email_spec.rb
2017-02-23Revert "Prefer leading style for Style/DotPosition"Douwe Maan
This reverts commit cb10b725c8929b8b4460f89c9d96c773af39ba6b.
2017-02-23Enable Style/WordArrayDouwe Maan
2017-02-23Prefer leading style for Style/DotPositionDouwe Maan
2017-02-23Enable Style/DotPositionDouwe Maan
2017-02-20fixed specs + docsdimitrieh
2016-11-22Merge branch ↵Rémy Coutable
'23532-define-common-helper-for-describe-pagination-params-in-api' into 'master' Add concern for reuse pagination params declaration in API Closes #23532 See merge request !7646
2016-11-22Define common helper for describe pagination params in apiSemyon Pupkov
2016-11-19Add api endpoint for creating a pipelineIdo Leibovich
Add a new endpoint in the new API for creating a new pipeline, and return the details of that pipeline.
2016-09-07Use PipelinesFinder in Pipelines APIZ.J. van de Weg
2016-08-18Add endpoints for pipelinesZ.J. van de Weg