gitlab-qa 12.5.0 → 12.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 412c4beda678caf22263be9c9de6f3cb424752c746a7260f19edba10fc2c3021
|
|
4
|
+
data.tar.gz: 9d468400c0e8bf01b67cb14319b418d61c21fe620a51e71b7ead3c1bbb8dd206
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1395abf5e30f1b80db3ab6ebe6783b36321c561075abcad045bded9992f652b796e99262456c16610695114381d2e41048a884aaaf42e0d9b3d34fbe988f6f6d
|
|
7
|
+
data.tar.gz: 9144b591121316d0c575622a5c1a42066870979ce8f30a92745d1aea5a0253b5e99484a0c401e6a59ec58875c64a58f66315dfad83c588bcc25e21bfb0c90cc3
|
|
@@ -12,8 +12,8 @@ https://gitlab.com/gitlab-org/gitlab-qa/-/compare/v<PREVIOUS_VERSION>...<COMMIT_
|
|
|
12
12
|
|
|
13
13
|
## Post-merge checklist
|
|
14
14
|
|
|
15
|
-
- [ ] In the `pipeline-common` project, [update the GITLAB_QA_VERSION](https://gitlab.com/gitlab-org/quality/pipeline-common/-/blob/master/ci/base.gitlab-ci.yml) and [create a release](https://gitlab.com/gitlab-org/quality/pipeline-common#release-process).
|
|
16
|
-
- [ ]
|
|
15
|
+
- [ ] In the `pipeline-common` project, [update the GITLAB_QA_VERSION](https://gitlab.com/gitlab-org/quality/pipeline-common/-/blob/master/ci/base.gitlab-ci.yml) (make sure to add a `Changelog:` trailer to the commit) and [create a release](https://gitlab.com/gitlab-org/quality/pipeline-common#release-process).
|
|
16
|
+
- [ ] Unless already done by [`renovate-gitlab-bot`](https://gitlab.com/dashboard/merge_requests?scope=all&state=opened&author_username=gitlab-dependency-update-bot&label_name[]=Engineering%20Productivity), in the GitLab project, update the ref for `pipeline-common` in [`.gitlab/ci/qa-common/main.gitlab-ci.yml`](https://gitlab.com/gitlab-org/gitlab/-/blob/master/.gitlab/ci/qa-common/main.gitlab-ci.yml).
|
|
17
17
|
- [ ] Unless already done by [`renovate-gitlab-bot`](https://gitlab.com/dashboard/merge_requests?scope=all&state=opened&author_username=gitlab-dependency-update-bot&label_name[]=Quality), or if you need it sooner, in the GitLab project, update the `gitlab-qa` gem version in [`qa/Gemfile`](https://gitlab.com/gitlab-org/gitlab/-/blob/master/qa/Gemfile) and [`qa/Gemfile.lock`](https://gitlab.com/gitlab-org/gitlab/-/blob/master/qa/Gemfile.lock) (for an example, see: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/117054).
|
|
18
18
|
|
|
19
19
|
/label ~Quality ~"type::maintenance" ~"maintenance::dependency" ~Quality
|
data/Gemfile.lock
CHANGED
|
@@ -9,9 +9,9 @@ module Gitlab
|
|
|
9
9
|
Runtime::Env.require_github_oauth_environment!
|
|
10
10
|
|
|
11
11
|
<<~OMNIBUS
|
|
12
|
-
gitlab_rails['omniauth_enabled'] = true
|
|
13
|
-
gitlab_rails['omniauth_allow_single_sign_on'] = [facebook']
|
|
14
|
-
gitlab_rails['omniauth_block_auto_created_users'] = false
|
|
12
|
+
gitlab_rails['omniauth_enabled'] = true
|
|
13
|
+
gitlab_rails['omniauth_allow_single_sign_on'] = [facebook']
|
|
14
|
+
gitlab_rails['omniauth_block_auto_created_users'] = false
|
|
15
15
|
gitlab_rails['omniauth_providers'] = [
|
|
16
16
|
{
|
|
17
17
|
name: 'facebook',
|
|
@@ -20,8 +20,8 @@ module Gitlab
|
|
|
20
20
|
verify_ssl: false
|
|
21
21
|
}
|
|
22
22
|
];
|
|
23
|
-
letsencrypt['enable'] = false
|
|
24
|
-
external_url '<%= gitlab.address %>'
|
|
23
|
+
letsencrypt['enable'] = false
|
|
24
|
+
external_url '<%= gitlab.address %>'
|
|
25
25
|
OMNIBUS
|
|
26
26
|
end
|
|
27
27
|
end
|
|
@@ -180,7 +180,8 @@ module Gitlab
|
|
|
180
180
|
logger.info("Fetching Docker tags page #{page} from 'gitlab/gitlab-#{edition}' registry")
|
|
181
181
|
response = HttpRequest.make_http_request(
|
|
182
182
|
url: "https://registry.hub.docker.com/v2/namespaces/gitlab/repositories/gitlab-#{edition}/tags?page=#{page}&page_size=#{per_page}",
|
|
183
|
-
fail_on_error: false
|
|
183
|
+
fail_on_error: false,
|
|
184
|
+
params: nil # DockerHub fails with 413 if default {} being passed
|
|
184
185
|
)
|
|
185
186
|
|
|
186
187
|
unless response.code == 200
|
data/lib/gitlab/qa/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitlab-qa
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 12.5.
|
|
4
|
+
version: 12.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GitLab Quality
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-12-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: climate_control
|