cucumber 8.0.0 → 9.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,779 +1,919 @@
1
- # CHANGE LOG
1
+ # Changelog
2
2
 
3
- All notable changes to this project will be documented in this file.
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...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
16
-
17
- ### Fixed
18
-
19
- ### Changed
20
-
21
- ### Removed
22
-
23
- ### Security fixes
24
-
25
- ### Deprecated
26
-
27
- ### Dependencies
28
-
29
-
30
- ## [8.0.0](https://github.com/cucumber/cucumber-ruby/compare/v8.0.0.rc.1...v8.0.0)
31
-
32
- ### Added
33
-
34
- - Add a *WARNING* message when using a space-separated string with cucumber_opts
35
- ([PR#](https://github.com/cucumber/cucumber-ruby/pull/1624)
36
- [Issue#1614](https://github.com/cucumber/cucumber-ruby/issues/1614))
37
-
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))
38
10
  - Add support for TruffleRuby
39
- ([PR#1612](https://github.com/cucumber/cucumber-ruby/pull/1612)
40
- [gogainda](https://github.com/gogainda))
41
-
11
+ ([PR#1612](https://github.com/cucumber/cucumber-ruby/pull/1612)
12
+ [gogainda](https://github.com/gogainda))
42
13
  - Add support for named hooks
43
- ([PR#1636](https://github.com/cucumber/cucumber-ruby/pull/1636))
14
+ ([PR#1636](https://github.com/cucumber/cucumber-ruby/pull/1636))
44
15
 
45
16
  ### Fixed
46
-
47
17
  - Use `required_rubygems_version` instead of `rubygems_version`([PR#1629](https://github.com/cucumber/cucumber-ruby/pull/1629))
48
-
49
18
  - Suppress RSspec deprecation warnings([PR#1631](https://github.com/cucumber/cucumber-ruby/pull/1631))
50
19
 
51
- ## [8.0.0.RC.1](https://github.com/cucumber/cucumber-ruby/compare/v7.1.0...v8.0.0.rc.1)
20
+ ## [8.0.0.RC.1]
21
+ ### Changed
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))
52
31
 
53
32
  ### Fixed
54
-
55
33
  - Fix TestRunFinished success property in html formatter and all formatters
56
- based on the messages: it now returns true if the run has passed
57
- ([PR#1606](https://github.com/cucumber/cucumber-ruby/pull/1606)
58
- [Issue#1604](https://github.com/cucumber/cucumber-ruby/issues/1604))
59
-
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))
60
37
  - Fix usage of namespaced modules across multiple scenarios
61
- ([PR#1603](https://github.com/cucumber/cucumber-ruby/pull/1603)
62
- [Issue#1595](https://github.com/cucumber/cucumber-ruby/issues/1595))
63
-
38
+ ([PR#1603](https://github.com/cucumber/cucumber-ruby/pull/1603)
39
+ [Issue#1595](https://github.com/cucumber/cucumber-ruby/issues/1595))
64
40
  - Do not serialize Messages::Hook#tag_expression if it is empty.
65
- ([PR#1579](https://github.com/cucumber/cucumber-ruby/pull/1579))
66
-
41
+ ([PR#1579](https://github.com/cucumber/cucumber-ruby/pull/1579))
67
42
  - JSON Formatter uses "pretty" output format
68
- ([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
69
-
43
+ ([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
70
44
  - Fixed JSON Formatter "end of background" detection.
71
- ([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
72
-
45
+ ([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
73
46
  - Fixed JSON Formatter expansion of Scenario Outline templates in Doc Strings.
74
- ([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
75
-
47
+ ([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
76
48
  - Removed usage of `eval` in `Cucumber::Term::ANSIColor` and `Cucumber::Formatter::ANSIColor`.
77
- ([PR#1589](https://github.com/cucumber/cucumber-ruby/pull/1589)
78
- [Issue#1583](https://github.com/cucumber/cucumber-ruby/issues/1583))
79
-
49
+ ([PR#1589](https://github.com/cucumber/cucumber-ruby/pull/1589)
50
+ [Issue#1583](https://github.com/cucumber/cucumber-ruby/issues/1583))
80
51
  - Fixed `DataTable#map_headers` when headers have the same prefix.
81
- ([PR#1598](https://github.com/cucumber/cucumber-ruby/pull/1598)
82
- [Issue#1450](https://github.com/cucumber/cucumber-ruby/issues/1450))
83
-
84
- ### Changed
85
-
86
- - Replace dependency [cucumber-create-meta](https://rubygems.org/gems/cucumber-create-meta)
87
- with the new [cucumber-ci-environment](https://rubygems.org/gems/cucumber-ci-environment)
88
- ([PR#1601](https://github.com/cucumber/cucumber-ruby/pull/1601))
89
-
90
- - In `DataTable#map_column`, Changed the `strict` argument into a keyword argument.
91
- See [UPGRADING.md](./UPGRADING.md#upgrading-to-800).
92
- ([PR#1594](https://github.com/cucumber/cucumber-ruby/pull/1594)
93
- [Issue#1592](https://github.com/cucumber/cucumber-ruby/issues/1592))
94
-
95
- - Added Ruby 3.1
96
- ([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))
97
54
 
98
55
  ### Removed
99
-
100
56
  - `AfterConfiguration` has been removed. Please use `InstallPlugin` or `BeforeAll` instead.
101
- See the [UPGRADING.md](./UPGRADING.md#upgrading-to-800) to update your code accordingly.
102
- ([PR#1591](https://github.com/cucumber/cucumber-ruby/pull/1591))
103
-
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))
104
59
  - The built-in Wire protocol
105
- The Wire protocol is still officially supported, but as an optional plugin rather
106
- than a built-in feature. See the
107
- [UPGRADING.md](./UPGRADING.md#upgrading-to-800)
108
- to update your code accordingly.
109
-
110
- ([1562](https://github.com/cucumber/cucumber-ruby/pull/1562)
111
- [aurelien-reeves](https://github.com/aurelien-reeves))
112
-
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.
113
64
  - Removed former unused `stdin` argument from `Cli::Main`. That may impact your code
114
- if you use cucumber API `Cucumber::Cli::Main`. See [UPGRADING.md](./UPGRADING.md#upgrading-to-800).
115
- ([PR#1588](https://github.com/cucumber/cucumber-ruby/pull/1588)
116
- [Issue#1581](https://github.com/cucumber/cucumber-ruby/issues/1581))
117
-
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))
118
68
  - Removed `DataTable#map_column!` and `DataTable#map_headers!`.
119
- Those methods were error-prone and planned to be removed a long time ago. You
120
- can use the immutable versions instead: `DataTable#map_column` and
121
- `DataTable#map_headers`.
122
- ([PR#1590](https://github.com/cucumber/cucumber-ruby/pull/1590)
123
- [Issue#1584](https://github.com/cucumber/cucumber-ruby/issues/1584))
124
-
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))
125
74
  - Removed support for Ruby 2.5 and JRuby 9.2.
126
75
 
127
- ## [7.1.0](https://github.com/cucumber/cucumber-ruby/compare/v7.0.0...v7.1.0) (2021-10-12)
128
-
76
+ ## [7.1.0]
129
77
  ### Added
130
-
131
78
  - New `BeforeAll` and `AfterAll` hooks
132
-
133
- More information about hooks can be found in
134
- [features/docs/writing_support_code/hooks/README.md](./features/docs/writing_support_code/hooks/README.md).
135
-
136
- ([1569](https://github.com/cucumber/cucumber-ruby/pull/1569)
137
- [aurelien-reeves](https://github.com/aurelien-reeves))
138
-
139
79
  - New hook: `InstallPlugin`
140
80
 
141
- It is intended to be used to install an external plugin, like cucumber-ruby-wire.
142
-
143
- It is fired just after the `AfterConfiguration` one. Two parameters are given:
144
- the same `configuration` instance that is given to `AfterConfiguration`,
145
- and a [`registry_wrapper`](./lib/cucumber/glue/registry_wrapper.rb) which allows
146
- plugins to have access to specific internal methods.
147
-
148
- See [cucumber-ruby-wire](https://github.com/cucumber/cucumber-ruby-wire/) for a
149
- usage example.
150
-
151
- More information about hooks can be found in
152
- [features/docs/writing_support_code/hooks/README.md](./features/docs/writing_support_code/hooks/README.md).
153
-
154
- ([1564](https://github.com/cucumber/cucumber-ruby/pull/1564)
155
- [aurelien-reeves](https://github.com/aurelien-reeves))
156
-
157
81
  ### Changed
158
-
159
82
  - Added release dates to CHANGELOG.md.
160
- ([1543](https://github.com/cucumber/cucumber-ruby/pull/1573)
161
- [AudTheCodeWitch](https://github.com/AudTheCodeWitch))
83
+ ([1543](https://github.com/cucumber/cucumber-ruby/pull/1573)
84
+ [AudTheCodeWitch](https://github.com/AudTheCodeWitch))
162
85
 
163
86
  ### Deprecated
164
-
165
87
  - `AfterConfiguration` is deprecated. Please use `InstallPlugin` or `BeforeAll` instead.
166
- See the [UPGRADING.md](./UPGRADING.md#upgrading-to-710) to update your code accordingly.
167
- ([1570](https://github.com/cucumber/cucumber-ruby/pull/1570))
168
-
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))
169
90
  - The built-in Wire protocol
170
91
 
171
- The Wire protocol is still officially supported, but as an optional plugin rather
172
- than a built-in feature. See the
173
- [UPGRADING.md](./UPGRADING.md#upgrading-to-710)
174
- to update your code accordingly.
175
-
176
- ([1564](https://github.com/cucumber/cucumber-ruby/pull/1564)
177
- [aurelien-reeves](https://github.com/aurelien-reeves))
178
-
179
- ### Known issue
180
-
181
- - There is a known issue with JRuby 9.3. For more info, see
182
- [PR#1571](https://github.com/cucumber/cucumber-ruby/pull/1571).
183
-
184
- ## [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`.
185
95
 
186
96
  ### Fixed
187
-
188
97
  - Cucumber terminating with `negative argument` ArgumentError
189
- ([1546](https://github.com/cucumber/cucumber-ruby/issues/1546)
190
- [1548](https://github.com/cucumber/cucumber-ruby/pull/1548)
191
- [Serghei Moret](https://github.com/JoeSSS))
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))
192
101
  - Fixed reports banner to point to [new docs](https://cucumber.io/docs/cucumber/environment-variables/) about environment variables
193
102
 
194
- ### Changed
195
-
196
- - Upgrade of `cucumber-core`, `cucumber-gherkin` and `cucumber-messages`.
197
-
198
- This brings some breaking changes in `Cucumber::Messages`.
199
- ([1544](https://github.com/cucumber/cucumber-ruby/pull/1544)
200
- [aurelien-reeves](https://github.com/aurelien-reeves))
201
-
202
- This also fixes [1545](https://github.com/cucumber/cucumber-ruby/issues/1545)
203
- ([1549](https://github.com/cucumber/cucumber-ruby/pull/1549)
204
- [luke-hill](https://github.com/luke-hill))
205
-
206
103
  ### Removed
207
-
208
104
  - On Windows, auto-detection of ANSICON has been removed - Windows now properly
209
- supports ANSI colors in the terminal. In case of issues on older versions of
210
- Windows, execute cucumber with `--no-color`, or install
211
- [ANSICON](https://github.com/adoxa/ansicon/) globally.
212
- ([1561](https://github.com/cucumber/cucumber-ruby/pull/1561)
213
- [yosukei3108](https://github.com/yosukei3108))
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))
214
110
 
215
- ## [v6.1.0](https://github.com/cucumber/cucumber-ruby/compare/v6.0.0...v6.1.0) (2021-05-18)
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.
216
120
 
217
121
  ### Fixed
218
-
219
122
  - `--dry-run` now supports `message` based-formatters
220
- ([1540](https://github.com/cucumber/cucumber-ruby/pull/1540)
221
- [1496](https://github.com/cucumber/cucumber-ruby/issues/1496)
222
- [1488](https://github.com/cucumber/cucumber-ruby/issues/1488)
223
- [aurelien-reeves](https://github.com/aurelien-reeves))
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))
224
127
  - Step definitions now uses object instances created in the ParameterType
225
- ([1538](https://github.com/cucumber/cucumber-ruby/pull/1538)
226
- [1532](https://github.com/cucumber/cucumber-ruby/issues/1532)
227
- [aurelien-reeves](https://github.com/aurelien-reeves))
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))
228
131
  - `attach` can now handle null bytes in the data.
229
- ([1536](https://github.com/cucumber/cucumber-ruby/pull/1536)
230
- [1529](https://github.com/cucumber/cucumber-ruby/issues/1529)
231
- [aurelien-reeves](https://github.com/aurelien-reeves))
232
-
233
- ### Changed
234
-
235
- - The JSON formatter now reports empty scenarios.
236
- No status is reported for empty scenarios in the resulting JSON.
237
- No more empty background is reported with empty scenarios.
238
- ([1533](https://github.com/cucumber/cucumber-ruby/pull/1533)
239
- [1530](https://github.com/cucumber/cucumber-ruby/issues/1530)
240
- [aurelien-reeves](https://github.com/aurelien-reeves))
241
- - Undeprecate the JSON formatter. It won't be removed any time soon.
242
-
243
- ### Dependencies
244
-
245
- - Updated `cucumber-core` ~> 9.0.1
246
-
247
- ## [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))
248
135
 
136
+ ## [v6.0.0]
249
137
  ### Added
250
-
251
138
  - Support tagged rules ([cucumber#1123](https://github.com/cucumber/cucumber/issues/1123))
252
139
 
253
- ### Fixed
254
-
255
- - It is now possible to attach a file passing its path
256
- ([#1506](https://github.com/cucumber/cucumber-ruby/issues/1506)
257
- [#1514](https://github.com/cucumber/cucumber-ruby/pull/1514)
258
- [aurelien-reeves](https://github.com/aurelien-reeves))
259
-
260
140
  ### Changed
261
-
262
141
  - Upgraded dependencies (see diff)
263
142
 
264
- ### Removed
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))
265
148
 
149
+ ### Removed
266
150
  - `embed` in step definitions in favor of `attach`.
267
- `embed` has been deprecated in version 4.0.
268
- Simply replace `embed` with `attach`.
269
- ([#1523](https://github.com/cucumber/cucumber-ruby/pull/1523)
270
- [aurelien-reeves](https://github.com/aurelien-reeves))
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))
271
155
  - `puts` in step definitions in favor of `log`.
272
- `puts` has been deprecated in version 4.0.
273
- Simply replace `puts` with `log`.
274
- ([#1523](https://github.com/cucumber/cucumber-ruby/pull/1523)
275
- [aurelien-reeves](https://github.com/aurelien-reeves))
276
-
277
- ## [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))
278
160
 
161
+ ## [5.3.0]
279
162
  ### Added
280
-
281
163
  - `fileattribute` cli argument available to attach `file` to junit formatter
282
164
 
283
165
  ### Fixed
284
-
285
166
  - Circle-CI windows build now silently installs MSYS2 using Chocolatey before
286
- setting-up the ruby devkit with ridk
287
- ([#1503](https://github.com/cucumber/cucumber-ruby/pull/1503)
288
- [aurelien-reeves](https://github.com/aurelien-reeves))
289
-
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))
290
170
  - `--publish` and no formatter now uses the pretty formatter per default
291
- ([#1468](https://github.com/cucumber/cucumber-ruby/issues/1468)
292
- [#1500](https://github.com/cucumber/cucumber-ruby/pull/1500)
293
- [aurelien-reeves](https://github.com/aurelien-reeves))
294
-
295
- ## [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))
296
174
 
175
+ ## [5.2.0]
297
176
  ### Changed
298
-
299
177
  - `--publish` uses the response provided by the server as the banner [#1472](https://github.com/cucumber/cucumber-ruby/issues/1472)
300
178
 
301
- ## [5.1.3](https://github.com/cucumber/cucumber-ruby/compare/v5.1.2...v5.1.3) (2020-10-07)
302
-
179
+ ## [5.1.3]
303
180
  ### Fixed
304
-
305
181
  - The `CUCUMBER_PUBLISH_TOKEN` now sets the correct HTTP header, following a fix in the curl option parser.
306
182
 
307
- ## [5.1.2](https://github.com/cucumber/cucumber-ruby/compare/v5.1.1...v5.1.2) (2020-09-18)
308
-
183
+ ## [5.1.2]
309
184
  ### Fixed
310
-
311
185
  - Do not send headers after following redirection [#1475](https://github.com/cucumber/cucumber-ruby/pull/1475)
312
186
 
313
- ## [5.1.1](https://github.com/cucumber/cucumber-ruby/compare/v5.1.0...v5.1.1) (2020-09-04)
314
-
315
- ### Security fixes
316
-
317
- - Update `cucumber-create-meta` to 2.0.2
318
-
319
- ## [5.1.0](https://github.com/cucumber/cucumber-ruby/compare/v5.0.0...5.1.0) (2020-08-24)
187
+ ## [5.1.1]
320
188
 
189
+ ## [5.1.0]
321
190
  ### Added
322
-
323
191
  - `-X GET` in an `--out` URL will now issue a `GET` request _without_ a body. If the response is `202 Accepted` _and_
324
- the `Location` header is present, a new `PUT` request will be sent _with_ the body.
325
-
326
- The main reason for this added behaviour is to allow request bodies larger than 6Mb to be sent while using `--publish`.
327
- 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.
328
193
 
329
194
  ### Changed
330
-
331
195
  - Set banner border color to green when publishing reports
332
196
  - Postpone removal of `--format=json`, `embed` and `puts` to version 6.0.0 in deprecation messages
333
197
 
334
198
  ### Fixed
335
-
336
199
  - Display banner on stderr when publishing reports [#1462](https://github.com/cucumber/cucumber-ruby/issues/1462)
337
200
 
338
- ## [5.0.0](https://github.com/cucumber/cucumber-ruby/compare/v4.1.0...5.0.0) (2020-08-19)
339
-
201
+ ## [5.0.0]
340
202
  ### Added
341
-
342
203
  - `--publish` automatically publishes reports to [reports.cucumber.io](https://reports.cucumber.io)
343
204
  - `--publish-quiet` does not print information banner about [reports.cucumber.io](https://reports.cucumber.io)
344
205
 
345
206
  ### Changed
346
-
347
207
  - `-q, --quiet` will also imply `--publish-quiet` in addition to `--no-snippets --no-source --no-duration`
348
208
 
349
- ### Removed
350
-
351
- - Dropped support for Ruby [2.3](https://www.ruby-lang.org/en/news/2019/03/31/support-of-ruby-2-3-has-ended/)
352
- and [2.4](https://www.ruby-lang.org/en/news/2020/04/05/support-of-ruby-2-4-has-ended/)
353
-
354
209
  ### Fixed
355
-
356
210
  - Update code to be compatible with `diff-lcs` versions 1.3 and 1.4
357
211
  - Defer registration of `at_exit` hook that flushes and closes formatter streams
358
- ([#1458](https://github.com/cucumber/cucumber-ruby/pull/1458))
212
+ ([#1458](https://github.com/cucumber/cucumber-ruby/pull/1458))
359
213
  - Updated gems (see git diff for details)
360
214
  - `cucumber-expressions`
361
215
  - `cucumber-gherkin`
362
216
  - `cucumber-create-meta`
363
217
  - `cucumber-messages`
364
- - Fix issue with timestamp nanos [#1438](https://github.com/cucumber/cucumber-ruby/issues/1438)
218
+ - Fix issue with timestamp nanos [#1438](https://github.com/cucumber/cucumber-ruby/issues/1438)
365
219
  - `cucumber-html-formatter`
366
- - Add filtering capabilities [#1444](https://github.com/cucumber/cucumber-ruby/issues/1444)
220
+ - Add filtering capabilities [#1444](https://github.com/cucumber/cucumber-ruby/issues/1444)
367
221
  - Fix Interceptor that was raising exception when calling `puts` on the wrapped stream ([#1445](https://github.com/cucumber/cucumber-ruby/issues/1445))
368
222
 
369
- ## [4.1.0](https://github.com/cucumber/cucumber-ruby/compare/v4.0.1...v4.1.0) (2020-07-01)
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/)
370
226
 
227
+ ## [4.1.0]
371
228
  ### Changed
372
-
373
229
  - Use [`cucumber-create-meta`](https://rubygems.org/gems/cucumber-create-meta) to produce the `Meta` message before the run.
374
-
375
230
  - Updated gems:
376
231
  - `cucumber-wire` ~> 3.1.0
377
232
  - `cucumber-core` ~> 7.1.0
378
233
  - `cucumber-gherkin` ~> 14.0.1
379
- - Fix issue with empty feature files [#1427](https://github.com/cucumber/cucumber-ruby/issues/1427)
234
+ - Fix issue with empty feature files [#1427](https://github.com/cucumber/cucumber-ruby/issues/1427)
380
235
  - `cucumber-messages` ~> 12.2.0
381
236
  - `cucumber-html-formatter` ~> 7.0.0
382
- - Fix issue with Hook attachments [#1420](https://github.com/cucumber/cucumber-ruby/issues/1420)
237
+ - Fix issue with Hook attachments [#1420](https://github.com/cucumber/cucumber-ruby/issues/1420)
383
238
 
384
239
  ### Fixed
385
-
386
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)
387
241
 
388
- ## [4.0.1](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0...v4.0.1) (2020-06-23)
389
-
242
+ ## [4.0.1]
390
243
  ### Fixed
391
-
392
244
  - force reference to `diff-lcs` to 1.3 as 1.4 introduced breaking changes.
393
245
 
394
- ## [4.0.0](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...v4.0.0) (2020-06-02)
395
-
246
+ ## [4.0.0]
396
247
  ### Changed
397
-
398
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)
399
249
 
400
- ### Improved
401
-
402
- - Display snippet when using undefined parameter type [#1411](https://github.com/cucumber/cucumber-ruby/issues/1411)
403
-
404
- ## [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)
405
-
250
+ ## [4.0.0.rc.6]
406
251
  ### Changed
407
-
408
252
  - Code snippet for an undefined step with a Doc String will ouput `doc_string` instead of `string` in block params
409
- ([#1401](https://github.com/cucumber/cucumber-ruby/issues/1401)
410
- [#1402](https://github.com/cucumber/cucumber-ruby/pull/1402)
411
- [karamosky](https://github.com/karamosky))
412
-
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))
413
256
  - Updated monorepo libraries:
414
-
415
257
  - cucumber-gherkin ~> 13
416
258
  - cucumber-html-formatter ~> 6
417
259
  - cucumber-cucumber-expressions ~> 10
418
-
419
260
  - Use `cucumber-ruby-core` 7.0.0
420
-
421
261
  - Use `cucumber-ruby-wire` 3.0.0
422
-
423
262
  - Use `body` field of attachments
424
263
 
425
- ### Improved
426
-
427
- - `--out url` updates:
428
- - supports redirects
429
- - use `PUT` method by default
430
- - use a cURL like options (for example: `cucumber --out 'http://example.com -X POST -H Content-Type: json`)
431
-
432
- ## [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)
433
-
264
+ ## [4.0.0.rc.5]
434
265
  ### Added
435
-
436
266
  - New html formatter enabled by option `--format html --out report.html`.
437
-
438
267
  - Accept `--out URL` to POST results to a web server
439
- If a URL is used as output, the output will be sent with a POST request.
440
- This can be overridden by specifying e.g. `http-method=PUT` as a query parameter.
441
- Other `http-` prefixed query parameters will be converted to request headers
442
- (with the `http-` prefix stripped off).
443
-
444
- ## [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).
445
272
 
273
+ ## [4.0.0.rc.4]
446
274
  ### Added
447
-
448
275
  - Add `message`formatter which produces `Cucumber::Messages` ndjson output.
449
276
  - Comply with [`cucumber-compatibility-kit](https://github.com/cucumber/cucumber/tree/master/compatibility-kit)
450
277
  - Methods `log` and `attach` can be used in step definitions to attach text or images
451
278
 
452
279
  ### Deprecated
453
-
454
280
  - `--format=json` in favor of the `message` formatter and the stand-alone JSON formatter
455
281
  - `puts` in step definitions in favor of `log` ([cucumber#897](https://github.com/cucumber/cucumber/issues/897))
456
282
  - `embed` in step definitions in favor of `attach` ([cucumber#897](https://github.com/cucumber/cucumber/issues/897))
457
283
 
458
- ## [4.0.0.rc.3](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.2...v4.0.0.rc.3) (2019-10-31)
459
-
284
+ ## [4.0.0.rc.3]
460
285
  ### Changed
461
-
462
286
  - Update to cucumber-wire 1.1.
463
287
 
464
- ## [4.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.1...v4.0.0.rc.2) (2019-10-31)
465
-
288
+ ## [4.0.0.rc.2]
466
289
  ### Added
467
-
468
290
  - There is a new methodology in Cucumber for how the auto-loader works
469
291
  - The old `load` behaviour is now replaced with a newer `require` behaviour
470
292
  - Cucumber will (From version 4), now auto-load files using the `require` method
471
293
  - If you wish to alter this, then you can set a top level config option: `Cucumber.use_legacy_autoloader`
472
294
  - Like most config options, setting this inside a `spec_helper.rb` or `env.rb` file is advised
473
295
  - For more information on this change, including why it was made. Please read this
474
- [Blog Post](https://cucumber.io/blog/open-source/tweaking-cucumber-rubys-auto-loader/)
475
- ([#1349](https://github.com/cucumber/cucumber-ruby/pull/1349),
476
- [#1043](https://github.com/cucumber/cucumber-ruby/issues/1043)
477
- [luke-hill](https://github.com/luke-hill))
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))
478
300
 
479
301
  ### Changed
480
-
481
302
  - Going forward the minimum ruby version for all cucumber based gems is 2.3
482
- ([luke-hill](https://github.com/luke-hill))
483
-
484
- ### Removed
485
-
486
- - Removed Travis publish job for cucumber-pro(a.k.a. jam)
487
- ([#1350](https://github.com/cucumber/cucumber-ruby/pull/1350)
488
- [luke-hill](https://github.com/luke-hill))
489
-
490
- - Drop support for JRuby. We may add this back if new versions of protobuf for JRuby
491
- start working, or if someone can make the build pass with an older version.
492
- All this means is we're ok to make releases while the jruby CI job is failing.
493
-
494
- ([aslakhellesoy](https://github.com/aslakhellesoy))
495
-
496
- - Remove `dots-formatter introduced in `4.0.0rc1`
303
+ ([luke-hill](https://github.com/luke-hill))
497
304
 
498
305
  ### Fixed
499
-
500
306
  - Fix the placeholder expansions in the json formatter
501
- ([#1361](https://github.com/cucumber/cucumber-ruby/pull/1361)
502
- [brasmusson](https://github.com/brasmusson))
307
+ ([#1361](https://github.com/cucumber/cucumber-ruby/pull/1361)
308
+ [brasmusson](https://github.com/brasmusson))
503
309
  - Fix seed printed in cucumber UI to match the seed that was actually used.
504
- ([#1329](https://github.com/cucumber/cucumber-ruby/pull/1329)
505
- [deivid-rodriguez](https://github.com/deivid-rodriguez))
310
+ ([#1329](https://github.com/cucumber/cucumber-ruby/pull/1329)
311
+ [deivid-rodriguez](https://github.com/deivid-rodriguez))
506
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`.
507
- ([#1353](https://github.com/cucumber/cucumber-ruby/pull/1353)
508
- [akostadinov](https://github.com/akostadinov))
509
-
510
- ### Improved
511
-
512
- - Filter out any lines containing `site_ruby` from stacktrace
313
+ ([#1353](https://github.com/cucumber/cucumber-ruby/pull/1353)
314
+ [akostadinov](https://github.com/akostadinov))
513
315
 
514
- ## [4.0.0.rc.1](https://github.com/cucumber/cucumber-ruby/compare/v3.1.2...v4.0.0.rc.1) (2018-09-29)
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`
515
324
 
325
+ ## [4.0.0.rc.1]
516
326
  ### Added
517
-
518
327
  - Added support for new `Rule` keyword. [Read more here.](https://github.com/cucumber/cucumber/blob/master/gherkin/CHANGELOG.md#6013---2018-09-25)
519
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.
520
329
 
521
330
  ### Changed
522
-
523
331
  - Use Gherkin v6.
524
- ([#1313](https://github.com/cucumber/cucumber-ruby/pull/1313)
525
- [brasmusson](https://github.com/brasmusson))
332
+ ([#1313](https://github.com/cucumber/cucumber-ruby/pull/1313)
333
+ [brasmusson](https://github.com/brasmusson))
526
334
  - Do not apply Before and After Hooks to Test Cases with no Test Steps.
527
- ([#1311](https://github.com/cucumber/cucumber-ruby/pull/1311)
528
- [brasmusson](https://github.com/brasmusson))
335
+ ([#1311](https://github.com/cucumber/cucumber-ruby/pull/1311)
336
+ [brasmusson](https://github.com/brasmusson))
529
337
  - Pass the registry to the Wire plugin.
530
- ([#1309](https://github.com/cucumber/cucumber-ruby/pull/1309)
531
- [brasmusson](https://github.com/brasmusson))
338
+ ([#1309](https://github.com/cucumber/cucumber-ruby/pull/1309)
339
+ [brasmusson](https://github.com/brasmusson))
532
340
  - Adapt to using the Gherkin compiler and Pickles in the core.
533
- ([#1309](https://github.com/cucumber/cucumber-ruby/pull/1309)
534
- [brasmusson](https://github.com/brasmusson))
341
+ ([#1309](https://github.com/cucumber/cucumber-ruby/pull/1309)
342
+ [brasmusson](https://github.com/brasmusson))
535
343
  - Let the Pretty Formatter use events.
536
- ([#1305](https://github.com/cucumber/cucumber-ruby/pull/1305)
537
- [brasmusson](https://github.com/brasmusson))
344
+ ([#1305](https://github.com/cucumber/cucumber-ruby/pull/1305)
345
+ [brasmusson](https://github.com/brasmusson))
538
346
  - Use single quotes in generated template steps ([#1323](https://github.com/cucumber/cucumber-ruby/pull/1323) [acant](https://github.com/acant))
539
347
 
540
- ### Removed
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))
541
354
 
355
+ ### Removed
542
356
  - Remove the support of old style tag expressions.
543
- ([#1314](https://github.com/cucumber/cucumber-ruby/pull/1314),
544
- [brasmusson](https://github.com/brasmusson))
357
+ ([#1314](https://github.com/cucumber/cucumber-ruby/pull/1314),
358
+ [brasmusson](https://github.com/brasmusson))
545
359
  - Remove the Legacy API for Formatters.
546
- ([#1230](https://github.com/cucumber/cucumber-ruby/pull/1230),
547
- [#839](https://github.com/cucumber/cucumber-ruby/issues/839)
548
- [brasmusson](https://github.com/brasmusson))
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))
549
363
  - Remove the JSON Pretty Formatter (which was the same as the JSON formatter).
550
- ([brasmusson](https://github.com/brasmusson))
364
+ ([brasmusson](https://github.com/brasmusson))
551
365
  - Remove the HTML Formatter.
552
- ([#1306](https://github.com/cucumber/cucumber-ruby/pull/1306)
553
- [brasmusson](https://github.com/brasmusson))
554
-
555
- ### Fixed
556
-
557
- - Wire protocol compatibility for docstrings.
558
- ([#1183](https://github.com/cucumber/cucumber-ruby/issues/1183))
559
- - Let the Rerun Formatter handle flaky scenarios.
560
- ([#1310](https://github.com/cucumber/cucumber-ruby/pull/1310)
561
- [brasmusson](https://github.com/brasmusson))
562
-
563
- ### Improved
564
-
565
- - 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))
566
-
567
- ## [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))
568
368
 
369
+ ## [3.1.2]
569
370
  ### Changed
570
-
571
371
  - Upgraded to `cucumber-core` 3.2.0
572
372
  - Change to use the gherkin step location in the Json formatter.
573
- ([#1243](https://github.com/cucumber/cucumber-ruby/pull/1243),
574
- [#1108](https://github.com/cucumber/cucumber-ruby/issues/1108)
575
- [brasmusson](https://github.com/brasmusson))
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))
576
376
 
577
377
  ### Fixed
578
-
579
378
  - Support ParameterType with empty capture group.
580
- ([#404](https://github.com/cucumber/cucumber/issues/404)
581
- [aslakhellesoy](https://github.com/aslakhellesoy))
582
-
583
- ## [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))
584
381
 
382
+ ## [3.1.1]
585
383
  ### Added
586
-
587
384
  - N/A
588
385
 
589
386
  ### Changed
590
-
591
387
  - Add Rubocop to default Rake task ([#1256](https://github.com/cucumber/cucumber-ruby/pull/1256) [@jaysonesmith](https://github.com/jaysonesmith))
592
388
  - Upgraded `cucumber-expressions` dependency to ~> 6.0.0 ([#1299](https://github.com/cucumber/cucumber-ruby/pull/1299) [@aslakhellesoy](https://github.com/aslakhellesoy))
593
389
  - Upgraded to `gherkin` 5.1.0 ([#1299](https://github.com/cucumber/cucumber-ruby/pull/1299) [@aslakhellesoy](https://github.com/aslakhellesoy))
594
390
 
595
391
  ### Deprecated
596
-
597
- - N/A
598
-
599
- ### Removed
600
-
601
392
  - N/A
602
393
 
603
394
  ### Fixed
604
-
605
395
  - Make `--fail-fast` play nice with `--retry` ([#1283](https://github.com/cucumber/cucumber-ruby/pull/1283) [@yrral86](https://github.com/yrral86))
606
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))
607
397
  - Fix the handling of failed hooks in the JUnit Formatter ([@brasmusson](https://github.com/brasmusson))
608
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))
609
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))
610
400
 
611
- ### Improved
612
-
401
+ ### Removed
613
402
  - N/A
614
403
 
615
- ## [3.1.0](https://github.com/cucumber/cucumber-ruby/compare/v3.0.2...v3.1.0) (2017-11-28)
616
-
404
+ ## [3.1.0]
617
405
  ### Added
618
-
619
406
  - ParameterType transformer runs in World
620
- ([#1213](https://github.com/cucumber/cucumber-ruby/pull/1213)
621
- [@aslakhellesoy](https://github.com/aslakhellesoy))
407
+ ([#1213](https://github.com/cucumber/cucumber-ruby/pull/1213)
408
+ [@aslakhellesoy](https://github.com/aslakhellesoy))
622
409
 
623
410
  ### Changed
624
-
625
411
  - Upgraded to `cucumber-expressions` 5.0.4
626
412
  - Upgraded to `cucumber-tag_expressions` 1.1.0
627
413
  - Upgraded to `gherkin` 5.0.0
628
414
 
629
415
  ### Fixed
630
-
631
416
  - Fix the handling of failed hooks in the JUnit Formatter ([@brasmusson](https://github.com/brasmusson))
632
417
 
633
- ## [3.0.2](https://github.com/cucumber/cucumber-ruby/compare/v3.0.1...v3.0.2) (2017-11-11)
634
-
635
- ### Removed
636
-
637
- - Cucumber is no longer tested on Ruby 2.1 and below.
638
-
418
+ ## [3.0.2]
639
419
  ### Fixed
640
-
641
420
  - Fix html reporter with more than one embedded screenshot ([#1216](https://github.com/cucumber/cucumber-ruby/pull/1216) [@nonkor](https://github.com/nonkor))
642
421
  - Change test expectation to handle Ruby's unstable sorting ([#1210](https://github.com/cucumber/cucumber-ruby/pull/1210) [@jaysonesmith](https://github.com/jaysonesmith))
643
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))
644
423
  - Handle the `--retry` option in profiles ([#1050](https://github.com/cucumber/cucumber-ruby/issues/1050) [@brasmusson](https://github.com/brasmusson))
645
424
 
646
- ## [3.0.1](https://github.com/cucumber/cucumber-ruby/compare/v3.0.0...3.0.1) (2017-09-29)
425
+ ### Removed
426
+ - Cucumber is no longer tested on Ruby 2.1 and below.
647
427
 
428
+ ## [3.0.1]
648
429
  ### Fixed
649
-
650
430
  - `ParameterType` can now override `use_for_snippets` and `prefer_for_regexp_match` without throwing an error. ([@aslakhellesoy](https://github.com/aslakhellesoy))
651
431
  - Gemspec has `required_ruby_version = '>= 2.1'` ([@aslakhellesoy](https://github.com/aslakhellesoy))
652
432
 
653
- ## [3.0.0](https://github.com/cucumber/cucumber-ruby/compare/v3.0.0.pre.2...v3.0.0) (2017-09-27)
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)
654
436
 
655
437
  ### Changed
656
-
657
438
  - Regexp capture groups with `(\d+)` are automatically converted to `Integer`
658
439
  - Rename `Step#name` to `#text` ([#1130](https://github.com/cucumber/cucumber-ruby/pull/1130) [@olleolleolle](https://github.com/olleolleolle))
659
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)
660
441
  - Nested capture groups are not counted as parameters. See [upgrading instructions](https://cucumber.io/blog/2017/09/21/upgrading-to-cucumber-3). (@aslakhellesoy)
661
442
 
662
- ### Added
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)
663
448
 
664
- - Handle selective strict options. ([#1169](https://github.com/cucumber/cucumber-ruby/pull/1169), [#1160](https://github.com/cucumber/cucumber-ruby/issues/1160) @brasmusson)
449
+ ## [3.0.0.pre.2]
665
450
 
666
- ### Fixed
451
+ ## [2.4.0]
667
452
 
668
- - Use absolute path in IO formatter to prevent `chdir` issues. ([#1111](https://github.com/cucumber/cucumber-ruby/pull/1111/files) @akostadinov)
453
+ ## [2.3.3]
669
454
 
670
- - Fix bug in DataTable#symbolic_hashes ([#1200](https://github.com/cucumber/cucumber-ruby/pull/1200) @Ben-Behar)
455
+ ## [2.3.2]
671
456
 
672
- - Fix typo in JSON formatter ([#1196](https://github.com/cucumber/cucumber-ruby/pull/1196) @alb-i986)
457
+ ## [2.3.1]
673
458
 
674
- - 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)
459
+ ## [2.3.0]
675
460
 
676
- ### Improved
461
+ ## [2.2.0]
677
462
 
678
- - Refactor: Extract HTMLBuilder#string_to_embed method to DRY up code ([#1187](https://github.com/cucumber/cucumber-ruby/pulls/1187) [@danascheider](https://github.com/danascheider))
679
- - 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))
680
- - Use past tense in event names (`xStarting` -> `xStarted`) ([#1166](https://github.com/cucumber/cucumber-ruby/issues/1166) @brasmusson).
463
+ ## [2.1.0]
681
464
 
682
- ## [3.0.0.pre.2](https://github.com/cucumber/cucumber-ruby/compare/v2.4.0...v3.0.0.pre.2) (2017-07-26)
465
+ ## [2.0.2]
683
466
 
684
- ### Breaking changes
467
+ ## [2.0.1]
685
468
 
686
- - Remove support for Ruby 1.9.3 ([#993](https://github.com/cucumber/cucumber-ruby/pull/993) @brasmusson)
687
- - Remove support for Ruby 2.0.0 ([#1068](https://github.com/cucumber/cucumber-ruby/pull/1068) @mattwynne)
469
+ ## [2.0.0]
688
470
 
689
- ### New Features
471
+ ## [2.0.0.rc5]
472
+
473
+ ## Bugfixes
690
474
 
691
- - Support for Cucumber Expressions ([#1156](https://github.com/cucumber/cucumber-ruby/pull/1156))
692
- - Use newlines in the rerun file produces by the rerun formatter ([1162](https://github.com/cucumber/cucumber-ruby/issues/1162) @brasmusson)
693
- - 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)
694
- - List all not ok scenarios in the summary ([#1158](https://github.com/cucumber/cucumber-ruby/pull/1158) @brasmusson)
695
- - Emulate Cucumber-JS's new i18n CLI options ([#1140](https://github.com/cucumber/cucumber-ruby/pull/1140) @aidamanna)
696
- - Use the event bus in Cucumber-Ruby-Core ([#973](https://github.com/cucumber/cucumber-ruby/pull/973) @mattwynne)
697
- - Add --retry option to retry failed tests as part of the same run ([#920](https://github.com/cucumber/cucumber-ruby/pull/920) @DanaScheider)
698
- - Add a summary formatter ([#999](https://github.com/cucumber/cucumber-ruby/pull/999) @mattwynne)
699
- - Namespaced World modules ([#1007](https://github.com/cucumber/cucumber-ruby/pull/1007) @nodo)
700
- - Add per-formatter CLI options ([#1058](https://github.com/cucumber/cucumber-ruby/pull/1058) @nodo)
701
- - Use tag expressions for tag filtering ([#1054](https://github.com/cucumber/cucumber-ruby/pull/1054) @brasmusson)
702
- - Add a `TestRunStarting` event ([#1082](https://github.com/cucumber/cucumber-ruby/pull/1082) @mattwynne)
703
-
704
- ### Bugfixes
705
-
706
- - Fix the profile loader on Windows ([#1133](https://github.com/cucumber/cucumber-ruby/pulls/1133) @enkessler)
707
- - Fix incorrect `DataTable#diff!` results ([#1102](https://github.com/cucumber/cucumber-ruby/pulls/1102) @botandrose)
708
- - 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)
709
- - 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))
710
- - 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))
711
- - Fix regression displaying CLI help ([#991](https://github.com/cucumber/cucumber-ruby/pull/991) @mattwynne)
712
- - with_filtered_backtrace called on Test::Result::Unknown with strange feature file ([#967](https://github.com/cucumber/cucumber-ruby/issues/967) @danascheider)
713
- - fix HTML formatter backtrace duplicate line bug ([#965](https://gthub.com/cucumber/cucumber-ruby/pull/965) @josephks)
714
- - Update env names correctly ([#1067](https://github.com/cucumber/cucumber-ruby/pull/1067) @junaruga)
715
- - Relax filter for "/usr/local/ruby-X.Y.Z/bin/bundle" ([#1079](https://github.com/cucumber/cucumber-ruby/pull/1079) @junaruga)
716
- - Avoid showing "@ rb_sysopen" noise for Ruby 2.4 ([#1080](https://github.com/cucumber/cucumber-ruby/pull/1080) @junaruga)
717
-
718
- ### Refactoring / Developer Experience
719
-
720
- - Spec: Events.registry exercised ([#1126](https://github.com/cucumber/cucumber-ruby/pulls/1126) @olleolleolle)
721
- - Remove programming language abstraction ([#1131](https://github.com/cucumber/cucumber-ruby/pulls/1131) @tooky, @mattwynne)
722
- - Update cucumber yaml to use new tag syntax ([#1147](https://github.com/cucumber/cucumber-ruby/pulls/1147) @danascheider)
723
- - Turn off Windows failures ([#1142](https://github.com/cucumber/cucumber-ruby/pulls/1142) @enkessler)
724
- - Add script to update history.md ([#1141](https://github.com/cucumber/cucumber-ruby/pulls/1141) @mattwynne)
725
- - Update Ruby 2.3 and 2.4 in .travis.yml ([#1100](https://github.com/cucumber/cucumber-ruby/pull/1100) @junaruga)
726
- - Fixes for rubocop violations ([#1095](https://github.com/cucumber/cucumber-ruby/pull/1095) @bv)
727
- - Fixes for rubocop violations ([#1042](https://github.com/cucumber/cucumber-ruby/pull/1042) @phoebeclarke)
728
- - Add frozen string literal magic comment to files and fix issues it causes ([#996](https://github.com/cucumber/cucumber-ruby/pull/996) @twalpole)
729
- - Several tests failing with rbenv ([#1017](https://github.com/cucumber/cucumber-ruby/issues/1017) @nodo)
730
- - Add rubocop to check the style of the codebase ([1014](https://github.com/cucumber/cucumber-ruby/issues/1014) @nodo)
731
- - Fix the rubocop violation 'Lint/AmbiguousRegexpLiteral' ([1025](https://github.com/cucumber/cucumber-ruby/pull/1025) @pmatsinopoulos)
732
- - Fix rubocop violations ([#1024](https://github.com/cucumber/cucumber-ruby/pull/1024) @madundead)
733
- - Fix style violations ([#1023](https://github.com/cucumber/cucumber-ruby/pull/1023) @nodo)
734
- - fix Lint/UselessAssignment ([1029](https://github.com/cucumber/cucumber-ruby/pull/1029) @hotovson)
735
- - fix Lint/EndAlignment ([#1032](https://github.com/cucumber/cucumber-ruby/pull/1032) @hotovson)
736
- - fix Lint/NonLocalExitFromIterator ([#1037](https://github.com/cucumber/cucumber-ruby/pull/1037) @hotovson)
737
- - fix Lint/UselessAccessModifier ([#1036](https://github.com/cucumber/cucumber-ruby/pull/1036) @hotovson)
738
- - Refs #1021 - Fixes the rubocop violation 'Style/StringLiterals' ([#1027](https://github.com/cucumber/cucumber-ruby/pull/1027) @pmatsinopoulos)
739
- - Fixes rubocop violation Lint/StringConversionInInterpolation ([#1038](https://github.com/cucumber/cucumber-ruby/pull/1038) @hotovson)
740
- - Fixes rubocop violation Style/FormatString ([#1040](https://github.com/cucumber/cucumber-ruby/pull/1040) @pmatsinopoulos)
741
- - Don't check temporary files by rubocop ([#1034](https://github.com/cucumber/cucumber-ruby/pull/1034) @hotovson)
742
- - fix Lint/NestedMethodDefinition ([#1035](https://github.com/cucumber/cucumber-ruby/pull/1035) @hotovson)
743
- - fix Lint/UnusedArgument ([#1033](https://github.com/cucumber/cucumber-ruby/pull/1033) @hotovson)
744
- - Fixes rubocop violation Performance/StringReplacement ([#1039](https://github.com/cucumber/cucumber-ruby/pull/1039) @pmatsinopoulos)
745
- - Fix an json compile error for "bundle install" on Ruby 2.4 ([#1069](https://github.com/cucumber/cucumber-ruby/pull/1069) @junaruga)
746
- - Add Ruby 2.4.0 as allow_failures in .travis.yml ([#1078](https://github.com/cucumber/cucumber-ruby/pull/1078) @junaruga)
747
- - Add ruby-head as a allow failures in .travis.yml ([#1087](https://github.com/cucumber/cucumber-ruby/pull/1087) @junaruga)
748
- - Refactoring for Rakefile to display cucumber task by "rake -T". ([#1088](https://github.com/cucumber/cucumber-ruby/pull/1088) @junaruga)
749
- - Fix some rubocop offenses ([#1093](https://github.com/cucumber/cucumber-ruby/pull/1093) @bv)
750
- - Add supported platforms to README.md. ([#1092](https://github.com/cucumber/cucumber-ruby/pull/1092) @junaruga)
751
- - Remove Ruby 2.4 from allow_failures in .travis.yml. ([#1099](https://github.com/cucumber/cucumber-ruby/pull/1099) @junaruga)
752
- - History: change bad character to space ([#1104](https://github.com/cucumber/cucumber-ruby/pull/1104) @olleolleolle)
753
- - Travis: jruby-9.1.8.0 in CI ([#1105](https://github.com/cucumber/cucumber-ruby/pull/1105) @olleolleolle)
754
- - Fix rubocop offenses 1021 003 ([#1107](https://github.com/cucumber/cucumber-ruby/pull/1107) @bv)
755
- - Travis: use jruby-9.1.10.0 ([#1114](https://github.com/cucumber/cucumber-ruby/pull/1114) @olleolleolle)
756
- - 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)
757
-
758
- ## [2.4.0](https://github.com/cucumber/cucumber-ruby/compare/v2.3.3...v2.4.0) (2016-06-09)
475
+ ## [2.0.0.rc.4]
759
476
 
760
- ### New Features
477
+ ## [2.0.0.rc.3]
761
478
 
762
- - Update to Gherkin v4.0 (@brasmusson)
479
+ ## [2.0.0.rc.2]
763
480
 
764
- ### Bugfixes
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]
765
738
 
766
- - Use HTTPS instead of Git as transport protocol ([#960](https://github.com/cucumber/cucumber-ruby/pull/960))
767
- - 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))
768
- - Run scenarios in fully random order ([#970](https://github.com/cucumber/cucumber-ruby/pull/970) @threedaymonk)
769
- - Adding Test Step in AfterStep hook. ([#931](https://github.com/cucumber/cucumber-ruby/pull/931) @t-morgan)
770
- - Handle even more exotic rerun file formats seen in the wild ([#928](https://github.com/cucumber/cucumber-ruby/pull/928) @mcrmfc)
771
- - Allow Rake task to accept multiple profiles. ([#907](https://github.com/cucumber/cucumber-ruby/pull/907) @jasonkarns)
772
- - 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]
773
740
 
774
- ## [2.3.3](https://github.com/cucumber/cucumber-ruby/compare/v2.3.2...v2.3.3) (2016-03-18)
741
+ ## [0.1.6]
775
742
 
776
- Added a message pointing users to [The Great Cucumber and BDD Census of 2016](https://cucumber.typeform.com/to/kjrSc2?audience=cucumber-ruby) to the installer message. Please take a few moments to help us all learn more about how you're using Cucumber and BDD.
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.
777
917
 
778
918
  ### Bugfixes
779
919