cucumber 6.0.0 → 8.0.0.rc.1

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.
Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +371 -168
  3. data/CONTRIBUTING.md +216 -55
  4. data/README.md +139 -21
  5. data/lib/autotest/cucumber_mixin.rb +5 -2
  6. data/lib/autotest/discover.rb +3 -2
  7. data/lib/cucumber/cli/configuration.rb +4 -1
  8. data/lib/cucumber/cli/main.rb +4 -3
  9. data/lib/cucumber/cli/options.rb +14 -4
  10. data/lib/cucumber/cli/profile_loader.rb +1 -5
  11. data/lib/cucumber/cli/rerun_file.rb +1 -1
  12. data/lib/cucumber/configuration.rb +5 -4
  13. data/lib/cucumber/constantize.rb +1 -1
  14. data/lib/cucumber/deprecate.rb +2 -1
  15. data/lib/cucumber/errors.rb +1 -1
  16. data/lib/cucumber/events/hook_test_step_created.rb +1 -2
  17. data/lib/cucumber/events/step_activated.rb +0 -6
  18. data/lib/cucumber/events/step_definition_registered.rb +0 -5
  19. data/lib/cucumber/events/test_case_created.rb +1 -2
  20. data/lib/cucumber/events/test_run_finished.rb +2 -1
  21. data/lib/cucumber/events/test_step_created.rb +1 -2
  22. data/lib/cucumber/events/undefined_parameter_type.rb +1 -2
  23. data/lib/cucumber/events.rb +2 -2
  24. data/lib/cucumber/file_specs.rb +2 -1
  25. data/lib/cucumber/filters/activate_steps.rb +1 -0
  26. data/lib/cucumber/filters/tag_limits/verifier.rb +1 -3
  27. data/lib/cucumber/filters/tag_limits.rb +1 -3
  28. data/lib/cucumber/formatter/ansicolor.rb +63 -70
  29. data/lib/cucumber/formatter/ast_lookup.rb +2 -2
  30. data/lib/cucumber/formatter/backtrace_filter.rb +1 -1
  31. data/lib/cucumber/formatter/console.rb +20 -4
  32. data/lib/cucumber/formatter/console_issues.rb +6 -1
  33. data/lib/cucumber/formatter/duration_extractor.rb +1 -0
  34. data/lib/cucumber/formatter/errors.rb +1 -0
  35. data/lib/cucumber/formatter/fanout.rb +1 -1
  36. data/lib/cucumber/formatter/http_io.rb +6 -1
  37. data/lib/cucumber/formatter/ignore_missing_messages.rb +1 -1
  38. data/lib/cucumber/formatter/io.rb +3 -1
  39. data/lib/cucumber/formatter/json.rb +32 -26
  40. data/lib/cucumber/formatter/junit.rb +6 -3
  41. data/lib/cucumber/formatter/message.rb +2 -1
  42. data/lib/cucumber/formatter/message_builder.rb +11 -10
  43. data/lib/cucumber/formatter/pretty.rb +34 -23
  44. data/lib/cucumber/formatter/progress.rb +1 -0
  45. data/lib/cucumber/formatter/publish_banner_printer.rb +1 -1
  46. data/lib/cucumber/formatter/query/hook_by_test_step.rb +1 -0
  47. data/lib/cucumber/formatter/query/test_case_started_by_test_case.rb +2 -0
  48. data/lib/cucumber/formatter/rerun.rb +2 -0
  49. data/lib/cucumber/formatter/steps.rb +5 -2
  50. data/lib/cucumber/formatter/summary.rb +1 -0
  51. data/lib/cucumber/formatter/unicode.rb +4 -4
  52. data/lib/cucumber/formatter/usage.rb +9 -7
  53. data/lib/cucumber/gherkin/data_table_parser.rb +2 -1
  54. data/lib/cucumber/gherkin/formatter/ansi_escapes.rb +2 -2
  55. data/lib/cucumber/gherkin/steps_parser.rb +1 -1
  56. data/lib/cucumber/glue/dsl.rb +19 -5
  57. data/lib/cucumber/glue/hook.rb +2 -1
  58. data/lib/cucumber/glue/invoke_in_world.rb +4 -4
  59. data/lib/cucumber/glue/proto_world.rb +12 -9
  60. data/lib/cucumber/glue/registry_and_more.rb +20 -5
  61. data/lib/cucumber/glue/registry_wrapper.rb +31 -0
  62. data/lib/cucumber/glue/step_definition.rb +9 -7
  63. data/lib/cucumber/hooks.rb +1 -0
  64. data/lib/cucumber/multiline_argument/data_table/diff_matrices.rb +2 -1
  65. data/lib/cucumber/multiline_argument/data_table.rb +58 -71
  66. data/lib/cucumber/platform.rb +2 -2
  67. data/lib/cucumber/rake/task.rb +10 -7
  68. data/lib/cucumber/rspec/disable_option_parser.rb +6 -3
  69. data/lib/cucumber/running_test_case.rb +1 -0
  70. data/lib/cucumber/runtime/meta_message_builder.rb +106 -0
  71. data/lib/cucumber/runtime/support_code.rb +3 -0
  72. data/lib/cucumber/runtime/user_interface.rb +5 -4
  73. data/lib/cucumber/runtime.rb +42 -23
  74. data/lib/cucumber/step_match.rb +6 -10
  75. data/lib/cucumber/step_match_search.rb +3 -2
  76. data/lib/cucumber/term/ansicolor.rb +74 -50
  77. data/lib/cucumber/term/banner.rb +1 -0
  78. data/lib/cucumber/version +1 -1
  79. data/lib/cucumber.rb +2 -1
  80. data/lib/simplecov_setup.rb +1 -1
  81. metadata +90 -89
  82. data/lib/cucumber/core_ext/string.rb +0 -11
data/CHANGELOG.md CHANGED
@@ -10,7 +10,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
10
10
 
11
11
  ---
12
12
 
13
- ## [In GIT](https://github.com/cucumber/cucumber-ruby/compare/v6.0.0...master)
13
+ ## [Unreleased](https://github.com/cucumber/cucumber-ruby/compare/v8.0.0.rc.1...main)
14
14
 
15
15
  ### Added
16
16
 
@@ -22,7 +22,211 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
22
22
 
23
23
  ### Security fixes
24
24
 
25
- ## [v6.0.0](https://github.com/cucumber/cucumber-ruby/compare/v5.3.0...v6.0.0)
25
+ ### Deprecated
26
+
27
+ ### Dependencies
28
+
29
+ ## [8.0.0.RC.1](https://github.com/cucumber/cucumber-ruby/compare/v7.1.0...v8.0.0.rc.1)
30
+
31
+ ### Fixed
32
+
33
+ - Fix TestRunFinished success property in html formatter and all formatters
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))
37
+
38
+ - Fix usage of namespaced modules across multiple scenarios
39
+ ([PR#1603](https://github.com/cucumber/cucumber-ruby/pull/1603)
40
+ [Issue#1595](https://github.com/cucumber/cucumber-ruby/issues/1595))
41
+
42
+ - Do not serialize Messages::Hook#tag_expression if it is empty.
43
+ ([PR#1579](https://github.com/cucumber/cucumber-ruby/pull/1579))
44
+
45
+ - JSON Formatter uses "pretty" output format
46
+ ([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
47
+
48
+ - Fixed JSON Formatter "end of background" detection.
49
+ ([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
50
+
51
+ - Fixed JSON Formatter expansion of Scenario Outline templates in Doc Strings.
52
+ ([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
53
+
54
+ - Removed usage of `eval` in `Cucumber::Term::ANSIColor` and `Cucumber::Formatter::ANSIColor`.
55
+ ([PR#1589](https://github.com/cucumber/cucumber-ruby/pull/1589)
56
+ [Issue#1583](https://github.com/cucumber/cucumber-ruby/issues/1583))
57
+
58
+ - Fixed `DataTable#map_headers` when headers have the same prefix.
59
+ ([PR#1598](https://github.com/cucumber/cucumber-ruby/pull/1598)
60
+ [Issue#1450](https://github.com/cucumber/cucumber-ruby/issues/1450))
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))
75
+
76
+ ### Removed
77
+
78
+ - `AfterConfiguration` has been removed. Please use `InstallPlugin` or `BeforeAll` instead.
79
+ See the [UPGRADING.md](./UPGRADING.md#upgrading-to-800) to update your code accordingly.
80
+ ([PR#1591](https://github.com/cucumber/cucumber-ruby/pull/1591))
81
+
82
+ - The built-in Wire protocol
83
+ The Wire protocol is still officially supported, but as an optional plugin rather
84
+ than a built-in feature. See the
85
+ [UPGRADING.md](./UPGRADING.md#upgrading-to-800)
86
+ to update your code accordingly.
87
+
88
+ ([1562](https://github.com/cucumber/cucumber-ruby/pull/1562)
89
+ [aurelien-reeves](https://github.com/aurelien-reeves))
90
+
91
+ - Removed former unused `stdin` argument from `Cli::Main`. That may impact your code
92
+ if you use cucumber API `Cucumber::Cli::Main`. See [UPGRADING.md](./UPGRADING.md#upgrading-to-800).
93
+ ([PR#1588](https://github.com/cucumber/cucumber-ruby/pull/1588)
94
+ [Issue#1581](https://github.com/cucumber/cucumber-ruby/issues/1581))
95
+
96
+ - Removed `DataTable#map_column!` and `DataTable#map_headers!`.
97
+ Those methods were error-prone and planned to be removed a long time ago. You
98
+ can use the immutable versions instead: `DataTable#map_column` and
99
+ `DataTable#map_headers`.
100
+ ([PR#1590](https://github.com/cucumber/cucumber-ruby/pull/1590)
101
+ [Issue#1584](https://github.com/cucumber/cucumber-ruby/issues/1584))
102
+
103
+ - Removed support for Ruby 2.5 and JRuby 9.2.
104
+
105
+ ## [7.1.0](https://github.com/cucumber/cucumber-ruby/compare/v7.0.0...v7.1.0) (2021-10-12)
106
+
107
+ ### Added
108
+
109
+ - 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
+ - New hook: `InstallPlugin`
118
+
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
+ ### Changed
136
+
137
+ - Added release dates to CHANGELOG.md.
138
+ ([1543](https://github.com/cucumber/cucumber-ruby/pull/1573)
139
+ [AudTheCodeWitch](https://github.com/AudTheCodeWitch))
140
+
141
+ ### Deprecated
142
+
143
+ - `AfterConfiguration` is deprecated. Please use `InstallPlugin` or `BeforeAll` instead.
144
+ See the [UPGRADING.md](./UPGRADING.md#upgrading-to-710) to update your code accordingly.
145
+ ([1570](https://github.com/cucumber/cucumber-ruby/pull/1570))
146
+
147
+ - The built-in Wire protocol
148
+
149
+ The Wire protocol is still officially supported, but as an optional plugin rather
150
+ than a built-in feature. See the
151
+ [UPGRADING.md](./UPGRADING.md#upgrading-to-710)
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)
163
+
164
+ ### Fixed
165
+
166
+ - Cucumber terminating with `negative argument` ArgumentError
167
+ ([1546](https://github.com/cucumber/cucumber-ruby/issues/1546)
168
+ [1548](https://github.com/cucumber/cucumber-ruby/pull/1548)
169
+ [Serghei Moret](https://github.com/JoeSSS))
170
+ - Fixed reports banner to point to [new docs](https://cucumber.io/docs/cucumber/environment-variables/) about environment variables
171
+
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
+ ### Removed
185
+
186
+ - On Windows, auto-detection of ANSICON has been removed - Windows now properly
187
+ supports ANSI colors in the terminal. In case of issues on older versions of
188
+ Windows, execute cucumber with `--no-color`, or install
189
+ [ANSICON](https://github.com/adoxa/ansicon/) globally.
190
+ ([1561](https://github.com/cucumber/cucumber-ruby/pull/1561)
191
+ [yosukei3108](https://github.com/yosukei3108))
192
+
193
+ ## [v6.1.0](https://github.com/cucumber/cucumber-ruby/compare/v6.0.0...v6.1.0) (2021-05-18)
194
+
195
+ ### Fixed
196
+
197
+ - `--dry-run` now supports `message` based-formatters
198
+ ([1540](https://github.com/cucumber/cucumber-ruby/pull/1540)
199
+ [1496](https://github.com/cucumber/cucumber-ruby/issues/1496)
200
+ [1488](https://github.com/cucumber/cucumber-ruby/issues/1488)
201
+ [aurelien-reeves](https://github.com/aurelien-reeves))
202
+ - Step definitions now uses object instances created in the ParameterType
203
+ ([1538](https://github.com/cucumber/cucumber-ruby/pull/1538)
204
+ [1532](https://github.com/cucumber/cucumber-ruby/issues/1532)
205
+ [aurelien-reeves](https://github.com/aurelien-reeves))
206
+ - `attach` can now handle null bytes in the data.
207
+ ([1536](https://github.com/cucumber/cucumber-ruby/pull/1536)
208
+ [1529](https://github.com/cucumber/cucumber-ruby/issues/1529)
209
+ [aurelien-reeves](https://github.com/aurelien-reeves))
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)
226
+
227
+ ### Added
228
+
229
+ - Support tagged rules ([cucumber#1123](https://github.com/cucumber/cucumber/issues/1123))
26
230
 
27
231
  ### Fixed
28
232
 
@@ -42,14 +246,13 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
42
246
  Simply replace `embed` with `attach`.
43
247
  ([#1523](https://github.com/cucumber/cucumber-ruby/pull/1523)
44
248
  [aurelien-reeves](https://github.com/aurelien-reeves))
45
-
46
- - `puts` in step definitions in favor of `log`. `log` has been deprecated in version 4.0
249
+ - `puts` in step definitions in favor of `log`.
47
250
  `puts` has been deprecated in version 4.0.
48
251
  Simply replace `puts` with `log`.
49
252
  ([#1523](https://github.com/cucumber/cucumber-ruby/pull/1523)
50
253
  [aurelien-reeves](https://github.com/aurelien-reeves))
51
-
52
- ## [5.3.0](https://github.com/cucumber/cucumber-ruby/compare/v5.2.0...v5.3.0)
254
+
255
+ ## [5.3.0](https://github.com/cucumber/cucumber-ruby/compare/v5.2.0...v5.3.0) (2021-01-28)
53
256
 
54
257
  ### Added
55
258
 
@@ -67,31 +270,31 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
67
270
  [#1500](https://github.com/cucumber/cucumber-ruby/pull/1500)
68
271
  [aurelien-reeves](https://github.com/aurelien-reeves))
69
272
 
70
- ## [5.2.0](https://github.com/cucumber/cucumber-ruby/compare/v5.1.3...v5.2.0)
273
+ ## [5.2.0](https://github.com/cucumber/cucumber-ruby/compare/v5.1.3...v5.2.0) (2020-10-21)
71
274
 
72
275
  ### Changed
73
276
 
74
277
  - `--publish` uses the response provided by the server as the banner [#1472](https://github.com/cucumber/cucumber-ruby/issues/1472)
75
278
 
76
- ## [5.1.3](https://github.com/cucumber/cucumber-ruby/compare/v5.1.2...v5.1.3)
279
+ ## [5.1.3](https://github.com/cucumber/cucumber-ruby/compare/v5.1.2...v5.1.3) (2020-10-07)
77
280
 
78
281
  ### Fixed
79
282
 
80
283
  - The `CUCUMBER_PUBLISH_TOKEN` now sets the correct HTTP header, following a fix in the curl option parser.
81
284
 
82
- ## [5.1.2](https://github.com/cucumber/cucumber-ruby/compare/v5.1.1...v5.1.2)
285
+ ## [5.1.2](https://github.com/cucumber/cucumber-ruby/compare/v5.1.1...v5.1.2) (2020-09-18)
83
286
 
84
287
  ### Fixed
85
288
 
86
289
  - Do not send headers after following redirection [#1475](https://github.com/cucumber/cucumber-ruby/pull/1475)
87
290
 
88
- ## [5.1.1](https://github.com/cucumber/cucumber-ruby/compare/v5.1.0...v5.1.1)
291
+ ## [5.1.1](https://github.com/cucumber/cucumber-ruby/compare/v5.1.0...v5.1.1) (2020-09-04)
89
292
 
90
293
  ### Security fixes
91
294
 
92
295
  - Update `cucumber-create-meta` to 2.0.2
93
296
 
94
- ## [5.1.0](https://github.com/cucumber/cucumber-ruby/compare/v5.0.0...5.1.0)
297
+ ## [5.1.0](https://github.com/cucumber/cucumber-ruby/compare/v5.0.0...5.1.0) (2020-08-24)
95
298
 
96
299
  ### Added
97
300
 
@@ -110,7 +313,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
110
313
 
111
314
  - Display banner on stderr when publishing reports [#1462](https://github.com/cucumber/cucumber-ruby/issues/1462)
112
315
 
113
- ## [5.0.0](https://github.com/cucumber/cucumber-ruby/compare/v4.1.0...5.0.0)
316
+ ## [5.0.0](https://github.com/cucumber/cucumber-ruby/compare/v4.1.0...5.0.0) (2020-08-19)
114
317
 
115
318
  ### Added
116
319
 
@@ -141,7 +344,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
141
344
  - Add filtering capabilities [#1444](https://github.com/cucumber/cucumber-ruby/issues/1444)
142
345
  - Fix Interceptor that was raising exception when calling `puts` on the wrapped stream ([#1445](https://github.com/cucumber/cucumber-ruby/issues/1445))
143
346
 
144
- ## [4.1.0](https://github.com/cucumber/cucumber-ruby/compare/v4.0.1...v4.1.0)
347
+ ## [4.1.0](https://github.com/cucumber/cucumber-ruby/compare/v4.0.1...v4.1.0) (2020-07-01)
145
348
 
146
349
  ### Changed
147
350
 
@@ -160,13 +363,13 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
160
363
 
161
364
  - `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)
162
365
 
163
- ## [4.0.1](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0...v4.0.1)
366
+ ## [4.0.1](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0...v4.0.1) (2020-06-23)
164
367
 
165
368
  ### Fixed
166
369
 
167
370
  - force reference to `diff-lcs` to 1.3 as 1.4 introduced breaking changes.
168
371
 
169
- ## [4.0.0](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...v4.0.0)
372
+ ## [4.0.0](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...v4.0.0) (2020-06-02)
170
373
 
171
374
  ### Changed
172
375
 
@@ -176,7 +379,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
176
379
 
177
380
  - Display snippet when using undefined parameter type [#1411](https://github.com/cucumber/cucumber-ruby/issues/1411)
178
381
 
179
- ## [4.0.0.rc.6](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...4.0.0.rc.6)
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)
180
383
 
181
384
  ### Changed
182
385
 
@@ -204,7 +407,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
204
407
  - use `PUT` method by default
205
408
  - use a cURL like options (for example: `cucumber --out 'http://example.com -X POST -H Content-Type: json`)
206
409
 
207
- ## [4.0.0.rc.5](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.4...4.0.0.rc.5)
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)
208
411
 
209
412
  ### Added
210
413
 
@@ -216,7 +419,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
216
419
  Other `http-` prefixed query parameters will be converted to request headers
217
420
  (with the `http-` prefix stripped off).
218
421
 
219
- ## [4.0.0.rc.4](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.3...4.0.0.rc.4)
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)
220
423
 
221
424
  ### Added
222
425
 
@@ -230,13 +433,13 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
230
433
  - `puts` in step definitions in favor of `log` ([cucumber#897](https://github.com/cucumber/cucumber/issues/897))
231
434
  - `embed` in step definitions in favor of `attach` ([cucumber#897](https://github.com/cucumber/cucumber/issues/897))
232
435
 
233
- ## [4.0.0.rc.3](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.2...v4.0.0.rc.3)
436
+ ## [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)
234
437
 
235
438
  ### Changed
236
439
 
237
440
  - Update to cucumber-wire 1.1.
238
441
 
239
- ## [4.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.1...v4.0.0.rc.2)
442
+ ## [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)
240
443
 
241
444
  ### Added
242
445
 
@@ -454,7 +657,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
454
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))
455
658
  - Use past tense in event names (`xStarting` -> `xStarted`) ([#1166](https://github.com/cucumber/cucumber-ruby/issues/1166) @brasmusson).
456
659
 
457
- ## [3.0.0.pre.2](https://github.com/cucumber/cucumber-ruby/compare/v2.4.0...v3.0.0.pre.2)
660
+ ## [3.0.0.pre.2](https://github.com/cucumber/cucumber-ruby/compare/v2.4.0...v3.0.0.pre.2) (2017-07-26)
458
661
 
459
662
  ### Breaking changes
460
663
 
@@ -530,7 +733,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
530
733
  - Travis: use jruby-9.1.10.0 ([#1114](https://github.com/cucumber/cucumber-ruby/pull/1114) @olleolleolle)
531
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)
532
735
 
533
- ## [2.4.0](https://github.com/cucumber/cucumber-ruby/compare/v2.3.3...v2.4.0)
736
+ ## [2.4.0](https://github.com/cucumber/cucumber-ruby/compare/v2.3.3...v2.4.0) (2016-06-09)
534
737
 
535
738
  ### New Features
536
739
 
@@ -546,7 +749,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
546
749
  - Allow Rake task to accept multiple profiles. ([#907](https://github.com/cucumber/cucumber-ruby/pull/907) @jasonkarns)
547
750
  - Let the JUnit formatter handle running test cases for different features interweaved ([#952](https://github.com/cucumber/cucumber-ruby/issues/952) @brasmusson)
548
751
 
549
- ## [2.3.3](https://github.com/cucumber/cucumber-ruby/compare/v2.3.2...v2.3.3)
752
+ ## [2.3.3](https://github.com/cucumber/cucumber-ruby/compare/v2.3.2...v2.3.3) (2016-03-18)
550
753
 
551
754
  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.
552
755
 
@@ -555,15 +758,15 @@ Added a message pointing users to [The Great Cucumber and BDD Census of 2016](ht
555
758
  - Let the JSON formatter include data tables in the JSON file ([#948](https://github.com/cucumber/cucumber-ruby/issues/948) @brasmusson)
556
759
  - Stringifying location in the JSON formatter for more consistent json parsing ([949](https://github.com/cucumber/cucumber-ruby/pull/949), [945](https://github.com/cucumber/cucumber-ruby/issues/945) @larryprice)
557
760
 
558
- ## [2.3.2](https://github.com/cucumber/cucumber-ruby/compare/v2.3.1...v2.3.2)
761
+ ## [2.3.2](https://github.com/cucumber/cucumber-ruby/compare/v2.3.1...v2.3.2) (2016-01-21)
559
762
 
560
763
  Brought the event bus code back into Cucumber to avoid https://github.com/fedux-org/event-bus/issues/6
561
764
 
562
- ## [2.3.1](https://github.com/cucumber/cucumber-ruby/compare/v2.3.0...v2.3.1)
765
+ ## [2.3.1](https://github.com/cucumber/cucumber-ruby/compare/v2.3.0...v2.3.1) (2016-01-20)
563
766
 
564
767
  Better deprecation warnings to help fix https://github.com/cucumber/cucumber-ruby/issues/942
565
768
 
566
- ## [2.3.0](https://github.com/cucumber/cucumber-ruby/compare/v2.2.0...v2.3.0)
769
+ ## [2.3.0](https://github.com/cucumber/cucumber-ruby/compare/v2.2.0...v2.3.0) (2016-01-13)
567
770
 
568
771
  ### New Features
569
772
 
@@ -573,7 +776,7 @@ Better deprecation warnings to help fix https://github.com/cucumber/cucumber-rub
573
776
 
574
777
  ### Refactoring
575
778
 
576
- ## [2.2.0](https://github.com/cucumber/cucumber-ruby/compare/v2.1.0...v2.2.0)
779
+ ## [2.2.0](https://github.com/cucumber/cucumber-ruby/compare/v2.1.0...v2.2.0) (2016-01-08)
577
780
 
578
781
  Although this release is only bugfixes and refactorings, the extraction of the wire protocol is quite a significant change and
579
782
  could cause breaking changes for users of undocumented APIs. Hence the minor version bump.
@@ -590,7 +793,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
590
793
  - Remove wire protocol to plugin ([#878](https://github.com/cucumber/cucumber-ruby/pull/878) @mattwynne @tooky)
591
794
  - Remove event bus to separate gem ([#933](https://github.com/cucumber/cucumber-ruby/pull/933) @dg-ratiodata)
592
795
 
593
- ## [2.1.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.2...v2.1.0)
796
+ ## [2.1.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.2...v2.1.0) (2015-09-11)
594
797
 
595
798
  ### New Features
596
799
 
@@ -610,14 +813,14 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
610
813
  - Move behaviour from `Cucumber::Cli::Configuration` to `Cucumber::Configuration` (@tooky, @mattwynne)
611
814
  - Integrate Gherkin3 parser ([884](https://github.com/cucumber/cucumber-ruby/pull/884) (@brasmusson)
612
815
 
613
- ## [2.0.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.1...v2.0.2)
816
+ ## [2.0.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.1...v2.0.2) (2015-07-15)
614
817
 
615
818
  ### Bugfixes
616
819
 
617
820
  - Revert interface change in Cucumber::Formatter::Console (which can break custom formatters in v2.0.1) ([893](https://github.com/cucumber/cucumber-ruby/issues/893) @brasmusson).
618
821
  - Calculate the locations of hooks properly (so it also work between drives on Windows) ([885](https://github.com/cucumber/cucumber-ruby/issues/885) @brasmusson).
619
822
 
620
- ## [2.0.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0...v2.0.1)
823
+ ## [2.0.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0...v2.0.1) (2015-07-08)
621
824
 
622
825
  ### New Features
623
826
 
@@ -644,7 +847,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
644
847
  - Rewrite the JUnit Formatter to the new formatter API ([855](https://github.com/cucumber/cucumber-ruby/pull/855) @brasmusson)
645
848
  - Rewrite the Progress, Usage, Stepdefs formatters to the new formatter API ([859](https://github.com/cucumber/cucumber-ruby/pull/859) @brasmusson)
646
849
 
647
- ## [2.0.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.5...v2.0.0)
850
+ ## [2.0.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.5...v2.0.0) (2015-03-31)
648
851
 
649
852
  ### New Features
650
853
 
@@ -656,7 +859,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
656
859
  - Ensure After Hooks execute in reverse order (@tooky)
657
860
  - Make console output with embedded cr/lf look correct. ([820](https://github.com/cucumber/cucumber-ruby/pull/820) @SteveDonie)
658
861
 
659
- ## [2.0.0.rc5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.4...v2.0.0.rc.5)
862
+ ## [2.0.0.rc5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.4...v2.0.0.rc.5) (2015-03-19)
660
863
 
661
864
  ### New Features
662
865
 
@@ -673,11 +876,11 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
673
876
  - JUnit expand option ([808](https://github.com/cucumber/cucumber-ruby/pull/808) @richarda @brasmusson)
674
877
  - Around hooks not executing in correct world context ([807](https://github.com/cucumber/cucumber-ruby/pull/807) @tooky)
675
878
 
676
- ## [2.0.0.rc.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.3...2.0.0.rc.4)
879
+ ## [2.0.0.rc.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.3...2.0.0.rc.4) (2015-02-15)
677
880
 
678
881
  ### Features
679
882
 
680
- - [Add custom filters from Ruby configuration code](https://github.com/cucumber/cucumber-ruby/blob/master/features/docs/extending_cucumber/custom_filter.feature) (@mattwynne)
883
+ - [Add custom filters from Ruby configuration code](https://github.com/cucumber/cucumber-ruby/blob/main/features/docs/extending_cucumber/custom_filter.feature) (@mattwynne)
681
884
 
682
885
  ### Bugfixes
683
886
 
@@ -687,19 +890,19 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
687
890
  - Sort scenarios by location ([789](https://github.com/cucumber/cucumber-ruby/issues/789) @mattwynne)
688
891
  - Remove keyword from name property of test case object yielded to hooks ([768](https://github.com/cucumber/cucumber-ruby/issues/768) @richarda, @akostadinov)
689
892
 
690
- ## [2.0.0.rc.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.2...v2.0.0.rc.3)
893
+ ## [2.0.0.rc.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.2...v2.0.0.rc.3) (2015-01-23)
691
894
 
692
895
  ### Bugfixes
693
896
 
694
897
  - MultilineArgument::DataTable#diff will correctly compare to an Array (@tooky)
695
898
 
696
- ## [2.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.1...v2.0.0.rc.2)
899
+ ## [2.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.1...v2.0.0.rc.2) (2015-01-23)
697
900
 
698
901
  ### Bugfixes
699
902
 
700
903
  - World#table no longer creates invalid table objects when using an Array (@tooky, @mattwynne)
701
904
 
702
- ## [2.0.0.rc.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.5...v2.0.0.rc.1)
905
+ ## [2.0.0.rc.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.5...v2.0.0.rc.1) (2015-01-23)
703
906
 
704
907
  ### Removed Features
705
908
 
@@ -718,11 +921,11 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
718
921
  - Using file:line CLI to select scenarios was running same scenario multiple times ([786](https://github.com/cucumber/cucumber-ruby/pull/786) @jdks)
719
922
  - Allow spaces in filenames for rerun formatter ([793](https://github.com/cucumber/cucumber-ruby/pull/793) @callahat)
720
923
 
721
- ## [2.0.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.4...v2.0.0.beta.5)
924
+ ## [2.0.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.4...v2.0.0.beta.5) (2014-12-18)
722
925
 
723
926
  - Depend on the correct version of core (@tooky)
724
927
 
725
- ## [2.0.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.3...v2.0.0.beta.4)
928
+ ## [2.0.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.3...v2.0.0.beta.4) (2014-12-18)
726
929
 
727
930
  ### New Features
728
931
 
@@ -738,7 +941,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
738
941
 
739
942
  - Re-write rerun formatter against new formatter API
740
943
 
741
- ## [2.0.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.2...v2.0.0.beta.3)
944
+ ## [2.0.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.2...v2.0.0.beta.3) (2014-09-14)
742
945
 
743
946
  ### Removed Features
744
947
 
@@ -758,14 +961,14 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
758
961
  - Add back support for the DataTable API ([729](https://github.com/cucumber/cucumber-ruby/pull/729) @mattwynne and @tooky)
759
962
  - Fix Windows support loading files properly ([739](https://github.com/cucumber/cucumber-ruby/issues/739) @os97673)
760
963
 
761
- ## [2.0.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.1...v2.0.0.beta.2)
964
+ ## [2.0.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.1...v2.0.0.beta.2) (2014-08-29)
762
965
 
763
966
  ### Bugfixes
764
967
 
765
968
  - Better reporting of exceptions in Before / After hooks ([723](https://github.com/cucumber/cucumber-ruby/pull/723) @mattwynne)
766
969
  - Add `#source_tag_names` method to `TestCase` object passed to hooks (@mattwynne)
767
970
 
768
- ## [2.0.0.beta.1 ](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v2.0.0.beta.1)
971
+ ## [2.0.0.beta.1 ](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v2.0.0.beta.1) (2014-08-22)
769
972
 
770
973
  Version 2.0 contains a major internal redesign, extracting the core logic of
771
974
  parsing and executing tests into a [separate gem](https://github.com/cucumber/cucumber-ruby-ruby-core).
@@ -800,53 +1003,53 @@ all.
800
1003
 
801
1004
  - Greek examples added ([497](https://github.com/cucumber/cucumber-ruby/issues/497) @rousisk)
802
1005
 
803
- ## [1.3.16](https://github.com/cucumber/cucumber-ruby/compare/v1.3.15...v1.3.16)
1006
+ ## [1.3.16](https://github.com/cucumber/cucumber-ruby/compare/v1.3.15...v1.3.16) (2014-07-28)
804
1007
 
805
1008
  - Pass output from the step definition on to the JSON formatter ([701](https://github.com/cucumber/cucumber-ruby/pull/701) @brasmusson)
806
1009
  - Add RSpec 3 test double support ([689](https://github.com/cucumber/cucumber-ruby/pull/689) @cyphactor)
807
1010
  - Fix bug with rerun formatter and `--expand` option ([710](https://github.com/cucumber/cucumber-ruby/pull/710) @brasmusson)
808
1011
 
809
- ## [1.3.15](https://github.com/cucumber/cucumber-ruby/compare/v1.3.14...v1.3.15)
1012
+ ## [1.3.15](https://github.com/cucumber/cucumber-ruby/compare/v1.3.14...v1.3.15) (2014-05-09)
810
1013
 
811
1014
  - Fixed intermittent ConcurrencyError seen in JRuby
812
1015
  ([671](https://github.com/cucumber/cucumber-ruby/issues/670) @cbusbey)
813
1016
 
814
- ## [1.3.14](https://github.com/cucumber/cucumber-ruby/compare/v1.3.13...v1.3.14)
1017
+ ## [1.3.14](https://github.com/cucumber/cucumber-ruby/compare/v1.3.13...v1.3.14) (2014-03-28)
815
1018
 
816
1019
  - Rerun formatter includes all scenarios when the background fails
817
1020
  ([660](https://github.com/cucumber/cucumber-ruby/issues/660),
818
1021
  [661](https://github.com/cucumber/cucumber-ruby/pull/661) @brasmusson)
819
1022
 
820
- ## [1.3.13](https://github.com/cucumber/cucumber-ruby/compare/v1.3.12...v1.3.13)
1023
+ ## [1.3.13](https://github.com/cucumber/cucumber-ruby/compare/v1.3.12...v1.3.13) (2014-03-25)
821
1024
 
822
1025
  - Rerun formatter includes all scenarios when the background fails
823
1026
  ([654](https://github.com/cucumber/cucumber-ruby/pull/654) @brasmusson)
824
1027
 
825
- ## [1.3.12](https://github.com/cucumber/cucumber-ruby/compare/v1.3.11...v1.3.12)
1028
+ ## [1.3.12](https://github.com/cucumber/cucumber-ruby/compare/v1.3.11...v1.3.12) (2014-03-16)
826
1029
 
827
1030
  - Use MultiTest to handle assertions library selection (@tooky)
828
1031
  - Adds full support for rails 4.1 / Minitest
829
1032
 
830
- ## [1.3.11](https://github.com/cucumber/cucumber-ruby/compare/v1.3.10...v1.3.11)
1033
+ ## [1.3.11](https://github.com/cucumber/cucumber-ruby/compare/v1.3.10...v1.3.11) (2014-03-02)
831
1034
 
832
1035
  - Add Ruby 2.1 Support ([#644](https://github.com/cucumber/cucumber-ruby/pull/644) @tooky, @chrismdp)
833
1036
 
834
- ## [1.3.10](https://github.com/cucumber/cucumber-ruby/compare/v1.3.9...v1.3.10)
1037
+ ## [1.3.10](https://github.com/cucumber/cucumber-ruby/compare/v1.3.9...v1.3.10) (2013-11-16)
835
1038
 
836
1039
  - Fixed "nil:NilClass (NoMethodError)" problem for auto-formatting ([599](https://github.com/cucumber/cucumber-ruby/pull/599) @jmcaffee)
837
1040
 
838
- ## [1.3.9](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v1.3.9)
1041
+ ## [1.3.9](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v1.3.9) (2013-11-06)
839
1042
 
840
1043
  - Disable minitest autorun after loading support files (@tooky)
841
1044
  - Add `Ast::Table#map_column` for non-mutating column mapping (@tooky)
842
1045
  - Remove deprecation warnings on `Ast::Table` (@tooky)
843
1046
  - Fixed ArgumentError for NoStepMatch#format_args ([587](https://github.com/cucumber/cucumber-ruby/pull/587) @jshraibman-mdsol)
844
1047
 
845
- ## [1.3.8](https://github.com/cucumber/cucumber-ruby/compare/v1.3.7...v1.3.8)
1048
+ ## [1.3.8](https://github.com/cucumber/cucumber-ruby/compare/v1.3.7...v1.3.8) (2013-09-10)
846
1049
 
847
1050
  - Make the MultiJson dependency less restrictive (@tooky)
848
1051
 
849
- ## [1.3.7](https://github.com/cucumber/cucumber-ruby/compare/v1.3.6...v1.3.7)
1052
+ ## [1.3.7](https://github.com/cucumber/cucumber-ruby/compare/v1.3.6...v1.3.7) (2013-09-06)
850
1053
 
851
1054
  - Fixed incorrect html formatter behaviour when background step fails
852
1055
  ([520](https://github.com/cucumber/cucumber-ruby/issues/520),
@@ -865,20 +1068,20 @@ all.
865
1068
  - AST::Table#map_headers doesn't use #map_headers! anymore
866
1069
  ([505](https://github.com/cucumber/cucumber-ruby/issues/528) @adbatista)
867
1070
 
868
- ## [1.3.6](https://github.com/cucumber/cucumber-ruby/compare/v1.3.5...v1.3.6)
1071
+ ## [1.3.6](https://github.com/cucumber/cucumber-ruby/compare/v1.3.5...v1.3.6) (2013-08-09)
869
1072
 
870
1073
  - Html formatter fixed to not mark passes scenarios with tables as pending
871
1074
  ([493](https://github.com/cucumber/cucumber-ruby/issues/493) Oleg Sukhodolsky)
872
1075
 
873
- ## [1.3.5](https://github.com/cucumber/cucumber-ruby/compare/v1.3.4...v1.3.5)
1076
+ ## [1.3.5](https://github.com/cucumber/cucumber-ruby/compare/v1.3.4...v1.3.5) (2013-07-19)
874
1077
 
875
1078
  - Fix Rails 4 Minitest autorun problems. ([501](https://github.com/cucumber/cucumber-ruby/issues/501) @mattwynne)
876
1079
 
877
- ## [1.3.4](https://github.com/cucumber/cucumber-ruby/compare/v1.3.3...v1.3.4)
1080
+ ## [1.3.4](https://github.com/cucumber/cucumber-ruby/compare/v1.3.3...v1.3.4) (2013-07-12)
878
1081
 
879
1082
  - JUnit formatter fixed to report skipped scenarios correctly ([496](https://github.com/cucumber/cucumber-ruby/issues/496) @ambirag)
880
1083
 
881
- ## [1.3.3](https://github.com/cucumber/cucumber-ruby/compare/v1.3.2...v1.3.3)
1084
+ ## [1.3.3](https://github.com/cucumber/cucumber-ruby/compare/v1.3.2...v1.3.3) (2013-07-07)
882
1085
 
883
1086
  - Fix compatability with MiniTest 5.0 ([#456](https://github.com/cucumber/cucumber-ruby/issues/456) Matt Wynne)
884
1087
  - Warn that Spork support is broken (Steve Tooke)
@@ -886,20 +1089,20 @@ all.
886
1089
  ([#492](https://github.com/cucumber/cucumber-ruby/issues/492) Matt Wynne)
887
1090
  - Use new Rubygems API to look for bundler ([#448](https://github.com/cucumber/cucumber-ruby/issues/448) Matt Wynne)
888
1091
 
889
- ## [1.3.2](https://github.com/cucumber/cucumber-ruby/compare/v1.3.1...v1.3.2)
1092
+ ## [1.3.2](https://github.com/cucumber/cucumber-ruby/compare/v1.3.1...v1.3.2) (2013-05-22)
890
1093
 
891
1094
  ### Bugfixes
892
1095
 
893
1096
  - Fixed ugly NoMethodError when a Scenario Outline has no Examples
894
1097
  ([#438](https://github.com/cucumber/cucumber-ruby/issues/438) Steve Tooke)
895
1098
 
896
- ## [1.3.1](https://github.com/cucumber/cucumber-ruby/compare/v1.3.0...v1.3.1)
1099
+ ## [1.3.1](https://github.com/cucumber/cucumber-ruby/compare/v1.3.0...v1.3.1) (2013-04-21)
897
1100
 
898
1101
  ### Bugfixes
899
1102
 
900
1103
  - Fixed typo which breaks unicode.rb on Windows (Oleg Sukhodolsky)
901
1104
 
902
- ## [1.3.0](https://github.com/cucumber/cucumber-ruby/compare/v1.2.5...v1.3.0)
1105
+ ## [1.3.0](https://github.com/cucumber/cucumber-ruby/compare/v1.2.5...v1.3.0) (2013-04-21)
903
1106
 
904
1107
  ### New Features
905
1108
 
@@ -936,23 +1139,23 @@ all.
936
1139
  - Better delegation to IO in Cucumber::Formatter::Interceptor::Pipe
937
1140
  ([#312](https://github.com/cucumber/cucumber-ruby/issues/312) Oleg Sukhodolsky)
938
1141
 
939
- ## [1.2.5](https://github.com/cucumber/cucumber-ruby/compare/v1.2.3...v1.2.5)
1142
+ ## [1.2.5](https://github.com/cucumber/cucumber-ruby/compare/v1.2.3...v1.2.5) (2013-04-08)
940
1143
 
941
1144
  - Upgrade Gherkin version to remove warnings when running on JRuby. ([#393](https://github.com/cucumber/cucumber-ruby/issues/393) Oleg Sukhodolsky)
942
1145
  - Do not use TagExpression.eval() which is deprecated in Gherkin 2.11.7 ([#420](https://github.com/cucumber/cucumber-ruby/issues/420) Oleg Sukhodolsky)
943
1146
 
944
- ## 1.2.4
1147
+ ## 1.2.4 (2013-04-07)
945
1148
 
946
1149
  Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
947
1150
 
948
- ## [1.2.3](https://github.com/cucumber/cucumber-ruby/compare/v1.2.2...v1.2.3)
1151
+ ## [1.2.3](https://github.com/cucumber/cucumber-ruby/compare/v1.2.2...v1.2.3) (2013-03-07)
949
1152
 
950
1153
  ### Bugfixes
951
1154
 
952
1155
  - Fix problem with rake task for jruby and ruby installed from packages on Ubuntu ([#386](https://github.com/cucumber/cucumber-ruby/issues/386), [#388](https://github.com/cucumber/cucumber-ruby/issues/388) @y-higuchi)
953
1156
  - Fix embedding images in json ([#315](https://github.com/cucumber/cucumber-ruby/issues/315) Oleg Sukhodolsky)
954
1157
 
955
- ## [1.2.2](https://github.com/cucumber/cucumber-ruby/compare/v1.2.1...v1.2.2)
1158
+ ## [1.2.2](https://github.com/cucumber/cucumber-ruby/compare/v1.2.1...v1.2.2) (2013-03-02)
956
1159
 
957
1160
  ### New Features
958
1161
 
@@ -973,13 +1176,13 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
973
1176
  - Fix exception in Html formatter with --expand mode and undefined steps ([#336](https://github.com/cucumber/cucumber-ruby/issues/336) Roberto Decurnex)
974
1177
  - Fix Table.diff! problem with :surplus_row => false and interleaved surplus rows ([#220](https://github.com/cucumber/cucumber-ruby/issues/220))
975
1178
 
976
- ## [1.2.1](https://github.com/cucumber/cucumber-ruby/compare/v1.2.0...v1.2.1)
1179
+ ## [1.2.1](https://github.com/cucumber/cucumber-ruby/compare/v1.2.0...v1.2.1) (2012-06-09)
977
1180
 
978
1181
  ### New Features
979
1182
 
980
1183
  - Updated to gherkin 2.11.0. (Aslak Hellesøy)
981
1184
 
982
- ## [1.2.0](https://github.com/cucumber/cucumber-ruby/compare/v1.1.9...v1.2.0)
1185
+ ## [1.2.0](https://github.com/cucumber/cucumber-ruby/compare/v1.1.9...v1.2.0) (2012-05-07)
983
1186
 
984
1187
  ### Bugfixes
985
1188
 
@@ -998,13 +1201,13 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
998
1201
  - JUnit formatter, classname contains only the feature's name ([#193](https://github.com/cucumber/cucumber-ruby/issues/193) @litvinok)
999
1202
  - Include the output $stderr and $stdout in JUnit formatted XML ([#259](https://github.com/cucumber/cucumber-ruby/issues/259) R. Tyler Croy)
1000
1203
 
1001
- ## [1.1.9](https://github.com/cucumber/cucumber-ruby/compare/v1.1.8...v1.1.9)
1204
+ ## [1.1.9](https://github.com/cucumber/cucumber-ruby/compare/v1.1.8...v1.1.9) (2012-02-22)
1002
1205
 
1003
1206
  ### Bugfixes
1004
1207
 
1005
1208
  - Removed deprecation warning for `source_tag_names`. It's not deprecated anymore. (Aslak Hellesøy)
1006
1209
 
1007
- ## [1.1.8](https://github.com/cucumber/cucumber-ruby/compare/v1.1.7...v1.1.8)
1210
+ ## [1.1.8](https://github.com/cucumber/cucumber-ruby/compare/v1.1.7...v1.1.8) (2012-02-19)
1008
1211
 
1009
1212
  ### Bugfixes
1010
1213
 
@@ -1014,13 +1217,13 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1014
1217
 
1015
1218
  - Don't pollute RbWorld with the AnsiEscapes methods ([#219](https://github.com/cucumber/cucumber-ruby/issues/219), [#221](https://github.com/cucumber/cucumber-ruby/pull/221) Ben Woosley)
1016
1219
 
1017
- ## [1.1.7](https://github.com/cucumber/cucumber-ruby/compare/v1.1.6...v1.1.7)
1220
+ ## [1.1.7](https://github.com/cucumber/cucumber-ruby/compare/v1.1.6...v1.1.7) (2012-02-19)
1018
1221
 
1019
1222
  ### Bugfixes
1020
1223
 
1021
1224
  - Finish off backwards compatability fix for Capybara ([#229](https://github.com/cucumber/cucumber-ruby/pull/229) Cezary Baginski)
1022
1225
 
1023
- ## [1.1.6](https://github.com/cucumber/cucumber-ruby/compare/v1.1.5...v1.1.6)
1226
+ ## [1.1.6](https://github.com/cucumber/cucumber-ruby/compare/v1.1.5...v1.1.6) (2012-02-18)
1024
1227
 
1025
1228
  ### New features
1026
1229
 
@@ -1033,7 +1236,7 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1033
1236
  - After some infantile bickering about a trivial bug that any hipster startup ruby programmer could have circumvented by using a fork with a fix,
1034
1237
  I finally sucked up to a horde of people and made HTML reports work again (I'm gonna rename them TPS reports). ([#203](https://github.com/cucumber/cucumber-ruby/pull/203) Jon Merrifield)
1035
1238
 
1036
- ## [1.1.5](https://github.com/cucumber/cucumber-ruby/compare/v1.1.4...v1.1.5)
1239
+ ## [1.1.5](https://github.com/cucumber/cucumber-ruby/compare/v1.1.4...v1.1.5) (2012-02-17)
1037
1240
 
1038
1241
  ### New Features
1039
1242
 
@@ -1043,13 +1246,13 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1043
1246
 
1044
1247
  - Background fails, but build succeeds ([#205](https://github.com/cucumber/cucumber-ruby/issues/205) tcwitte)
1045
1248
 
1046
- ## [1.1.4](https://github.com/cucumber/cucumber-ruby/compare/v1.1.3...v1.1.4)
1249
+ ## [1.1.4](https://github.com/cucumber/cucumber-ruby/compare/v1.1.3...v1.1.4) (2011-12-10)
1047
1250
 
1048
1251
  ### New Features
1049
1252
 
1050
1253
  - Upgrade to Gherkin 2.7.1 (Aslak Hellesøy)
1051
1254
 
1052
- ## [1.1.3](https://github.com/cucumber/cucumber-ruby/compare/v1.1.2...v1.1.3)
1255
+ ## [1.1.3](https://github.com/cucumber/cucumber-ruby/compare/v1.1.2...v1.1.3) (2011-11-22)
1053
1256
 
1054
1257
  ### New Features
1055
1258
 
@@ -1063,7 +1266,7 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1063
1266
  - Retry when feature_element returns failed ([#172](https://github.com/cucumber/cucumber-ruby/pull/172) Charles Finkel)
1064
1267
  - Rerun formatter output does not include failing scenario outline examples ([#57](https://github.com/cucumber/cucumber-ruby/issues/57) Jan Brauer)
1065
1268
 
1066
- ## [1.1.2](https://github.com/cucumber/cucumber-ruby/compare/v1.1.1...v1.1.2)
1269
+ ## [1.1.2](https://github.com/cucumber/cucumber-ruby/compare/v1.1.1...v1.1.2) (2011-11-09)
1067
1270
 
1068
1271
  ### Changed features
1069
1272
 
@@ -1082,27 +1285,27 @@ New format:
1082
1285
 
1083
1286
  [feature here]
1084
1287
 
1085
- Also see [Gherkin 2.6.0 History](https://github.com/cucumber/gherkin/blob/master/History.md) for info about new `id` and `uri` elements in the JSON.
1288
+ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/cucumber/blob/master/gherkin/History.md) for info about new `id` and `uri` elements in the JSON.
1086
1289
 
1087
- ## [1.1.0](https://github.com/cucumber/cucumber-ruby/compare/v1.0.6...v1.1.0)
1290
+ ## [1.1.0](https://github.com/cucumber/cucumber-ruby/compare/v1.0.6...v1.1.0) (2011-09-22)
1088
1291
 
1089
1292
  ### Changed features
1090
1293
 
1091
- - The JSON formatter output has changed. See [Gherkin 2.5.0 History](https://github.com/cucumber/gherkin/blob/master/History.md) (Aslak Hellesøy)
1294
+ - The JSON formatter output has changed. See [Gherkin 2.5.0 History](https://github.com/cucumber/gherkin/blob/master/CHANGELOG.md) (Aslak Hellesøy)
1092
1295
 
1093
- ## [1.0.6](https://github.com/cucumber/cucumber-ruby/compare/v1.0.5...v1.0.6)
1296
+ ## [1.0.6](https://github.com/cucumber/cucumber-ruby/compare/v1.0.5...v1.0.6) (2011-09-13)
1094
1297
 
1095
1298
  ### Bugfixes
1096
1299
 
1097
1300
  - Work around rubygems/yaml utter retardedness ([#136](https://github.com/cucumber/cucumber-ruby/issues/136) Aslak Hellesøy)
1098
1301
 
1099
- ## [1.0.5](https://github.com/cucumber/cucumber-ruby/compare/v1.0.4...v1.0.5)
1302
+ ## [1.0.5](https://github.com/cucumber/cucumber-ruby/compare/v1.0.4...v1.0.5) (2011-09-13)
1100
1303
 
1101
1304
  ### Bugfixes
1102
1305
 
1103
1306
  - Gemspec corrupted in 1.0.4 (I had to upgrade my rubygems to 1.8.10 to fix it). ([#136](https://github.com/cucumber/cucumber-ruby/issues/136) Aslak Hellesøy)
1104
1307
 
1105
- ## [1.0.4](https://github.com/cucumber/cucumber-ruby/compare/v1.0.3...v1.0.4)
1308
+ ## [1.0.4](https://github.com/cucumber/cucumber-ruby/compare/v1.0.3...v1.0.4) (2011-09-11)
1106
1309
 
1107
1310
  ### Bugfixes
1108
1311
 
@@ -1112,7 +1315,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/gherkin/blob/master
1112
1315
  - Patched unmatched message in HTML formatter. (Nikita)
1113
1316
  - Overriding a method that causes a NoMethodError when a Before hook is called on a feature run that has no scenarios. (ccthiel)
1114
1317
 
1115
- ## [1.0.3](https://github.com/cucumber/cucumber-ruby/compare/v1.0.2...v1.0.3)
1318
+ ## [1.0.3](https://github.com/cucumber/cucumber-ruby/compare/v1.0.2...v1.0.3) (2011-09-07)
1116
1319
 
1117
1320
  ### Bugfixes
1118
1321
 
@@ -1122,7 +1325,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/gherkin/blob/master
1122
1325
 
1123
1326
  - DocStrings now have a content_type ([#132](https://github.com/cucumber/cucumber-ruby/issues/132) Matt Wynne)
1124
1327
 
1125
- ## [1.0.2](https://github.com/cucumber/cucumber-ruby/compare/v1.0.1...v1.0.2)
1328
+ ## [1.0.2](https://github.com/cucumber/cucumber-ruby/compare/v1.0.1...v1.0.2) (2011-07-17)
1126
1329
 
1127
1330
  ### Bugfixes
1128
1331
 
@@ -1136,7 +1339,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/gherkin/blob/master
1136
1339
 
1137
1340
  - --no-source also excludes location from the summary. (Aslak Hellesøy)
1138
1341
 
1139
- ## [1.0.1](https://github.com/cucumber/cucumber-ruby/compare/v1.0.0...v1.0.1)
1342
+ ## [1.0.1](https://github.com/cucumber/cucumber-ruby/compare/v1.0.0...v1.0.1) (2011-07-10)
1140
1343
 
1141
1344
  ### Bugfixes
1142
1345
 
@@ -1150,7 +1353,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/gherkin/blob/master
1150
1353
 
1151
1354
  - If the CUCUMBER_TRUNCATE_OUTPUT environment variable is set, lines will be truncated. Used by the Cucumber book. (Aslak Hellesøy)
1152
1355
 
1153
- ## [1.0.0](https://github.com/cucumber/cucumber-ruby/compare/v0.10.6...v1.0.0)
1356
+ ## [1.0.0](https://github.com/cucumber/cucumber-ruby/compare/v0.10.6...v1.0.0) (2011-06-20)
1154
1357
 
1155
1358
  Yipeeeeeeeee!
1156
1359
 
@@ -1160,7 +1363,7 @@ Yipeeeeeeeee!
1160
1363
  - Rake task exits with an error if rcov is true and we're on Ruby 1.9.x (Aslak Hellesøy)
1161
1364
  - Started implementation of cucumber-features (Mike Sassak, Julien Biezemans, Aslak Hellesøy)
1162
1365
 
1163
- ## [0.10.6](https://github.com/cucumber/cucumber-ruby/compare/v0.10.5...v0.10.6)
1366
+ ## [0.10.6](https://github.com/cucumber/cucumber-ruby/compare/v0.10.5...v0.10.6) (2011-06-07)
1164
1367
 
1165
1368
  ### New Features
1166
1369
 
@@ -1170,7 +1373,7 @@ Yipeeeeeeeee!
1170
1373
 
1171
1374
  - Fixed a regression in the HTML formatter's #embed implementation (#77 Aslak Hellesøy)
1172
1375
 
1173
- ## [0.10.5](https://github.com/cucumber/cucumber-ruby/compare/v0.10.3...v0.10.5)
1376
+ ## [0.10.5](https://github.com/cucumber/cucumber-ruby/compare/v0.10.3...v0.10.5) (2011-06-05)
1174
1377
 
1175
1378
  (0.10.4 was forgotten!)
1176
1379
 
@@ -1188,7 +1391,7 @@ Yipeeeeeeeee!
1188
1391
  - Fix for Gem.available? deprecation warning (#75 Jake Benilov)
1189
1392
  - Update URLs to reflect Cucumber's new location on Github (Jake Benilov)
1190
1393
 
1191
- ## [0.10.3](https://github.com/cucumber/cucumber-ruby/compare/v0.10.2...v0.10.3)
1394
+ ## [0.10.3](https://github.com/cucumber/cucumber-ruby/compare/v0.10.2...v0.10.3) (2011-05-23)
1192
1395
 
1193
1396
  ### New Features
1194
1397
 
@@ -1198,13 +1401,13 @@ Yipeeeeeeeee!
1198
1401
  - Fix Table#rows cell ordering in ruby 1.8. (#47_github Brian Dunn)
1199
1402
  - JUnit Formatter: record skipped/pending/undefined scenario results (#655 meeee)
1200
1403
 
1201
- ## [0.10.2](https://github.com/cucumber/cucumber-ruby/compare/v0.10.1...v0.10.2)
1404
+ ## [0.10.2](https://github.com/cucumber/cucumber-ruby/compare/v0.10.1...v0.10.2) (2011-03-20)
1202
1405
 
1203
1406
  ### Bugfixes
1204
1407
 
1205
1408
  - Neuter both MiniTest::Unit and Test::Unit's overzealous test runners. (Aslak Hellesøy)
1206
1409
 
1207
- ## [0.10.1](https://github.com/cucumber/cucumber-ruby/compare/v0.10.0...v0.10.1)
1410
+ ## [0.10.1](https://github.com/cucumber/cucumber-ruby/compare/v0.10.0...v0.10.1) (2011-03-20)
1208
1411
 
1209
1412
  ### New Features
1210
1413
 
@@ -1226,7 +1429,7 @@ Yipeeeeeeeee!
1226
1429
  - Features files are sorted before they are executed, giving consistent results across different OSes (Guewen Baconnier)
1227
1430
  - Remove duplicate lines in backtraces in the HTML report (Jari Bakken)
1228
1431
 
1229
- ## [0.10.0](https://github.com/cucumber/cucumber-ruby/compare/v0.9.4...v0.10.0)
1432
+ ## [0.10.0](https://github.com/cucumber/cucumber-ruby/compare/v0.9.4...v0.10.0) (2010-12-07)
1230
1433
 
1231
1434
  We're bumping the minor number in this release because there are some incompatible changes in the JSON support.
1232
1435
  This should not affect users. The major new feature in this release is ANSICON support for Windows users.
@@ -1245,7 +1448,7 @@ This should not affect users. The major new feature in this release is ANSICON s
1245
1448
 
1246
1449
  - JSON output now contains optional "match", "result" and "embeddings" elements underneath each step. (Aslak Hellesøy)
1247
1450
 
1248
- ## [0.9.4](https://github.com/cucumber/cucumber-ruby/compare/v0.9.3...v0.9.4)
1451
+ ## [0.9.4](https://github.com/cucumber/cucumber-ruby/compare/v0.9.3...v0.9.4) (2010-11-06)
1249
1452
 
1250
1453
  ### Bugfixes
1251
1454
 
@@ -1255,7 +1458,7 @@ This should not affect users. The major new feature in this release is ANSICON s
1255
1458
  - Cucumber 0.9.3 prevents Test::Unit from running (#677 Aslak Hellesøy)
1256
1459
  - Performance degradation when running feature files with over 1000 steps (#675 Dimitri Geshef)
1257
1460
 
1258
- ## [0.9.3](https://github.com/cucumber/cucumber-ruby/compare/v0.9.2...v0.9.3)
1461
+ ## [0.9.3](https://github.com/cucumber/cucumber-ruby/compare/v0.9.2...v0.9.3) (2010-10-24)
1259
1462
 
1260
1463
  ### Bugfixes
1261
1464
 
@@ -1264,19 +1467,19 @@ This should not affect users. The major new feature in this release is ANSICON s
1264
1467
  - Prevent MiniTest::Unit#autorun from running in at_exit hook. (Aslak Hellesøy)
1265
1468
  - Fixed incorect --help for --strict. It fails on both pending and undefined. (Aslak Hellesøy)
1266
1469
 
1267
- ## [0.9.2](https://github.com/cucumber/cucumber-ruby/compare/v0.9.1...v0.9.2)
1470
+ ## [0.9.2](https://github.com/cucumber/cucumber-ruby/compare/v0.9.1...v0.9.2) (2010-10-04)
1268
1471
 
1269
1472
  ### Bugfixes
1270
1473
 
1271
1474
  - Too many open files - getcwd (#666 Aslak Hellesøy)
1272
1475
 
1273
- ## [0.9.1](https://github.com/cucumber/cucumber-ruby/compare/v0.9.0...v0.9.1)
1476
+ ## [0.9.1](https://github.com/cucumber/cucumber-ruby/compare/v0.9.0...v0.9.1) (2010-10-01)
1274
1477
 
1275
1478
  ### Bugfixes
1276
1479
 
1277
1480
  - Just a minor internal change to make Cuke4Duke happy. (Aslak Hellesøy)
1278
1481
 
1279
- ## [0.9.0](https://github.com/cucumber/cucumber-ruby/compare/v0.8.5...v0.9.0)
1482
+ ## [0.9.0](https://github.com/cucumber/cucumber-ruby/compare/v0.8.5...v0.9.0) (2010-09-21)
1280
1483
 
1281
1484
  Maintenance release for the new release of Gherkin 2.2.3.
1282
1485
 
@@ -1298,14 +1501,14 @@ Maintenance release for the new release of Gherkin 2.2.3.
1298
1501
 
1299
1502
  - Big refactoring of StepMother (Matt Wynne)
1300
1503
 
1301
- ## [0.8.5](https://github.com/cucumber/cucumber-ruby/compare/v0.8.4...v0.8.5)
1504
+ ## [0.8.5](https://github.com/cucumber/cucumber-ruby/compare/v0.8.4...v0.8.5) (2010-07-14)
1302
1505
 
1303
1506
  ### Bugfixes
1304
1507
 
1305
1508
  - Location of stepdefs outside the project (in gems) are reported incorrectly. (#583 Aslak Hellesøy)
1306
1509
  - Cucumber::Rake::Task uses 'bundle exec' when using bundler (#626 John Firebaugh)
1307
1510
 
1308
- ## [0.8.4](https://github.com/cucumber/cucumber-ruby/compare/v0.8.3...v0.8.4)
1511
+ ## [0.8.4](https://github.com/cucumber/cucumber-ruby/compare/v0.8.3...v0.8.4) (2010-07-12)
1309
1512
 
1310
1513
  ### Bugfixes
1311
1514
 
@@ -1316,7 +1519,7 @@ Maintenance release for the new release of Gherkin 2.2.3.
1316
1519
  - Detect limit for negative tags (#636 Aslak Hellesøy)
1317
1520
  - Support for RSpec 2 doubles (mocks and stubs) (Aslak Hellesøy)
1318
1521
 
1319
- ## [0.8.3](https://github.com/cucumber/cucumber-ruby/compare/v0.8.2...v0.8.3)
1522
+ ## [0.8.3](https://github.com/cucumber/cucumber-ruby/compare/v0.8.2...v0.8.3) (2010-06-16)
1320
1523
 
1321
1524
  Just a quick bugfix release.
1322
1525
 
@@ -1324,7 +1527,7 @@ Just a quick bugfix release.
1324
1527
 
1325
1528
  - Scenario outlines that fail with exception exit process (Aslak Hellesøy)
1326
1529
 
1327
- ## [0.8.2](https://github.com/cucumber/cucumber-ruby/compare/v0.8.1...v0.8.2)
1530
+ ## [0.8.2](https://github.com/cucumber/cucumber-ruby/compare/v0.8.1...v0.8.2) (2010-06-16)
1328
1531
 
1329
1532
  Bugfix release which most importantly fixes an issue with the gem's gemspec.
1330
1533
 
@@ -1339,7 +1542,7 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
1339
1542
 
1340
1543
  - JavaScript to Hide/Expand Scenarios in HTML report (#621 stkenned)
1341
1544
 
1342
- ## [0.8.1](https://github.com/cucumber/cucumber-ruby/compare/v0.8.0...v0.8.1)
1545
+ ## [0.8.1](https://github.com/cucumber/cucumber-ruby/compare/v0.8.0...v0.8.1) (2010-06-14)
1343
1546
 
1344
1547
  ### Bufixes
1345
1548
 
@@ -1349,7 +1552,7 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
1349
1552
 
1350
1553
  - Undefined steps with integers (Given 3 cukes) will generate snippets like (Given /(\d+) cukes/). (Aslak Hellesøy)
1351
1554
 
1352
- ## [0.8.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.3...v0.8.0)
1555
+ ## [0.8.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.3...v0.8.0) (2010-06-06)
1353
1556
 
1354
1557
  ### Bugfixes
1355
1558
 
@@ -1372,20 +1575,20 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
1372
1575
  - Ruby snippets will use "([^"]_)" instead of "([^\"]_)"$/ - wasn't properly fixed in 0.7.1. (Aslak Hellesøy)
1373
1576
  - Preserve the order features files are passed and use this for execution order (#617 Joseph Wilk)
1374
1577
 
1375
- ## [0.7.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.2...v0.7.3)
1578
+ ## [0.7.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.2...v0.7.3) (2010-05-17)
1376
1579
 
1377
1580
  ### New Features
1378
1581
 
1379
1582
  - Table cells can now contain escaped bars - \| and escaped backslashes - \\. (Gregory Hnatiuk, Aslak Hellesøy)
1380
1583
  - Added support for Around hooks. (#605 John Firebaugh)
1381
1584
 
1382
- ## [0.7.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.1...v0.7.2)
1585
+ ## [0.7.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.1...v0.7.2) (2010-05-04)
1383
1586
 
1384
1587
  ### Bugfixes
1385
1588
 
1386
1589
  - REALLY add backwards compatibility fix (with deprecation warning) for legacy 0.6.4 formatters. (Aslak Hellesøy)
1387
1590
 
1388
- ## [0.7.1](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0...v0.7.1)
1591
+ ## [0.7.1](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0...v0.7.1) (2010-05-03)
1389
1592
 
1390
1593
  ### Bugfixes
1391
1594
 
@@ -1395,32 +1598,32 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
1395
1598
 
1396
1599
  - Ruby and Javascript snippets will use "([^"]_)" instead of "([^\"]_)"$/ (Aslak Hellesøy)
1397
1600
 
1398
- ## [0.7.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.8...v0.7.0)
1601
+ ## [0.7.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.8...v0.7.0) (2010-05-02)
1399
1602
 
1400
1603
  This release is an important milestone for Cucumber. A new parser (the gherkin gem) parses feature
1401
1604
  files 50-100 times faster than with 0.6.x and previous releases. Make sure you read the upgrade
1402
1605
  instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
1403
1606
 
1404
- ## [0.7.0.beta.8](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.7...v0.7.0.beta.8)
1607
+ ## [0.7.0.beta.8](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.7...v0.7.0.beta.8) (2010-04-29)
1405
1608
 
1406
1609
  ### Bugfixes
1407
1610
 
1408
1611
  - Inconsistent order of execution Background and Before in 0.7.0.beta.2 (#600 Mike Sassak)
1409
1612
  - Make sure both lexing and parsing errors are captured and reported with line number (Gregory Hnatiuk)
1410
1613
 
1411
- ## [0.7.0.beta.7](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.6...v0.7.0.beta.7)
1614
+ ## [0.7.0.beta.7](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.6...v0.7.0.beta.7) (2010-04-28)
1412
1615
 
1413
1616
  ### Bugfixes
1414
1617
 
1415
1618
  - Depend on gherkin-1.0.22, which should now make things work on Windows and Ruby 1.8.x-1.9.x. (Aslak Hellesøy)
1416
1619
 
1417
- ## [0.7.0.beta.6](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.5...v0.7.0.beta.6)
1620
+ ## [0.7.0.beta.6](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.5...v0.7.0.beta.6) (2010-04-28)
1418
1621
 
1419
1622
  ### Bugfixes
1420
1623
 
1421
1624
  - Fixed a small regression with pystrings and calling steps from stepdefs, introduced in a previous beta. (Aslak Hellesøy)
1422
1625
 
1423
- ## [0.7.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.4...v0.7.0.beta.5)
1626
+ ## [0.7.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.4...v0.7.0.beta.5) (2010-04-27)
1424
1627
 
1425
1628
  ### New Features
1426
1629
 
@@ -1430,7 +1633,7 @@ instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
1430
1633
 
1431
1634
  - No more support for RSpec <= 1.2.3. (Aslak Hellesøy)
1432
1635
 
1433
- ## [0.7.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.3...v0.7.0.beta.4)
1636
+ ## [0.7.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.3...v0.7.0.beta.4) (2010-04-23)
1434
1637
 
1435
1638
  ### New Features
1436
1639
 
@@ -1440,19 +1643,19 @@ instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
1440
1643
 
1441
1644
  - Gherkin is loaded via rubygems if it can't be found on the $LOAD_PATH. (Aslak Hellesøy)
1442
1645
 
1443
- ## [0.7.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.2...v0.7.0.beta.3)
1646
+ ## [0.7.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.2...v0.7.0.beta.3) (2010-04-23)
1444
1647
 
1445
1648
  ### Changed Features
1446
1649
 
1447
1650
  - Step Definitions and calling steps from step definitions can again use And and But (was removed in 0.7.0.beta.2) (Aslak Hellesøy)
1448
1651
 
1449
- ## [0.7.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.1...v0.7.0.beta.2)
1652
+ ## [0.7.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.1...v0.7.0.beta.2) (2010-04-21)
1450
1653
 
1451
1654
  ### New Features
1452
1655
 
1453
1656
  - Depend on Gherkin 1.0.18, which has some bugfixes. (Aslak Hellesøy)
1454
1657
 
1455
- ## [0.7.0.beta.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.4...v0.7.0.beta.1)
1658
+ ## [0.7.0.beta.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.4...v0.7.0.beta.1) (2010-04-20)
1456
1659
 
1457
1660
  Treetop is gone and replaced with Ragel. The new Ragel parser lives in the gherkin gem.
1458
1661
  Parse times are up to 100 times faster.
@@ -1465,7 +1668,7 @@ Parse times are up to 100 times faster.
1465
1668
 
1466
1669
  - New i18n translations now have to be contributed to the gherkin project.
1467
1670
 
1468
- ## [0.6.4](https://github.com/cucumber/cucumber-ruby/compare/v0.6.3...v0.6.4)
1671
+ ## [0.6.4](https://github.com/cucumber/cucumber-ruby/compare/v0.6.3...v0.6.4) (2010-03-30)
1469
1672
 
1470
1673
  ### Bugfixes
1471
1674
 
@@ -1489,7 +1692,7 @@ Parse times are up to 100 times faster.
1489
1692
  - Switced to ISO 639-1 (language) and ISO 3166 alpha-2 (region - if applicable). Applies to Catalan,
1490
1693
  Swedish, Welsh, Romanian and Serbian. (Aslak Hellesøy)
1491
1694
 
1492
- ## [0.6.3](https://github.com/cucumber/cucumber-ruby/compare/v0.6.2...v0.6.3)
1695
+ ## [0.6.3](https://github.com/cucumber/cucumber-ruby/compare/v0.6.2...v0.6.3) (2010-03-02)
1493
1696
 
1494
1697
  ### Bugfixes
1495
1698
 
@@ -1510,7 +1713,7 @@ Parse times are up to 100 times faster.
1510
1713
  - Add tags to begin/end scenario messages on wire protocol to support tagged hooks (#571 Matt Wynne)
1511
1714
  - Default timeouts to 120s for invoke, begin_scenario and end_scenario messages in wire protocol (#572 Matt Wynne)
1512
1715
 
1513
- ## [0.6.2](https://github.com/cucumber/cucumber-ruby/compare/v0.6.1...v0.6.2)
1716
+ ## [0.6.2](https://github.com/cucumber/cucumber-ruby/compare/v0.6.1...v0.6.2) (2010-01-17)
1514
1717
 
1515
1718
  ### Bugfixes
1516
1719
 
@@ -1530,13 +1733,13 @@ Parse times are up to 100 times faster.
1530
1733
 
1531
1734
  - element_at and table_at have been removed. Use tableish in cucumber-rails instead. (Aslak Hellesœy)
1532
1735
 
1533
- ## [0.6.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.0...v0.6.1)
1736
+ ## [0.6.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.0...v0.6.1) (2010-01-03)
1534
1737
 
1535
1738
  ### Bugfixes
1536
1739
 
1537
1740
  - Fixed broken console handling on Windows/JRuby that was introduced in 0.6.0. (Aslak Hellesøy)
1538
1741
 
1539
- ## [0.6.0](https://github.com/cucumber/cucumber-ruby/compare/v0.5.3...v0.6.0)
1742
+ ## [0.6.0](https://github.com/cucumber/cucumber-ruby/compare/v0.5.3...v0.6.0) (2010-01-03)
1540
1743
 
1541
1744
  Bumping to 0.6.0 for this release since we're breaking backwards compatibility with tags.
1542
1745
 
@@ -1563,7 +1766,7 @@ Bumping to 0.6.0 for this release since we're breaking backwards compatibility w
1563
1766
  - All features (except 4) pass on 1.9.2 (but not on 1.9.1) (Aslak Hellesøy)
1564
1767
  - Add missing require statement in rerun formatter which broke RubyMine (Noah Sussman)
1565
1768
 
1566
- ## [0.5.3](https://github.com/cucumber/cucumber-ruby/compare/v0.5.2...v0.5.3)
1769
+ ## [0.5.3](https://github.com/cucumber/cucumber-ruby/compare/v0.5.2...v0.5.3) (2009-12-22)
1567
1770
 
1568
1771
  Another small release today to please a sister project. This time Cuke4Nuke.
1569
1772
 
@@ -1571,7 +1774,7 @@ Another small release today to please a sister project. This time Cuke4Nuke.
1571
1774
 
1572
1775
  - Simplified wire protocol to mostly use success / fail responses (Matt Wynne)
1573
1776
 
1574
- ## [0.5.2](https://github.com/cucumber/cucumber-ruby/compare/v0.5.1...v0.5.2)
1777
+ ## [0.5.2](https://github.com/cucumber/cucumber-ruby/compare/v0.5.1...v0.5.2) (2009-12-22)
1575
1778
 
1576
1779
  ### New Features
1577
1780
 
@@ -1583,7 +1786,7 @@ Another small release today to please a sister project. This time Cuke4Nuke.
1583
1786
  - Add #embed back to html formatter (#547 Brandon Faloona)
1584
1787
  - Refactored wire protocol code and added configurable timeout to allow for long running step definitions. (#546 Matt Wynne)
1585
1788
 
1586
- ## [0.5.1](https://github.com/cucumber/cucumber-ruby/compare/v0.5.0...v0.5.1)
1789
+ ## [0.5.1](https://github.com/cucumber/cucumber-ruby/compare/v0.5.0...v0.5.1) (2009-12-16)
1587
1790
 
1588
1791
  Small bugfix release.
1589
1792
 
@@ -1591,7 +1794,7 @@ Small bugfix release.
1591
1794
 
1592
1795
  - Replaced dependency on json gem with an error message, so that the cucumber gem installs on JRuby. (Aslak Hellesøy)
1593
1796
 
1594
- ## [0.5.0](https://github.com/cucumber/cucumber-ruby/compare/v0.4.4...v0.5.0)
1797
+ ## [0.5.0](https://github.com/cucumber/cucumber-ruby/compare/v0.4.4...v0.5.0) (2009-12-15)
1595
1798
 
1596
1799
  We're bumping to 0.5.0 for this release since all of the Rails code has now moved to a new gem - cucumber-rails.
1597
1800
  Please see History.txt in cucumber-rails for details about what's new on the Rails side.
@@ -1626,7 +1829,7 @@ Please see History.txt in cucumber-rails for details about what's new on the Rai
1626
1829
  - All Rails-related code is in a separate gem: cucumber-rails. Install that if you're working with Rails. (#483 Aslak Hellesøy)
1627
1830
  - --language is removed: http://wiki.github.com/aslakhellesoy/cucumber/spoken-languages (Aslak Hellesøy)
1628
1831
 
1629
- ## [0.4.4](https://github.com/cucumber/cucumber-ruby/compare/v0.4.3...v0.4.4)
1832
+ ## [0.4.4](https://github.com/cucumber/cucumber-ruby/compare/v0.4.3...v0.4.4) (2009-11-13)
1630
1833
 
1631
1834
  What a bad day to make a release, but here goes.
1632
1835
 
@@ -1654,7 +1857,7 @@ What a bad day to make a release, but here goes.
1654
1857
  - $cucumber_interrupted is now Cucumber.wants_to_quit - avoid global variable, which gives warnings. (Aslak Hellesøy)
1655
1858
  - Examples keyword without a colon is deprecated loudly. Gherkin will not recognize it at all. (Gherkin #30 Mike Sassak)
1656
1859
 
1657
- ## [0.4.3](https://github.com/cucumber/cucumber-ruby/compare/v0.4.2...v0.4.3)
1860
+ ## [0.4.3](https://github.com/cucumber/cucumber-ruby/compare/v0.4.2...v0.4.3) (2009-10-27)
1658
1861
 
1659
1862
  The exciting thing about this release is that the wire protocol is starting to take shape. This means you can
1660
1863
  now use Cucumber with .NET - writing step definitions in C#. And this is without having to use IronRuby at all!
@@ -1685,11 +1888,11 @@ As usual there are several small features and bug fixes.
1685
1888
  - JUnit formatter raises a more helpful error when run on a feature with no name. (#493 Matt Wynne)
1686
1889
  - Better Danish translation (Thorbjørn Ravn Andersen)
1687
1890
 
1688
- ## [0.4.2](https://github.com/cucumber/cucumber-ruby/compare/v0.4.1...v0.4.2)
1891
+ ## [0.4.2](https://github.com/cucumber/cucumber-ruby/compare/v0.4.1...v0.4.2) (2009-10-14)
1689
1892
 
1690
1893
  Bugfix release. The 0.4.1 release was hosed when switching from Hoe to Jeweler.
1691
1894
 
1692
- ## [0.4.1](https://github.com/cucumber/cucumber-ruby/compare/v0.4.0...v0.4.1)
1895
+ ## [0.4.1](https://github.com/cucumber/cucumber-ruby/compare/v0.4.0...v0.4.1) (2009-10-14)
1693
1896
 
1694
1897
  This is mostly a bugfix release. Some of Cucumber's own features have been fixed so they pass on more platforms,
1695
1898
  making it easier for people to contribute. The README.txt also describes how to get up and running with the
@@ -1720,7 +1923,7 @@ development environment.
1720
1923
  - Added StepMother#invoke(step_name, multiline_argument=nil) - needed by cuke4duke ticket #26 (Aslak Hellesøy)
1721
1924
  - StepDefinitionMethods is gone.
1722
1925
 
1723
- ## [0.4.0](https://github.com/cucumber/cucumber-ruby/compare/v0.3.104...v0.4.0)
1926
+ ## [0.4.0](https://github.com/cucumber/cucumber-ruby/compare/v0.3.104...v0.4.0) (2009-10-09)
1724
1927
 
1725
1928
  The back to stable release. When we went from 0.3.11 to 0.3.90 we thought we were close to a 0.4.0 release. Then the community
1726
1929
  went nuts and a lot of great contributions came in. Some of those broke backwards compatibility, and we decided it would be
@@ -1771,7 +1974,7 @@ that will give you more information so you can solve any problems. If not, just
1771
1974
  - Better backtraces for Ruby 1.8.7. (Jakob Skov-Pedersen)
1772
1975
  - String step definitions ( Given 'I have $number cucumbers' ) are escaped before being turned into regular expressions. (David Waite)
1773
1976
 
1774
- ## [0.3.104](https://github.com/cucumber/cucumber-ruby/compare/v0.3.103...v0.3.104)
1977
+ ## [0.3.104](https://github.com/cucumber/cucumber-ruby/compare/v0.3.103...v0.3.104) (2009-09-27)
1775
1978
 
1776
1979
  This release has some minor changes to the command line and formatters. The biggest change is internally, paving
1777
1980
  the way for more programming language support in Cuke4Duke, which now supports step definitions written in Java, Scala,
@@ -1800,7 +2003,7 @@ Groovy, Clojure and Javascript!
1800
2003
  - The steps formatter has been renamed to stepdefs formatter. (Aslak Hellesøy)
1801
2004
  - The internal programming language API has changed, giving more power to the implementation. See #428. (Aslak Hellesøy)
1802
2005
 
1803
- ## [0.3.103](https://github.com/cucumber/cucumber-ruby/compare/v0.3.102...v0.3.103)
2006
+ ## [0.3.103](https://github.com/cucumber/cucumber-ruby/compare/v0.3.102...v0.3.103) (2009-09-24)
1804
2007
 
1805
2008
  This release gives you back some of the control over the Rails environment that was accidentally taken away from you in the
1806
2009
  previous release.
@@ -1821,7 +2024,7 @@ Using this release on a Rails project requires a rerun of script/generate cucumb
1821
2024
 
1822
2025
  - The Formatter API has completely changed. Formatters are no longer a double-dispacth visitor - just a single-dispatch listener (#438 Matt Wynne)
1823
2026
 
1824
- ## [0.3.102](https://github.com/cucumber/cucumber-ruby/compare/v0.3.101...v0.3.102)
2027
+ ## [0.3.102](https://github.com/cucumber/cucumber-ruby/compare/v0.3.101...v0.3.102) (2009-09-22)
1825
2028
 
1826
2029
  This release has some changes in the Rails support, so make sure you run "script/generate cucumber" after you upgrade.
1827
2030
  Other noteworthy new features are improved Hook, tags and Transform support, and as always - several smaller bug fixes.
@@ -1867,7 +2070,7 @@ your features to your customer for review!
1867
2070
  - Adding webrat steps for asserting content does or does not exist within a particular element
1868
2071
  (using webrat's within method) (Kieran Pilkington)
1869
2072
 
1870
- ## [0.3.100](https://github.com/cucumber/cucumber-ruby/compare/v0.3.99...v0.3.100)
2073
+ ## [0.3.100](https://github.com/cucumber/cucumber-ruby/compare/v0.3.99...v0.3.100) (2009-09-08)
1871
2074
 
1872
2075
  The JavaZone release!
1873
2076
 
@@ -1881,7 +2084,7 @@ The JavaZone release!
1881
2084
  - Backtraces on JRuby are handled in a cleaner way when the exception comes from Java (NativeException). (Aslak Hellesøy)
1882
2085
  - When exceptions occur in a Before block the rest of the scenario is now skipped (#331 Matt Wynne)
1883
2086
 
1884
- ## [0.3.99](https://github.com/cucumber/cucumber-ruby/compare/v0.3.98...v0.3.99)
2087
+ ## [0.3.99](https://github.com/cucumber/cucumber-ruby/compare/v0.3.98...v0.3.99) (2009-09-02)
1885
2088
 
1886
2089
  ### New Features
1887
2090
 
@@ -1891,7 +2094,7 @@ The JavaZone release!
1891
2094
  - New AfterConfiguration hook added; a block can be specified that takes Cucumber::Cli::Configuration (#423 Brent Snook)
1892
2095
  - Cucumber::Cli::Configuration#feature_dirs and #out_stream exposed as public attributes so that they may be used in AfterConfiguration hook (#423 Brent Snook)
1893
2096
 
1894
- ## [0.3.98](https://github.com/cucumber/cucumber-ruby/compare/v0.3.97...v0.3.98)
2097
+ ## [0.3.98](https://github.com/cucumber/cucumber-ruby/compare/v0.3.97...v0.3.98) (2009-08-25)
1895
2098
 
1896
2099
  Just a small release to help Cuke4Duke, which will be presented at Agile2009
1897
2100
  in 2 days.
@@ -1901,7 +2104,7 @@ in 2 days.
1901
2104
  - Backtrace filtering now happens in StepInvocation class, meaning other languages (Cuke4Duke) can get backtraces stripped. (Aslak Hellesøy)
1902
2105
  - Cucumber::Ast::Table#map_headers now allows for a block that will convert all the headers. See docs for details. (Ben Mabey)
1903
2106
 
1904
- ## [0.3.97](https://github.com/cucumber/cucumber-ruby/compare/v0.3.96...v0.3.97)
2107
+ ## [0.3.97](https://github.com/cucumber/cucumber-ruby/compare/v0.3.96...v0.3.97) (2009-08-23)
1905
2108
 
1906
2109
  The AA-FTT release. Creating a release for the AA-FTT meeting in Chicago so that we can play
1907
2110
  with the new language API and maybe knock out some better .NET support.
@@ -1923,7 +2126,7 @@ with the new language API and maybe knock out some better .NET support.
1923
2126
  - Changed the Programming Language API to support languages without "bleed through" (e.g. rubypython can't invoke ruby objs) (Aslak Hellesøy)
1924
2127
  - The Programming Language API manages hooks on the language level instead of on the step mother level (Aslak Hellesøy)
1925
2128
 
1926
- ## [0.3.96](https://github.com/cucumber/cucumber-ruby/compare/v0.3.95...v0.3.96)
2129
+ ## [0.3.96](https://github.com/cucumber/cucumber-ruby/compare/v0.3.95...v0.3.96) (2009-08-15)
1927
2130
 
1928
2131
  This release doesn't have any significant new features or bug fixes, but there are big
1929
2132
  internal changes. This release has a new API for plugging in other programming languages.
@@ -1944,7 +2147,7 @@ be patched. Please upgrade to Spork 0.5.9 if you are using Spork.
1944
2147
  - --strict will cause an exit code 1 for missing and pending (used to be for missing only). (Mads Buus)
1945
2148
  - junit formatter doesn't report pending steps unless --strict is used. (Mads Buus)
1946
2149
 
1947
- ## [0.3.95](https://github.com/cucumber/cucumber-ruby/compare/v0.3.94...v0.3.95)
2150
+ ## [0.3.95](https://github.com/cucumber/cucumber-ruby/compare/v0.3.94...v0.3.95) (2009-08-13)
1948
2151
 
1949
2152
  This release improves Webrat support for table-like HTML markup. Now you can easily turn the HTML
1950
2153
  elements table, dl, ol and ul elements into a 2D array. This is particularly useful for comparing
@@ -1974,7 +2177,7 @@ This release also fixes several bugs related to --drb (Spork) and profiles (cucu
1974
2177
  - element_at('table').to_table should be used instead of table_at('table').to_a. The old way is deprecated but still works. (Aslak Hellesøy)
1975
2178
  - element_at (and the depracated table_at) no longer takes a DOM id, only CSS selectors. Change "my_id" to "#my_id". (Aslak Hellesøy)
1976
2179
 
1977
- ## [0.3.94](https://github.com/cucumber/cucumber-ruby/compare/v0.3.93...v0.3.94)
2180
+ ## [0.3.94](https://github.com/cucumber/cucumber-ruby/compare/v0.3.93...v0.3.94) (2009-08-06)
1978
2181
 
1979
2182
  Kanban take II.
1980
2183
 
@@ -2004,7 +2207,7 @@ You'll achieve better flow this way.
2004
2207
  - Document builtin formatters with --help. (#406 Aslak Hellesøy)
2005
2208
  - Added support for using regular expressions when mapping table headers. (Peter Williams)
2006
2209
 
2007
- ## [0.3.93](https://github.com/cucumber/cucumber-ruby/compare/v0.3.92...v0.3.93)
2210
+ ## [0.3.93](https://github.com/cucumber/cucumber-ruby/compare/v0.3.92...v0.3.93) (2009-08-03)
2008
2211
 
2009
2212
  Highlights in this release: Improved profile handling (cucumber.yml) and a fix for cucumber hanging.
2010
2213
 
@@ -2021,7 +2224,7 @@ Highlights in this release: Improved profile handling (cucumber.yml) and a fix f
2021
2224
  - script/cucumber correctly loads the gem's binary if the plugin isn't installed.
2022
2225
  - Cucumber hangs waiting for Ctrl+C if an Error is raised. (#374 Aslak Hellesøy)
2023
2226
 
2024
- ## [0.3.92](https://github.com/cucumber/cucumber-ruby/compare/v0.3.91...v0.3.92)
2227
+ ## [0.3.92](https://github.com/cucumber/cucumber-ruby/compare/v0.3.91...v0.3.92) (2009-07-29)
2025
2228
 
2026
2229
  This release has some minor improvements to the new Table.diff! functionality. For example,
2027
2230
  if you're using Webrat and you want to compare a feature table with a HTML table containing
@@ -2045,7 +2248,7 @@ links in one of the columns, you can do:
2045
2248
 
2046
2249
  - The 'default' profile is now ALWAYS used unless you specify another profile or use the -P or --no-profile flag. (#344 Ben Mabey)
2047
2250
 
2048
- ## [0.3.91](https://github.com/cucumber/cucumber-ruby/compare/v0.3.90...v0.3.91)
2251
+ ## [0.3.91](https://github.com/cucumber/cucumber-ruby/compare/v0.3.90...v0.3.91) (2009-07-27)
2049
2252
 
2050
2253
  ### New Features
2051
2254
 
@@ -2054,7 +2257,7 @@ links in one of the columns, you can do:
2054
2257
  - Support limiting the number of feature elements with certain tags (#353 Joseph Wilk)
2055
2258
  - Table support for cuke4duke
2056
2259
 
2057
- ## [0.3.90](https://github.com/cucumber/cucumber-ruby/compare/v0.3.11...v0.3.90)
2260
+ ## [0.3.90](https://github.com/cucumber/cucumber-ruby/compare/v0.3.11...v0.3.90) (2009-07-21)
2058
2261
 
2059
2262
  The Hot summer release
2060
2263
 
@@ -2158,7 +2361,7 @@ This release also has several bugfixes related to --format and Before/After hook
2158
2361
  - The data returned from Table#hashes and similar methods are frozen. Dup if you need to modify. (Aslak Hellesøy)
2159
2362
  - Visitor.visit_table_cell_value(value, col_width, status) is now visitor.visit_table_cell_value(value, status)
2160
2363
 
2161
- ## [0.3.11](https://github.com/cucumber/cucumber-ruby/compare/v0.3.10...v0.3.11)
2364
+ ## [0.3.11](https://github.com/cucumber/cucumber-ruby/compare/v0.3.10...v0.3.11) (2009-06-05)
2162
2365
 
2163
2366
  This release just fixes a tiny bug in the formatter to fix an incompatibility
2164
2367
  with the latest RedMine release. It should have been included in 0.3.10, but
@@ -2168,7 +2371,7 @@ was forgotten.
2168
2371
 
2169
2372
  - Formatter API was broken in 0.3.9 (Roman Chernyatchik)
2170
2373
 
2171
- ## [0.3.10](https://github.com/cucumber/cucumber-ruby/compare/v0.3.9...v0.3.10)
2374
+ ## [0.3.10](https://github.com/cucumber/cucumber-ruby/compare/v0.3.9...v0.3.10) (2009-06-05)
2172
2375
 
2173
2376
  The Spork Release!
2174
2377
 
@@ -2211,7 +2414,7 @@ This release also has some minor bugfixes related to RSpec and Rails interop.
2211
2414
 
2212
2415
  - The HTML formatter wraps examples in a div, and distinguishes between Scenario and Scenario Outline. (Aslak Hellesøy)
2213
2416
 
2214
- ## [0.3.9](https://github.com/cucumber/cucumber-ruby/compare/v0.3.8...v0.3.9)
2417
+ ## [0.3.9](https://github.com/cucumber/cucumber-ruby/compare/v0.3.8...v0.3.9) (2009-05-27)
2215
2418
 
2216
2419
  Bugfix release for 0.3.8 released earlier today. 0.3.8 had a bug in the Rails cucumber
2217
2420
  generator which is fixed in 0.3.9.
@@ -2221,7 +2424,7 @@ generator which is fixed in 0.3.9.
2221
2424
  - Fix broken Rails cucumber generator (Tim Glen)
2222
2425
  - The Cucumber Rake task in non-fork mode will properly cause Rake to exit with 1 when Cucumber fails. (Aslak Hellesøy)
2223
2426
 
2224
- ## [0.3.8](https://github.com/cucumber/cucumber-ruby/compare/v0.3.7...v0.3.8)
2427
+ ## [0.3.8](https://github.com/cucumber/cucumber-ruby/compare/v0.3.7...v0.3.8) (2009-05-27)
2225
2428
 
2226
2429
  This Cucumber version fixes several bugs related to Ruby on Rails and RSpec. If you
2227
2430
  use Cucumber with a Rails app we*strongly* recommend you bootstrap Cucumber again:
@@ -2245,7 +2448,7 @@ use Cucumber with a Rails app we*strongly* recommend you bootstrap Cucumber agai
2245
2448
  - Better coexistence with RSpec - Cucumber now*neuters* the part of RSpec that tries to parse ARGV.
2246
2449
  - The differ= exception is gone (#325, #340 Aslak Hellesøy)
2247
2450
 
2248
- ## [0.3.7](https://github.com/cucumber/cucumber-ruby/compare/v0.3.6...v0.3.7)
2451
+ ## [0.3.7](https://github.com/cucumber/cucumber-ruby/compare/v0.3.6...v0.3.7) (2009-05-22)
2249
2452
 
2250
2453
  This is the "Help JetBrains RubyMine" release!
2251
2454
 
@@ -2260,7 +2463,7 @@ This is the "Help JetBrains RubyMine" release!
2260
2463
  - 'specs' folder needs to be renamed back to 'spec' (#339 Aslak Hellesøy)
2261
2464
  - CUCUMBER_OPTS doesn't work for cucumber rake tasks (#336 Aslak Hellesøy)
2262
2465
 
2263
- ## [0.3.6](https://github.com/cucumber/cucumber-ruby/compare/v0.3.5...v0.3.6)
2466
+ ## [0.3.6](https://github.com/cucumber/cucumber-ruby/compare/v0.3.5...v0.3.6) (2009-05-20)
2264
2467
 
2265
2468
  Kanban! With this release you can tag features or scenarios that are work in progress
2266
2469
  with a tag and use the new --wip switch.
@@ -2280,7 +2483,7 @@ Another handy feature in this release is that you can package your own formatter
2280
2483
  - Gracefully handle exceptions in After block (#330 Matt Wynne)
2281
2484
  - Feature with only Background doesn't run hooks (#314, #329 Aslak Hellesøy)
2282
2485
 
2283
- ## [0.3.5](https://github.com/cucumber/cucumber-ruby/compare/v0.3.4...v0.3.5)
2486
+ ## [0.3.5](https://github.com/cucumber/cucumber-ruby/compare/v0.3.4...v0.3.5) (2009-05-15)
2284
2487
 
2285
2488
  Let's make a new release today because two annoying bugs are fixed.
2286
2489
 
@@ -2288,7 +2491,7 @@ Let's make a new release today because two annoying bugs are fixed.
2288
2491
 
2289
2492
  - Allow feature element names to contain Gherkin keywords as long as they are not the first word on a newline (#319, #307 Joseph Wilk)
2290
2493
 
2291
- ## [0.3.4](https://github.com/cucumber/cucumber-ruby/compare/v0.3.3...v0.3.4)
2494
+ ## [0.3.4](https://github.com/cucumber/cucumber-ruby/compare/v0.3.3...v0.3.4) (2009-05-14)
2292
2495
 
2293
2496
  A couple of great new features in this release. Running with Rake is faster than before,
2294
2497
  and there is a brand new JUnit formatter - great for Continuous Integration reports!
@@ -2335,7 +2538,7 @@ However, setting the RAILS_ENV is easy to forget, so I don't recommend relying o
2335
2538
  unless explicitly told to fork a new interpreter. This is to increase speed. You can
2336
2539
  force a new interpreter by setting fork=true or rcov=true in the task.
2337
2540
 
2338
- ## [0.3.3](https://github.com/cucumber/cucumber-ruby/compare/v0.3.2...v0.3.3)
2541
+ ## [0.3.3](https://github.com/cucumber/cucumber-ruby/compare/v0.3.2...v0.3.3) (2009-05-10)
2339
2542
 
2340
2543
  Minor bugfix release, made specially for EuRuKo!
2341
2544
 
@@ -2349,7 +2552,7 @@ Minor bugfix release, made specially for EuRuKo!
2349
2552
 
2350
2553
  - New aliases: --no-source/-s, --name/-n (#317 Lonnon Foster)
2351
2554
 
2352
- ## [0.3.2](https://github.com/cucumber/cucumber-ruby/compare/v0.3.1...v0.3.2)
2555
+ ## [0.3.2](https://github.com/cucumber/cucumber-ruby/compare/v0.3.1...v0.3.2) (2009-05-03)
2353
2556
 
2354
2557
  This release has some minor bug fixes and new features.
2355
2558
  Nothing major, but we need a release for RailsConf'09 in Las Vegas!
@@ -2367,7 +2570,7 @@ Nothing major, but we need a release for RailsConf'09 in Las Vegas!
2367
2570
  - Examples and the associated tables are indented one level deeper than Scenario Outline. (Aslak Hellesøy)
2368
2571
  - Added support for Examples selection when using --name. (#295 Joseph Wilk)
2369
2572
 
2370
- ## [0.3.1](https://github.com/cucumber/cucumber-ruby/compare/v0.3.0...v0.3.1)
2573
+ ## [0.3.1](https://github.com/cucumber/cucumber-ruby/compare/v0.3.0...v0.3.1) (2009-04-26)
2371
2574
 
2372
2575
  This release has several minor bug fixes and new features. With the addition of Latvian and Hungarian Cucumber
2373
2576
  now supports 32(!!) languages.
@@ -2395,7 +2598,7 @@ now supports 32(!!) languages.
2395
2598
 
2396
2599
  - --scenario handle has been removed and replaced with --name which supports partial matches, regexp special characters, running named backgrounds (#295 Joseph Wilk)
2397
2600
 
2398
- ## [0.3.0](https://github.com/cucumber/cucumber-ruby/compare/v0.2.3...v0.3.0)
2601
+ ## [0.3.0](https://github.com/cucumber/cucumber-ruby/compare/v0.2.3...v0.3.0) (2009-04-14)
2399
2602
 
2400
2603
  This release has some minor changes to the APIs, but big enough that a new major release is in order.
2401
2604
  The biggest change is the new semantics of the #World method. Previously you would call this method
@@ -2453,7 +2656,7 @@ http://wiki.github.com/aslakhellesoy/cucumber/using-rake#profiles
2453
2656
  - Table and PyString no longer hold status information. Each visitor subclass should store state in @state if needed.
2454
2657
  - \#visit_py_string no longer takes a status argument.
2455
2658
 
2456
- ## [0.2.3](https://github.com/cucumber/cucumber-ruby/compare/v0.2.2...v0.2.3)
2659
+ ## [0.2.3](https://github.com/cucumber/cucumber-ruby/compare/v0.2.2...v0.2.3) (2009-03-30)
2457
2660
 
2458
2661
  This release sports 4 updated languages, slightly better help with snippets if you "quote" arguments
2459
2662
  in your steps. Windows/JRuby users can enjoy colours and you get some more sugar with Tables.
@@ -2475,7 +2678,7 @@ in your steps. Windows/JRuby users can enjoy colours and you get some more sugar
2475
2678
  - Fixed step name after step keyword without space (#265 Aslak Hellesøy)
2476
2679
  - Backtrace is back in HTML reports (Aslak Hellesøy)
2477
2680
 
2478
- ## [0.2.2](https://github.com/cucumber/cucumber-ruby/compare/v0.2.1...v0.2.2)
2681
+ ## [0.2.2](https://github.com/cucumber/cucumber-ruby/compare/v0.2.1...v0.2.2) (2009-03-25)
2479
2682
 
2480
2683
  This release includes some minor changes to make Cucumber work with pure Java. Cucumber
2481
2684
  has already worked with Java for a while (using JRuby and step definitions in Ruby),
@@ -2484,7 +2687,7 @@ but now you can write step definitions in pure Java!
2484
2687
  Check out the Cucumber Java project for more details:
2485
2688
  http://github.com/aslakhellesoy/cucumber_java/tree/master
2486
2689
 
2487
- ## [0.2.1](https://github.com/cucumber/cucumber-ruby/compare/v0.2.0...v0.2.1)
2690
+ ## [0.2.1](https://github.com/cucumber/cucumber-ruby/compare/v0.2.0...v0.2.1) (2009-03-25)
2488
2691
 
2489
2692
  This release fixes a few minor bugs and adds a couple of new features.
2490
2693
 
@@ -2506,7 +2709,7 @@ This release fixes a few minor bugs and adds a couple of new features.
2506
2709
 
2507
2710
  - -S/--step-definitions option introduced in 0.2.0 is removed. Use --format usage [--dry-run] [--no-color].
2508
2711
 
2509
- ## [0.2.0](https://github.com/cucumber/cucumber-ruby/compare/v0.1.16...v0.2.0)
2712
+ ## [0.2.0](https://github.com/cucumber/cucumber-ruby/compare/v0.1.16...v0.2.0) (2009-03-18)
2510
2713
 
2511
2714
  This release sports a bunch of new and exciting features, as well a major rewrite of Cucumber's internals.
2512
2715
  The rewrite was done to address technical debt and to have a code base that is easier to evolve and maintain.
@@ -2590,7 +2793,7 @@ for multiline arguments are some of the highlights.
2590
2793
  - Pure Ruby features are no longer supported.
2591
2794
  - Remove --color option in autotest. Can be added manually in cucumber.yml (#215 Jean-Michel Garnier)
2592
2795
 
2593
- ## 0.1.16.4
2796
+ ## 0.1.16.4 (2009-01-22)
2594
2797
 
2595
2798
  Bugfix release.
2596
2799
 
@@ -2616,7 +2819,7 @@ to this:
2616
2819
  - Better handling of ARGV (#169 David Chelimsky, Ben Mabey)
2617
2820
  - Compatibility with ruby-debug (do ARGV.dup in bin/cucumber so it can restart ruby with same args) (Aslak Hellesøy)
2618
2821
 
2619
- ## [0.1.16](https://github.com/cucumber/cucumber-ruby/compare/v0.1.15...v0.1.16)
2822
+ ## [0.1.16](https://github.com/cucumber/cucumber-ruby/compare/v0.1.15...v0.1.16) (2009-01-18)
2620
2823
 
2621
2824
  This is a small bugfix release. The most notable improvement is compatibility with Webrat 0.4. Rails/Webrat users should
2622
2825
  upgrade both Cucumber and Webrat gems.
@@ -2634,7 +2837,7 @@ upgrade both Cucumber and Webrat gems.
2634
2837
 
2635
2838
  ### Removed features
2636
2839
 
2637
- ## [0.1.15](https://github.com/cucumber/cucumber-ruby/compare/v0.1.14...v0.1.15)
2840
+ ## [0.1.15](https://github.com/cucumber/cucumber-ruby/compare/v0.1.14...v0.1.15) (2009-01-07)
2638
2841
 
2639
2842
  Bugfix release
2640
2843
 
@@ -2649,7 +2852,7 @@ Bugfix release
2649
2852
  - Better quoting of Scenario names in Autotest (Peter Jaros)
2650
2853
  - Added some small workarounds for unicode handling on Windows (Aslak Hellesøy)
2651
2854
 
2652
- ## [0.1.14](https://github.com/cucumber/cucumber-ruby/compare/v0.1.13...v0.1.14)
2855
+ ## [0.1.14](https://github.com/cucumber/cucumber-ruby/compare/v0.1.13...v0.1.14) (2009-01-04)
2653
2856
 
2654
2857
  This is the first release of Cucumber that runs on Ruby 1.9. There are still some encoding-related issues
2655
2858
  with Arabic (ar), Japanese (ja) and Simplified Chinese (zh-CN). Patches are welcome. Other than that -
@@ -2669,7 +2872,7 @@ a couple of minor bug fixes and polishing.
2669
2872
 
2670
2873
  - The #binary= method is gone from the Rake task. It will always point to the binary in the current gem. (Aslak Hellesøy)
2671
2874
 
2672
- ## [0.1.13](https://github.com/cucumber/cucumber-ruby/compare/v0.1.12...v0.1.13)
2875
+ ## [0.1.13](https://github.com/cucumber/cucumber-ruby/compare/v0.1.12...v0.1.13) (2008-12-20)
2673
2876
 
2674
2877
  It's time for some new features again. Output is now much better since you can use diffing, tweak
2675
2878
  the output colours and get the full --backtrace if you want. Managing your support/\* files became
@@ -2706,7 +2909,7 @@ Enjoy!
2706
2909
 
2707
2910
  ### Removed features
2708
2911
 
2709
- ## [0.1.12](https://github.com/cucumber/cucumber-ruby/compare/v0.1.11...v0.1.12)
2912
+ ## [0.1.12](https://github.com/cucumber/cucumber-ruby/compare/v0.1.11...v0.1.12) (2008-12-04)
2710
2913
 
2711
2914
  This is the "getting serious with IronRuby release" - largely based on
2712
2915
  "Patrick Gannon":http://www.patrickgannon.net/archive/2008/10/23/bdd-style-feature-tests-using-ironruby-and-rspeccucumber.aspx's
@@ -2724,7 +2927,7 @@ blog entry.
2724
2927
 
2725
2928
  None
2726
2929
 
2727
- ## [0.1.11](https://github.com/cucumber/cucumber-ruby/compare/v0.1.10...v0.1.11)
2930
+ ## [0.1.11](https://github.com/cucumber/cucumber-ruby/compare/v0.1.10...v0.1.11) (2008-12-02)
2728
2931
 
2729
2932
  Bugfix release with a couple of minor additional features to the command line options.
2730
2933
 
@@ -2745,7 +2948,7 @@ Bugfix release with a couple of minor additional features to the command line op
2745
2948
 
2746
2949
  - The cucumber gem no longer depends on the rspec gem. It must be downloaded manually if RSpec is used. (Jeff Rafter)
2747
2950
 
2748
- ## [0.1.10](https://github.com/cucumber/cucumber-ruby/compare/v0.1.9...v0.1.10)
2951
+ ## [0.1.10](https://github.com/cucumber/cucumber-ruby/compare/v0.1.9...v0.1.10) (2008-11-25)
2749
2952
 
2750
2953
  This release mostly has smaller bugfixes. The most significant new feature is how
2751
2954
  line numbers are specified. You can now run multiple features at specific lines numbers like this:
@@ -2778,7 +2981,7 @@ This will run foo.feature at line 15 and bar.feature at line 6, 45 and 111.
2778
2981
  - Step definition without a block being treated as pending (#64 Joseph Wilk)
2779
2982
  - The --line option has been removed. Use the new file.feature:line format instead.
2780
2983
 
2781
- ## [0.1.9](https://github.com/cucumber/cucumber-ruby/compare/v0.1.8...v0.1.9)
2984
+ ## [0.1.9](https://github.com/cucumber/cucumber-ruby/compare/v0.1.8...v0.1.9) (2008-11-12)
2782
2985
 
2783
2986
  With this release Cucumber supports 19 (!) natural languages:
2784
2987
 
@@ -2862,7 +3065,7 @@ spaces removed too.
2862
3065
 
2863
3066
  ### Removed features
2864
3067
 
2865
- ## [0.1.8](https://github.com/cucumber/cucumber-ruby/compare/v0.1.7...v0.1.8)
3068
+ ## [0.1.8](https://github.com/cucumber/cucumber-ruby/compare/v0.1.7...v0.1.8) (2008-10-18)
2866
3069
 
2867
3070
  This release extends the support for tables. PLEASE NOTE THAT TABLES ARE STILL EXPERIMENTAL.
2868
3071
  In previous releases it has been possible to use tables to define "more examples" of a scenario in
@@ -2946,7 +3149,7 @@ The step definitions for such multiline steps must define an extra block argumen
2946
3149
 
2947
3150
  - Added new --out option to make it easier to specify output from Rake and cucumber.yml
2948
3151
 
2949
- ## [0.1.7](https://github.com/cucumber/cucumber-ruby/compare/v0.1.6...v0.1.7)
3152
+ ## [0.1.7](https://github.com/cucumber/cucumber-ruby/compare/v0.1.6...v0.1.7) (2008-10-05)
2950
3153
 
2951
3154
  This release fixes a few bugs and adds some new features. The most notable features are:
2952
3155
 
@@ -3001,6 +3204,6 @@ a plain text step is defined. Not anymore! Cucumber will now output this:
3001
3204
  - Added --no-source option to display step definition location next to step text (#26, Joseph Wilk, Aslak Hellesøy)
3002
3205
  - Added more Webrat steps (#25, Tim Glen)
3003
3206
 
3004
- ## [0.1.6](https://github.com/cucumber/cucumber-ruby/compare/f3292f4023a707099d02602b2bd6c4ca3cec6820...v0.1.6)
3207
+ ## [0.1.6](https://github.com/cucumber/cucumber-ruby/compare/f3292f4023a707099d02602b2bd6c4ca3cec6820...v0.1.6) (2008-10-01)
3005
3208
 
3006
3209
  First gem release!