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
2021-06-16Add latest changes from gitlab-org/gitlab@14-0-stable-eev14.0.0-rc42GitLab Bot
2021-04-21Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot
2021-03-16Add latest changes from gitlab-org/gitlab@13-10-stable-eev13.10.0-rc40GitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-04-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-31Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-23Add 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-04-11Align UrlValidator to validate_url gem implementation.Thong Kuah
Renamed UrlValidator to AddressableUrlValidator to avoid 'url:' naming collision with ActiveModel::Validations::UrlValidator in 'validates' statement. Make use of the options attribute of the parent class ActiveModel::EachValidator. Add more options: allow_nil, allow_blank, message. Renamed 'protocols' option to 'schemes' to match the option naming from UrlValidator.
2018-12-19Update specs to rails5 formatblackst0ne
Updates specs to use new rails5 format. The old format: `get :show, { some: params }, { some: headers }` The new format: `get :show, params: { some: params }, headers: { some: headers }`
2018-12-05Rename project's pipelines relationFrancisco Javier López
2018-06-01Add validation to webhook and service URLs to ensure they are not blocked ↵Francisco Javier López
because of SSRF
2018-01-11Adds Rubocop rule for line break around conditionals🙈 jacopo beschi 🙉
2017-10-20Refactor `have_http_status` into `have_gitlab_http_status` in the specsJacopo
2017-09-05Fix specShinya Maeda
2017-09-05- Allow runner API to pass failure_reasonShinya Maeda
- Fix spec
2017-09-05Fix enum listsShinya Maeda
2017-09-05Implement `failure_reason` on `ci_builds`Shinya Maeda
2017-09-03Fix specShinya Maeda
2017-08-09Enable the Layout/SpaceBeforeBlockBraces copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-05Add test example for external commit status retriesGrzegorz Bizon
2017-06-27Fix head pipeline stored in merge request for external pipelinesKamil Trzcinski
2017-06-14Correct RSpec/SingleLineHook cop offensesRobert Speicher
2017-05-31Introduce source to pipeline entityKamil Trzcinski
2017-05-07Store retried in database for CI buildsKamil Trzcinski
2017-04-21Unnecessary "include WaitForAjax" and "include ApiHelpers"Jacopo
Removed all the unnecessary include of `WaitForAjax` and `ApiHelpers` in the specs. Removed unnecessary usage of `api:true`
2017-03-01Fix Rubocop offenses in commit status API specsGrzegorz Bizon
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-20Remove shared example for paginationRobert Schilling
2017-02-17Merge branch 'fix/gb/pipeline-retry-builds-started' into 'master' Kamil Trzciński
Make pipeline retry take stages order into account Closes #27431, #23710, and #26551 See merge request !9021
2017-02-17Merge branch 'master' into fix/gb/pipeline-retry-builds-startedGrzegorz Bizon
* master: (313 commits) Allow slashes in slash command arguments Add API endpoint to get all milestone merge requests remove trailing comma Restore pagination to admin abuse reports replace deprecated NoErrorsPlugin with NoEmitOnErrorsPlugin only compress assets in production Reduce number of pipelines created to test pagination add CHANGELOG.md entry for !8761 prevent diff unfolding link from appearing for deleted files fix build failures only show diff unfolding link if there are more lines to show fix typo in node section Only yield valid references in ReferenceFilter.references_in Cache js selectors; fix css move "Install node modules" step before "Migrate DB" within update process Renders pagination again for pipelines table update migration docs for 8.17 to include minimum node version Add CHANGELOG file Fix positioning of top scroll button Remove comments in migration ...
2017-02-16Add a custom pagination matcherRobert Schilling
2017-02-14Make it possible to pass coverage value to commit status APIwendy0402
2017-02-13Skip job only when canceling the pipeline it belongs toGrzegorz Bizon
2017-01-27Use `:empty_project` where possible in request specsRobert Speicher
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.
2017-01-18Add URL validations for generic commit statusesGrzegorz Bizon
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-09adds second batch of tests changed to active tensetiagonbotelho
2016-07-01Enable Style/EmptyLines cop, remove redundant onesGrzegorz Bizon
2016-06-27Use HTTP matchers if possibleZ.J. van de Weg
2016-06-03Rename remaining ci_commits in specsKamil Trzcinski
2016-06-03Rename Ci::Build commit to pipelineKamil 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>