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
2020-11-19Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42GitLab Bot
2020-10-21Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot
2020-09-19Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-01-31Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-07-23Add specs for specifying pipeline behaviorMatija Čupić
Adds specs for testing the new behavior of specifying a pipeline when POSTing a status.
2019-07-17Multiple pipeline support for Build statusGaetan Semet
This allows user to specify the pipeline ID when several pipelines has been triggered on the same branch and commit. Signed-off-by: Gaetan Semet <gaetan.semet@renault.com>
2018-12-13Fix deprecation: Passing ActiveRecord::Base objects to ↵Jasper Maes
sanitize_sql_hash_for_assignment
2018-12-05Rename project's pipelines relationFrancisco Javier López
2018-11-28Fix API::Namespaces to accept namepaces with dotsImre Farkas
It also renames the API::PROJECT_ENDPOINT_REQUIREMENTS constant to API::NAMESPACE_OR_PROJECT_REQUIREMENTS
2018-09-30Enable frozen string in lib/api and lib/backupgfyoung
Partially addresses #47424. Had to make changes to spec files because stubbing methods on frozen objects is a mess in RSpec and leads to failures: https://github.com/rspec/rspec-mocks/issues/1190
2018-09-11Disable existing offenses for the CodeReuse copsYorick Peterse
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
2017-09-05Fix enum listsShinya Maeda
2017-09-05Fix enum wordingShinya Maeda
2017-09-05Implement `failure_reason` on `ci_builds`Shinya Maeda
2017-09-03Fix specShinya Maeda
2017-08-31API: Use defined project requirementsRobert Schilling
2017-06-27Fix head pipeline stored in merge request for external pipelinesKamil Trzcinski
2017-05-31Introduce source to pipeline entityKamil Trzcinski
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-01Fix updaing commit status with optional attributesGrzegorz Bizon
Passing different optional attributes in case of updating an existing commit status should not create a new commit status with the same name.
2017-02-23Enable Style/WordArrayDouwe Maan
2017-02-14Make it possible to pass coverage value to commit status APIwendy0402
2017-01-18Respond with validation errors in commit status APIGrzegorz Bizon
If validation errors are present, include validation errors in the commit status API payload, instead of depending on state machine errors caused by invalid record.
2016-12-04Use the pagination helper in the APIRobert Schilling
2016-11-24Don't convert data which already is the target typeRobert Schilling
2016-10-20Don't use Hash#slice since it's not supported in Ruby 2.1Rémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-10-19Grapify the commit status APIRobert Schilling
2016-09-12Fix an error where we were unable to create a CommitStatus for running stateKamil Trzcinski
2016-08-11Reverse ref and sha in args and rename pipeline to pipeline_forLin Jen-Shin
2016-07-20Replace parse_boolean with to_booleanRobert Schilling
2016-07-15Track a user who created a pipelineKamil Trzcinski
2016-06-03Rename all ci_commit[s] in application code to pipeline[s]Kamil Trzcinski
2016-06-03Fix other places where we still use commit attribute of BuildKamil Trzcinski
2016-06-03Use pipelines in context of ProjectKamil Trzcinski
2016-06-02Rename Ci::Commit to Ci::Pipeline and rename some of the ci_commit to pipelineKamil Trzcinski
2016-05-10Fix a few places where autoloading would failRémy Coutable
- Fix naming of API::CommitStatuses - Ensure we use require_dependency instead of require - Ensure the namespace is right in lib/api/api.rb, otherwise, we might require Grape::API::Helpers which defines the `#params` method. This is to avoid requiring a file multiple times and getting an "Already initialized constant" error. Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-04-16Write specs for this featureKamil Trzcinski
2016-04-12Fix specsKamil Trzcinski
2016-04-12Use Ci::Commit as PipelineKamil Trzcinski
2016-03-01Check if commit exists first in commit status APIGrzegorz Bizon
2016-02-29Return empty array when commit has no statuses in APIGrzegorz Bizon
This makes API endpoint for Commit Statuses return empty array instead of 404 when commit exists, but has no statuses. Closes #3080
2016-02-02Make the CI permission model simplerKamil Trzcinski
This MR simplifies CI permission model: - read_build: allows to read a list of builds, artifacts and trace - update_build: allows to cancel and retry builds - create_build: allows to create builds from gitlab-ci.yml (not yet implemented) - admin_build: allows to manage triggers, runners and variables - read_commit_status: allows to read a list of commit statuses (including the overall of builds) - create_commit_status: allows to create a new commit status using API Remove all extra methods to manage permission. Made all controllers to use explicitly the new permissions.
2015-12-11Migrate CI::Project to ProjectKamil Trzcinski
2015-10-12Fix broken testsKamil Trzcinski
2015-10-12Update renderingKamil Trzcinski
2015-10-12Small bug fixesKamil Trzcinski