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-12-17Add latest changes from gitlab-org/gitlab@13-7-stable-eev13.7.0-rc42GitLab Bot
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-08-20Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot
2020-03-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-03Fix cycle analytics seed scriptAdam Hegyi
2019-08-30Add production fixture to create projectReuben Pereira
Since migrations are not run by new instances, add a production fixture that should ensure that the self-monitoring project is created for new instances as well.
2019-08-21Add service classes for mutating AwardEmojiLuke Duncalfe
Adding, destroying and toggling emoji previously lacked services and instead were performed through methods called on Awardable models. This led to inconsistencies where relevant todos would be marked as done only when emoji were awarded through our controllers, but not through the API. Todos could also be marked as done when an emoji was being removed. Behaviour changes - Awarding emoji through the API will now mark a relevant Todo as done - Toggling an emoji off (destroying it) through our controllers will no longer mark a relevant Todo as done Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/63372
2019-08-20Removed security fixtures as they are ee onlyCameron Swords
These will be moved to the EE codebase.
2019-07-22CE pipelines don't respond to sourced_pipelinesRobert Speicher
We also scope the `rescue`s to only those raised by ActiveRecord, which would have allowed us to spot this logic error sooner.
2019-07-22CE-EE parity for pipelines development fixtureRobert Speicher
2019-07-10Rename Gitlab::Importers moduleRyan Cobb
In order to avoid confusion between Gitlab::Importers module and other like named modules, this renamed it to Gitlab::DatabaseImporters.
2019-07-10Remove CommonMetricsImporter patchRyan Cobb
Remove CommonMetricsImporter patch and change all references to CommonMetrics::Importer. Move specs into their appropriate folders. Also cleans up some common_metric importer namespacing.
2019-07-04Fix call to removed GitPushServiceMarkus Koller
2019-06-27db.fixtures: use print instead of putseyjhbb@gmail.com
2019-04-23Provide a new gitlab:seed:issues taskRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-04-10Fix ApplicationSetting development seedRémy Coutable
It could happen that there's a cached (in Redis) ApplicationSetting record, and calling `Gitlab::CurrentSettings.current_application_settings` only returns it instead of creating a new DB record, which makes the `ApplicationSetting.current_without_cache.update!` call fail. Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-04-09[CE] Support multiple assignees for merge requestsOswaldo Ferreira
Backports https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/10161 (code out of ee/ folder).
2019-04-04Fix race cond. in ApplicationSettingImplementation.create_from_defaultsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-03-26Add seed for personal access tokenSanad Liaquat
2019-03-12Add labels to seeded issues and merge requestsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-14Ignore Repository::AmbiguousRefError in db/fixtures/developmentRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-09Merge branch 'elastic-test-repos-ce' into 'master'Nick Thomas
Backport of elastic-test-repos from EE See merge request gitlab-org/gitlab-ce!24200
2019-01-09Backport of elastic-test-repos from EEMario de la Ossa
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).
2018-12-26Add new line and commentsShinya Maeda
2018-12-26Fix the seeder 24_forks.rb cannot find public projectShinya Maeda
2018-12-18Enable Hashed Storage by default in development mode via seed_fuGabriel Mazetto
2018-12-07Merge branch 'fix-broken-seeder-11.6' into 'master'Stan Hu
Fix broken seeder 11.6 Closes #54949 See merge request gitlab-org/gitlab-ce!23608