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
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-06-18Add 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-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
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
2019-04-01Add # frozen_string_literal to spec/modelsThong Kuah
Adds `# frozen_string_literal: true` to spec/models ruby files
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-01Ensure all project factories use `:repository` trait or `:empty_project`Robert Speicher
2017-04-13Sanitize container repository path in model classGrzegorz Bizon
2017-04-10Improve test examples for container repository classGrzegorz Bizon
2017-04-10Add method that returns a registry repository locationGrzegorz Bizon
2017-04-06Fix indexes in container repositories tableGrzegorz Bizon
2017-04-04Remove legacy registry tags when deleting a projectGrzegorz Bizon
2017-04-03Simplify container repository build method specsGrzegorz Bizon
2017-04-03Ensure root container repository when visiting registryGrzegorz Bizon
Root container repository is a images repository that had been created before 9.1, before we introduced multi-level images support.
2017-04-03Validate uniqueness of container repository nameGrzegorz Bizon
2017-04-03Add missing test example for container repository tagsGrzegorz Bizon
2017-03-31Add specs for container repository factory methodGrzegorz Bizon
2017-03-31Improve code related to removing container image tagsGrzegorz Bizon
2017-03-27Add a few pending specs for container repositoryGrzegorz Bizon
2017-03-23Fix Rubocop offenses in container repository codeGrzegorz Bizon
2017-03-23Fix specs for container repository model classGrzegorz Bizon