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
2019-03-20Tweak FactoryBot definition for clustersTiger
Only create an associated project or group if there were none already specified.
2019-03-20Add :preparing status to HasStatusTiger
Introduces a new status for builds between :created and :pending that will be used when builds require one or more prerequisite actions to be completed before being picked up by a runner (such as creating Kubernetes resources before deploying). The existing :created > :pending transition is unchanged, so only builds that require preparation will use the :preparing status.
2019-03-13Add attached flag to pipeline entityShinya Maeda
Add spec Fix Fix Add changelog Drop attached Remove attached Update changelog ok
2019-03-13Make all_pipelines method compatible with pipelines for merge requestsShinya Maeda
Make it sane Include merge ref head Fix union Improve a bit Add spec remove add spec Add changelog fix coding offence Apply suggestion to spec/models/merge_request_spec.rb ok ok Fix Fix spec Fix spec fix Simplify the things Memoize OK a
2019-03-12Backports EE change for expanded pipelinesFilipa Lacerda
2019-03-12Enable/disable Auto DevOps at Group levelMayra Cabrera
- Includes instance methods on Group model to detect when a group has AutoDevOps explicitly/implicitly enabled/disabled. - Includes migration to add a new column to namespaces table - Add UI necessary modifications - Add service and controller to update auto devops related instances - Updates project and groups auto devops badges Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/52447
2019-03-01Add suffix for merge request eventShinya Maeda
Fix ok Add spec Fix ok Fix Add changelog Fix Add memoization a fix
2019-03-01Fix inconsistent `branch?` behaviorShinya Maeda
between Ci::Pipeline and Ci::Build Add spec Add more tests ok
2019-02-27Merge branch ↵Kamil Trzciński
'10014-ee-spec-models-ci-build_spec-rb-ee-spec-requests-api-runner_spec-rb-and-ee-spec-services-ci-process_pipeline_service_spec-rb-are-all-failing-ce' into 'master' Revert "Merge branch 'revert-8baf9e5f' into 'master'" See merge request gitlab-org/gitlab-ce!25584
2019-02-27Merge branch '42086-project-fetch-statistics-api-http-only' into 'master'Nick Thomas
Resolve "Project fetch statistics API (HTTP only)" Closes #42086 See merge request gitlab-org/gitlab-ce!23596
2019-02-27Revert "Merge branch 'revert-8baf9e5f' into 'master'"Matija Čupić
This reverts commit f5201a816f2eff9393e16f362403451e5d86ee6c, reversing changes made to 48e6db0dad6f256e8423e0bd6c9b254803f50ccf.
2019-02-27Add project http fetch statistics APIJacopo
The API get projects/:id/traffic/fetches allows user with write access to the repository to get the number of clones for the last 30 days.
2019-02-26Revert "Merge branch '13784-simple-masking-of-protected-variables-in-logs' ↵Kamil Trzciński
into 'master'" This reverts merge request !25293
2019-02-26Merge branch 'add_YouTrack_integration' into 'master'Sean McGivern
Added YouTrack integration Closes #42595 See merge request gitlab-org/gitlab-ce!25361
2019-02-26Add Maskable concern for CI variablesMatija Čupić
This adds a concern that abstracts the concept of masking a variable, including the RegEx for validation.
2019-02-21Remove new_issue_url field from YouTrack integration serviceKotau Yauhen
2019-02-20Remove undigested token column from personal_access_tokens tableImre Farkas
Token column are no longer used as token values are stored digested in token_digest.
2019-02-18Added YouTrack integrationYauhen Kotau
Fixes gitlab-org/gitlab-ce#42595
2019-02-18Rename spec/factories/import_state.rb to spec/factories/import_states.rbRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-02-18Refactor spec/factories/users.rb to allow EE to extend itRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-02-11Merge branch '52424-goodbye-hipchat' into 'master'Douglas Barbosa Alexandre
Remove HipChat integration from GitLab Closes #52424 See merge request gitlab-org/gitlab-ce!22223
2019-02-08Remove HipChat integration from GitLabNick Thomas
2019-02-08Add missing argument to DeploymentService#predefined_variablesJames Fargher
2019-02-06Allow custom squash commit messagesLuke Duncalfe
2019-02-04DB and model changes for Sentry project selection dropdownReuben Pereira
2019-02-01Fix warning already initialized constantSemyon Pupkov
2019-01-31Update Sentry client to get project listReuben Pereira
2019-01-29Add bridge variables trait to the factoryGrzegorz Bizon
2019-01-25Merge branch 'container-repository-cleanup-api' into 'master'Grzegorz Bizon
Container repository cleanup API Closes #55978 See merge request gitlab-org/gitlab-ce!24303
2019-01-25Add Container Registry APIKamil Trzciński
This includes a set of APIs to manipulate container registry. This includes also an ability to delete tags based on requested criteria, like keep-last-n, matching-name, older-than.
2019-01-25Make it possible to pass downstream to bridge factoryGrzegorz Bizon
2019-01-24Enable the Layout/ExtraSpacing copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-22Add domain field into Clusters::ClusterMayra Cabrera
This is the 1st step for moving Auto DevOps domain into cluster settings, whether is project or group. Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/52363
2019-01-15API: Support dots in wiki slugsRobert Schilling
2019-01-10Service for calling Sentry issues apiReuben Pereira
2019-01-07Add table and model for error tracking settingsReuben Pereira
2019-01-06Merge branch 'kamil-refactor-ci-builds-v5' into 'master'Grzegorz Bizon
Use BuildMetadata to store build configuration in JSONB form See merge request gitlab-org/gitlab-ce!21499
2019-01-05Require Knative to be installed only on an RBAC kubernetes clusterChris Baumbauer
2019-01-04Add config_options|variables to BuildMetadataKamil Trzciński
These are data columns that store runtime configuration of build needed to execute it on runner and within pipeline. The definition of this data is that once used, and when no longer needed (due to retry capability) they can be freely removed. They use `jsonb` on PostgreSQL, and `text` on MySQL (due to lacking support for json datatype on old enough version).
2019-01-04Add sequence to release link factoryShinya Maeda
2019-01-04Add frozen_string_literal: trueShinya Maeda
2019-01-04Support CURD operation for release asset linksShinya Maeda
- Add Releases::Links model - Expose it in release API - Add integration tests
2018-12-31Add spec for Release APIShinya Maeda
Add spec for all release API - GET, POST, PUT, DELETE. Also, fixes some minior bugs.
2018-12-31Add releases APIAlessio Caiazza
This commit introduces Releases API under /api/v4/projects/:id/releases * We are introducing release policies at project level. * We are deprecating releases changes from tags, both api and web interface. * Tags::CreateService no longer create a release This feature is controlled by :releases_page feature flag
2018-12-25Use system paths for appearance logosStan Hu
When object storage is enabled, the logos used to customize a GitLab appearance causes the time-limited URLs to be used. We fix this by forcing all of these URLs to use the /uploads/-/system prefix so that they will always be proxied through GitLab. Closes https://gitlab.com/gitlab-org/gitlab-ee/issues/6778
2018-12-20Add image_diff_note_on_merge_request factoryDouwe Maan
2018-12-19Merge branch 'zj-pool-destruction' into 'master'Kamil Trzciński
Leave object pools when destroying projects Closes gitaly#1415 See merge request gitlab-org/gitlab-ce!23869
2018-12-19Leave object pools when destroying projectsZeger-Jan van de Weg
This action doesn't lean on reduplication, so a short call can me made to the Gitaly server to have the object pool remove its remote to the project pending deletion. https://gitlab.com/gitlab-org/gitaly/blob/f6cd55357/internal/git/objectpool/link.go#L58 When an object pool doesn't have members, this would invalidate the need for a pool. So when a project leaves the pool, the pool will be destroyed on the background. Fixes: https://gitlab.com/gitlab-org/gitaly/issues/1415
2018-12-19Backfill project_repositories for legacy storage projectsDouglas Barbosa Alexandre
Adds a background migration that will ensure all projects that are on legacy storage have a row in `project_repositories`.
2018-12-14Merge branch 'ac-releases-name-sha-author' into 'master'Kamil Trzciński
Add name, author and sha to releases See merge request gitlab-org/gitlab-ce!23763