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
2023-11-14Add latest changes from gitlab-org/gitlab@16-6-stable-eev16.6.0-rc42GitLab Bot
2023-10-19Add latest changes from gitlab-org/gitlab@16-5-stable-eev16.5.0-rc42GitLab Bot
2023-07-19Add latest changes from gitlab-org/gitlab@16-2-stable-eev16.2.0-rc42GitLab Bot
2023-01-18Add latest changes from gitlab-org/gitlab@15-8-stable-eev15.8.0-rc42GitLab Bot
2022-10-20Add latest changes from gitlab-org/gitlab@15-5-stable-eev15.5.0-rc42GitLab Bot
2022-05-19Add latest changes from gitlab-org/gitlab@15-0-stable-eev15.0.0-rc42GitLab Bot
2022-03-18Add latest changes from gitlab-org/gitlab@14-9-stable-eev14.9.0-rc42GitLab Bot
2022-02-18Add latest changes from gitlab-org/gitlab@14-8-stable-eev14.8.0-rc42GitLab Bot
2021-11-18Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42GitLab Bot
2021-10-20Add latest changes from gitlab-org/gitlab@14-4-stable-eev14.4.0-rc42GitLab Bot
2021-09-01Add latest changes from gitlab-org/gitlab@14-2-stable-eeGitLab Bot
2021-05-19Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.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-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
2019-11-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add 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-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-10-07Enable more frozen string in lib/**/*.rbgfyoung
Enables frozen for the following: * lib/*.rb * lib/banzai/**/*.rb * lib/bitbucket/**/*.rb * lib/constraints/**/*.rb * lib/container_registry/**/*.rb * lib/declarative_policy/**/*.rb Partially addresses #47424.
2018-03-16Setup Faraday middleware before adapterLin Jen-Shin
This eliminate the warnings: WARNING: Unexpected middleware set after the adapter. This won't be supported from Faraday 1.0.
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-02-23Enable Style/MutableConstantDouwe Maan
2016-07-15Make rubocop happyKamil Trzcinski
2016-07-15Explicitly remove authorization token and make sure that invalid addresses ↵Kamil Trzcinski
are properly handled
2016-07-15Allow blob to be redirectedKamil Trzcinski
2016-06-17Use response_bodyKamil Trzcinski
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-17Provide full test coverage to lib/container_registry API implementationKamil Trzcinski
2016-05-12Fix CI testsKamil Trzcinski
2016-05-09Added Docker Registry View testsKamil Trzcinski
2016-05-09Fix review commentsKamil Trzcinski
2016-05-09Rename ImageRegistry to ContainerRegistryKamil Trzcinski