gitlab-qa 12.5.0 → 12.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 886c387d7119bbeaff903a9396e315d79563805e6582a9d479cb0d827cc3526d
4
- data.tar.gz: e0a58c2a59421fbb55ba7d64613dc8240368af30e544a6d573f0ef64baf81f0b
3
+ metadata.gz: 412c4beda678caf22263be9c9de6f3cb424752c746a7260f19edba10fc2c3021
4
+ data.tar.gz: 9d468400c0e8bf01b67cb14319b418d61c21fe620a51e71b7ead3c1bbb8dd206
5
5
  SHA512:
6
- metadata.gz: 0b61da0814b8ce32f7fadc0f7dac3aaeb1beb280d64bbd051cae5027d3c94942977b3dae19833f4e516b9aff7e084eb3d2acb239783f33eecb64b2eed11d7ab7
7
- data.tar.gz: 0ee1817892437a9157cd90ea1139040b171df703c8d4c4733287eb09c6b0c86aa8fa10cb412bd387f2e34606319399b1e09190259d2eddef0e9078b9fd5bddf3
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
- - [ ] 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).
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gitlab-qa (12.5.0)
4
+ gitlab-qa (12.5.1)
5
5
  activesupport (>= 6.1, < 7.1)
6
6
  gitlab (~> 4.19)
7
7
  http (~> 5.0)
@@ -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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Gitlab
4
4
  module QA
5
- VERSION = '12.5.0'
5
+ VERSION = '12.5.1'
6
6
  end
7
7
  end
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.0
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-10-25 00:00:00.000000000 Z
11
+ date: 2023-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: climate_control