gitlab-qa 4.6.0 → 4.7.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 +4 -4
- data/.gitlab/issue_templates/Release.md +28 -2
- data/lib/gitlab/qa/runner.rb +2 -1
- data/lib/gitlab/qa/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 85b79549f9bf9c4e95ba659e30d0ae54bf857f17e92e263ed9d0c9dd6ab298ed
|
|
4
|
+
data.tar.gz: 619098a060f3e50c173f11be43427de0898156d74a672b7bead5254c1b19b7ce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a9c61b542871f8936879fc91c44a4232feccacb2551f250fec82b217b5ac862cce4c835e9ed1476265387401c67e69d5666b096f3e5dbc249d6aeec2048dee06
|
|
7
|
+
data.tar.gz: 6ff561ac8c8cdca3aae05e4acd15074cefdca5107e0df31748a37016a2dfcbcfd47a0a9210d88d8317ffa4ac9c7a676daa05285e2cbf2afbdeefcfdefd1edd02
|
|
@@ -1,7 +1,33 @@
|
|
|
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
|
|
4
|
+
|
|
5
|
+
Release notes:
|
|
6
|
+
|
|
7
|
+
```markdown
|
|
8
|
+
### Fixes
|
|
9
|
+
|
|
10
|
+
- !xxx Fix a broken OAuth scenario.
|
|
11
|
+
|
|
1
12
|
### New scenarios
|
|
2
13
|
|
|
3
|
-
- !xxx
|
|
14
|
+
- !xxx Add a new Awesome scenario.
|
|
15
|
+
|
|
16
|
+
### Scenario changes
|
|
17
|
+
|
|
18
|
+
- !xxx Scenario `Foo` now accepts a new `--bar` option.
|
|
19
|
+
|
|
20
|
+
### Doc changes
|
|
21
|
+
|
|
22
|
+
- !xxx Document the new `QA_FOO_BAR` variable.
|
|
23
|
+
|
|
24
|
+
### CI changes
|
|
25
|
+
|
|
26
|
+
- !xxx Add a new staging job.
|
|
4
27
|
|
|
5
28
|
### Other changes
|
|
6
29
|
|
|
7
|
-
- !xxx Description of the change
|
|
30
|
+
- !xxx Description of the other change.
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
/label ~backstage
|
data/lib/gitlab/qa/runner.rb
CHANGED
|
@@ -9,7 +9,8 @@ module Gitlab
|
|
|
9
9
|
['--address URL', 'Address of the instance to test'],
|
|
10
10
|
['--enable-feature FEATURE_FLAG', 'Enable a feature before running tests'],
|
|
11
11
|
['--mattermost-address URL', 'Address of the Mattermost server'],
|
|
12
|
-
['--parallel', 'Execute tests in parallel']
|
|
12
|
+
['--parallel', 'Execute tests in parallel'],
|
|
13
|
+
['--loop', 'Execute tests in a loop']
|
|
13
14
|
].freeze
|
|
14
15
|
|
|
15
16
|
# rubocop:disable Metrics/AbcSize
|
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: 4.
|
|
4
|
+
version: 4.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Grzegorz Bizon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-10-
|
|
11
|
+
date: 2019-10-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: climate_control
|