cucumber 8.0.0.rc.1 → 9.0.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/{CHANGELOG.md → CHANGELOG.old.md} +655 -493
- data/README.md +4 -3
- data/lib/cucumber/cli/options.rb +14 -3
- data/lib/cucumber/configuration.rb +6 -1
- data/lib/cucumber/filters/retry.rb +20 -1
- data/lib/cucumber/formatter/ansicolor.rb +1 -1
- data/lib/cucumber/formatter/backtrace_filter.rb +1 -0
- data/lib/cucumber/formatter/io.rb +2 -2
- data/lib/cucumber/glue/dsl.rb +16 -16
- data/lib/cucumber/glue/hook.rb +4 -2
- data/lib/cucumber/glue/proto_world.rb +2 -2
- data/lib/cucumber/glue/registry_and_more.rb +2 -2
- data/lib/cucumber/platform.rb +1 -1
- data/lib/cucumber/rake/task.rb +11 -3
- metadata +89 -90
- data/lib/cucumber/version +0 -1
@@ -1,757 +1,919 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
This project adheres to [Semantic Versioning](http://semver.org).
|
6
|
-
|
7
|
-
This document is formatted according to the principles of [Keep A CHANGELOG](http://keepachangelog.com).
|
8
|
-
|
9
|
-
Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blob/master/CONTRIBUTING.md) for more info on how to contribute to Cucumber.
|
10
|
-
|
11
|
-
---
|
12
|
-
|
13
|
-
## [Unreleased](https://github.com/cucumber/cucumber-ruby/compare/v8.0.0.rc.1...main)
|
3
|
+
**NB: This is the legacy changelog. Please consult the new [CHANGELOG.md](./CHANGELOG.md) for new updates**
|
14
4
|
|
5
|
+
## [8.0.0]
|
15
6
|
### Added
|
7
|
+
- Add a _WARNING_ message when using a space-separated string with cucumber_opts
|
8
|
+
([PR#](https://github.com/cucumber/cucumber-ruby/pull/1624)
|
9
|
+
[Issue#1614](https://github.com/cucumber/cucumber-ruby/issues/1614))
|
10
|
+
- Add support for TruffleRuby
|
11
|
+
([PR#1612](https://github.com/cucumber/cucumber-ruby/pull/1612)
|
12
|
+
[gogainda](https://github.com/gogainda))
|
13
|
+
- Add support for named hooks
|
14
|
+
([PR#1636](https://github.com/cucumber/cucumber-ruby/pull/1636))
|
16
15
|
|
17
16
|
### Fixed
|
17
|
+
- Use `required_rubygems_version` instead of `rubygems_version`([PR#1629](https://github.com/cucumber/cucumber-ruby/pull/1629))
|
18
|
+
- Suppress RSspec deprecation warnings([PR#1631](https://github.com/cucumber/cucumber-ruby/pull/1631))
|
18
19
|
|
20
|
+
## [8.0.0.RC.1]
|
19
21
|
### Changed
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
## [8.0.0.RC.1](https://github.com/cucumber/cucumber-ruby/compare/v7.1.0...v8.0.0.rc.1)
|
22
|
+
- Replace dependency [cucumber-create-meta](https://rubygems.org/gems/cucumber-create-meta)
|
23
|
+
with the new [cucumber-ci-environment](https://rubygems.org/gems/cucumber-ci-environment)
|
24
|
+
([PR#1601](https://github.com/cucumber/cucumber-ruby/pull/1601))
|
25
|
+
- In `DataTable#map_column`, Changed the `strict` argument into a keyword argument.
|
26
|
+
See [UPGRADING.md](./UPGRADING.md#upgrading-to-800).
|
27
|
+
([PR#1594](https://github.com/cucumber/cucumber-ruby/pull/1594)
|
28
|
+
[Issue#1592](https://github.com/cucumber/cucumber-ruby/issues/1592))
|
29
|
+
- Added Ruby 3.1
|
30
|
+
([PR#1607](https://github.com/cucumber/cucumber-ruby/pull/1607))
|
30
31
|
|
31
32
|
### Fixed
|
32
|
-
|
33
33
|
- Fix TestRunFinished success property in html formatter and all formatters
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
34
|
+
based on the messages: it now returns true if the run has passed
|
35
|
+
([PR#1606](https://github.com/cucumber/cucumber-ruby/pull/1606)
|
36
|
+
[Issue#1604](https://github.com/cucumber/cucumber-ruby/issues/1604))
|
38
37
|
- Fix usage of namespaced modules across multiple scenarios
|
39
|
-
|
40
|
-
|
41
|
-
|
38
|
+
([PR#1603](https://github.com/cucumber/cucumber-ruby/pull/1603)
|
39
|
+
[Issue#1595](https://github.com/cucumber/cucumber-ruby/issues/1595))
|
42
40
|
- Do not serialize Messages::Hook#tag_expression if it is empty.
|
43
|
-
|
44
|
-
|
41
|
+
([PR#1579](https://github.com/cucumber/cucumber-ruby/pull/1579))
|
45
42
|
- JSON Formatter uses "pretty" output format
|
46
|
-
|
47
|
-
|
43
|
+
([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
|
48
44
|
- Fixed JSON Formatter "end of background" detection.
|
49
|
-
|
50
|
-
|
45
|
+
([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
|
51
46
|
- Fixed JSON Formatter expansion of Scenario Outline templates in Doc Strings.
|
52
|
-
|
53
|
-
|
47
|
+
([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
|
54
48
|
- Removed usage of `eval` in `Cucumber::Term::ANSIColor` and `Cucumber::Formatter::ANSIColor`.
|
55
|
-
|
56
|
-
|
57
|
-
|
49
|
+
([PR#1589](https://github.com/cucumber/cucumber-ruby/pull/1589)
|
50
|
+
[Issue#1583](https://github.com/cucumber/cucumber-ruby/issues/1583))
|
58
51
|
- Fixed `DataTable#map_headers` when headers have the same prefix.
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
### Changed
|
63
|
-
|
64
|
-
- Replace dependency [cucumber-create-meta](https://rubygems.org/gems/cucumber-create-meta)
|
65
|
-
with the new [cucumber-ci-environment](https://rubygems.org/gems/cucumber-ci-environment)
|
66
|
-
([PR#1601](https://github.com/cucumber/cucumber-ruby/pull/1601))
|
67
|
-
|
68
|
-
- In `DataTable#map_column`, Changed the `strict` argument into a keyword argument.
|
69
|
-
See [UPGRADING.md](./UPGRADING.md#upgrading-to-800).
|
70
|
-
([PR#1594](https://github.com/cucumber/cucumber-ruby/pull/1594)
|
71
|
-
[Issue#1592](https://github.com/cucumber/cucumber-ruby/issues/1592))
|
72
|
-
|
73
|
-
- Added Ruby 3.1
|
74
|
-
([PR#1607](https://github.com/cucumber/cucumber-ruby/pull/1607))
|
52
|
+
([PR#1598](https://github.com/cucumber/cucumber-ruby/pull/1598)
|
53
|
+
[Issue#1450](https://github.com/cucumber/cucumber-ruby/issues/1450))
|
75
54
|
|
76
55
|
### Removed
|
77
|
-
|
78
56
|
- `AfterConfiguration` has been removed. Please use `InstallPlugin` or `BeforeAll` instead.
|
79
|
-
|
80
|
-
|
81
|
-
|
57
|
+
See the [UPGRADING.md](./UPGRADING.md#upgrading-to-800) to update your code accordingly.
|
58
|
+
([PR#1591](https://github.com/cucumber/cucumber-ruby/pull/1591))
|
82
59
|
- The built-in Wire protocol
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
([1562](https://github.com/cucumber/cucumber-ruby/pull/1562)
|
89
|
-
[aurelien-reeves](https://github.com/aurelien-reeves))
|
90
|
-
|
60
|
+
The Wire protocol is still officially supported, but as an optional plugin rather
|
61
|
+
than a built-in feature. See the
|
62
|
+
[UPGRADING.md](./UPGRADING.md#upgrading-to-800)
|
63
|
+
to update your code accordingly.
|
91
64
|
- Removed former unused `stdin` argument from `Cli::Main`. That may impact your code
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
65
|
+
if you use cucumber API `Cucumber::Cli::Main`. See [UPGRADING.md](./UPGRADING.md#upgrading-to-800).
|
66
|
+
([PR#1588](https://github.com/cucumber/cucumber-ruby/pull/1588)
|
67
|
+
[Issue#1581](https://github.com/cucumber/cucumber-ruby/issues/1581))
|
96
68
|
- Removed `DataTable#map_column!` and `DataTable#map_headers!`.
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
69
|
+
Those methods were error-prone and planned to be removed a long time ago. You
|
70
|
+
can use the immutable versions instead: `DataTable#map_column` and
|
71
|
+
`DataTable#map_headers`.
|
72
|
+
([PR#1590](https://github.com/cucumber/cucumber-ruby/pull/1590)
|
73
|
+
[Issue#1584](https://github.com/cucumber/cucumber-ruby/issues/1584))
|
103
74
|
- Removed support for Ruby 2.5 and JRuby 9.2.
|
104
75
|
|
105
|
-
## [7.1.0]
|
106
|
-
|
76
|
+
## [7.1.0]
|
107
77
|
### Added
|
108
|
-
|
109
78
|
- New `BeforeAll` and `AfterAll` hooks
|
110
|
-
|
111
|
-
More information about hooks can be found in
|
112
|
-
[features/docs/writing_support_code/hooks/README.md](./features/docs/writing_support_code/hooks/README.md).
|
113
|
-
|
114
|
-
([1569](https://github.com/cucumber/cucumber-ruby/pull/1569)
|
115
|
-
[aurelien-reeves](https://github.com/aurelien-reeves))
|
116
|
-
|
117
79
|
- New hook: `InstallPlugin`
|
118
80
|
|
119
|
-
It is intended to be used to install an external plugin, like cucumber-ruby-wire.
|
120
|
-
|
121
|
-
It is fired just after the `AfterConfiguration` one. Two parameters are given:
|
122
|
-
the same `configuration` instance that is given to `AfterConfiguration`,
|
123
|
-
and a [`registry_wrapper`](./lib/cucumber/glue/registry_wrapper.rb) which allows
|
124
|
-
plugins to have access to specific internal methods.
|
125
|
-
|
126
|
-
See [cucumber-ruby-wire](https://github.com/cucumber/cucumber-ruby-wire/) for a
|
127
|
-
usage example.
|
128
|
-
|
129
|
-
More information about hooks can be found in
|
130
|
-
[features/docs/writing_support_code/hooks/README.md](./features/docs/writing_support_code/hooks/README.md).
|
131
|
-
|
132
|
-
([1564](https://github.com/cucumber/cucumber-ruby/pull/1564)
|
133
|
-
[aurelien-reeves](https://github.com/aurelien-reeves))
|
134
|
-
|
135
81
|
### Changed
|
136
|
-
|
137
82
|
- Added release dates to CHANGELOG.md.
|
138
|
-
|
139
|
-
|
83
|
+
([1543](https://github.com/cucumber/cucumber-ruby/pull/1573)
|
84
|
+
[AudTheCodeWitch](https://github.com/AudTheCodeWitch))
|
140
85
|
|
141
86
|
### Deprecated
|
142
|
-
|
143
87
|
- `AfterConfiguration` is deprecated. Please use `InstallPlugin` or `BeforeAll` instead.
|
144
|
-
|
145
|
-
|
146
|
-
|
88
|
+
See the [UPGRADING.md](./UPGRADING.md#upgrading-to-710) to update your code accordingly.
|
89
|
+
([1570](https://github.com/cucumber/cucumber-ruby/pull/1570))
|
147
90
|
- The built-in Wire protocol
|
148
91
|
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
to update your code accordingly.
|
153
|
-
|
154
|
-
([1564](https://github.com/cucumber/cucumber-ruby/pull/1564)
|
155
|
-
[aurelien-reeves](https://github.com/aurelien-reeves))
|
156
|
-
|
157
|
-
### Known issue
|
158
|
-
|
159
|
-
- There is a known issue with JRuby 9.3. For more info, see
|
160
|
-
[PR#1571](https://github.com/cucumber/cucumber-ruby/pull/1571).
|
161
|
-
|
162
|
-
## [7.0.0](https://github.com/cucumber/cucumber-ruby/compare/v6.1.0...v7.0.0) (2021-07-19)
|
92
|
+
## [7.0.0]
|
93
|
+
### Changed
|
94
|
+
- Upgrade of `cucumber-core`, `cucumber-gherkin` and `cucumber-messages`.
|
163
95
|
|
164
96
|
### Fixed
|
165
|
-
|
166
97
|
- Cucumber terminating with `negative argument` ArgumentError
|
167
|
-
|
168
|
-
|
169
|
-
|
98
|
+
([1546](https://github.com/cucumber/cucumber-ruby/issues/1546)
|
99
|
+
[1548](https://github.com/cucumber/cucumber-ruby/pull/1548)
|
100
|
+
[Serghei Moret](https://github.com/JoeSSS))
|
170
101
|
- Fixed reports banner to point to [new docs](https://cucumber.io/docs/cucumber/environment-variables/) about environment variables
|
171
102
|
|
172
|
-
### Changed
|
173
|
-
|
174
|
-
- Upgrade of `cucumber-core`, `cucumber-gherkin` and `cucumber-messages`.
|
175
|
-
|
176
|
-
This brings some breaking changes in `Cucumber::Messages`.
|
177
|
-
([1544](https://github.com/cucumber/cucumber-ruby/pull/1544)
|
178
|
-
[aurelien-reeves](https://github.com/aurelien-reeves))
|
179
|
-
|
180
|
-
This also fixes [1545](https://github.com/cucumber/cucumber-ruby/issues/1545)
|
181
|
-
([1549](https://github.com/cucumber/cucumber-ruby/pull/1549)
|
182
|
-
[luke-hill](https://github.com/luke-hill))
|
183
|
-
|
184
103
|
### Removed
|
185
|
-
|
186
104
|
- On Windows, auto-detection of ANSICON has been removed - Windows now properly
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
105
|
+
supports ANSI colors in the terminal. In case of issues on older versions of
|
106
|
+
Windows, execute cucumber with `--no-color`, or install
|
107
|
+
[ANSICON](https://github.com/adoxa/ansicon/) globally.
|
108
|
+
([1561](https://github.com/cucumber/cucumber-ruby/pull/1561)
|
109
|
+
[yosukei3108](https://github.com/yosukei3108))
|
192
110
|
|
193
|
-
## [v6.1.0]
|
111
|
+
## [v6.1.0]
|
112
|
+
### Changed
|
113
|
+
- The JSON formatter now reports empty scenarios.
|
114
|
+
No status is reported for empty scenarios in the resulting JSON.
|
115
|
+
No more empty background is reported with empty scenarios.
|
116
|
+
([1533](https://github.com/cucumber/cucumber-ruby/pull/1533)
|
117
|
+
[1530](https://github.com/cucumber/cucumber-ruby/issues/1530)
|
118
|
+
[aurelien-reeves](https://github.com/aurelien-reeves))
|
119
|
+
- Undeprecate the JSON formatter. It won't be removed any time soon.
|
194
120
|
|
195
121
|
### Fixed
|
196
|
-
|
197
122
|
- `--dry-run` now supports `message` based-formatters
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
123
|
+
([1540](https://github.com/cucumber/cucumber-ruby/pull/1540)
|
124
|
+
[1496](https://github.com/cucumber/cucumber-ruby/issues/1496)
|
125
|
+
[1488](https://github.com/cucumber/cucumber-ruby/issues/1488)
|
126
|
+
[aurelien-reeves](https://github.com/aurelien-reeves))
|
202
127
|
- Step definitions now uses object instances created in the ParameterType
|
203
|
-
|
204
|
-
|
205
|
-
|
128
|
+
([1538](https://github.com/cucumber/cucumber-ruby/pull/1538)
|
129
|
+
[1532](https://github.com/cucumber/cucumber-ruby/issues/1532)
|
130
|
+
[aurelien-reeves](https://github.com/aurelien-reeves))
|
206
131
|
- `attach` can now handle null bytes in the data.
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
### Changed
|
212
|
-
|
213
|
-
- The JSON formatter now reports empty scenarios.
|
214
|
-
No status is reported for empty scenarios in the resulting JSON.
|
215
|
-
No more empty background is reported with empty scenarios.
|
216
|
-
([1533](https://github.com/cucumber/cucumber-ruby/pull/1533)
|
217
|
-
[1530](https://github.com/cucumber/cucumber-ruby/issues/1530)
|
218
|
-
[aurelien-reeves](https://github.com/aurelien-reeves))
|
219
|
-
- Undeprecate the JSON formatter. It won't be removed any time soon.
|
220
|
-
|
221
|
-
### Dependencies
|
222
|
-
|
223
|
-
- Updated `cucumber-core` ~> 9.0.1
|
224
|
-
|
225
|
-
## [v6.0.0](https://github.com/cucumber/cucumber-ruby/compare/v5.3.0...v6.0.0) (2021-04-14)
|
132
|
+
([1536](https://github.com/cucumber/cucumber-ruby/pull/1536)
|
133
|
+
[1529](https://github.com/cucumber/cucumber-ruby/issues/1529)
|
134
|
+
[aurelien-reeves](https://github.com/aurelien-reeves))
|
226
135
|
|
136
|
+
## [v6.0.0]
|
227
137
|
### Added
|
228
|
-
|
229
138
|
- Support tagged rules ([cucumber#1123](https://github.com/cucumber/cucumber/issues/1123))
|
230
139
|
|
231
|
-
### Fixed
|
232
|
-
|
233
|
-
- It is now possible to attach a file passing its path
|
234
|
-
([#1506](https://github.com/cucumber/cucumber-ruby/issues/1506)
|
235
|
-
[#1514](https://github.com/cucumber/cucumber-ruby/pull/1514)
|
236
|
-
[aurelien-reeves](https://github.com/aurelien-reeves))
|
237
|
-
|
238
140
|
### Changed
|
239
|
-
|
240
141
|
- Upgraded dependencies (see diff)
|
241
142
|
|
242
|
-
###
|
143
|
+
### Fixed
|
144
|
+
- It is now possible to attach a file passing its path
|
145
|
+
([#1506](https://github.com/cucumber/cucumber-ruby/issues/1506)
|
146
|
+
[#1514](https://github.com/cucumber/cucumber-ruby/pull/1514)
|
147
|
+
[aurelien-reeves](https://github.com/aurelien-reeves))
|
243
148
|
|
149
|
+
### Removed
|
244
150
|
- `embed` in step definitions in favor of `attach`.
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
151
|
+
`embed` has been deprecated in version 4.0.
|
152
|
+
Simply replace `embed` with `attach`.
|
153
|
+
([#1523](https://github.com/cucumber/cucumber-ruby/pull/1523)
|
154
|
+
[aurelien-reeves](https://github.com/aurelien-reeves))
|
249
155
|
- `puts` in step definitions in favor of `log`.
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
## [5.3.0](https://github.com/cucumber/cucumber-ruby/compare/v5.2.0...v5.3.0) (2021-01-28)
|
156
|
+
`puts` has been deprecated in version 4.0.
|
157
|
+
Simply replace `puts` with `log`.
|
158
|
+
([#1523](https://github.com/cucumber/cucumber-ruby/pull/1523)
|
159
|
+
[aurelien-reeves](https://github.com/aurelien-reeves))
|
256
160
|
|
161
|
+
## [5.3.0]
|
257
162
|
### Added
|
258
|
-
|
259
163
|
- `fileattribute` cli argument available to attach `file` to junit formatter
|
260
164
|
|
261
165
|
### Fixed
|
262
|
-
|
263
166
|
- Circle-CI windows build now silently installs MSYS2 using Chocolatey before
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
167
|
+
setting-up the ruby devkit with ridk
|
168
|
+
([#1503](https://github.com/cucumber/cucumber-ruby/pull/1503)
|
169
|
+
[aurelien-reeves](https://github.com/aurelien-reeves))
|
268
170
|
- `--publish` and no formatter now uses the pretty formatter per default
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
## [5.2.0](https://github.com/cucumber/cucumber-ruby/compare/v5.1.3...v5.2.0) (2020-10-21)
|
171
|
+
([#1468](https://github.com/cucumber/cucumber-ruby/issues/1468)
|
172
|
+
[#1500](https://github.com/cucumber/cucumber-ruby/pull/1500)
|
173
|
+
[aurelien-reeves](https://github.com/aurelien-reeves))
|
274
174
|
|
175
|
+
## [5.2.0]
|
275
176
|
### Changed
|
276
|
-
|
277
177
|
- `--publish` uses the response provided by the server as the banner [#1472](https://github.com/cucumber/cucumber-ruby/issues/1472)
|
278
178
|
|
279
|
-
## [5.1.3]
|
280
|
-
|
179
|
+
## [5.1.3]
|
281
180
|
### Fixed
|
282
|
-
|
283
181
|
- The `CUCUMBER_PUBLISH_TOKEN` now sets the correct HTTP header, following a fix in the curl option parser.
|
284
182
|
|
285
|
-
## [5.1.2]
|
286
|
-
|
183
|
+
## [5.1.2]
|
287
184
|
### Fixed
|
288
|
-
|
289
185
|
- Do not send headers after following redirection [#1475](https://github.com/cucumber/cucumber-ruby/pull/1475)
|
290
186
|
|
291
|
-
## [5.1.1]
|
292
|
-
|
293
|
-
### Security fixes
|
294
|
-
|
295
|
-
- Update `cucumber-create-meta` to 2.0.2
|
296
|
-
|
297
|
-
## [5.1.0](https://github.com/cucumber/cucumber-ruby/compare/v5.0.0...5.1.0) (2020-08-24)
|
187
|
+
## [5.1.1]
|
298
188
|
|
189
|
+
## [5.1.0]
|
299
190
|
### Added
|
300
|
-
|
301
191
|
- `-X GET` in an `--out` URL will now issue a `GET` request _without_ a body. If the response is `202 Accepted` _and_
|
302
|
-
|
303
|
-
|
304
|
-
The main reason for this added behaviour is to allow request bodies larger than 6Mb to be sent while using `--publish`.
|
305
|
-
This also improves performance since the request body is only sent once (previously it would be sent twice).
|
192
|
+
the `Location` header is present, a new `PUT` request will be sent _with_ the body.
|
306
193
|
|
307
194
|
### Changed
|
308
|
-
|
309
195
|
- Set banner border color to green when publishing reports
|
310
196
|
- Postpone removal of `--format=json`, `embed` and `puts` to version 6.0.0 in deprecation messages
|
311
197
|
|
312
198
|
### Fixed
|
313
|
-
|
314
199
|
- Display banner on stderr when publishing reports [#1462](https://github.com/cucumber/cucumber-ruby/issues/1462)
|
315
200
|
|
316
|
-
## [5.0.0]
|
317
|
-
|
201
|
+
## [5.0.0]
|
318
202
|
### Added
|
319
|
-
|
320
203
|
- `--publish` automatically publishes reports to [reports.cucumber.io](https://reports.cucumber.io)
|
321
204
|
- `--publish-quiet` does not print information banner about [reports.cucumber.io](https://reports.cucumber.io)
|
322
205
|
|
323
206
|
### Changed
|
324
|
-
|
325
207
|
- `-q, --quiet` will also imply `--publish-quiet` in addition to `--no-snippets --no-source --no-duration`
|
326
208
|
|
327
|
-
### Removed
|
328
|
-
|
329
|
-
- Dropped support for Ruby [2.3](https://www.ruby-lang.org/en/news/2019/03/31/support-of-ruby-2-3-has-ended/)
|
330
|
-
and [2.4](https://www.ruby-lang.org/en/news/2020/04/05/support-of-ruby-2-4-has-ended/)
|
331
|
-
|
332
209
|
### Fixed
|
333
|
-
|
334
210
|
- Update code to be compatible with `diff-lcs` versions 1.3 and 1.4
|
335
211
|
- Defer registration of `at_exit` hook that flushes and closes formatter streams
|
336
|
-
|
212
|
+
([#1458](https://github.com/cucumber/cucumber-ruby/pull/1458))
|
337
213
|
- Updated gems (see git diff for details)
|
338
214
|
- `cucumber-expressions`
|
339
215
|
- `cucumber-gherkin`
|
340
216
|
- `cucumber-create-meta`
|
341
217
|
- `cucumber-messages`
|
342
|
-
|
218
|
+
- Fix issue with timestamp nanos [#1438](https://github.com/cucumber/cucumber-ruby/issues/1438)
|
343
219
|
- `cucumber-html-formatter`
|
344
|
-
|
220
|
+
- Add filtering capabilities [#1444](https://github.com/cucumber/cucumber-ruby/issues/1444)
|
345
221
|
- Fix Interceptor that was raising exception when calling `puts` on the wrapped stream ([#1445](https://github.com/cucumber/cucumber-ruby/issues/1445))
|
346
222
|
|
347
|
-
|
223
|
+
### Removed
|
224
|
+
- Dropped support for Ruby [2.3](https://www.ruby-lang.org/en/news/2019/03/31/support-of-ruby-2-3-has-ended/)
|
225
|
+
and [2.4](https://www.ruby-lang.org/en/news/2020/04/05/support-of-ruby-2-4-has-ended/)
|
348
226
|
|
227
|
+
## [4.1.0]
|
349
228
|
### Changed
|
350
|
-
|
351
229
|
- Use [`cucumber-create-meta`](https://rubygems.org/gems/cucumber-create-meta) to produce the `Meta` message before the run.
|
352
|
-
|
353
230
|
- Updated gems:
|
354
231
|
- `cucumber-wire` ~> 3.1.0
|
355
232
|
- `cucumber-core` ~> 7.1.0
|
356
233
|
- `cucumber-gherkin` ~> 14.0.1
|
357
|
-
|
234
|
+
- Fix issue with empty feature files [#1427](https://github.com/cucumber/cucumber-ruby/issues/1427)
|
358
235
|
- `cucumber-messages` ~> 12.2.0
|
359
236
|
- `cucumber-html-formatter` ~> 7.0.0
|
360
|
-
|
237
|
+
- Fix issue with Hook attachments [#1420](https://github.com/cucumber/cucumber-ruby/issues/1420)
|
361
238
|
|
362
239
|
### Fixed
|
363
|
-
|
364
240
|
- `AfterStep` hook do not cause issue when running `message` formatter. [#1433](https://github.com/cucumber/cucumber-ruby/issues/1433) - [#1434](https://github.com/cucumber/cucumber-ruby/pull/1434)
|
365
241
|
|
366
|
-
## [4.0.1]
|
367
|
-
|
242
|
+
## [4.0.1]
|
368
243
|
### Fixed
|
369
|
-
|
370
244
|
- force reference to `diff-lcs` to 1.3 as 1.4 introduced breaking changes.
|
371
245
|
|
372
|
-
## [4.0.0]
|
373
|
-
|
246
|
+
## [4.0.0]
|
374
247
|
### Changed
|
375
|
-
|
376
248
|
- `log` method can now be called with non-string objects and will run `.to_s` on them. [#1410](https://github.com/cucumber/cucumber-ruby/issues/1410)
|
377
249
|
|
378
|
-
|
379
|
-
|
380
|
-
- Display snippet when using undefined parameter type [#1411](https://github.com/cucumber/cucumber-ruby/issues/1411)
|
381
|
-
|
382
|
-
## [4.0.0.rc.6](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...4.0.0.rc.6) (2020-04-24)
|
383
|
-
|
250
|
+
## [4.0.0.rc.6]
|
384
251
|
### Changed
|
385
|
-
|
386
252
|
- Code snippet for an undefined step with a Doc String will ouput `doc_string` instead of `string` in block params
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
253
|
+
([#1401](https://github.com/cucumber/cucumber-ruby/issues/1401)
|
254
|
+
[#1402](https://github.com/cucumber/cucumber-ruby/pull/1402)
|
255
|
+
[karamosky](https://github.com/karamosky))
|
391
256
|
- Updated monorepo libraries:
|
392
|
-
|
393
257
|
- cucumber-gherkin ~> 13
|
394
258
|
- cucumber-html-formatter ~> 6
|
395
259
|
- cucumber-cucumber-expressions ~> 10
|
396
|
-
|
397
260
|
- Use `cucumber-ruby-core` 7.0.0
|
398
|
-
|
399
261
|
- Use `cucumber-ruby-wire` 3.0.0
|
400
|
-
|
401
262
|
- Use `body` field of attachments
|
402
263
|
|
403
|
-
|
404
|
-
|
405
|
-
- `--out url` updates:
|
406
|
-
- supports redirects
|
407
|
-
- use `PUT` method by default
|
408
|
-
- use a cURL like options (for example: `cucumber --out 'http://example.com -X POST -H Content-Type: json`)
|
409
|
-
|
410
|
-
## [4.0.0.rc.5](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.4...4.0.0.rc.5) (2020-03-17)
|
411
|
-
|
264
|
+
## [4.0.0.rc.5]
|
412
265
|
### Added
|
413
|
-
|
414
266
|
- New html formatter enabled by option `--format html --out report.html`.
|
415
|
-
|
416
267
|
- Accept `--out URL` to POST results to a web server
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
## [4.0.0.rc.4](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.3...4.0.0.rc.4) (2020-02-24)
|
268
|
+
If a URL is used as output, the output will be sent with a POST request.
|
269
|
+
This can be overridden by specifying e.g. `http-method=PUT` as a query parameter.
|
270
|
+
Other `http-` prefixed query parameters will be converted to request headers
|
271
|
+
(with the `http-` prefix stripped off).
|
423
272
|
|
273
|
+
## [4.0.0.rc.4]
|
424
274
|
### Added
|
425
|
-
|
426
275
|
- Add `message`formatter which produces `Cucumber::Messages` ndjson output.
|
427
276
|
- Comply with [`cucumber-compatibility-kit](https://github.com/cucumber/cucumber/tree/master/compatibility-kit)
|
428
277
|
- Methods `log` and `attach` can be used in step definitions to attach text or images
|
429
278
|
|
430
279
|
### Deprecated
|
431
|
-
|
432
280
|
- `--format=json` in favor of the `message` formatter and the stand-alone JSON formatter
|
433
281
|
- `puts` in step definitions in favor of `log` ([cucumber#897](https://github.com/cucumber/cucumber/issues/897))
|
434
282
|
- `embed` in step definitions in favor of `attach` ([cucumber#897](https://github.com/cucumber/cucumber/issues/897))
|
435
283
|
|
436
|
-
## [4.0.0.rc.3]
|
437
|
-
|
284
|
+
## [4.0.0.rc.3]
|
438
285
|
### Changed
|
439
|
-
|
440
286
|
- Update to cucumber-wire 1.1.
|
441
287
|
|
442
|
-
## [4.0.0.rc.2]
|
443
|
-
|
288
|
+
## [4.0.0.rc.2]
|
444
289
|
### Added
|
445
|
-
|
446
290
|
- There is a new methodology in Cucumber for how the auto-loader works
|
447
291
|
- The old `load` behaviour is now replaced with a newer `require` behaviour
|
448
292
|
- Cucumber will (From version 4), now auto-load files using the `require` method
|
449
293
|
- If you wish to alter this, then you can set a top level config option: `Cucumber.use_legacy_autoloader`
|
450
294
|
- Like most config options, setting this inside a `spec_helper.rb` or `env.rb` file is advised
|
451
295
|
- For more information on this change, including why it was made. Please read this
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
296
|
+
[Blog Post](https://cucumber.io/blog/open-source/tweaking-cucumber-rubys-auto-loader/)
|
297
|
+
([#1349](https://github.com/cucumber/cucumber-ruby/pull/1349),
|
298
|
+
[#1043](https://github.com/cucumber/cucumber-ruby/issues/1043)
|
299
|
+
[luke-hill](https://github.com/luke-hill))
|
456
300
|
|
457
301
|
### Changed
|
458
|
-
|
459
302
|
- Going forward the minimum ruby version for all cucumber based gems is 2.3
|
460
|
-
|
461
|
-
|
462
|
-
### Removed
|
463
|
-
|
464
|
-
- Removed Travis publish job for cucumber-pro(a.k.a. jam)
|
465
|
-
([#1350](https://github.com/cucumber/cucumber-ruby/pull/1350)
|
466
|
-
[luke-hill](https://github.com/luke-hill))
|
467
|
-
|
468
|
-
- Drop support for JRuby. We may add this back if new versions of protobuf for JRuby
|
469
|
-
start working, or if someone can make the build pass with an older version.
|
470
|
-
All this means is we're ok to make releases while the jruby CI job is failing.
|
471
|
-
|
472
|
-
([aslakhellesoy](https://github.com/aslakhellesoy))
|
473
|
-
|
474
|
-
- Remove `dots-formatter introduced in `4.0.0rc1`
|
303
|
+
([luke-hill](https://github.com/luke-hill))
|
475
304
|
|
476
305
|
### Fixed
|
477
|
-
|
478
306
|
- Fix the placeholder expansions in the json formatter
|
479
|
-
|
480
|
-
|
307
|
+
([#1361](https://github.com/cucumber/cucumber-ruby/pull/1361)
|
308
|
+
[brasmusson](https://github.com/brasmusson))
|
481
309
|
- Fix seed printed in cucumber UI to match the seed that was actually used.
|
482
|
-
|
483
|
-
|
310
|
+
([#1329](https://github.com/cucumber/cucumber-ruby/pull/1329)
|
311
|
+
[deivid-rodriguez](https://github.com/deivid-rodriguez))
|
484
312
|
- Make SIGINT/`Ctrl+c` behavior consistent with SIGTERM/`kill` behavior - now first invocation causes existing scenario to stop running and jump to `at_exit`, second invocation causes immediate exit. Before that first invocation only instructed Cucumber to exit after scenario and second invocation caused immediate exit skipping `at_exit`.
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
### Improved
|
313
|
+
([#1353](https://github.com/cucumber/cucumber-ruby/pull/1353)
|
314
|
+
[akostadinov](https://github.com/akostadinov))
|
489
315
|
|
490
|
-
|
491
|
-
|
492
|
-
|
316
|
+
### Removed
|
317
|
+
- Removed Travis publish job for cucumber-pro(a.k.a. jam)
|
318
|
+
([#1350](https://github.com/cucumber/cucumber-ruby/pull/1350)
|
319
|
+
[luke-hill](https://github.com/luke-hill))
|
320
|
+
- Drop support for JRuby. We may add this back if new versions of protobuf for JRuby
|
321
|
+
start working, or if someone can make the build pass with an older version.
|
322
|
+
All this means is we're ok to make releases while the jruby CI job is failing.
|
323
|
+
- Remove `dots-formatter introduced in`4.0.0rc1`
|
493
324
|
|
325
|
+
## [4.0.0.rc.1]
|
494
326
|
### Added
|
495
|
-
|
496
327
|
- Added support for new `Rule` keyword. [Read more here.](https://github.com/cucumber/cucumber/blob/master/gherkin/CHANGELOG.md#6013---2018-09-25)
|
497
328
|
- Added new `dots` formatter. This is the first step of a larger strategy to move the formatters to a new architecture where they delegate to shared executables via messages.
|
498
329
|
|
499
330
|
### Changed
|
500
|
-
|
501
331
|
- Use Gherkin v6.
|
502
|
-
|
503
|
-
|
332
|
+
([#1313](https://github.com/cucumber/cucumber-ruby/pull/1313)
|
333
|
+
[brasmusson](https://github.com/brasmusson))
|
504
334
|
- Do not apply Before and After Hooks to Test Cases with no Test Steps.
|
505
|
-
|
506
|
-
|
335
|
+
([#1311](https://github.com/cucumber/cucumber-ruby/pull/1311)
|
336
|
+
[brasmusson](https://github.com/brasmusson))
|
507
337
|
- Pass the registry to the Wire plugin.
|
508
|
-
|
509
|
-
|
338
|
+
([#1309](https://github.com/cucumber/cucumber-ruby/pull/1309)
|
339
|
+
[brasmusson](https://github.com/brasmusson))
|
510
340
|
- Adapt to using the Gherkin compiler and Pickles in the core.
|
511
|
-
|
512
|
-
|
341
|
+
([#1309](https://github.com/cucumber/cucumber-ruby/pull/1309)
|
342
|
+
[brasmusson](https://github.com/brasmusson))
|
513
343
|
- Let the Pretty Formatter use events.
|
514
|
-
|
515
|
-
|
344
|
+
([#1305](https://github.com/cucumber/cucumber-ruby/pull/1305)
|
345
|
+
[brasmusson](https://github.com/brasmusson))
|
516
346
|
- Use single quotes in generated template steps ([#1323](https://github.com/cucumber/cucumber-ruby/pull/1323) [acant](https://github.com/acant))
|
517
347
|
|
518
|
-
###
|
348
|
+
### Fixed
|
349
|
+
- Wire protocol compatibility for docstrings.
|
350
|
+
([#1183](https://github.com/cucumber/cucumber-ruby/issues/1183))
|
351
|
+
- Let the Rerun Formatter handle flaky scenarios.
|
352
|
+
([#1310](https://github.com/cucumber/cucumber-ruby/pull/1310)
|
353
|
+
[brasmusson](https://github.com/brasmusson))
|
519
354
|
|
355
|
+
### Removed
|
520
356
|
- Remove the support of old style tag expressions.
|
521
|
-
|
522
|
-
|
357
|
+
([#1314](https://github.com/cucumber/cucumber-ruby/pull/1314),
|
358
|
+
[brasmusson](https://github.com/brasmusson))
|
523
359
|
- Remove the Legacy API for Formatters.
|
524
|
-
|
525
|
-
|
526
|
-
|
360
|
+
([#1230](https://github.com/cucumber/cucumber-ruby/pull/1230),
|
361
|
+
[#839](https://github.com/cucumber/cucumber-ruby/issues/839)
|
362
|
+
[brasmusson](https://github.com/brasmusson))
|
527
363
|
- Remove the JSON Pretty Formatter (which was the same as the JSON formatter).
|
528
|
-
|
364
|
+
([brasmusson](https://github.com/brasmusson))
|
529
365
|
- Remove the HTML Formatter.
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
### Fixed
|
534
|
-
|
535
|
-
- Wire protocol compatibility for docstrings.
|
536
|
-
([#1183](https://github.com/cucumber/cucumber-ruby/issues/1183))
|
537
|
-
- Let the Rerun Formatter handle flaky scenarios.
|
538
|
-
([#1310](https://github.com/cucumber/cucumber-ruby/pull/1310)
|
539
|
-
[brasmusson](https://github.com/brasmusson))
|
540
|
-
|
541
|
-
### Improved
|
542
|
-
|
543
|
-
- Code style changes completed as per backlog of Rubocop TODO file. ([#1021](https://github.com/cucumber/cucumber-ruby/issues/1021) [@jaysonesmith](https://github.com/jaysonesmith))
|
544
|
-
|
545
|
-
## [3.1.2](https://github.com/cucumber/cucumber-ruby/compare/v3.1.1...v3.1.2) (2018-07-13)
|
366
|
+
([#1306](https://github.com/cucumber/cucumber-ruby/pull/1306)
|
367
|
+
[brasmusson](https://github.com/brasmusson))
|
546
368
|
|
369
|
+
## [3.1.2]
|
547
370
|
### Changed
|
548
|
-
|
549
371
|
- Upgraded to `cucumber-core` 3.2.0
|
550
372
|
- Change to use the gherkin step location in the Json formatter.
|
551
|
-
|
552
|
-
|
553
|
-
|
373
|
+
([#1243](https://github.com/cucumber/cucumber-ruby/pull/1243),
|
374
|
+
[#1108](https://github.com/cucumber/cucumber-ruby/issues/1108)
|
375
|
+
[brasmusson](https://github.com/brasmusson))
|
554
376
|
|
555
377
|
### Fixed
|
556
|
-
|
557
378
|
- Support ParameterType with empty capture group.
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
## [3.1.1](https://github.com/cucumber/cucumber-ruby/compare/v3.1.0...v3.1.1) (2018-06-03)
|
379
|
+
([#404](https://github.com/cucumber/cucumber/issues/404)
|
380
|
+
[aslakhellesoy](https://github.com/aslakhellesoy))
|
562
381
|
|
382
|
+
## [3.1.1]
|
563
383
|
### Added
|
564
|
-
|
565
384
|
- N/A
|
566
385
|
|
567
386
|
### Changed
|
568
|
-
|
569
387
|
- Add Rubocop to default Rake task ([#1256](https://github.com/cucumber/cucumber-ruby/pull/1256) [@jaysonesmith](https://github.com/jaysonesmith))
|
570
388
|
- Upgraded `cucumber-expressions` dependency to ~> 6.0.0 ([#1299](https://github.com/cucumber/cucumber-ruby/pull/1299) [@aslakhellesoy](https://github.com/aslakhellesoy))
|
571
389
|
- Upgraded to `gherkin` 5.1.0 ([#1299](https://github.com/cucumber/cucumber-ruby/pull/1299) [@aslakhellesoy](https://github.com/aslakhellesoy))
|
572
390
|
|
573
391
|
### Deprecated
|
574
|
-
|
575
|
-
- N/A
|
576
|
-
|
577
|
-
### Removed
|
578
|
-
|
579
392
|
- N/A
|
580
393
|
|
581
394
|
### Fixed
|
582
|
-
|
583
395
|
- Make `--fail-fast` play nice with `--retry` ([#1283](https://github.com/cucumber/cucumber-ruby/pull/1283) [@yrral86](https://github.com/yrral86))
|
584
396
|
- Fix incompatible encodings error in JUnit formatter ([#1244](https://github.com/cucumber/cucumber-ruby/pull/1244) [@NickAb](https://github.com/NickAb)) (except on JRuby, see [#1259](https://github.com/cucumber/cucumber-ruby/pull/1259))
|
585
397
|
- Fix the handling of failed hooks in the JUnit Formatter ([@brasmusson](https://github.com/brasmusson))
|
586
398
|
- Fixed lengthy stacktrace when running `cucumber -f stepdefs` when steps aren't defined. ([#1286](https://github.com/cucumber/cucumber-ruby/pull/1286) [@xtrasimplicity](https://github.com/xtrasimplicity))
|
587
399
|
- Fixed an error with HTML snippet generation when `frozen_string_literal` is enabled and the `Syntax` gem is not installed. ([#1287](https://github.com/cucumber/cucumber-ruby/pull/1287) [@xtrasimplicity](https://github.com/xtrasimplicity))
|
588
400
|
|
589
|
-
###
|
590
|
-
|
401
|
+
### Removed
|
591
402
|
- N/A
|
592
403
|
|
593
|
-
## [3.1.0]
|
594
|
-
|
404
|
+
## [3.1.0]
|
595
405
|
### Added
|
596
|
-
|
597
406
|
- ParameterType transformer runs in World
|
598
|
-
|
599
|
-
|
407
|
+
([#1213](https://github.com/cucumber/cucumber-ruby/pull/1213)
|
408
|
+
[@aslakhellesoy](https://github.com/aslakhellesoy))
|
600
409
|
|
601
410
|
### Changed
|
602
|
-
|
603
411
|
- Upgraded to `cucumber-expressions` 5.0.4
|
604
412
|
- Upgraded to `cucumber-tag_expressions` 1.1.0
|
605
413
|
- Upgraded to `gherkin` 5.0.0
|
606
414
|
|
607
415
|
### Fixed
|
608
|
-
|
609
416
|
- Fix the handling of failed hooks in the JUnit Formatter ([@brasmusson](https://github.com/brasmusson))
|
610
417
|
|
611
|
-
## [3.0.2]
|
612
|
-
|
613
|
-
### Removed
|
614
|
-
|
615
|
-
- Cucumber is no longer tested on Ruby 2.1 and below.
|
616
|
-
|
418
|
+
## [3.0.2]
|
617
419
|
### Fixed
|
618
|
-
|
619
420
|
- Fix html reporter with more than one embedded screenshot ([#1216](https://github.com/cucumber/cucumber-ruby/pull/1216) [@nonkor](https://github.com/nonkor))
|
620
421
|
- Change test expectation to handle Ruby's unstable sorting ([#1210](https://github.com/cucumber/cucumber-ruby/pull/1210) [@jaysonesmith](https://github.com/jaysonesmith))
|
621
422
|
- Fix the printing of newlines in the rerun formatter - a problem introduced in [#1162](https://github.com/cucumber/cucumber-ruby/issues/1162) ([#1207](https://github.com/cucumber/cucumber-ruby/issues/1207) [@brasmusson](https://github.com/brasmusson))
|
622
423
|
- Handle the `--retry` option in profiles ([#1050](https://github.com/cucumber/cucumber-ruby/issues/1050) [@brasmusson](https://github.com/brasmusson))
|
623
424
|
|
624
|
-
|
425
|
+
### Removed
|
426
|
+
- Cucumber is no longer tested on Ruby 2.1 and below.
|
625
427
|
|
428
|
+
## [3.0.1]
|
626
429
|
### Fixed
|
627
|
-
|
628
430
|
- `ParameterType` can now override `use_for_snippets` and `prefer_for_regexp_match` without throwing an error. ([@aslakhellesoy](https://github.com/aslakhellesoy))
|
629
431
|
- Gemspec has `required_ruby_version = '>= 2.1'` ([@aslakhellesoy](https://github.com/aslakhellesoy))
|
630
432
|
|
631
|
-
## [3.0.0]
|
433
|
+
## [3.0.0]
|
434
|
+
### Added
|
435
|
+
- Handle selective strict options. ([#1169](https://github.com/cucumber/cucumber-ruby/pull/1169), [#1160](https://github.com/cucumber/cucumber-ruby/issues/1160) @brasmusson)
|
632
436
|
|
633
437
|
### Changed
|
634
|
-
|
635
438
|
- Regexp capture groups with `(\d+)` are automatically converted to `Integer`
|
636
439
|
- Rename `Step#name` to `#text` ([#1130](https://github.com/cucumber/cucumber-ruby/pull/1130) [@olleolleolle](https://github.com/olleolleolle))
|
637
440
|
- `Transform` has been removed and replaced with `ParameterType`. See [upgrading instructions](https://cucumber.io/blog/2017/09/21/upgrading-to-cucumber-3). ([#1190](https://github.com/cucumber/cucumber-ruby/issues/1190) @aslakhellesoy)
|
638
441
|
- Nested capture groups are not counted as parameters. See [upgrading instructions](https://cucumber.io/blog/2017/09/21/upgrading-to-cucumber-3). (@aslakhellesoy)
|
639
442
|
|
640
|
-
###
|
443
|
+
### Fixed
|
444
|
+
- Use absolute path in IO formatter to prevent `chdir` issues. ([#1111](https://github.com/cucumber/cucumber-ruby/pull/1111/files) @akostadinov)
|
445
|
+
- Fix bug in DataTable#symbolic_hashes ([#1200](https://github.com/cucumber/cucumber-ruby/pull/1200) @Ben-Behar)
|
446
|
+
- Fix typo in JSON formatter ([#1196](https://github.com/cucumber/cucumber-ruby/pull/1196) @alb-i986)
|
447
|
+
- Handle ambiguous steps as failed steps, when not using `--guess` ([#1132](https://github.com/cucumber/cucumber-ruby/pull/1132), [#1113](https://github.com/cucumber/cucumber-ruby/issues/1113) @MadameSheema, @enkessler, @brasmusson)
|
641
448
|
|
642
|
-
|
449
|
+
## [3.0.0.pre.2]
|
643
450
|
|
644
|
-
|
451
|
+
## [2.4.0]
|
645
452
|
|
646
|
-
|
453
|
+
## [2.3.3]
|
647
454
|
|
648
|
-
|
455
|
+
## [2.3.2]
|
649
456
|
|
650
|
-
|
457
|
+
## [2.3.1]
|
651
458
|
|
652
|
-
|
459
|
+
## [2.3.0]
|
653
460
|
|
654
|
-
|
461
|
+
## [2.2.0]
|
655
462
|
|
656
|
-
|
657
|
-
- As per [#251](https://github.com/cucumber/cucumber/issues/251): renamed History.md to CHANGELOG.md, added contributing message at beginning, and misc formatting. ([#1185](https://github.com/cucumber/cucumber-ruby/issues/1185) [jaysonesmith](https://github.com/jaysonesmith))
|
658
|
-
- Use past tense in event names (`xStarting` -> `xStarted`) ([#1166](https://github.com/cucumber/cucumber-ruby/issues/1166) @brasmusson).
|
463
|
+
## [2.1.0]
|
659
464
|
|
660
|
-
## [
|
465
|
+
## [2.0.2]
|
661
466
|
|
662
|
-
|
467
|
+
## [2.0.1]
|
663
468
|
|
664
|
-
|
665
|
-
- Remove support for Ruby 2.0.0 ([#1068](https://github.com/cucumber/cucumber-ruby/pull/1068) @mattwynne)
|
469
|
+
## [2.0.0]
|
666
470
|
|
667
|
-
|
471
|
+
## [2.0.0.rc5]
|
668
472
|
|
669
|
-
|
670
|
-
- Use newlines in the rerun file produces by the rerun formatter ([1162](https://github.com/cucumber/cucumber-ruby/issues/1162) @brasmusson)
|
671
|
-
- Detect and list flaky scenarios in the list of not ok scenarios ([#1159](https://github.com/cucumber/cucumber-ruby/pull/1159), ([1044](https://github.com/cucumber/cucumber-ruby/issues/1044)) @brasmusson)
|
672
|
-
- List all not ok scenarios in the summary ([#1158](https://github.com/cucumber/cucumber-ruby/pull/1158) @brasmusson)
|
673
|
-
- Emulate Cucumber-JS's new i18n CLI options ([#1140](https://github.com/cucumber/cucumber-ruby/pull/1140) @aidamanna)
|
674
|
-
- Use the event bus in Cucumber-Ruby-Core ([#973](https://github.com/cucumber/cucumber-ruby/pull/973) @mattwynne)
|
675
|
-
- Add --retry option to retry failed tests as part of the same run ([#920](https://github.com/cucumber/cucumber-ruby/pull/920) @DanaScheider)
|
676
|
-
- Add a summary formatter ([#999](https://github.com/cucumber/cucumber-ruby/pull/999) @mattwynne)
|
677
|
-
- Namespaced World modules ([#1007](https://github.com/cucumber/cucumber-ruby/pull/1007) @nodo)
|
678
|
-
- Add per-formatter CLI options ([#1058](https://github.com/cucumber/cucumber-ruby/pull/1058) @nodo)
|
679
|
-
- Use tag expressions for tag filtering ([#1054](https://github.com/cucumber/cucumber-ruby/pull/1054) @brasmusson)
|
680
|
-
- Add a `TestRunStarting` event ([#1082](https://github.com/cucumber/cucumber-ruby/pull/1082) @mattwynne)
|
681
|
-
|
682
|
-
### Bugfixes
|
683
|
-
|
684
|
-
- Fix the profile loader on Windows ([#1133](https://github.com/cucumber/cucumber-ruby/pulls/1133) @enkessler)
|
685
|
-
- Fix incorrect `DataTable#diff!` results ([#1102](https://github.com/cucumber/cucumber-ruby/pulls/1102) @botandrose)
|
686
|
-
- Do not apply the hooks to the test case several times when using the retry option ([#1098](https://github.com/cucumber/cucumber-ruby/issues/1098) @brasmusson)
|
687
|
-
- Fix bug in comparing empty data tables ([#1097](https://github.com/cucumber/cucumber-ruby/pulls/1097), resolves [#1096](https://github.com/cucumber/cucumber-ruby/issues/1096))
|
688
|
-
- Configure Gemfile to fetch cucumber-ruby-wire from git if the repo is not found locally ([#983](https://github.com/cucumber/cucumber-ruby/pulls/983), resolves [#961](https://github.com/cucumber/cucumber-ruby/issues/961))
|
689
|
-
- Fix regression displaying CLI help ([#991](https://github.com/cucumber/cucumber-ruby/pull/991) @mattwynne)
|
690
|
-
- with_filtered_backtrace called on Test::Result::Unknown with strange feature file ([#967](https://github.com/cucumber/cucumber-ruby/issues/967) @danascheider)
|
691
|
-
- fix HTML formatter backtrace duplicate line bug ([#965](https://gthub.com/cucumber/cucumber-ruby/pull/965) @josephks)
|
692
|
-
- Update env names correctly ([#1067](https://github.com/cucumber/cucumber-ruby/pull/1067) @junaruga)
|
693
|
-
- Relax filter for "/usr/local/ruby-X.Y.Z/bin/bundle" ([#1079](https://github.com/cucumber/cucumber-ruby/pull/1079) @junaruga)
|
694
|
-
- Avoid showing "@ rb_sysopen" noise for Ruby 2.4 ([#1080](https://github.com/cucumber/cucumber-ruby/pull/1080) @junaruga)
|
695
|
-
|
696
|
-
### Refactoring / Developer Experience
|
697
|
-
|
698
|
-
- Spec: Events.registry exercised ([#1126](https://github.com/cucumber/cucumber-ruby/pulls/1126) @olleolleolle)
|
699
|
-
- Remove programming language abstraction ([#1131](https://github.com/cucumber/cucumber-ruby/pulls/1131) @tooky, @mattwynne)
|
700
|
-
- Update cucumber yaml to use new tag syntax ([#1147](https://github.com/cucumber/cucumber-ruby/pulls/1147) @danascheider)
|
701
|
-
- Turn off Windows failures ([#1142](https://github.com/cucumber/cucumber-ruby/pulls/1142) @enkessler)
|
702
|
-
- Add script to update history.md ([#1141](https://github.com/cucumber/cucumber-ruby/pulls/1141) @mattwynne)
|
703
|
-
- Update Ruby 2.3 and 2.4 in .travis.yml ([#1100](https://github.com/cucumber/cucumber-ruby/pull/1100) @junaruga)
|
704
|
-
- Fixes for rubocop violations ([#1095](https://github.com/cucumber/cucumber-ruby/pull/1095) @bv)
|
705
|
-
- Fixes for rubocop violations ([#1042](https://github.com/cucumber/cucumber-ruby/pull/1042) @phoebeclarke)
|
706
|
-
- Add frozen string literal magic comment to files and fix issues it causes ([#996](https://github.com/cucumber/cucumber-ruby/pull/996) @twalpole)
|
707
|
-
- Several tests failing with rbenv ([#1017](https://github.com/cucumber/cucumber-ruby/issues/1017) @nodo)
|
708
|
-
- Add rubocop to check the style of the codebase ([1014](https://github.com/cucumber/cucumber-ruby/issues/1014) @nodo)
|
709
|
-
- Fix the rubocop violation 'Lint/AmbiguousRegexpLiteral' ([1025](https://github.com/cucumber/cucumber-ruby/pull/1025) @pmatsinopoulos)
|
710
|
-
- Fix rubocop violations ([#1024](https://github.com/cucumber/cucumber-ruby/pull/1024) @madundead)
|
711
|
-
- Fix style violations ([#1023](https://github.com/cucumber/cucumber-ruby/pull/1023) @nodo)
|
712
|
-
- fix Lint/UselessAssignment ([1029](https://github.com/cucumber/cucumber-ruby/pull/1029) @hotovson)
|
713
|
-
- fix Lint/EndAlignment ([#1032](https://github.com/cucumber/cucumber-ruby/pull/1032) @hotovson)
|
714
|
-
- fix Lint/NonLocalExitFromIterator ([#1037](https://github.com/cucumber/cucumber-ruby/pull/1037) @hotovson)
|
715
|
-
- fix Lint/UselessAccessModifier ([#1036](https://github.com/cucumber/cucumber-ruby/pull/1036) @hotovson)
|
716
|
-
- Refs #1021 - Fixes the rubocop violation 'Style/StringLiterals' ([#1027](https://github.com/cucumber/cucumber-ruby/pull/1027) @pmatsinopoulos)
|
717
|
-
- Fixes rubocop violation Lint/StringConversionInInterpolation ([#1038](https://github.com/cucumber/cucumber-ruby/pull/1038) @hotovson)
|
718
|
-
- Fixes rubocop violation Style/FormatString ([#1040](https://github.com/cucumber/cucumber-ruby/pull/1040) @pmatsinopoulos)
|
719
|
-
- Don't check temporary files by rubocop ([#1034](https://github.com/cucumber/cucumber-ruby/pull/1034) @hotovson)
|
720
|
-
- fix Lint/NestedMethodDefinition ([#1035](https://github.com/cucumber/cucumber-ruby/pull/1035) @hotovson)
|
721
|
-
- fix Lint/UnusedArgument ([#1033](https://github.com/cucumber/cucumber-ruby/pull/1033) @hotovson)
|
722
|
-
- Fixes rubocop violation Performance/StringReplacement ([#1039](https://github.com/cucumber/cucumber-ruby/pull/1039) @pmatsinopoulos)
|
723
|
-
- Fix an json compile error for "bundle install" on Ruby 2.4 ([#1069](https://github.com/cucumber/cucumber-ruby/pull/1069) @junaruga)
|
724
|
-
- Add Ruby 2.4.0 as allow_failures in .travis.yml ([#1078](https://github.com/cucumber/cucumber-ruby/pull/1078) @junaruga)
|
725
|
-
- Add ruby-head as a allow failures in .travis.yml ([#1087](https://github.com/cucumber/cucumber-ruby/pull/1087) @junaruga)
|
726
|
-
- Refactoring for Rakefile to display cucumber task by "rake -T". ([#1088](https://github.com/cucumber/cucumber-ruby/pull/1088) @junaruga)
|
727
|
-
- Fix some rubocop offenses ([#1093](https://github.com/cucumber/cucumber-ruby/pull/1093) @bv)
|
728
|
-
- Add supported platforms to README.md. ([#1092](https://github.com/cucumber/cucumber-ruby/pull/1092) @junaruga)
|
729
|
-
- Remove Ruby 2.4 from allow_failures in .travis.yml. ([#1099](https://github.com/cucumber/cucumber-ruby/pull/1099) @junaruga)
|
730
|
-
- History: change bad character to space ([#1104](https://github.com/cucumber/cucumber-ruby/pull/1104) @olleolleolle)
|
731
|
-
- Travis: jruby-9.1.8.0 in CI ([#1105](https://github.com/cucumber/cucumber-ruby/pull/1105) @olleolleolle)
|
732
|
-
- Fix rubocop offenses 1021 003 ([#1107](https://github.com/cucumber/cucumber-ruby/pull/1107) @bv)
|
733
|
-
- Travis: use jruby-9.1.10.0 ([#1114](https://github.com/cucumber/cucumber-ruby/pull/1114) @olleolleolle)
|
734
|
-
- Change the Progress, Usage and Stepdef formatter use events ([#977](https://github.com/cucumber/cucumber-ruby/pull/977), [#1129](https://github.com/cucumber/cucumber-ruby/pull/1129) @brasmusson)
|
735
|
-
|
736
|
-
## [2.4.0](https://github.com/cucumber/cucumber-ruby/compare/v2.3.3...v2.4.0) (2016-06-09)
|
473
|
+
## Bugfixes
|
737
474
|
|
738
|
-
|
475
|
+
## [2.0.0.rc.4]
|
739
476
|
|
740
|
-
|
477
|
+
## [2.0.0.rc.3]
|
741
478
|
|
742
|
-
|
479
|
+
## [2.0.0.rc.2]
|
480
|
+
|
481
|
+
## [2.0.0.rc.1]
|
482
|
+
|
483
|
+
## [2.0.0.beta.5]
|
484
|
+
|
485
|
+
## [2.0.0.beta.4]
|
486
|
+
|
487
|
+
## [2.0.0.beta.3]
|
488
|
+
|
489
|
+
## [2.0.0.beta.2]
|
490
|
+
|
491
|
+
## [2.0.0.beta.1]
|
492
|
+
|
493
|
+
## [1.3.16]
|
494
|
+
|
495
|
+
## [1.3.15]
|
496
|
+
|
497
|
+
## [1.3.14]
|
498
|
+
|
499
|
+
## [1.3.13]
|
500
|
+
|
501
|
+
## [1.3.12]
|
502
|
+
|
503
|
+
## [1.3.11]
|
504
|
+
|
505
|
+
## [1.3.10]
|
506
|
+
|
507
|
+
## [1.3.9]
|
508
|
+
|
509
|
+
## [1.3.8]
|
510
|
+
|
511
|
+
## [1.3.7]
|
512
|
+
|
513
|
+
## [1.3.6]
|
514
|
+
|
515
|
+
## [1.3.5]
|
516
|
+
|
517
|
+
## [1.3.4]
|
518
|
+
|
519
|
+
## [1.3.3]
|
520
|
+
|
521
|
+
## [1.3.2]
|
522
|
+
|
523
|
+
## [1.3.1]
|
524
|
+
|
525
|
+
## [1.3.0]
|
526
|
+
|
527
|
+
## [1.2.5]
|
528
|
+
|
529
|
+
## 1.2.4
|
530
|
+
|
531
|
+
## [1.2.3]
|
532
|
+
|
533
|
+
## [1.2.2]
|
534
|
+
|
535
|
+
## [1.2.1]
|
536
|
+
|
537
|
+
## [1.2.0]
|
538
|
+
|
539
|
+
## [1.1.9]
|
540
|
+
|
541
|
+
## [1.1.8]
|
542
|
+
|
543
|
+
## [1.1.7]
|
544
|
+
|
545
|
+
## [1.1.6]
|
546
|
+
|
547
|
+
## [1.1.5]
|
548
|
+
|
549
|
+
## [1.1.4]
|
550
|
+
|
551
|
+
## [1.1.3]
|
552
|
+
|
553
|
+
## [1.1.2]
|
554
|
+
|
555
|
+
## [1.1.0]
|
556
|
+
|
557
|
+
## [1.0.6]
|
558
|
+
|
559
|
+
## [1.0.5]
|
560
|
+
|
561
|
+
## [1.0.4]
|
562
|
+
|
563
|
+
## [1.0.3]
|
564
|
+
|
565
|
+
## [1.0.2]
|
566
|
+
|
567
|
+
## [1.0.1]
|
568
|
+
|
569
|
+
## [1.0.0]
|
570
|
+
|
571
|
+
## [0.10.6]
|
572
|
+
|
573
|
+
## [0.10.5]
|
574
|
+
|
575
|
+
## [0.10.3]
|
576
|
+
|
577
|
+
## [0.10.2]
|
578
|
+
|
579
|
+
## [0.10.1]
|
580
|
+
|
581
|
+
## [0.10.0]
|
582
|
+
|
583
|
+
## [0.9.4]
|
584
|
+
|
585
|
+
## [0.9.3]
|
586
|
+
|
587
|
+
## [0.9.2]
|
588
|
+
|
589
|
+
## [0.9.1]
|
590
|
+
|
591
|
+
## [0.9.0]
|
592
|
+
|
593
|
+
## [0.8.5]
|
594
|
+
|
595
|
+
## [0.8.4]
|
596
|
+
|
597
|
+
## [0.8.3]
|
598
|
+
|
599
|
+
## [0.8.2]
|
600
|
+
|
601
|
+
## [0.8.1]
|
602
|
+
|
603
|
+
## [0.8.0]
|
604
|
+
|
605
|
+
## [0.7.3]
|
606
|
+
|
607
|
+
## [0.7.2]
|
608
|
+
|
609
|
+
## [0.7.1]
|
610
|
+
|
611
|
+
## [0.7.0]
|
612
|
+
|
613
|
+
## [0.7.0.beta.8]
|
614
|
+
|
615
|
+
## [0.7.0.beta.7]
|
616
|
+
|
617
|
+
## [0.7.0.beta.6]
|
618
|
+
|
619
|
+
## [0.7.0.beta.5]
|
620
|
+
|
621
|
+
## [0.7.0.beta.4]
|
622
|
+
|
623
|
+
## [0.7.0.beta.3]
|
624
|
+
|
625
|
+
## [0.7.0.beta.2]
|
626
|
+
|
627
|
+
## [0.7.0.beta.1]
|
628
|
+
|
629
|
+
## [0.6.4]
|
630
|
+
|
631
|
+
## [0.6.3]
|
632
|
+
|
633
|
+
## [0.6.2]
|
634
|
+
|
635
|
+
## [0.6.1]
|
636
|
+
|
637
|
+
## [0.6.0]
|
638
|
+
|
639
|
+
## [0.5.3]
|
640
|
+
|
641
|
+
## [0.5.2]
|
642
|
+
|
643
|
+
## [0.5.1]
|
644
|
+
|
645
|
+
## [0.5.0]
|
646
|
+
|
647
|
+
## [0.4.4]
|
648
|
+
|
649
|
+
## [0.4.3]
|
650
|
+
|
651
|
+
## [0.4.2]
|
652
|
+
|
653
|
+
## [0.4.1]
|
654
|
+
|
655
|
+
## [0.4.0]
|
656
|
+
|
657
|
+
## [0.3.104]
|
658
|
+
|
659
|
+
## [0.3.103]
|
660
|
+
|
661
|
+
## [0.3.102]
|
662
|
+
|
663
|
+
## [0.3.101]
|
664
|
+
|
665
|
+
## [0.3.100]
|
666
|
+
|
667
|
+
## [0.3.99]
|
668
|
+
|
669
|
+
## [0.3.98]
|
670
|
+
|
671
|
+
## [0.3.97]
|
672
|
+
|
673
|
+
## [0.3.96]
|
674
|
+
|
675
|
+
## [0.3.95]
|
676
|
+
|
677
|
+
## [0.3.94]
|
678
|
+
|
679
|
+
## [0.3.93]
|
680
|
+
|
681
|
+
## [0.3.92]
|
682
|
+
|
683
|
+
## [0.3.91]
|
684
|
+
|
685
|
+
## [0.3.90]
|
686
|
+
|
687
|
+
## [0.3.11]
|
688
|
+
|
689
|
+
## [0.3.10]
|
690
|
+
|
691
|
+
## [0.3.9]
|
692
|
+
|
693
|
+
## [0.3.8]
|
694
|
+
|
695
|
+
## [0.3.7]
|
696
|
+
|
697
|
+
## [0.3.6]
|
698
|
+
|
699
|
+
## [0.3.5]
|
700
|
+
|
701
|
+
## [0.3.4]
|
702
|
+
|
703
|
+
## [0.3.3]
|
704
|
+
|
705
|
+
## [0.3.2]
|
706
|
+
|
707
|
+
## [0.3.1]
|
708
|
+
|
709
|
+
## [0.3.0]
|
710
|
+
|
711
|
+
## [0.2.3]
|
712
|
+
|
713
|
+
## [0.2.2]
|
714
|
+
|
715
|
+
## [0.2.1]
|
716
|
+
|
717
|
+
## [0.2.0]
|
718
|
+
|
719
|
+
## 0.1.16.4
|
720
|
+
|
721
|
+
## [0.1.16]
|
722
|
+
|
723
|
+
## [0.1.15]
|
724
|
+
|
725
|
+
## [0.1.14]
|
726
|
+
|
727
|
+
## [0.1.13]
|
728
|
+
|
729
|
+
## [0.1.12]
|
730
|
+
|
731
|
+
## [0.1.11]
|
732
|
+
|
733
|
+
## [0.1.10]
|
734
|
+
|
735
|
+
## [0.1.9]
|
736
|
+
|
737
|
+
## [0.1.8]
|
743
738
|
|
744
|
-
|
745
|
-
- Make random order stable and platform independent ([#974](https://github.com/cucumber/cucumber-ruby/pull/974), closes [#971](https://github.com/cucumber/cucumber-ruby/issues/971))
|
746
|
-
- Run scenarios in fully random order ([#970](https://github.com/cucumber/cucumber-ruby/pull/970) @threedaymonk)
|
747
|
-
- Adding Test Step in AfterStep hook. ([#931](https://github.com/cucumber/cucumber-ruby/pull/931) @t-morgan)
|
748
|
-
- Handle even more exotic rerun file formats seen in the wild ([#928](https://github.com/cucumber/cucumber-ruby/pull/928) @mcrmfc)
|
749
|
-
- Allow Rake task to accept multiple profiles. ([#907](https://github.com/cucumber/cucumber-ruby/pull/907) @jasonkarns)
|
750
|
-
- Let the JUnit formatter handle running test cases for different features interweaved ([#952](https://github.com/cucumber/cucumber-ruby/issues/952) @brasmusson)
|
739
|
+
## [0.1.7]
|
751
740
|
|
752
|
-
## [
|
741
|
+
## [0.1.6]
|
753
742
|
|
754
|
-
|
743
|
+
[Unreleased]: https://github.com/cucumber/cucumber-ruby/compare/v8.0.0...main
|
744
|
+
[8.0.0]: https://github.com/cucumber/cucumber-ruby/compare/v8.0.0.rc.1...v8.0.0
|
745
|
+
[8.0.0.RC.1]: https://github.com/cucumber/cucumber-ruby/compare/v7.1.0...v8.0.0.rc.1
|
746
|
+
[7.1.0]: https://github.com/cucumber/cucumber-ruby/compare/v7.0.0...v7.1.0
|
747
|
+
[7.0.0]: https://github.com/cucumber/cucumber-ruby/compare/v6.1.0...v7.0.0
|
748
|
+
[v6.1.0]: https://github.com/cucumber/cucumber-ruby/compare/v6.0.0...v6.1.0
|
749
|
+
[v6.0.0]: https://github.com/cucumber/cucumber-ruby/compare/v5.3.0...v6.0.0
|
750
|
+
[5.3.0]: https://github.com/cucumber/cucumber-ruby/compare/v5.2.0...v5.3.0
|
751
|
+
[5.2.0]: https://github.com/cucumber/cucumber-ruby/compare/v5.1.3...v5.2.0
|
752
|
+
[5.1.3]: https://github.com/cucumber/cucumber-ruby/compare/v5.1.2...v5.1.3
|
753
|
+
[5.1.2]: https://github.com/cucumber/cucumber-ruby/compare/v5.1.1...v5.1.2
|
754
|
+
[5.1.1]: https://github.com/cucumber/cucumber-ruby/compare/v5.1.0...v5.1.1
|
755
|
+
[5.1.0]: https://github.com/cucumber/cucumber-ruby/compare/v5.0.0...5.1.0
|
756
|
+
[5.0.0]: https://github.com/cucumber/cucumber-ruby/compare/v4.1.0...5.0.0
|
757
|
+
[4.1.0]: https://github.com/cucumber/cucumber-ruby/compare/v4.0.1...v4.1.0
|
758
|
+
[4.0.1]: https://github.com/cucumber/cucumber-ruby/compare/v4.0.0...v4.0.1
|
759
|
+
[4.0.0]: https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...v4.0.0
|
760
|
+
[4.0.0.rc.6]: https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...4.0.0.rc.6
|
761
|
+
[4.0.0.rc.5]: https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.4...4.0.0.rc.5
|
762
|
+
[4.0.0.rc.4]: https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.3...4.0.0.rc.4
|
763
|
+
[4.0.0.rc.3]: https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.2...v4.0.0.rc.3
|
764
|
+
[4.0.0.rc.2]: https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.1...v4.0.0.rc.2
|
765
|
+
[4.0.0.rc.1]: https://github.com/cucumber/cucumber-ruby/compare/v3.1.2...v4.0.0.rc.1
|
766
|
+
[3.1.2]: https://github.com/cucumber/cucumber-ruby/compare/v3.1.1...v3.1.2
|
767
|
+
[3.1.1]: https://github.com/cucumber/cucumber-ruby/compare/v3.1.0...v3.1.1
|
768
|
+
[3.1.0]: https://github.com/cucumber/cucumber-ruby/compare/v3.0.2...v3.1.0
|
769
|
+
[3.0.2]: https://github.com/cucumber/cucumber-ruby/compare/v3.0.1...v3.0.2
|
770
|
+
[3.0.1]: https://github.com/cucumber/cucumber-ruby/compare/v3.0.0...3.0.1
|
771
|
+
[3.0.0]: https://github.com/cucumber/cucumber-ruby/compare/v3.0.0.pre.2...v3.0.0
|
772
|
+
[3.0.0.pre.2]: https://github.com/cucumber/cucumber-ruby/compare/v2.4.0...v3.0.0.pre.2
|
773
|
+
[2.4.0]: https://github.com/cucumber/cucumber-ruby/compare/v2.3.3...v2.4.0
|
774
|
+
[2.3.3]: https://github.com/cucumber/cucumber-ruby/compare/v2.3.2...v2.3.3
|
775
|
+
[2.3.2]: https://github.com/cucumber/cucumber-ruby/compare/v2.3.1...v2.3.2
|
776
|
+
[2.3.1]: https://github.com/cucumber/cucumber-ruby/compare/v2.3.0...v2.3.1
|
777
|
+
[2.3.0]: https://github.com/cucumber/cucumber-ruby/compare/v2.2.0...v2.3.0
|
778
|
+
[2.2.0]: https://github.com/cucumber/cucumber-ruby/compare/v2.1.0...v2.2.0
|
779
|
+
[2.1.0]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.2...v2.1.0
|
780
|
+
[2.0.2]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.1...v2.0.2
|
781
|
+
[2.0.1]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0...v2.0.1
|
782
|
+
[2.0.0]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.5...v2.0.0
|
783
|
+
[2.0.0.rc5]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.4...v2.0.0.rc.5
|
784
|
+
[2.0.0.rc.4]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.3...2.0.0.rc.4
|
785
|
+
[2.0.0.rc.3]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.2...v2.0.0.rc.3
|
786
|
+
[2.0.0.rc.2]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.1...v2.0.0.rc.2
|
787
|
+
[2.0.0.rc.1]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.5...v2.0.0.rc.1
|
788
|
+
[2.0.0.beta.5]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.4...v2.0.0.beta.5
|
789
|
+
[2.0.0.beta.4]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.3...v2.0.0.beta.4
|
790
|
+
[2.0.0.beta.3]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.2...v2.0.0.beta.3
|
791
|
+
[2.0.0.beta.2]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.1...v2.0.0.beta.2
|
792
|
+
[2.0.0.beta.1]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v2.0.0.beta.1
|
793
|
+
[1.3.16]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.15...v1.3.16
|
794
|
+
[1.3.15]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.14...v1.3.15
|
795
|
+
[1.3.14]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.13...v1.3.14
|
796
|
+
[1.3.13]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.12...v1.3.13
|
797
|
+
[1.3.12]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.11...v1.3.12
|
798
|
+
[1.3.11]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.10...v1.3.11
|
799
|
+
[1.3.10]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.9...v1.3.10
|
800
|
+
[1.3.9]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v1.3.9
|
801
|
+
[1.3.8]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.7...v1.3.8
|
802
|
+
[1.3.7]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.6...v1.3.7
|
803
|
+
[1.3.6]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.5...v1.3.6
|
804
|
+
[1.3.5]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.4...v1.3.5
|
805
|
+
[1.3.4]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.3...v1.3.4
|
806
|
+
[1.3.3]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.2...v1.3.3
|
807
|
+
[1.3.2]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.1...v1.3.2
|
808
|
+
[1.3.1]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.0...v1.3.1
|
809
|
+
[1.3.0]: https://github.com/cucumber/cucumber-ruby/compare/v1.2.5...v1.3.0
|
810
|
+
[1.2.5]: https://github.com/cucumber/cucumber-ruby/compare/v1.2.3...v1.2.5
|
811
|
+
[1.2.3]: https://github.com/cucumber/cucumber-ruby/compare/v1.2.2...v1.2.3
|
812
|
+
[1.2.2]: https://github.com/cucumber/cucumber-ruby/compare/v1.2.1...v1.2.2
|
813
|
+
[1.2.1]: https://github.com/cucumber/cucumber-ruby/compare/v1.2.0...v1.2.1
|
814
|
+
[1.2.0]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.9...v1.2.0
|
815
|
+
[1.1.9]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.8...v1.1.9
|
816
|
+
[1.1.8]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.7...v1.1.8
|
817
|
+
[1.1.7]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.6...v1.1.7
|
818
|
+
[1.1.6]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.5...v1.1.6
|
819
|
+
[1.1.5]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.4...v1.1.5
|
820
|
+
[1.1.4]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.3...v1.1.4
|
821
|
+
[1.1.3]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.2...v1.1.3
|
822
|
+
[1.1.2]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.1...v1.1.2
|
823
|
+
[1.1.0]: https://github.com/cucumber/cucumber-ruby/compare/v1.0.6...v1.1.0
|
824
|
+
[1.0.6]: https://github.com/cucumber/cucumber-ruby/compare/v1.0.5...v1.0.6
|
825
|
+
[1.0.5]: https://github.com/cucumber/cucumber-ruby/compare/v1.0.4...v1.0.5
|
826
|
+
[1.0.4]: https://github.com/cucumber/cucumber-ruby/compare/v1.0.3...v1.0.4
|
827
|
+
[1.0.3]: https://github.com/cucumber/cucumber-ruby/compare/v1.0.2...v1.0.3
|
828
|
+
[1.0.2]: https://github.com/cucumber/cucumber-ruby/compare/v1.0.1...v1.0.2
|
829
|
+
[1.0.1]: https://github.com/cucumber/cucumber-ruby/compare/v1.0.0...v1.0.1
|
830
|
+
[1.0.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.10.6...v1.0.0
|
831
|
+
[0.10.6]: https://github.com/cucumber/cucumber-ruby/compare/v0.10.5...v0.10.6
|
832
|
+
[0.10.5]: https://github.com/cucumber/cucumber-ruby/compare/v0.10.3...v0.10.5
|
833
|
+
[0.10.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.10.2...v0.10.3
|
834
|
+
[0.10.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.10.1...v0.10.2
|
835
|
+
[0.10.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.10.0...v0.10.1
|
836
|
+
[0.10.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.9.4...v0.10.0
|
837
|
+
[0.9.4]: https://github.com/cucumber/cucumber-ruby/compare/v0.9.3...v0.9.4
|
838
|
+
[0.9.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.9.2...v0.9.3
|
839
|
+
[0.9.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.9.1...v0.9.2
|
840
|
+
[0.9.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.9.0...v0.9.1
|
841
|
+
[0.9.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.8.5...v0.9.0
|
842
|
+
[0.8.5]: https://github.com/cucumber/cucumber-ruby/compare/v0.8.4...v0.8.5
|
843
|
+
[0.8.4]: https://github.com/cucumber/cucumber-ruby/compare/v0.8.3...v0.8.4
|
844
|
+
[0.8.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.8.2...v0.8.3
|
845
|
+
[0.8.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.8.1...v0.8.2
|
846
|
+
[0.8.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.8.0...v0.8.1
|
847
|
+
[0.8.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.3...v0.8.0
|
848
|
+
[0.7.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.2...v0.7.3
|
849
|
+
[0.7.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.1...v0.7.2
|
850
|
+
[0.7.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0...v0.7.1
|
851
|
+
[0.7.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.8...v0.7.0
|
852
|
+
[0.7.0.beta.8]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.7...v0.7.0.beta.8
|
853
|
+
[0.7.0.beta.7]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.6...v0.7.0.beta.7
|
854
|
+
[0.7.0.beta.6]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.5...v0.7.0.beta.6
|
855
|
+
[0.7.0.beta.5]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.4...v0.7.0.beta.5
|
856
|
+
[0.7.0.beta.4]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.3...v0.7.0.beta.4
|
857
|
+
[0.7.0.beta.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.2...v0.7.0.beta.3
|
858
|
+
[0.7.0.beta.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.1...v0.7.0.beta.2
|
859
|
+
[0.7.0.beta.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.6.4...v0.7.0.beta.1
|
860
|
+
[0.6.4]: https://github.com/cucumber/cucumber-ruby/compare/v0.6.3...v0.6.4
|
861
|
+
[0.6.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.6.2...v0.6.3
|
862
|
+
[0.6.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.6.1...v0.6.2
|
863
|
+
[0.6.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.6.0...v0.6.1
|
864
|
+
[0.6.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.5.3...v0.6.0
|
865
|
+
[0.5.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.5.2...v0.5.3
|
866
|
+
[0.5.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.5.1...v0.5.2
|
867
|
+
[0.5.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.5.0...v0.5.1
|
868
|
+
[0.5.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.4.4...v0.5.0
|
869
|
+
[0.4.4]: https://github.com/cucumber/cucumber-ruby/compare/v0.4.3...v0.4.4
|
870
|
+
[0.4.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.4.2...v0.4.3
|
871
|
+
[0.4.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.4.1...v0.4.2
|
872
|
+
[0.4.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.4.0...v0.4.1
|
873
|
+
[0.4.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.104...v0.4.0
|
874
|
+
[0.3.104]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.103...v0.3.104
|
875
|
+
[0.3.103]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.102...v0.3.103
|
876
|
+
[0.3.102]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.101...v0.3.102
|
877
|
+
[0.3.101]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.100...v0.3.101
|
878
|
+
[0.3.100]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.99...v0.3.100
|
879
|
+
[0.3.99]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.98...v0.3.99
|
880
|
+
[0.3.98]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.97...v0.3.98
|
881
|
+
[0.3.97]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.96...v0.3.97
|
882
|
+
[0.3.96]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.95...v0.3.96
|
883
|
+
[0.3.95]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.94...v0.3.95
|
884
|
+
[0.3.94]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.93...v0.3.94
|
885
|
+
[0.3.93]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.92...v0.3.93
|
886
|
+
[0.3.92]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.91...v0.3.92
|
887
|
+
[0.3.91]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.90...v0.3.91
|
888
|
+
[0.3.90]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.11...v0.3.90
|
889
|
+
[0.3.11]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.10...v0.3.11
|
890
|
+
[0.3.10]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.9...v0.3.10
|
891
|
+
[0.3.9]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.8...v0.3.9
|
892
|
+
[0.3.8]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.7...v0.3.8
|
893
|
+
[0.3.7]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.6...v0.3.7
|
894
|
+
[0.3.6]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.5...v0.3.6
|
895
|
+
[0.3.5]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.4...v0.3.5
|
896
|
+
[0.3.4]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.3...v0.3.4
|
897
|
+
[0.3.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.2...v0.3.3
|
898
|
+
[0.3.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.1...v0.3.2
|
899
|
+
[0.3.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.0...v0.3.1
|
900
|
+
[0.3.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.2.3...v0.3.0
|
901
|
+
[0.2.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.2.2...v0.2.3
|
902
|
+
[0.2.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.2.1...v0.2.2
|
903
|
+
[0.2.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.2.0...v0.2.1
|
904
|
+
[0.2.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.16...v0.2.0
|
905
|
+
[0.1.16]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.15...v0.1.16
|
906
|
+
[0.1.15]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.14...v0.1.15
|
907
|
+
[0.1.14]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.13...v0.1.14
|
908
|
+
[0.1.13]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.12...v0.1.13
|
909
|
+
[0.1.12]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.11...v0.1.12
|
910
|
+
[0.1.11]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.10...v0.1.11
|
911
|
+
[0.1.10]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.9...v0.1.10
|
912
|
+
[0.1.9]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.8...v0.1.9
|
913
|
+
[0.1.8]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.7...v0.1.8
|
914
|
+
[0.1.7]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.6...v0.1.7
|
915
|
+
[0.1.6]: https://github.com/cucumber/cucumber-ruby/compare/f3292f4023a707099d02602b2bd6c4ca3cec6820...v0.1.6
|
916
|
+
y) to the installer message. Please take a few moments to help us all learn more about how you're using Cucumber and BDD.
|
755
917
|
|
756
918
|
### Bugfixes
|
757
919
|
|