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
2021-10-20Add latest changes from gitlab-org/gitlab@14-4-stable-eev14.4.0-rc42GitLab Bot
2021-01-20Add latest changes from gitlab-org/gitlab@13-8-stable-eev13.8.0-rc42Robert Speicher
2020-11-19Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.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-05-20Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot
2020-04-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-16Add latest changes from gitlab-org/gitlab@masterogolowinski-master-patch-80898GitLab Bot
2019-11-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-07-30Explicitly reject non http(s) schemesThong Kuah
Rather than relying on NoMethodError deep inside faraday
2019-07-30Write out sham_rack gemThong Kuah
This means we have one less Net::HTTP monkeypatch. sham_rack cannot handle IPv6 addresses which means it breaks Net::HTTP connections because it monkey-patches Net::HTTP
2019-07-26Add frozen_string_literal to spec/lib (part 1)Thong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-07-25Support Docker OCI imagesStan Hu
Docker Distribution v2.7.0 shipped with OCI support, but our container registry client was not updated to handle the manifest format in the HTTP `Accept` header. As a result, API calls to retrieve a manifest would return with an error, "OCI manifest found, but accept header does not support OCI manifests". This would result in blank fields in the container registry page and prevent tags from being deleted. To fix this, we just need to add `application/vnd.oci.image.manifest.v1+json` to the `Accept` header and configure Faraday to parse the response as JSON. The response structure is the same as the standard Docker Distribution V2 manifest. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/58685 Closes https://gitlab.com/gitlab-org/gitlab-ee/issues/12877
2018-11-01Fix typos in comments and specsGeorge Tsiolis
2017-11-16Update container repository path referenceGrzegorz Bizon
We should allow to use double underscore in the path, and it seems that our container repository path regexp was outdated. See https://github.com/docker/distribution/blob/master/reference/regexp.go
2017-08-25Prevent new / renamed project from using a repository path that already ↵Gabriel Mazetto
exists on disk There are some redundancies in the validation steps, and that is to preserve current error messages behavior Also few specs have to be changed in order to fix madness in validation logic.
2017-08-03Change all `:empty_project` to `:project`Robert Speicher
2017-08-01Ensure all project factories use `:repository` trait or `:empty_project`Robert Speicher
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-05-17Properly handle container registry redirects to fix metadata stored on a S3 ↵Stan Hu
backend The previous behavior would include the Authorization header, which would make fetching an S3 blob fail quietly. Closes #22403 Update sh-fix-container-registry-s3-redirects.yml
2017-04-19Improve container registry repository path specsGrzegorz Bizon
2017-04-18Fix duplicated container repository namesGrzegorz Bizon
2017-04-13Fix registry for projects with uppercases in pathGrzegorz Bizon
2017-04-13Revert "Fix registry for projects with uppercases in path"Grzegorz Bizon
This reverts commit 22726942fe0b6c11c20de070cc9784de12ca2ce6.
2017-04-13Fix registry for projects with uppercases in pathGrzegorz Bizon
2017-04-10Add method that returns location of registry imageGrzegorz Bizon
2017-04-05Remove redundant code from container registry classesGrzegorz Bizon
2017-04-04Swap method names in containe registry path classGrzegorz Bizon
2017-04-03Improve code in container repository path classGrzegorz Bizon
2017-04-03Check registry repository name against regexpGrzegorz Bizon
This regexp is extracted from Docker Distribution 2.4.1 docs, contains additional `/` element that can be a separator of components.
2017-04-03Remove redundant stubs from container image tag specsGrzegorz Bizon
2017-03-31Fix rubocop offense in registry path specsGrzegorz Bizon
2017-03-30Check container repository exists for a given pathGrzegorz Bizon
2017-03-29Use container repository path inside auth serviceGrzegorz Bizon
2017-03-29Make container repository path code more readableGrzegorz Bizon
2017-03-28Implement method matching container repository namesGrzegorz Bizon
2017-03-28Implement container repository path classGrzegorz Bizon
2017-03-24Fix container registry blob specsGrzegorz Bizon
2017-03-24Fix specs for container repository tagsGrzegorz Bizon
2017-03-23Rename container image to repository in specsGrzegorz Bizon
2017-02-22Fixes broken and missing testsAndre Guedes
2016-07-15Explicitly remove authorization token and make sure that invalid addresses ↵Kamil Trzcinski
are properly handled
2016-06-17Fix regression introduced by ↵Kamil Trzcinski
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/4669 When requesting tags a `application/json` is used.
2016-06-15Add support for Docker Registry manifest v1Kamil Trzcinski
2016-05-24Enable RSpec/NotToNot cop and auto-correct offensesRobert Speicher
Also removes the note from the development/testing.md guide