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
path: root/spec
AgeCommit message (Collapse)Author
2018-01-04Merge branch 'osw-introduce-merge-request-statistics' into 'master'Sean McGivern
Improve closed/merged events queries performance on Projects::MergeRequestsController#show.json See merge request gitlab-org/gitlab-ce!15642
2018-01-04Merge branch '41054-disable-creation-of-new-kubernetes-integrations' into ↵Kamil Trzciński
'master' 41054-Disallow creation of new Kubernetes integrations Closes #41054 See merge request gitlab-org/gitlab-ce!16017
2018-01-0441054-Disallow creation of new Kubernetes integrationsMayra Cabrera
2018-01-04Resolve "Resizable file list and commit panel"Tim Zallmann
2018-01-04Merge branch 'use-heredoc-for-keys' into 'master'Grzegorz Bizon
Use heredoc for long strings so it's easier to read See merge request gitlab-org/gitlab-ce!16179
2018-01-04Merge branch ↵Grzegorz Bizon
'rd-api-request-to-edit-wiki-page-fails-when-project-belongs-to-group' into 'master' Fix API endpoints to edit wiki pages where project belongs to a group Closes #40453 See merge request gitlab-org/gitlab-ce!16170
2018-01-04Avoid leaving a push event empty if payload cannot be createdStan Hu
If the payload cannot be created for some reason, we could be left with a nil push event payload, which causes Error 500s when viewing the dashboard. Guard against this error and log when it happens. Avoids problems seen in #38823
2018-01-04Move delete_remote_branches from Gitlab::Shell to Gitlab::Git::RepositoryAlejandro Rodríguez
2018-01-04Move push_remote_branches from Gitlab::Shell to Gitlab::Git::RepositoryAlejandro Rodríguez
2018-01-04Backport of methods and components added in EBackport of methods and ↵Filipa Lacerda
components added in EEE
2018-01-03fix issue #37843Danny
2018-01-03Make DeleteConflictingRedirectRoutes no-opMichael Kozono
Both the post-deploy and background migration.
2018-01-03Merge branch 'da-handle-hashed-storage-repos-using-repo-import-task' into ↵Robert Speicher
'master' Handle GitLab hashed storage repositories using the repo import task Closes #39870 See merge request gitlab-org/gitlab-ce!16027
2018-01-03Merge branch 'fix/move-2fa-disable-button' into 'master'Robert Speicher
Move 2FA disable button #35836 Closes #35836 See merge request gitlab-org/gitlab-ce!16177
2018-01-03Expose project_id on /api/v4/pages/domainsLuc Didry
2018-01-03Move 2FA disable buttonGeorge Tsiolis
- Removed disable button from /profile/account - Added disable button to /profile/two_factor_auth - Changed 2FA breadcrumb from 'User Settings > Account > Account' to 'User Settings > Account > Two-Factor Authentication'
2018-01-03Refactoring Gitlab::BareRepositoryImport::RepositoryDouglas Barbosa Alexandre
2018-01-03Remove unused variable from bare repository importer specDouglas Barbosa Alexandre
2018-01-03Refactoring spec for Gitlab::BareRepositoryImport::RepositoryDouglas Barbosa Alexandre
2018-01-03Fix Repository#processable? to allow .git repos in the root folderDouglas Barbosa Alexandre
2018-01-03Add spec for Project#write_repository_configDouglas Barbosa Alexandre
2018-01-03Refactoring Project#write_repository_configDouglas Barbosa Alexandre
2018-01-03Fix TestEnv.copy_repo to use disk_path instead of full_pathDouglas Barbosa Alexandre
2018-01-03Import directory tree created with hashed storage using import rake taskDouglas Barbosa Alexandre
2018-01-03Write project full path to .git/config when migrating legacy storageDouglas Barbosa Alexandre
2018-01-03Update project full path in .git/config when renaming namespaceDouglas Barbosa Alexandre
2018-01-03Update project full path in .git/config when transfering a projectDouglas Barbosa Alexandre
2018-01-03Update project full path in .git/config when renaming a repositoryDouglas Barbosa Alexandre
2018-01-03Write project full path to .git/config when creating projectsDouglas Barbosa Alexandre
We'd need to keep track of project full path otherwise directory tree created with hashed storage enabled cannot be usefully imported using the import rake task.
2018-01-03Merge branch 'sh-optimize-commit-stats' into 'master'Robert Speicher
Speed up generation of commit stats by using Rugged native methods See merge request gitlab-org/gitlab-ce!16186
2018-01-03Merge branch 'migrate-fork-repo-to-gitaly' into 'master'Robert Speicher
Migrate repo forking to Gitaly Closes gitaly#825 See merge request gitlab-org/gitlab-ce!16018
2018-01-03Merge branch '34534-switch-to-axios' into 'master'Filipa Lacerda
Switch some bundles to use Axios Closes #41043 See merge request gitlab-org/gitlab-ce!15951
2018-01-03Merge branch '41424-gitlab-rake-gitlab-import-repos-schedules-an-import' ↵Douwe Maan
into 'master' Resolve "gitlab-rake gitlab:import:repos schedules an import" Closes #41424 See merge request gitlab-org/gitlab-ce!16115
2018-01-03Fix import project url not updating project nameJose Ivan Vargas
2018-01-03Use heredoc for long strings so it's easier to readLin Jen-Shin
2018-01-03Better EnglishJacob Vosmaer
2018-01-03Use a background migration for issues.closed_atYorick Peterse
In a previous attempt (rolled back in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/16021) we tried to migrate `issues.closed_at` from timestamp to timestamptz using a regular migration. This has a bad impact on GitLab.com and as such was rolled back. This commit re-implements the original migrations using generic background migrations, allowing us to still migrate the data in a single release but without a negative impact on availability. To ensure the database schema is up to date the background migrations are performed inline in development and test environments. We also make sure to not migrate that that doesn't need migrating in the first place or has already been migrated.
2018-01-03Handle Gitaly aborted merge due to branch updateJacob Vosmaer
2018-01-03Multi File Editor File iconsTim Zallmann
2018-01-03Merge branch 'jprovazn-search-issues' into 'master'Sean McGivern
Skip projects filter on issues search See merge request gitlab-org/gitlab-ce!16117
2018-01-03Merge branch 'gitaly-conflict-resolver' into 'master'Grzegorz Bizon
Gitaly conflict resolver Closes gitaly#813 See merge request gitlab-org/gitlab-ce!15755
2018-01-03refactor code to use new import typeJames Lopez
2018-01-03Speed up generation of commit stats by using Rugged native methodsStan Hu
The previous implementation iterated across the entire patch set to determine the number of lines added, deleted, and changed. Rugged has a native method `Rugged::Diff#stat` that does this already, which appears to be a little faster and require less RAM than doing this ourselves. Improves performance in #41524
2018-01-03Fix API endpoints to edit wiki pages where project belongs to a groupRubén Dávila
In some cases is prefered to manually create a ProjectWiki over using Project#wiki. This is because Project#wiki always uses the #owner (which is a User sometimes) as the author of the wiki changes but sometimes the owner is a Group and it doesn't respond to #username
2018-01-03Switch boards to AxiosEric Eastwood
2018-01-03Switch blob/notebook to AxiosEric Eastwood
2018-01-03Switch vue_merge_request_widget to AxiosEric Eastwood
2018-01-03Switch issue_show to AxiosEric Eastwood
2018-01-03Fixes spec failures due to not returning metrics for MRs other than ↵Oswaldo Ferreira
closed/merged
2018-01-02Cache merged and closed events data in merge_request_metrics tableOswaldo Ferreira