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-09-20Add latest changes from gitlab-org/gitlab@15-4-stable-eev15.4.0-rc42GitLab Bot
2022-08-26Add latest changes from gitlab-org/security/gitlab@15-3-stable-eeGitLab Bot
2022-08-18Add latest changes from gitlab-org/gitlab@15-3-stable-eev15.3.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-04-27Add latest changes from gitlab-org/security/gitlab@13-11-stable-eeGitLab Bot
2021-04-21Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot
2020-12-17Add latest changes from gitlab-org/gitlab@13-7-stable-eev13.7.0-rc42GitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-06-23Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot
2020-05-20Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot
2020-03-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-16Add latest changes from gitlab-org/gitlab@masterogolowinski-master-patch-80898GitLab Bot
2019-10-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-22JwtController avoids activating session checksJames Edwards-Jones
This used without a session and issues a sessionless token, so we should avoid causing access checks based on the session.
2019-04-15Added write_repository scope for personal access tokenHoratiu Eugen Vlad
2018-12-19Update specs to rails5 formatblackst0ne
Updates specs to use new rails5 format. The old format: `get :show, { some: params }, { some: headers }` The new format: `get :show, params: { some: params }, headers: { some: headers }`
2018-12-16Fix deprecation: Comparing equality between ActionController::Parameters and ↵Jasper Maes
a Hash is deprecated
2018-08-01Support multiple scopes when using authing container registry scopesKamil Trzciński
2017-11-23Allow password authentication to be disabled entirelyMarkus Koller
2017-10-20Refactor `have_http_status` into `have_gitlab_http_status` in the specsJacopo
2017-08-22Hide read_registry scope when registry is disabled on instanceRobin Bobbitt
2017-07-13Fixes needed when GitLab sign-in is not enabledRobin Bobbitt
When sign-in is disabled: - skip password expiration checks - prevent password reset requests - don’t show Password tab in User Settings - don’t allow login with username/password for Git over HTTP requests - render 404 on requests to Profiles::PasswordsController
2017-06-14Correct RSpec/SingleLineHook cop offensesRobert Speicher
2017-06-08Instruct user to use a personal access token for Git over HTTPRobin Bobbitt
If internal auth is disabled and LDAP is not configured on the instance, present the user with a message to create a personal access token if his Git over HTTP auth attempt fails.
2017-06-06Fix test failuresZ.J. van de Weg
2017-06-05Create read_registry scope with JWT authZ.J. van de Weg
This is the first commit doing mainly 3 things: 1. create a new scope and allow users to use it 2. Have the JWTController respond correctly on this 3. Updates documentation to suggest usage of PATs There is one gotcha, there will be no support for impersonation tokens, as this seems not needed. Fixes gitlab-org/gitlab-ce#19219
2016-11-09Merge branch 'unauthenticated-container-registry-access' into 'security'Alejandro Rodriguez
Restore unauthenticated access to public container registries Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/24284 See merge request !2025 Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-09-27Be nice to Docker Clients talking to JWT/authKamil Trzcinski
2016-09-16Added builds_spec and git_http_specsKamil Trzcinski
2016-09-15Fix specs after merging LFS changesKamil Trzcinski
2016-09-15Fix existing authorization specsKamil Trzcinski
2016-09-01Project tools visibility levelFelipe Artur
2016-06-27Use HTTP matchers if possibleZ.J. van de Weg
2016-06-10Improve Gitlab::Auth method namesJacob Vosmaer
Auth.find was a very generic name for a very specific method. Auth.find_in_gitlab_or_ldap was inaccurate in GitLab EE where it also looks in Kerberos.
2016-06-06Fix testsJacob Vosmaer
2016-05-23Fix the CI login to Container Registry (the gitlab-ci-token user)Kamil Trzcinski
2016-05-15Update JwtController specsKamil Trzcinski
2016-05-15Added specs for JwtControllerKamil Trzcinski