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-18Add latest changes from gitlab-org/gitlab@14-8-stable-eev14.8.0-rc42GitLab Bot
2021-08-19Add latest changes from gitlab-org/gitlab@14-2-stable-eev14.2.0-rc42GitLab Bot
2021-07-20Add latest changes from gitlab-org/gitlab@14-1-stable-eev14.1.0-rc42GitLab Bot
2021-06-16Add latest changes from gitlab-org/gitlab@14-0-stable-eev14.0.0-rc42GitLab Bot
2021-05-19Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42GitLab Bot
2021-04-21Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot
2021-02-18Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42GitLab Bot
2020-12-17Add latest changes from gitlab-org/gitlab@13-7-stable-eev13.7.0-rc42GitLab Bot
2020-10-21Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot
2020-09-01Add latest changes from gitlab-org/security/gitlab@13-3-stable-eeGitLab Bot
2020-08-20Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot
2020-04-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-04-29Port changes for design management to CEBob Van Landuyt
This ports the changes from https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/10462/ to CE
2019-04-04Allow console messages be sent to gitlab-shellAsh McKenzie
Currently a no-op for CE
2019-01-02Move push size check to EE moduleDouwe Maan
# Conflicts: # ee/lib/ee/gitlab/git_access.rb # lib/gitlab/git_access.rb
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-02Skip change access check for deploy keysDouwe Maan
2019-01-02Move magic '_any' string to constantDouwe Maan
2018-10-25Iterating through commit list times outTiago Botelho
Validating each commit on ChangeAccess times out if it already took too long to complete. Improves the TimedLogger specs to not make use of a stubbed class anymore
2018-10-25Refactors TimedLogger to be more OOP compliantTiago Botelho
Adds a #full_message method so that external classes do not have access to the state of the logger. Adds a #append_message to always append to the array in-place
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-22Enable frozen string for lib/gitlab/*.rbgfyoung
2018-09-20Fix SpaceInsidePercentLiteralDelimiters copSemyon Pupkov
2018-09-08Remove Gitlab::GitAccess#authed_via_jwt?Ash McKenzie
Previously overridden in EE but no longer required.
2018-09-06Update /api/v4/allowedAsh McKenzie
- Use proper HTTP codes for /api/v4/allowed response - CustomAction support
2018-09-06GitAccess#check custom action supportAsh McKenzie
- if #check_custom_action!(cmd) returns something, return from #check() - now returns :Gitlab::GitAccessResult::Success.new instead of true
2018-08-14Allow auth via JWT (always false in CE)Ash McKenzie
2018-07-09Backport some changes from EERubén Dávila
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-07Support Deploy Tokens properly without hacking abilitiesKamil Trzciński
2018-04-07Implement 'read_repo' for DeployTokensMayra Cabrera
This will allow to download a repo using the token from the DeployToken
2018-04-06Automatically cleanup stale worktrees and lock files upon a pushStan Hu
git 2.16 will fail badly if there are stale worktrees. Closes #44115
2018-04-05Allow HTTP(s) when git request is made by GitLab CITomasz Maczukin
2018-03-29Merge branch 'dm-deploy-keys-default-user' into 'master'Sean McGivern
Ensure hooks run when a deploy key without a user pushes Closes #44317 See merge request gitlab-org/gitlab-ce!18057
2018-03-28Fall back on ghost user when deploy key user is not setDouwe Maan
2018-03-28Remove permanent redirectsBob Van Landuyt
Removes permanent redirects, this means that redirects will only be possible as long as the old route isn't taken by a new project/group.
2018-02-25Respond 404 when repo does not existMichael Kozono
2018-02-22Fix repo existence check in GitAccessWikiJacob Vosmaer (GitLab)
2018-02-15Only check LFS integrity for first branch in pushJames Edwards-Jones
2018-02-06Check ability ability before proceeding with project specific checksTiago Botelho
2018-02-06Moves project creationg to git access check for git pushTiago Botelho