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
2022-02-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-01-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-09-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-08-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-07-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-07-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-06-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-06-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-06-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-06-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-05-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-01-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-12-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-12-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-12-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-06-19Add documentation and testsManoj MJ
This commit adds - feature specs - to test the ability of a user with "developer" permission to delete tags in repositories. - documentation
2019-01-31[master] Check access rights when creating/updating ProtectedRefsFrancisco Javier López
2019-01-02Don't run single change checks when changes are unknownDouwe Maan
When the `changes` passed to `GitAccess` are the literal string `_any`, which indicates that this is a pre-authorization check, we now check whether the user can push to any branch in the project in question, instead of running the per-change check with `oldrev` `_any`, `newrev` `nil`, and `ref` `nil`.
2019-01-02Move magic '_any' string to constantDouwe Maan
2018-12-28Skip per-commit validations which have already passed on another change/branchFrancisco Javier López
2018-10-25Adds tracing messages for slow git pushesTiago Botelho
Whenever a git push takes more than 50 seconds the user will receive a trace from each check performed along with their timings
2018-10-02Remove Gitlab::Git::Repository#rugged and Gollum codeAlejandro Rodríguez
Cleanup code, and refactor tests that still use Rugged. After this, there should be no Rugged code that access the instance's repositories on non-test environments. There is still some rugged code for other tasks like the repository import task, but since it doesn't access any repository storage path it can stay.
2018-07-12Remove Repository#path memoizationJacob Vosmaer (GitLab)
2018-07-11Resolve "Rename the `Master` role to `Maintainer`" BackendMark Chao
2018-07-09Backport some changes from EERubén Dávila
2018-06-19Eliminate N+1 queries in LFS file locks checks during a pushStan Hu
This significantly improves performance when a user pushes many references. project.path_locks.any? doesn't cache the output and runs `SELECT 1 AS one FROM "path_locks" WHERE project_id = N` each time. When there are thousands of refs being pushed, this can time out the unicorn worker. CE port for https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/6159.
2018-06-05Find and mark more Git disk access locationsJacob Vosmaer (GitLab)
2018-05-24Add username to terms message in git and API callsBob Van Landuyt
This will make it clearer to users which account is being used to make the API/git call. So they know which account needs to be used to accept the terms. Closes #46649
2018-05-11Allow triggered builds git accessBob Van Landuyt
Allow builds that have been triggered by a user before terms were enforced access to git. That way the builds can complete as usual.
2018-05-10Block access to API & git when terms are enforcedBob Van Landuyt
When terms are enforced, but the user has not accepted the terms access to the API & git is rejected with a message directing the user to the web app to accept the terms.
2018-04-07Increase test suite around deploy tokens behaviorMayra Cabrera
Also, fixes broken specs
2018-04-07Include ProjectDeployTokensMayra Cabrera
Also: - Changes scopes from serializer to use boolean columns - Fixes broken specs