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
2017-12-03Test new artifacts for pages deployZeger-Jan van de Weg
2017-09-05Use script_failure. Add runner_system_failure. Improve spec.Shinya Maeda
2017-09-05Fix enum listsShinya Maeda
2017-09-05Fix enum wordingShinya Maeda
2017-09-05Implement `failure_reason` on `ci_builds`Shinya Maeda
2017-08-31`current_application_settings` belongs on `Gitlab::CurrentSettings`Sean McGivern
The initializers including this were doing so at the top level, so every object loaded after them had a `current_application_settings` method. However, if someone had rack-attack enabled (which was loaded before these initializers), it would try to load the API, and fail, because `Gitlab::CurrentSettings` didn't have that method. To fix this: 1. Don't include `Gitlab::CurrentSettings` at the top level. We do not need `Object.new.current_application_settings` to work. 2. Make `Gitlab::CurrentSettings` explicitly `extend self`, as we already use it like that in several places. 3. Change the initializers to use that new form.
2017-08-10Fix wrong method call on prometheus histogramZ.J. van de Weg
2017-07-31Add two more metrics for CI/CDZ.J. van de Weg
As its hard right now to determine what is a good metric and whats not, these two are not listed in the docs, nor will they get a CHANGELOG entry.
2017-07-26Refactor max_size method in update pages serviceGrzegorz Bizon
As per review feedback https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/13072#note_35853177
2017-07-25Handle maximum pages artifacts size correctlyGrzegorz Bizon
2017-06-29Perform unzip quietly in UpdatePagesServiceRobert Speicher
Closes https://gitlab.com/gitlab-org/gitlab-ee/issues/225
2017-03-31Log errors in UpdatePagesServiceDanilo Bargen
2017-03-06Delete artifacts for pages unless expiry date is specifiedKamil Trzcinski
2017-02-23Enable Style/MutableConstantDouwe Maan
2017-02-02Fix constant resolution in UpdatePagesServiceSean McGivern
There is now a `Projects::Settings` module, for the members controller. Ensure that we get the actual settings, not that module.
2017-02-01Fix GitLab Pages test failuresKamil Trzcinski
2017-02-01Fixed Rubocop deprecation warningsYorick Peterse
2017-02-01Fix EE specs after ci_commit rename to pipelineKamil Trzcinski
2017-02-01pages: Fix "undefined local variable or method `total_size'" when maximum ↵Nick Thomas
page size is exceeded
2017-02-01Updated according to commentsKamil Trzcinski
2017-02-01Pages domain model specsKamil Trzcinski
2017-02-01Added support for zip archives in pagesKamil Trzcinski
The ZIP archive size is calculated from artifacts metadata that should get uploaded for new artifacts
2017-02-01Move most of PagesWorker logic UpdatePagesServiceKamil Trzcinski