gitlab-qa 10.5.0 → 10.6.0

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: 0e892bc0c445fc7981ca1e1d511411818d92b577e041d0cf465813793a05462d
4
- data.tar.gz: aeb7f3acdd748d80a47946fb26614f9fe5a9d1462935f2b19dae9269bd55afd1
3
+ metadata.gz: d20bcf2165a475147754d654e35715f0715552ea01dfcf866ed7d133f5ae9097
4
+ data.tar.gz: 99e4ff3dc864f8a2afee3dcdcc11ac07ffc9dfd6d344ef140356c3c5131d837b
5
5
  SHA512:
6
- metadata.gz: 582219201b2786ebc62d042a7a280c152d4337b941c840d6e56bef371ffab400421c7fe793ac29cddc063441300e0f7a18414eba15a3951e09c21c208530bbb6
7
- data.tar.gz: fe82a271991a20a99bbf212241e98ba8821a960d23b72f789d386dd85bd895255c50eaa9a8356ece428c3d32f467b19e8b396c9a719c58039548ab4db33d8e4a
6
+ metadata.gz: 4d73658a3b283fb9616dd4b12469467d6851f194685350b6d07f78116f34c8db647bb5bc7226ec0a5d5e4f1f14864de94665774b0ff74ab0ea31b54a26828f82
7
+ data.tar.gz: e31e45cfe7a154567ac8bf5ba08522f930236d7710eda01018c9d23d607f02adcd4584455f4f59d10eb00834eae23f65b87603c8144e602f8bd569248b89c051
@@ -0,0 +1,13 @@
1
+ ---
2
+ # Settings for generating changelogs using the GitLab API. See
3
+ # https://docs.gitlab.com/ee/api/repositories.html#generate-changelog-data for
4
+ # more information.
5
+ categories:
6
+ added: Added
7
+ fixed: Fixed
8
+ changed: Changed
9
+ deprecated: Deprecated
10
+ removed: Removed
11
+ security: Security
12
+ performance: Performance
13
+ other: Other
@@ -1,40 +1,13 @@
1
- <!-- Replace `v4.5.0` with the previous release here, and `e18d76b309e42888759c1effe96767f13e34ae55`
2
- with the latest commit from https://gitlab.com/gitlab-org/gitlab-qa/commits/master that will be included in the release. -->
3
- - Diff: https://gitlab.com/gitlab-org/gitlab-qa/compare/v4.5.0...e18d76b309e42888759c1effe96767f13e34ae55
1
+ <!-- Replace `<PREVIOUS_VERSION>` with the previous version number here, `<COMMIT_UPDATING_VERSION>` with the latest
2
+ commit from this merge request, and `<NEW_VERSION>` with the upcoming version number. -->
3
+ ## Diff
4
4
 
5
- - Release notes:
5
+ https://gitlab.com/gitlab-org/gitlab-qa/-/compare/v<PREVIOUS_VERSION>...<COMMIT_UPDATING_VERSION>
6
6
 
7
- <!-- Keep the sections order but remove the empty sections -->
7
+ ## Checklist
8
8
 
9
- ```markdown
10
- ### New scenarios and scenario updates
9
+ - [ ] Diff link is up-to-date.
10
+ - [ ] Check the release notes: https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-qa/repository/changelog?version=<NEW_VERSION>
11
+ - [ ] Based on the diff and the release notes, `version.rb` is updated, according to [SemVer](https://semver.org).
11
12
 
12
- - !aaa <Title of the aaa MR>.
13
-
14
- ### Fixes
15
-
16
- - !bbb <Title of the bbb MR>.
17
-
18
- ### Doc changes
19
-
20
- - !ccc <Title of the ccc MR>.
21
-
22
- ### Other changes (CI, backstage)
23
-
24
- - !ddd <Title of the ddd MR>.
25
- ```
26
-
27
- - Checklist before merging:
28
- - [ ] Diff link is up-to-date.
29
- - [ ] Based on the diff, `lib/gitlab/qa/version.rb` is updated, according to [SemVer](https://semver.org).
30
- - [ ] Release notes are accurate.
31
-
32
- - Checklist after merging:
33
- - [ ] [Update the release notes for the newly created tag](docs/release_process.md#how-to).
34
-
35
- - Checklist after gitlab-qa version has been released by the post merge pipeline:
36
- - [ ] 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).
37
- - [ ] In the GitLab project, update the ref for pipeline-common in [qa-common](https://gitlab.com/gitlab-org/gitlab/-/blob/master/.gitlab/ci/qa-common/main.gitlab-ci.yml) and [review-apps](https://gitlab.com/gitlab-org/gitlab/-/blob/master/.gitlab/ci/review-apps/qa.gitlab-ci.yml).
38
- - [ ] 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](https://gitlab.com/gitlab-org/gitlab/-/blob/master/qa/Gemfile) and [`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).
39
-
40
- /label ~Quality ~"type::maintenance" ~"maintenance::dependency"
13
+ /label ~Quality ~"type::maintenance" ~"maintenance::dependency" ~Quality
data/Dangerfile CHANGED
@@ -2,8 +2,4 @@
2
2
 
3
3
  require 'gitlab-dangerfiles'
4
4
 
5
- Gitlab::Dangerfiles.for_project(self) do |dangerfiles|
6
- dangerfiles.import_plugins
7
-
8
- dangerfiles.import_dangerfiles(except: %w[changelog])
9
- end
5
+ Gitlab::Dangerfiles.for_project(self, &:import_defaults)
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gitlab-qa (10.5.0)
4
+ gitlab-qa (10.6.0)
5
5
  activesupport (~> 6.1)
6
- gitlab (~> 4.18.0)
6
+ gitlab (~> 4.19)
7
7
  http (~> 5.0)
8
8
  nokogiri (~> 1.10)
9
9
  parallel (>= 1, < 2)
@@ -91,8 +91,8 @@ GEM
91
91
  git (1.12.0)
92
92
  addressable (~> 2.8)
93
93
  rchardet (~> 1.8)
94
- gitlab (4.18.0)
95
- httparty (~> 0.18)
94
+ gitlab (4.19.0)
95
+ httparty (~> 0.20)
96
96
  terminal-table (>= 1.5.1)
97
97
  gitlab-dangerfiles (2.11.0)
98
98
  danger (>= 8.4.5)
data/gitlab-qa.gemspec CHANGED
@@ -34,7 +34,7 @@ Gem::Specification.new do |spec|
34
34
  spec.add_development_dependency 'webmock', '3.7.0'
35
35
 
36
36
  spec.add_runtime_dependency 'activesupport', '~> 6.1'
37
- spec.add_runtime_dependency 'gitlab', '~> 4.18.0'
37
+ spec.add_runtime_dependency 'gitlab', '~> 4.19'
38
38
  spec.add_runtime_dependency 'http', '~> 5.0'
39
39
  spec.add_runtime_dependency 'nokogiri', '~> 1.10'
40
40
  spec.add_runtime_dependency 'parallel', '>= 1', '< 2'
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Gitlab
4
4
  module QA
5
- VERSION = '10.5.0'
5
+ VERSION = '10.6.0'
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: 10.5.0
4
+ version: 10.6.0
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-05-25 00:00:00.000000000 Z
11
+ date: 2023-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: climate_control
@@ -198,14 +198,14 @@ dependencies:
198
198
  requirements:
199
199
  - - "~>"
200
200
  - !ruby/object:Gem::Version
201
- version: 4.18.0
201
+ version: '4.19'
202
202
  type: :runtime
203
203
  prerelease: false
204
204
  version_requirements: !ruby/object:Gem::Requirement
205
205
  requirements:
206
206
  - - "~>"
207
207
  - !ruby/object:Gem::Version
208
- version: 4.18.0
208
+ version: '4.19'
209
209
  - !ruby/object:Gem::Dependency
210
210
  name: http
211
211
  requirement: !ruby/object:Gem::Requirement
@@ -320,6 +320,7 @@ files:
320
320
  - ".dockerignore"
321
321
  - ".gitignore"
322
322
  - ".gitlab-ci.yml"
323
+ - ".gitlab/changelog_config.yml"
323
324
  - ".gitlab/issue_templates/Default.md"
324
325
  - ".gitlab/merge_request_templates/Default.md"
325
326
  - ".gitlab/merge_request_templates/Release.md"