cucumber 9.0.0 → 9.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. metadata +99 -72
  4. data/CHANGELOG.old.md +0 -3371
  5. data/CONTRIBUTING.md +0 -246
data/CHANGELOG.old.md DELETED
@@ -1,3371 +0,0 @@
1
- # Changelog
2
-
3
- **NB: This is the legacy changelog. Please consult the new [CHANGELOG.md](./CHANGELOG.md) for new updates**
4
-
5
- ## [8.0.0]
6
- ### Added
7
- - Add a _WARNING_ message when using a space-separated string with cucumber_opts
8
- ([PR#](https://github.com/cucumber/cucumber-ruby/pull/1624)
9
- [Issue#1614](https://github.com/cucumber/cucumber-ruby/issues/1614))
10
- - Add support for TruffleRuby
11
- ([PR#1612](https://github.com/cucumber/cucumber-ruby/pull/1612)
12
- [gogainda](https://github.com/gogainda))
13
- - Add support for named hooks
14
- ([PR#1636](https://github.com/cucumber/cucumber-ruby/pull/1636))
15
-
16
- ### Fixed
17
- - Use `required_rubygems_version` instead of `rubygems_version`([PR#1629](https://github.com/cucumber/cucumber-ruby/pull/1629))
18
- - Suppress RSspec deprecation warnings([PR#1631](https://github.com/cucumber/cucumber-ruby/pull/1631))
19
-
20
- ## [8.0.0.RC.1]
21
- ### Changed
22
- - Replace dependency [cucumber-create-meta](https://rubygems.org/gems/cucumber-create-meta)
23
- with the new [cucumber-ci-environment](https://rubygems.org/gems/cucumber-ci-environment)
24
- ([PR#1601](https://github.com/cucumber/cucumber-ruby/pull/1601))
25
- - In `DataTable#map_column`, Changed the `strict` argument into a keyword argument.
26
- See [UPGRADING.md](./UPGRADING.md#upgrading-to-800).
27
- ([PR#1594](https://github.com/cucumber/cucumber-ruby/pull/1594)
28
- [Issue#1592](https://github.com/cucumber/cucumber-ruby/issues/1592))
29
- - Added Ruby 3.1
30
- ([PR#1607](https://github.com/cucumber/cucumber-ruby/pull/1607))
31
-
32
- ### Fixed
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
- - Fix usage of namespaced modules across multiple scenarios
38
- ([PR#1603](https://github.com/cucumber/cucumber-ruby/pull/1603)
39
- [Issue#1595](https://github.com/cucumber/cucumber-ruby/issues/1595))
40
- - Do not serialize Messages::Hook#tag_expression if it is empty.
41
- ([PR#1579](https://github.com/cucumber/cucumber-ruby/pull/1579))
42
- - JSON Formatter uses "pretty" output format
43
- ([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
44
- - Fixed JSON Formatter "end of background" detection.
45
- ([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
46
- - Fixed JSON Formatter expansion of Scenario Outline templates in Doc Strings.
47
- ([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
48
- - Removed usage of `eval` in `Cucumber::Term::ANSIColor` and `Cucumber::Formatter::ANSIColor`.
49
- ([PR#1589](https://github.com/cucumber/cucumber-ruby/pull/1589)
50
- [Issue#1583](https://github.com/cucumber/cucumber-ruby/issues/1583))
51
- - Fixed `DataTable#map_headers` when headers have the same prefix.
52
- ([PR#1598](https://github.com/cucumber/cucumber-ruby/pull/1598)
53
- [Issue#1450](https://github.com/cucumber/cucumber-ruby/issues/1450))
54
-
55
- ### Removed
56
- - `AfterConfiguration` has been removed. Please use `InstallPlugin` or `BeforeAll` instead.
57
- See the [UPGRADING.md](./UPGRADING.md#upgrading-to-800) to update your code accordingly.
58
- ([PR#1591](https://github.com/cucumber/cucumber-ruby/pull/1591))
59
- - The built-in Wire protocol
60
- The Wire protocol is still officially supported, but as an optional plugin rather
61
- than a built-in feature. See the
62
- [UPGRADING.md](./UPGRADING.md#upgrading-to-800)
63
- to update your code accordingly.
64
- - Removed former unused `stdin` argument from `Cli::Main`. That may impact your code
65
- if you use cucumber API `Cucumber::Cli::Main`. See [UPGRADING.md](./UPGRADING.md#upgrading-to-800).
66
- ([PR#1588](https://github.com/cucumber/cucumber-ruby/pull/1588)
67
- [Issue#1581](https://github.com/cucumber/cucumber-ruby/issues/1581))
68
- - Removed `DataTable#map_column!` and `DataTable#map_headers!`.
69
- Those methods were error-prone and planned to be removed a long time ago. You
70
- can use the immutable versions instead: `DataTable#map_column` and
71
- `DataTable#map_headers`.
72
- ([PR#1590](https://github.com/cucumber/cucumber-ruby/pull/1590)
73
- [Issue#1584](https://github.com/cucumber/cucumber-ruby/issues/1584))
74
- - Removed support for Ruby 2.5 and JRuby 9.2.
75
-
76
- ## [7.1.0]
77
- ### Added
78
- - New `BeforeAll` and `AfterAll` hooks
79
- - New hook: `InstallPlugin`
80
-
81
- ### Changed
82
- - Added release dates to CHANGELOG.md.
83
- ([1543](https://github.com/cucumber/cucumber-ruby/pull/1573)
84
- [AudTheCodeWitch](https://github.com/AudTheCodeWitch))
85
-
86
- ### Deprecated
87
- - `AfterConfiguration` is deprecated. Please use `InstallPlugin` or `BeforeAll` instead.
88
- See the [UPGRADING.md](./UPGRADING.md#upgrading-to-710) to update your code accordingly.
89
- ([1570](https://github.com/cucumber/cucumber-ruby/pull/1570))
90
- - The built-in Wire protocol
91
-
92
- ## [7.0.0]
93
- ### Changed
94
- - Upgrade of `cucumber-core`, `cucumber-gherkin` and `cucumber-messages`.
95
-
96
- ### Fixed
97
- - Cucumber terminating with `negative argument` ArgumentError
98
- ([1546](https://github.com/cucumber/cucumber-ruby/issues/1546)
99
- [1548](https://github.com/cucumber/cucumber-ruby/pull/1548)
100
- [Serghei Moret](https://github.com/JoeSSS))
101
- - Fixed reports banner to point to [new docs](https://cucumber.io/docs/cucumber/environment-variables/) about environment variables
102
-
103
- ### Removed
104
- - On Windows, auto-detection of ANSICON has been removed - Windows now properly
105
- supports ANSI colors in the terminal. In case of issues on older versions of
106
- Windows, execute cucumber with `--no-color`, or install
107
- [ANSICON](https://github.com/adoxa/ansicon/) globally.
108
- ([1561](https://github.com/cucumber/cucumber-ruby/pull/1561)
109
- [yosukei3108](https://github.com/yosukei3108))
110
-
111
- ## [v6.1.0]
112
- ### Changed
113
- - The JSON formatter now reports empty scenarios.
114
- No status is reported for empty scenarios in the resulting JSON.
115
- No more empty background is reported with empty scenarios.
116
- ([1533](https://github.com/cucumber/cucumber-ruby/pull/1533)
117
- [1530](https://github.com/cucumber/cucumber-ruby/issues/1530)
118
- [aurelien-reeves](https://github.com/aurelien-reeves))
119
- - Undeprecate the JSON formatter. It won't be removed any time soon.
120
-
121
- ### Fixed
122
- - `--dry-run` now supports `message` based-formatters
123
- ([1540](https://github.com/cucumber/cucumber-ruby/pull/1540)
124
- [1496](https://github.com/cucumber/cucumber-ruby/issues/1496)
125
- [1488](https://github.com/cucumber/cucumber-ruby/issues/1488)
126
- [aurelien-reeves](https://github.com/aurelien-reeves))
127
- - Step definitions now uses object instances created in the ParameterType
128
- ([1538](https://github.com/cucumber/cucumber-ruby/pull/1538)
129
- [1532](https://github.com/cucumber/cucumber-ruby/issues/1532)
130
- [aurelien-reeves](https://github.com/aurelien-reeves))
131
- - `attach` can now handle null bytes in the data.
132
- ([1536](https://github.com/cucumber/cucumber-ruby/pull/1536)
133
- [1529](https://github.com/cucumber/cucumber-ruby/issues/1529)
134
- [aurelien-reeves](https://github.com/aurelien-reeves))
135
-
136
- ## [v6.0.0]
137
- ### Added
138
- - Support tagged rules ([cucumber#1123](https://github.com/cucumber/cucumber/issues/1123))
139
-
140
- ### Changed
141
- - Upgraded dependencies (see diff)
142
-
143
- ### Fixed
144
- - It is now possible to attach a file passing its path
145
- ([#1506](https://github.com/cucumber/cucumber-ruby/issues/1506)
146
- [#1514](https://github.com/cucumber/cucumber-ruby/pull/1514)
147
- [aurelien-reeves](https://github.com/aurelien-reeves))
148
-
149
- ### Removed
150
- - `embed` in step definitions in favor of `attach`.
151
- `embed` has been deprecated in version 4.0.
152
- Simply replace `embed` with `attach`.
153
- ([#1523](https://github.com/cucumber/cucumber-ruby/pull/1523)
154
- [aurelien-reeves](https://github.com/aurelien-reeves))
155
- - `puts` in step definitions in favor of `log`.
156
- `puts` has been deprecated in version 4.0.
157
- Simply replace `puts` with `log`.
158
- ([#1523](https://github.com/cucumber/cucumber-ruby/pull/1523)
159
- [aurelien-reeves](https://github.com/aurelien-reeves))
160
-
161
- ## [5.3.0]
162
- ### Added
163
- - `fileattribute` cli argument available to attach `file` to junit formatter
164
-
165
- ### Fixed
166
- - Circle-CI windows build now silently installs MSYS2 using Chocolatey before
167
- setting-up the ruby devkit with ridk
168
- ([#1503](https://github.com/cucumber/cucumber-ruby/pull/1503)
169
- [aurelien-reeves](https://github.com/aurelien-reeves))
170
- - `--publish` and no formatter now uses the pretty formatter per default
171
- ([#1468](https://github.com/cucumber/cucumber-ruby/issues/1468)
172
- [#1500](https://github.com/cucumber/cucumber-ruby/pull/1500)
173
- [aurelien-reeves](https://github.com/aurelien-reeves))
174
-
175
- ## [5.2.0]
176
- ### Changed
177
- - `--publish` uses the response provided by the server as the banner [#1472](https://github.com/cucumber/cucumber-ruby/issues/1472)
178
-
179
- ## [5.1.3]
180
- ### Fixed
181
- - The `CUCUMBER_PUBLISH_TOKEN` now sets the correct HTTP header, following a fix in the curl option parser.
182
-
183
- ## [5.1.2]
184
- ### Fixed
185
- - Do not send headers after following redirection [#1475](https://github.com/cucumber/cucumber-ruby/pull/1475)
186
-
187
- ## [5.1.1]
188
-
189
- ## [5.1.0]
190
- ### Added
191
- - `-X GET` in an `--out` URL will now issue a `GET` request _without_ a body. If the response is `202 Accepted` _and_
192
- the `Location` header is present, a new `PUT` request will be sent _with_ the body.
193
-
194
- ### Changed
195
- - Set banner border color to green when publishing reports
196
- - Postpone removal of `--format=json`, `embed` and `puts` to version 6.0.0 in deprecation messages
197
-
198
- ### Fixed
199
- - Display banner on stderr when publishing reports [#1462](https://github.com/cucumber/cucumber-ruby/issues/1462)
200
-
201
- ## [5.0.0]
202
- ### Added
203
- - `--publish` automatically publishes reports to [reports.cucumber.io](https://reports.cucumber.io)
204
- - `--publish-quiet` does not print information banner about [reports.cucumber.io](https://reports.cucumber.io)
205
-
206
- ### Changed
207
- - `-q, --quiet` will also imply `--publish-quiet` in addition to `--no-snippets --no-source --no-duration`
208
-
209
- ### Fixed
210
- - Update code to be compatible with `diff-lcs` versions 1.3 and 1.4
211
- - Defer registration of `at_exit` hook that flushes and closes formatter streams
212
- ([#1458](https://github.com/cucumber/cucumber-ruby/pull/1458))
213
- - Updated gems (see git diff for details)
214
- - `cucumber-expressions`
215
- - `cucumber-gherkin`
216
- - `cucumber-create-meta`
217
- - `cucumber-messages`
218
- - Fix issue with timestamp nanos [#1438](https://github.com/cucumber/cucumber-ruby/issues/1438)
219
- - `cucumber-html-formatter`
220
- - Add filtering capabilities [#1444](https://github.com/cucumber/cucumber-ruby/issues/1444)
221
- - Fix Interceptor that was raising exception when calling `puts` on the wrapped stream ([#1445](https://github.com/cucumber/cucumber-ruby/issues/1445))
222
-
223
- ### Removed
224
- - Dropped support for Ruby [2.3](https://www.ruby-lang.org/en/news/2019/03/31/support-of-ruby-2-3-has-ended/)
225
- and [2.4](https://www.ruby-lang.org/en/news/2020/04/05/support-of-ruby-2-4-has-ended/)
226
-
227
- ## [4.1.0]
228
- ### Changed
229
- - Use [`cucumber-create-meta`](https://rubygems.org/gems/cucumber-create-meta) to produce the `Meta` message before the run.
230
- - Updated gems:
231
- - `cucumber-wire` ~> 3.1.0
232
- - `cucumber-core` ~> 7.1.0
233
- - `cucumber-gherkin` ~> 14.0.1
234
- - Fix issue with empty feature files [#1427](https://github.com/cucumber/cucumber-ruby/issues/1427)
235
- - `cucumber-messages` ~> 12.2.0
236
- - `cucumber-html-formatter` ~> 7.0.0
237
- - Fix issue with Hook attachments [#1420](https://github.com/cucumber/cucumber-ruby/issues/1420)
238
-
239
- ### Fixed
240
- - `AfterStep` hook do not cause issue when running `message` formatter. [#1433](https://github.com/cucumber/cucumber-ruby/issues/1433) - [#1434](https://github.com/cucumber/cucumber-ruby/pull/1434)
241
-
242
- ## [4.0.1]
243
- ### Fixed
244
- - force reference to `diff-lcs` to 1.3 as 1.4 introduced breaking changes.
245
-
246
- ## [4.0.0]
247
- ### Changed
248
- - `log` method can now be called with non-string objects and will run `.to_s` on them. [#1410](https://github.com/cucumber/cucumber-ruby/issues/1410)
249
-
250
- ## [4.0.0.rc.6]
251
- ### Changed
252
- - Code snippet for an undefined step with a Doc String will ouput `doc_string` instead of `string` in block params
253
- ([#1401](https://github.com/cucumber/cucumber-ruby/issues/1401)
254
- [#1402](https://github.com/cucumber/cucumber-ruby/pull/1402)
255
- [karamosky](https://github.com/karamosky))
256
- - Updated monorepo libraries:
257
- - cucumber-gherkin ~> 13
258
- - cucumber-html-formatter ~> 6
259
- - cucumber-cucumber-expressions ~> 10
260
- - Use `cucumber-ruby-core` 7.0.0
261
- - Use `cucumber-ruby-wire` 3.0.0
262
- - Use `body` field of attachments
263
-
264
- ## [4.0.0.rc.5]
265
- ### Added
266
- - New html formatter enabled by option `--format html --out report.html`.
267
- - Accept `--out URL` to POST results to a web server
268
- If a URL is used as output, the output will be sent with a POST request.
269
- This can be overridden by specifying e.g. `http-method=PUT` as a query parameter.
270
- Other `http-` prefixed query parameters will be converted to request headers
271
- (with the `http-` prefix stripped off).
272
-
273
- ## [4.0.0.rc.4]
274
- ### Added
275
- - Add `message`formatter which produces `Cucumber::Messages` ndjson output.
276
- - Comply with [`cucumber-compatibility-kit](https://github.com/cucumber/cucumber/tree/master/compatibility-kit)
277
- - Methods `log` and `attach` can be used in step definitions to attach text or images
278
-
279
- ### Deprecated
280
- - `--format=json` in favor of the `message` formatter and the stand-alone JSON formatter
281
- - `puts` in step definitions in favor of `log` ([cucumber#897](https://github.com/cucumber/cucumber/issues/897))
282
- - `embed` in step definitions in favor of `attach` ([cucumber#897](https://github.com/cucumber/cucumber/issues/897))
283
-
284
- ## [4.0.0.rc.3]
285
- ### Changed
286
- - Update to cucumber-wire 1.1.
287
-
288
- ## [4.0.0.rc.2]
289
- ### Added
290
- - There is a new methodology in Cucumber for how the auto-loader works
291
- - The old `load` behaviour is now replaced with a newer `require` behaviour
292
- - Cucumber will (From version 4), now auto-load files using the `require` method
293
- - If you wish to alter this, then you can set a top level config option: `Cucumber.use_legacy_autoloader`
294
- - Like most config options, setting this inside a `spec_helper.rb` or `env.rb` file is advised
295
- - For more information on this change, including why it was made. Please read this
296
- [Blog Post](https://cucumber.io/blog/open-source/tweaking-cucumber-rubys-auto-loader/)
297
- ([#1349](https://github.com/cucumber/cucumber-ruby/pull/1349),
298
- [#1043](https://github.com/cucumber/cucumber-ruby/issues/1043)
299
- [luke-hill](https://github.com/luke-hill))
300
-
301
- ### Changed
302
- - Going forward the minimum ruby version for all cucumber based gems is 2.3
303
- ([luke-hill](https://github.com/luke-hill))
304
-
305
- ### Fixed
306
- - Fix the placeholder expansions in the json formatter
307
- ([#1361](https://github.com/cucumber/cucumber-ruby/pull/1361)
308
- [brasmusson](https://github.com/brasmusson))
309
- - Fix seed printed in cucumber UI to match the seed that was actually used.
310
- ([#1329](https://github.com/cucumber/cucumber-ruby/pull/1329)
311
- [deivid-rodriguez](https://github.com/deivid-rodriguez))
312
- - Make SIGINT/`Ctrl+c` behavior consistent with SIGTERM/`kill` behavior - now first invocation causes existing scenario to stop running and jump to `at_exit`, second invocation causes immediate exit. Before that first invocation only instructed Cucumber to exit after scenario and second invocation caused immediate exit skipping `at_exit`.
313
- ([#1353](https://github.com/cucumber/cucumber-ruby/pull/1353)
314
- [akostadinov](https://github.com/akostadinov))
315
-
316
- ### Removed
317
- - Removed Travis publish job for cucumber-pro(a.k.a. jam)
318
- ([#1350](https://github.com/cucumber/cucumber-ruby/pull/1350)
319
- [luke-hill](https://github.com/luke-hill))
320
- - Drop support for JRuby. We may add this back if new versions of protobuf for JRuby
321
- start working, or if someone can make the build pass with an older version.
322
- All this means is we're ok to make releases while the jruby CI job is failing.
323
- - Remove `dots-formatter introduced in`4.0.0rc1`
324
-
325
- ## [4.0.0.rc.1]
326
- ### Added
327
- - Added support for new `Rule` keyword. [Read more here.](https://github.com/cucumber/cucumber/blob/master/gherkin/CHANGELOG.md#6013---2018-09-25)
328
- - Added new `dots` formatter. This is the first step of a larger strategy to move the formatters to a new architecture where they delegate to shared executables via messages.
329
-
330
- ### Changed
331
- - Use Gherkin v6.
332
- ([#1313](https://github.com/cucumber/cucumber-ruby/pull/1313)
333
- [brasmusson](https://github.com/brasmusson))
334
- - Do not apply Before and After Hooks to Test Cases with no Test Steps.
335
- ([#1311](https://github.com/cucumber/cucumber-ruby/pull/1311)
336
- [brasmusson](https://github.com/brasmusson))
337
- - Pass the registry to the Wire plugin.
338
- ([#1309](https://github.com/cucumber/cucumber-ruby/pull/1309)
339
- [brasmusson](https://github.com/brasmusson))
340
- - Adapt to using the Gherkin compiler and Pickles in the core.
341
- ([#1309](https://github.com/cucumber/cucumber-ruby/pull/1309)
342
- [brasmusson](https://github.com/brasmusson))
343
- - Let the Pretty Formatter use events.
344
- ([#1305](https://github.com/cucumber/cucumber-ruby/pull/1305)
345
- [brasmusson](https://github.com/brasmusson))
346
- - Use single quotes in generated template steps ([#1323](https://github.com/cucumber/cucumber-ruby/pull/1323) [acant](https://github.com/acant))
347
-
348
- ### Fixed
349
- - Wire protocol compatibility for docstrings.
350
- ([#1183](https://github.com/cucumber/cucumber-ruby/issues/1183))
351
- - Let the Rerun Formatter handle flaky scenarios.
352
- ([#1310](https://github.com/cucumber/cucumber-ruby/pull/1310)
353
- [brasmusson](https://github.com/brasmusson))
354
-
355
- ### Removed
356
- - Remove the support of old style tag expressions.
357
- ([#1314](https://github.com/cucumber/cucumber-ruby/pull/1314),
358
- [brasmusson](https://github.com/brasmusson))
359
- - Remove the Legacy API for Formatters.
360
- ([#1230](https://github.com/cucumber/cucumber-ruby/pull/1230),
361
- [#839](https://github.com/cucumber/cucumber-ruby/issues/839)
362
- [brasmusson](https://github.com/brasmusson))
363
- - Remove the JSON Pretty Formatter (which was the same as the JSON formatter).
364
- ([brasmusson](https://github.com/brasmusson))
365
- - Remove the HTML Formatter.
366
- ([#1306](https://github.com/cucumber/cucumber-ruby/pull/1306)
367
- [brasmusson](https://github.com/brasmusson))
368
-
369
- ## [3.1.2]
370
- ### Changed
371
- - Upgraded to `cucumber-core` 3.2.0
372
- - Change to use the gherkin step location in the Json formatter.
373
- ([#1243](https://github.com/cucumber/cucumber-ruby/pull/1243),
374
- [#1108](https://github.com/cucumber/cucumber-ruby/issues/1108)
375
- [brasmusson](https://github.com/brasmusson))
376
-
377
- ### Fixed
378
- - Support ParameterType with empty capture group.
379
- ([#404](https://github.com/cucumber/cucumber/issues/404)
380
- [aslakhellesoy](https://github.com/aslakhellesoy))
381
-
382
- ## [3.1.1]
383
- ### Added
384
- - N/A
385
-
386
- ### Changed
387
- - Add Rubocop to default Rake task ([#1256](https://github.com/cucumber/cucumber-ruby/pull/1256) [@jaysonesmith](https://github.com/jaysonesmith))
388
- - Upgraded `cucumber-expressions` dependency to ~> 6.0.0 ([#1299](https://github.com/cucumber/cucumber-ruby/pull/1299) [@aslakhellesoy](https://github.com/aslakhellesoy))
389
- - Upgraded to `gherkin` 5.1.0 ([#1299](https://github.com/cucumber/cucumber-ruby/pull/1299) [@aslakhellesoy](https://github.com/aslakhellesoy))
390
-
391
- ### Deprecated
392
- - N/A
393
-
394
- ### Fixed
395
- - Make `--fail-fast` play nice with `--retry` ([#1283](https://github.com/cucumber/cucumber-ruby/pull/1283) [@yrral86](https://github.com/yrral86))
396
- - Fix incompatible encodings error in JUnit formatter ([#1244](https://github.com/cucumber/cucumber-ruby/pull/1244) [@NickAb](https://github.com/NickAb)) (except on JRuby, see [#1259](https://github.com/cucumber/cucumber-ruby/pull/1259))
397
- - Fix the handling of failed hooks in the JUnit Formatter ([@brasmusson](https://github.com/brasmusson))
398
- - Fixed lengthy stacktrace when running `cucumber -f stepdefs` when steps aren't defined. ([#1286](https://github.com/cucumber/cucumber-ruby/pull/1286) [@xtrasimplicity](https://github.com/xtrasimplicity))
399
- - Fixed an error with HTML snippet generation when `frozen_string_literal` is enabled and the `Syntax` gem is not installed. ([#1287](https://github.com/cucumber/cucumber-ruby/pull/1287) [@xtrasimplicity](https://github.com/xtrasimplicity))
400
-
401
- ### Removed
402
- - N/A
403
-
404
- ## [3.1.0]
405
- ### Added
406
- - ParameterType transformer runs in World
407
- ([#1213](https://github.com/cucumber/cucumber-ruby/pull/1213)
408
- [@aslakhellesoy](https://github.com/aslakhellesoy))
409
-
410
- ### Changed
411
- - Upgraded to `cucumber-expressions` 5.0.4
412
- - Upgraded to `cucumber-tag_expressions` 1.1.0
413
- - Upgraded to `gherkin` 5.0.0
414
-
415
- ### Fixed
416
- - Fix the handling of failed hooks in the JUnit Formatter ([@brasmusson](https://github.com/brasmusson))
417
-
418
- ## [3.0.2]
419
- ### Fixed
420
- - Fix html reporter with more than one embedded screenshot ([#1216](https://github.com/cucumber/cucumber-ruby/pull/1216) [@nonkor](https://github.com/nonkor))
421
- - Change test expectation to handle Ruby's unstable sorting ([#1210](https://github.com/cucumber/cucumber-ruby/pull/1210) [@jaysonesmith](https://github.com/jaysonesmith))
422
- - Fix the printing of newlines in the rerun formatter - a problem introduced in [#1162](https://github.com/cucumber/cucumber-ruby/issues/1162) ([#1207](https://github.com/cucumber/cucumber-ruby/issues/1207) [@brasmusson](https://github.com/brasmusson))
423
- - Handle the `--retry` option in profiles ([#1050](https://github.com/cucumber/cucumber-ruby/issues/1050) [@brasmusson](https://github.com/brasmusson))
424
-
425
- ### Removed
426
- - Cucumber is no longer tested on Ruby 2.1 and below.
427
-
428
- ## [3.0.1]
429
- ### Fixed
430
- - `ParameterType` can now override `use_for_snippets` and `prefer_for_regexp_match` without throwing an error. ([@aslakhellesoy](https://github.com/aslakhellesoy))
431
- - Gemspec has `required_ruby_version = '>= 2.1'` ([@aslakhellesoy](https://github.com/aslakhellesoy))
432
-
433
- ## [3.0.0]
434
- ### Added
435
- - Handle selective strict options. ([#1169](https://github.com/cucumber/cucumber-ruby/pull/1169), [#1160](https://github.com/cucumber/cucumber-ruby/issues/1160) @brasmusson)
436
-
437
- ### Changed
438
- - Regexp capture groups with `(\d+)` are automatically converted to `Integer`
439
- - Rename `Step#name` to `#text` ([#1130](https://github.com/cucumber/cucumber-ruby/pull/1130) [@olleolleolle](https://github.com/olleolleolle))
440
- - `Transform` has been removed and replaced with `ParameterType`. See [upgrading instructions](https://cucumber.io/blog/2017/09/21/upgrading-to-cucumber-3). ([#1190](https://github.com/cucumber/cucumber-ruby/issues/1190) @aslakhellesoy)
441
- - Nested capture groups are not counted as parameters. See [upgrading instructions](https://cucumber.io/blog/2017/09/21/upgrading-to-cucumber-3). (@aslakhellesoy)
442
-
443
- ### Fixed
444
- - Use absolute path in IO formatter to prevent `chdir` issues. ([#1111](https://github.com/cucumber/cucumber-ruby/pull/1111/files) @akostadinov)
445
- - Fix bug in DataTable#symbolic_hashes ([#1200](https://github.com/cucumber/cucumber-ruby/pull/1200) @Ben-Behar)
446
- - Fix typo in JSON formatter ([#1196](https://github.com/cucumber/cucumber-ruby/pull/1196) @alb-i986)
447
- - Handle ambiguous steps as failed steps, when not using `--guess` ([#1132](https://github.com/cucumber/cucumber-ruby/pull/1132), [#1113](https://github.com/cucumber/cucumber-ruby/issues/1113) @MadameSheema, @enkessler, @brasmusson)
448
-
449
- ## [3.0.0.pre.2]
450
-
451
- ## [2.4.0]
452
-
453
- ## [2.3.3]
454
-
455
- ## [2.3.2]
456
-
457
- ## [2.3.1]
458
-
459
- ## [2.3.0]
460
-
461
- ## [2.2.0]
462
-
463
- ## [2.1.0]
464
-
465
- ## [2.0.2]
466
-
467
- ## [2.0.1]
468
-
469
- ## [2.0.0]
470
-
471
- ## [2.0.0.rc5]
472
-
473
- ## Bugfixes
474
-
475
- ## [2.0.0.rc.4]
476
-
477
- ## [2.0.0.rc.3]
478
-
479
- ## [2.0.0.rc.2]
480
-
481
- ## [2.0.0.rc.1]
482
-
483
- ## [2.0.0.beta.5]
484
-
485
- ## [2.0.0.beta.4]
486
-
487
- ## [2.0.0.beta.3]
488
-
489
- ## [2.0.0.beta.2]
490
-
491
- ## [2.0.0.beta.1]
492
-
493
- ## [1.3.16]
494
-
495
- ## [1.3.15]
496
-
497
- ## [1.3.14]
498
-
499
- ## [1.3.13]
500
-
501
- ## [1.3.12]
502
-
503
- ## [1.3.11]
504
-
505
- ## [1.3.10]
506
-
507
- ## [1.3.9]
508
-
509
- ## [1.3.8]
510
-
511
- ## [1.3.7]
512
-
513
- ## [1.3.6]
514
-
515
- ## [1.3.5]
516
-
517
- ## [1.3.4]
518
-
519
- ## [1.3.3]
520
-
521
- ## [1.3.2]
522
-
523
- ## [1.3.1]
524
-
525
- ## [1.3.0]
526
-
527
- ## [1.2.5]
528
-
529
- ## 1.2.4
530
-
531
- ## [1.2.3]
532
-
533
- ## [1.2.2]
534
-
535
- ## [1.2.1]
536
-
537
- ## [1.2.0]
538
-
539
- ## [1.1.9]
540
-
541
- ## [1.1.8]
542
-
543
- ## [1.1.7]
544
-
545
- ## [1.1.6]
546
-
547
- ## [1.1.5]
548
-
549
- ## [1.1.4]
550
-
551
- ## [1.1.3]
552
-
553
- ## [1.1.2]
554
-
555
- ## [1.1.0]
556
-
557
- ## [1.0.6]
558
-
559
- ## [1.0.5]
560
-
561
- ## [1.0.4]
562
-
563
- ## [1.0.3]
564
-
565
- ## [1.0.2]
566
-
567
- ## [1.0.1]
568
-
569
- ## [1.0.0]
570
-
571
- ## [0.10.6]
572
-
573
- ## [0.10.5]
574
-
575
- ## [0.10.3]
576
-
577
- ## [0.10.2]
578
-
579
- ## [0.10.1]
580
-
581
- ## [0.10.0]
582
-
583
- ## [0.9.4]
584
-
585
- ## [0.9.3]
586
-
587
- ## [0.9.2]
588
-
589
- ## [0.9.1]
590
-
591
- ## [0.9.0]
592
-
593
- ## [0.8.5]
594
-
595
- ## [0.8.4]
596
-
597
- ## [0.8.3]
598
-
599
- ## [0.8.2]
600
-
601
- ## [0.8.1]
602
-
603
- ## [0.8.0]
604
-
605
- ## [0.7.3]
606
-
607
- ## [0.7.2]
608
-
609
- ## [0.7.1]
610
-
611
- ## [0.7.0]
612
-
613
- ## [0.7.0.beta.8]
614
-
615
- ## [0.7.0.beta.7]
616
-
617
- ## [0.7.0.beta.6]
618
-
619
- ## [0.7.0.beta.5]
620
-
621
- ## [0.7.0.beta.4]
622
-
623
- ## [0.7.0.beta.3]
624
-
625
- ## [0.7.0.beta.2]
626
-
627
- ## [0.7.0.beta.1]
628
-
629
- ## [0.6.4]
630
-
631
- ## [0.6.3]
632
-
633
- ## [0.6.2]
634
-
635
- ## [0.6.1]
636
-
637
- ## [0.6.0]
638
-
639
- ## [0.5.3]
640
-
641
- ## [0.5.2]
642
-
643
- ## [0.5.1]
644
-
645
- ## [0.5.0]
646
-
647
- ## [0.4.4]
648
-
649
- ## [0.4.3]
650
-
651
- ## [0.4.2]
652
-
653
- ## [0.4.1]
654
-
655
- ## [0.4.0]
656
-
657
- ## [0.3.104]
658
-
659
- ## [0.3.103]
660
-
661
- ## [0.3.102]
662
-
663
- ## [0.3.101]
664
-
665
- ## [0.3.100]
666
-
667
- ## [0.3.99]
668
-
669
- ## [0.3.98]
670
-
671
- ## [0.3.97]
672
-
673
- ## [0.3.96]
674
-
675
- ## [0.3.95]
676
-
677
- ## [0.3.94]
678
-
679
- ## [0.3.93]
680
-
681
- ## [0.3.92]
682
-
683
- ## [0.3.91]
684
-
685
- ## [0.3.90]
686
-
687
- ## [0.3.11]
688
-
689
- ## [0.3.10]
690
-
691
- ## [0.3.9]
692
-
693
- ## [0.3.8]
694
-
695
- ## [0.3.7]
696
-
697
- ## [0.3.6]
698
-
699
- ## [0.3.5]
700
-
701
- ## [0.3.4]
702
-
703
- ## [0.3.3]
704
-
705
- ## [0.3.2]
706
-
707
- ## [0.3.1]
708
-
709
- ## [0.3.0]
710
-
711
- ## [0.2.3]
712
-
713
- ## [0.2.2]
714
-
715
- ## [0.2.1]
716
-
717
- ## [0.2.0]
718
-
719
- ## 0.1.16.4
720
-
721
- ## [0.1.16]
722
-
723
- ## [0.1.15]
724
-
725
- ## [0.1.14]
726
-
727
- ## [0.1.13]
728
-
729
- ## [0.1.12]
730
-
731
- ## [0.1.11]
732
-
733
- ## [0.1.10]
734
-
735
- ## [0.1.9]
736
-
737
- ## [0.1.8]
738
-
739
- ## [0.1.7]
740
-
741
- ## [0.1.6]
742
-
743
- [Unreleased]: https://github.com/cucumber/cucumber-ruby/compare/v8.0.0...main
744
- [8.0.0]: https://github.com/cucumber/cucumber-ruby/compare/v8.0.0.rc.1...v8.0.0
745
- [8.0.0.RC.1]: https://github.com/cucumber/cucumber-ruby/compare/v7.1.0...v8.0.0.rc.1
746
- [7.1.0]: https://github.com/cucumber/cucumber-ruby/compare/v7.0.0...v7.1.0
747
- [7.0.0]: https://github.com/cucumber/cucumber-ruby/compare/v6.1.0...v7.0.0
748
- [v6.1.0]: https://github.com/cucumber/cucumber-ruby/compare/v6.0.0...v6.1.0
749
- [v6.0.0]: https://github.com/cucumber/cucumber-ruby/compare/v5.3.0...v6.0.0
750
- [5.3.0]: https://github.com/cucumber/cucumber-ruby/compare/v5.2.0...v5.3.0
751
- [5.2.0]: https://github.com/cucumber/cucumber-ruby/compare/v5.1.3...v5.2.0
752
- [5.1.3]: https://github.com/cucumber/cucumber-ruby/compare/v5.1.2...v5.1.3
753
- [5.1.2]: https://github.com/cucumber/cucumber-ruby/compare/v5.1.1...v5.1.2
754
- [5.1.1]: https://github.com/cucumber/cucumber-ruby/compare/v5.1.0...v5.1.1
755
- [5.1.0]: https://github.com/cucumber/cucumber-ruby/compare/v5.0.0...5.1.0
756
- [5.0.0]: https://github.com/cucumber/cucumber-ruby/compare/v4.1.0...5.0.0
757
- [4.1.0]: https://github.com/cucumber/cucumber-ruby/compare/v4.0.1...v4.1.0
758
- [4.0.1]: https://github.com/cucumber/cucumber-ruby/compare/v4.0.0...v4.0.1
759
- [4.0.0]: https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...v4.0.0
760
- [4.0.0.rc.6]: https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...4.0.0.rc.6
761
- [4.0.0.rc.5]: https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.4...4.0.0.rc.5
762
- [4.0.0.rc.4]: https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.3...4.0.0.rc.4
763
- [4.0.0.rc.3]: https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.2...v4.0.0.rc.3
764
- [4.0.0.rc.2]: https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.1...v4.0.0.rc.2
765
- [4.0.0.rc.1]: https://github.com/cucumber/cucumber-ruby/compare/v3.1.2...v4.0.0.rc.1
766
- [3.1.2]: https://github.com/cucumber/cucumber-ruby/compare/v3.1.1...v3.1.2
767
- [3.1.1]: https://github.com/cucumber/cucumber-ruby/compare/v3.1.0...v3.1.1
768
- [3.1.0]: https://github.com/cucumber/cucumber-ruby/compare/v3.0.2...v3.1.0
769
- [3.0.2]: https://github.com/cucumber/cucumber-ruby/compare/v3.0.1...v3.0.2
770
- [3.0.1]: https://github.com/cucumber/cucumber-ruby/compare/v3.0.0...3.0.1
771
- [3.0.0]: https://github.com/cucumber/cucumber-ruby/compare/v3.0.0.pre.2...v3.0.0
772
- [3.0.0.pre.2]: https://github.com/cucumber/cucumber-ruby/compare/v2.4.0...v3.0.0.pre.2
773
- [2.4.0]: https://github.com/cucumber/cucumber-ruby/compare/v2.3.3...v2.4.0
774
- [2.3.3]: https://github.com/cucumber/cucumber-ruby/compare/v2.3.2...v2.3.3
775
- [2.3.2]: https://github.com/cucumber/cucumber-ruby/compare/v2.3.1...v2.3.2
776
- [2.3.1]: https://github.com/cucumber/cucumber-ruby/compare/v2.3.0...v2.3.1
777
- [2.3.0]: https://github.com/cucumber/cucumber-ruby/compare/v2.2.0...v2.3.0
778
- [2.2.0]: https://github.com/cucumber/cucumber-ruby/compare/v2.1.0...v2.2.0
779
- [2.1.0]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.2...v2.1.0
780
- [2.0.2]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.1...v2.0.2
781
- [2.0.1]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0...v2.0.1
782
- [2.0.0]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.5...v2.0.0
783
- [2.0.0.rc5]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.4...v2.0.0.rc.5
784
- [2.0.0.rc.4]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.3...2.0.0.rc.4
785
- [2.0.0.rc.3]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.2...v2.0.0.rc.3
786
- [2.0.0.rc.2]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.1...v2.0.0.rc.2
787
- [2.0.0.rc.1]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.5...v2.0.0.rc.1
788
- [2.0.0.beta.5]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.4...v2.0.0.beta.5
789
- [2.0.0.beta.4]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.3...v2.0.0.beta.4
790
- [2.0.0.beta.3]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.2...v2.0.0.beta.3
791
- [2.0.0.beta.2]: https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.1...v2.0.0.beta.2
792
- [2.0.0.beta.1]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v2.0.0.beta.1
793
- [1.3.16]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.15...v1.3.16
794
- [1.3.15]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.14...v1.3.15
795
- [1.3.14]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.13...v1.3.14
796
- [1.3.13]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.12...v1.3.13
797
- [1.3.12]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.11...v1.3.12
798
- [1.3.11]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.10...v1.3.11
799
- [1.3.10]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.9...v1.3.10
800
- [1.3.9]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v1.3.9
801
- [1.3.8]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.7...v1.3.8
802
- [1.3.7]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.6...v1.3.7
803
- [1.3.6]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.5...v1.3.6
804
- [1.3.5]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.4...v1.3.5
805
- [1.3.4]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.3...v1.3.4
806
- [1.3.3]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.2...v1.3.3
807
- [1.3.2]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.1...v1.3.2
808
- [1.3.1]: https://github.com/cucumber/cucumber-ruby/compare/v1.3.0...v1.3.1
809
- [1.3.0]: https://github.com/cucumber/cucumber-ruby/compare/v1.2.5...v1.3.0
810
- [1.2.5]: https://github.com/cucumber/cucumber-ruby/compare/v1.2.3...v1.2.5
811
- [1.2.3]: https://github.com/cucumber/cucumber-ruby/compare/v1.2.2...v1.2.3
812
- [1.2.2]: https://github.com/cucumber/cucumber-ruby/compare/v1.2.1...v1.2.2
813
- [1.2.1]: https://github.com/cucumber/cucumber-ruby/compare/v1.2.0...v1.2.1
814
- [1.2.0]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.9...v1.2.0
815
- [1.1.9]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.8...v1.1.9
816
- [1.1.8]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.7...v1.1.8
817
- [1.1.7]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.6...v1.1.7
818
- [1.1.6]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.5...v1.1.6
819
- [1.1.5]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.4...v1.1.5
820
- [1.1.4]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.3...v1.1.4
821
- [1.1.3]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.2...v1.1.3
822
- [1.1.2]: https://github.com/cucumber/cucumber-ruby/compare/v1.1.1...v1.1.2
823
- [1.1.0]: https://github.com/cucumber/cucumber-ruby/compare/v1.0.6...v1.1.0
824
- [1.0.6]: https://github.com/cucumber/cucumber-ruby/compare/v1.0.5...v1.0.6
825
- [1.0.5]: https://github.com/cucumber/cucumber-ruby/compare/v1.0.4...v1.0.5
826
- [1.0.4]: https://github.com/cucumber/cucumber-ruby/compare/v1.0.3...v1.0.4
827
- [1.0.3]: https://github.com/cucumber/cucumber-ruby/compare/v1.0.2...v1.0.3
828
- [1.0.2]: https://github.com/cucumber/cucumber-ruby/compare/v1.0.1...v1.0.2
829
- [1.0.1]: https://github.com/cucumber/cucumber-ruby/compare/v1.0.0...v1.0.1
830
- [1.0.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.10.6...v1.0.0
831
- [0.10.6]: https://github.com/cucumber/cucumber-ruby/compare/v0.10.5...v0.10.6
832
- [0.10.5]: https://github.com/cucumber/cucumber-ruby/compare/v0.10.3...v0.10.5
833
- [0.10.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.10.2...v0.10.3
834
- [0.10.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.10.1...v0.10.2
835
- [0.10.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.10.0...v0.10.1
836
- [0.10.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.9.4...v0.10.0
837
- [0.9.4]: https://github.com/cucumber/cucumber-ruby/compare/v0.9.3...v0.9.4
838
- [0.9.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.9.2...v0.9.3
839
- [0.9.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.9.1...v0.9.2
840
- [0.9.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.9.0...v0.9.1
841
- [0.9.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.8.5...v0.9.0
842
- [0.8.5]: https://github.com/cucumber/cucumber-ruby/compare/v0.8.4...v0.8.5
843
- [0.8.4]: https://github.com/cucumber/cucumber-ruby/compare/v0.8.3...v0.8.4
844
- [0.8.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.8.2...v0.8.3
845
- [0.8.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.8.1...v0.8.2
846
- [0.8.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.8.0...v0.8.1
847
- [0.8.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.3...v0.8.0
848
- [0.7.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.2...v0.7.3
849
- [0.7.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.1...v0.7.2
850
- [0.7.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0...v0.7.1
851
- [0.7.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.8...v0.7.0
852
- [0.7.0.beta.8]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.7...v0.7.0.beta.8
853
- [0.7.0.beta.7]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.6...v0.7.0.beta.7
854
- [0.7.0.beta.6]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.5...v0.7.0.beta.6
855
- [0.7.0.beta.5]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.4...v0.7.0.beta.5
856
- [0.7.0.beta.4]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.3...v0.7.0.beta.4
857
- [0.7.0.beta.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.2...v0.7.0.beta.3
858
- [0.7.0.beta.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.1...v0.7.0.beta.2
859
- [0.7.0.beta.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.6.4...v0.7.0.beta.1
860
- [0.6.4]: https://github.com/cucumber/cucumber-ruby/compare/v0.6.3...v0.6.4
861
- [0.6.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.6.2...v0.6.3
862
- [0.6.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.6.1...v0.6.2
863
- [0.6.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.6.0...v0.6.1
864
- [0.6.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.5.3...v0.6.0
865
- [0.5.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.5.2...v0.5.3
866
- [0.5.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.5.1...v0.5.2
867
- [0.5.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.5.0...v0.5.1
868
- [0.5.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.4.4...v0.5.0
869
- [0.4.4]: https://github.com/cucumber/cucumber-ruby/compare/v0.4.3...v0.4.4
870
- [0.4.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.4.2...v0.4.3
871
- [0.4.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.4.1...v0.4.2
872
- [0.4.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.4.0...v0.4.1
873
- [0.4.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.104...v0.4.0
874
- [0.3.104]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.103...v0.3.104
875
- [0.3.103]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.102...v0.3.103
876
- [0.3.102]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.101...v0.3.102
877
- [0.3.101]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.100...v0.3.101
878
- [0.3.100]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.99...v0.3.100
879
- [0.3.99]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.98...v0.3.99
880
- [0.3.98]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.97...v0.3.98
881
- [0.3.97]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.96...v0.3.97
882
- [0.3.96]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.95...v0.3.96
883
- [0.3.95]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.94...v0.3.95
884
- [0.3.94]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.93...v0.3.94
885
- [0.3.93]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.92...v0.3.93
886
- [0.3.92]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.91...v0.3.92
887
- [0.3.91]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.90...v0.3.91
888
- [0.3.90]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.11...v0.3.90
889
- [0.3.11]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.10...v0.3.11
890
- [0.3.10]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.9...v0.3.10
891
- [0.3.9]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.8...v0.3.9
892
- [0.3.8]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.7...v0.3.8
893
- [0.3.7]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.6...v0.3.7
894
- [0.3.6]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.5...v0.3.6
895
- [0.3.5]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.4...v0.3.5
896
- [0.3.4]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.3...v0.3.4
897
- [0.3.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.2...v0.3.3
898
- [0.3.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.1...v0.3.2
899
- [0.3.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.3.0...v0.3.1
900
- [0.3.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.2.3...v0.3.0
901
- [0.2.3]: https://github.com/cucumber/cucumber-ruby/compare/v0.2.2...v0.2.3
902
- [0.2.2]: https://github.com/cucumber/cucumber-ruby/compare/v0.2.1...v0.2.2
903
- [0.2.1]: https://github.com/cucumber/cucumber-ruby/compare/v0.2.0...v0.2.1
904
- [0.2.0]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.16...v0.2.0
905
- [0.1.16]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.15...v0.1.16
906
- [0.1.15]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.14...v0.1.15
907
- [0.1.14]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.13...v0.1.14
908
- [0.1.13]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.12...v0.1.13
909
- [0.1.12]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.11...v0.1.12
910
- [0.1.11]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.10...v0.1.11
911
- [0.1.10]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.9...v0.1.10
912
- [0.1.9]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.8...v0.1.9
913
- [0.1.8]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.7...v0.1.8
914
- [0.1.7]: https://github.com/cucumber/cucumber-ruby/compare/v0.1.6...v0.1.7
915
- [0.1.6]: https://github.com/cucumber/cucumber-ruby/compare/f3292f4023a707099d02602b2bd6c4ca3cec6820...v0.1.6
916
- y) to the installer message. Please take a few moments to help us all learn more about how you're using Cucumber and BDD.
917
-
918
- ### Bugfixes
919
-
920
- - Let the JSON formatter include data tables in the JSON file ([#948](https://github.com/cucumber/cucumber-ruby/issues/948) @brasmusson)
921
- - 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)
922
-
923
- ## [2.3.2](https://github.com/cucumber/cucumber-ruby/compare/v2.3.1...v2.3.2) (2016-01-21)
924
-
925
- Brought the event bus code back into Cucumber to avoid https://github.com/fedux-org/event-bus/issues/6
926
-
927
- ## [2.3.1](https://github.com/cucumber/cucumber-ruby/compare/v2.3.0...v2.3.1) (2016-01-20)
928
-
929
- Better deprecation warnings to help fix https://github.com/cucumber/cucumber-ruby/issues/942
930
-
931
- ## [2.3.0](https://github.com/cucumber/cucumber-ruby/compare/v2.2.0...v2.3.0) (2016-01-13)
932
-
933
- ### New Features
934
-
935
- - Update to Gherkin v3.2.0 (@brasmusson)
936
-
937
- ### Bugfixes
938
-
939
- ### Refactoring
940
-
941
- ## [2.2.0](https://github.com/cucumber/cucumber-ruby/compare/v2.1.0...v2.2.0) (2016-01-08)
942
-
943
- Although this release is only bugfixes and refactorings, the extraction of the wire protocol is quite a significant change and
944
- could cause breaking changes for users of undocumented APIs. Hence the minor version bump.
945
-
946
- ### Bugfixes
947
-
948
- - Let the formatters output the value of printed variables at time of the call to `#puts` ([#918](https://github.com/cucumber/cucumber-ruby/pull/918) [#915](https://github.com/cucumber/cucumber-ruby/issues/915) @enkessler @brasmusson)
949
- - Fix Configuration.with_options merge direction ([#922](https://github.com/cucumber/cucumber-ruby/pull/922) @limhoff-r7)
950
- - Consistent line breaks / truncation in backtraces ([#941](https://github.com/cucumber/cucumber-ruby/pull/941) @tooky)
951
- - Fix extra arg passed to ensure_io ([#939](https://github.com/cucumber/cucumber-ruby/pull/939A @benshan)
952
-
953
- ### Refactoring
954
-
955
- - Remove wire protocol to plugin ([#878](https://github.com/cucumber/cucumber-ruby/pull/878) @mattwynne @tooky)
956
- - Remove event bus to separate gem ([#933](https://github.com/cucumber/cucumber-ruby/pull/933) @dg-ratiodata)
957
-
958
- ## [2.1.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.2...v2.1.0) (2015-09-11)
959
-
960
- ### New Features
961
-
962
- - Introduce EventBus ([903](https://github.com/cucumber/cucumber-ruby/pull/903) @mattwynne @tooky)
963
- - Fail-fast CLI switch ([906](https://github.com/cucumber/cucumber-ruby/pull/906) @danascheider)
964
-
965
- ### Bugfixes
966
-
967
- - When only an around hook is failing, let the Json Formatter include the around hook result ([909](https://github.com/cucumber/cucumber-ruby/issues/909) @brasmusson).
968
-
969
- ### Refactoring
970
-
971
- - Coveralls badge switch to SVG ([897](https://github.com/cucumber/cucumber-ruby/pull/897) @nickmerwin)
972
- - Moved simplecov_setup into lib folder ([896](https://github.com/cucumber/cucumber-ruby/pull/896) @tboerger)
973
- - Pass DocString as String ([891](https://github.com/cucumber/cucumber-ruby/pull/891) @aslakhellesoy)
974
- - Remove core_ext/proc.rb and use Proc#source_location instead ([888](https://github.com/cucumber/cucumber-ruby/pull/888) @brasmusson)
975
- - Move behaviour from `Cucumber::Cli::Configuration` to `Cucumber::Configuration` (@tooky, @mattwynne)
976
- - Integrate Gherkin3 parser ([884](https://github.com/cucumber/cucumber-ruby/pull/884) (@brasmusson)
977
-
978
- ## [2.0.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.1...v2.0.2) (2015-07-15)
979
-
980
- ### Bugfixes
981
-
982
- - 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).
983
- - Calculate the locations of hooks properly (so it also work between drives on Windows) ([885](https://github.com/cucumber/cucumber-ruby/issues/885) @brasmusson).
984
-
985
- ## [2.0.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0...v2.0.1) (2015-07-08)
986
-
987
- ### New Features
988
-
989
- - Properly support symbol keys in table hashes ([840](https://github.com/cucumber/cucumber-ruby/issues/840) @dmorgan3405)
990
- - Default require path to features unless specified explicitly. ([842](https://github.com/cucumber/cucumber-ruby/issues/842) @pdswan)
991
- - Exit with different status codes when scenarios failed (1) vs when failed to run scenarios (2) ([#845](https://github.com/cucumber/cucumber-ruby/pull/845) @ciembor)
992
- - Expose #status on Cucumber::RunningTestCase ([#836](https://github.com/cucumber/cucumber-ruby/pull/846) [#836](https://github.com/cucumber/cucumber-ruby/issues/836) @pdswan)
993
- - New `--no-duration` flag on command-line ([#822](https://github.com/cucumber/cucumber-ruby/pull/822) @richarda)
994
- - Make the Rerun Formatter consistent with the exit code ([860](https://github.com/cucumber/cucumber-ruby/pull/860) @brasmusson)
995
- - Let the Json Formatter include results from all executed steps and hooks (and from Scenario Outlines also without the --expand option) ([851](https://github.com/cucumber/cucumber-ruby/pull/851) @brasmusson)
996
-
997
- ### Bugfixes
998
-
999
- - Pass tags and comments to the legacy api formatters correctly, fixes [864](https://github.com/cucumber/cucumber-ruby/pull/864) (@brasmusson).
1000
- - Properly close HTML formatter pre tag for leading comment ([828](https://github.com/cucumber/cucumber-ruby/issues/828), [854](https://github.com/cucumber/cucumber-ruby/pull/854) @pdswan)
1001
- - Make the HTML formatter handle failures in hooks ([835](https://github.com/cucumber/cucumber-ruby/issues/835) @brasmusson)
1002
- - Fix the check for multiple formatters using stdout ([826](https://github.com/cucumber/cucumber-ruby/pull/826) @brasmusson)
1003
- - Make background.feature available to formatters (backward compatibility with v1.3.x) (@brasmusson)
1004
- - Cucumber::Ast::Table.diff! is broken when using no headers ([832](https://github.com/cucumber/cucumber-ruby/pull/832) @roschaefer)
1005
- - `cucumber --i18n <invalid_language>` breaks ([#869](https://github.com/cucumber/cucumber-ruby/issues/869) (@danascheider)
1006
-
1007
- ### Refactoring
1008
-
1009
- - Rewrite the JUnit Formatter to the new formatter API ([855](https://github.com/cucumber/cucumber-ruby/pull/855) @brasmusson)
1010
- - Rewrite the Progress, Usage, Stepdefs formatters to the new formatter API ([859](https://github.com/cucumber/cucumber-ruby/pull/859) @brasmusson)
1011
-
1012
- ## [2.0.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.5...v2.0.0) (2015-03-31)
1013
-
1014
- ### New Features
1015
-
1016
- - Support ruby 2.2 in master (@mattwynne, @tooky)
1017
- - Tell users to use the `--init` command ([818](https://github.com/cucumber/cucumber-ruby/pull/818) @olleolleolle)
1018
-
1019
- ### Bugfixes
1020
-
1021
- - Ensure After Hooks execute in reverse order (@tooky)
1022
- - Make console output with embedded cr/lf look correct. ([820](https://github.com/cucumber/cucumber-ruby/pull/820) @SteveDonie)
1023
-
1024
- ## [2.0.0.rc5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.4...v2.0.0.rc.5) (2015-03-19)
1025
-
1026
- ### New Features
1027
-
1028
- - Add `--init` command ([699](https://github.com/cucumber/cucumber-ruby/pull/699) @LGordon2)
1029
-
1030
- ## Bugfixes
1031
-
1032
- - Let the JUnitFormatter handle Scenario Outlines with the --expand option ([124](https://github.com/cucumber/cucumber-ruby/issues/124), [808](https://github.com/cucumber/cucumber-ruby/pull/808) @brasmusson, @richarda)
1033
- - Suggested regexes result in ambigous matches ([663](https://github.com/cucumber/cucumber-ruby/pull/663) @rwz)
1034
- - Pass when using both the --dry-run and the --strict options, unless there are undefined steps ([810](https://github.com/cucumber/cucumber-ruby/issues/810) @brasmusson)
1035
- - Handle step output correctly for Scenario Outlines with the --expand option ([806](https://github.com/cucumber/cucumber-ruby/issues/806) @brasmusson)
1036
- - Fix GBK and UTF-8 (Encoding::CompatibilityError) ([693](https://github.com/cucumber/cucumber-ruby/issues/693) @mattwynne)
1037
- - Make the scenario object available in hooks compatible with v1.3.x ([814](https://github.com/cucumber/cucumber-ruby/pull/814) @brasmusson)
1038
- - JUnit expand option ([808](https://github.com/cucumber/cucumber-ruby/pull/808) @richarda @brasmusson)
1039
- - Around hooks not executing in correct world context ([807](https://github.com/cucumber/cucumber-ruby/pull/807) @tooky)
1040
-
1041
- ## [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)
1042
-
1043
- ### Features
1044
-
1045
- - [Add custom filters from Ruby configuration code](https://github.com/cucumber/cucumber-ruby/blob/main/features/docs/extending_cucumber/custom_filter.feature) (@mattwynne)
1046
-
1047
- ### Bugfixes
1048
-
1049
- - Fix missing `require Forwardable` (@tooky)
1050
- - Fix snippet suggestions ([765](https://github.com/cucumber/cucumber-ruby/pull/765) @richarda), also with i18n languages (@brasmusson)
1051
- - Fix transformation of regex with lookahead/lookbehind ([796](https://github.com/cucumber/cucumber-ruby/pull/796) @bolshakov)
1052
- - Sort scenarios by location ([789](https://github.com/cucumber/cucumber-ruby/issues/789) @mattwynne)
1053
- - Remove keyword from name property of test case object yielded to hooks ([768](https://github.com/cucumber/cucumber-ruby/issues/768) @richarda, @akostadinov)
1054
-
1055
- ## [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)
1056
-
1057
- ### Bugfixes
1058
-
1059
- - MultilineArgument::DataTable#diff will correctly compare to an Array (@tooky)
1060
-
1061
- ## [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)
1062
-
1063
- ### Bugfixes
1064
-
1065
- - World#table no longer creates invalid table objects when using an Array (@tooky, @mattwynne)
1066
-
1067
- ## [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)
1068
-
1069
- ### Removed Features
1070
-
1071
- - Removed support for IronRuby (@tooky @mattwynne)
1072
-
1073
- ### New Features
1074
-
1075
- - Let the HTML formatter store the relative path to files in the report ([697](https://github.com/cucumber/cucumber-ruby/pull/697) @idstein, @brasmusson)
1076
- - Allow cucumber.yml to parse % erb code lines ([755](https://github.com/cucumber/cucumber-ruby/pull/755) @snowe2010)
1077
- - Give each step definition a unique copy of argument objects ([760](https://github.com/cucumber/cucumber-ruby/pull/760) @tooky)
1078
-
1079
- ### Bugfixes
1080
-
1081
- - Add old Scenario#skip_invoke! method back (@mattwynne)
1082
- - No links to lines in backtrace under TextMate ([548](https://github.com/cucumber/cucumber-ruby/pull/548) @bilus)
1083
- - Using file:line CLI to select scenarios was running same scenario multiple times ([786](https://github.com/cucumber/cucumber-ruby/pull/786) @jdks)
1084
- - Allow spaces in filenames for rerun formatter ([793](https://github.com/cucumber/cucumber-ruby/pull/793) @callahat)
1085
-
1086
- ## [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)
1087
-
1088
- - Depend on the correct version of core (@tooky)
1089
-
1090
- ## [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)
1091
-
1092
- ### New Features
1093
-
1094
- - Support both new and legacy formatter APIs simultaneously (@mattwynne and @tooky)
1095
-
1096
- ### Bugfixes
1097
-
1098
- - Localize the Scenario keyword with the --expand option ([766](https://github.com/cucumber/cucumber-ruby/pull/766) @brasmusson)
1099
- - Handle hook output appropriately in the HTML formatter ([746](https://github.com/cucumber/cucumber-ruby/pull/746), [731](https://github.com/cucumber/cucumber-ruby/issues/731), [298](https://github.com/cucumber/cucumber-ruby/pull/298) @brasmusson)
1100
- - Handle hook output appropriately in the Pretty formatter ([738](https://github.com/cucumber/cucumber-ruby/pull/738) @brasmusson)
1101
-
1102
- ### Internal changes
1103
-
1104
- - Re-write rerun formatter against new formatter API
1105
-
1106
- ## [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)
1107
-
1108
- ### Removed Features
1109
-
1110
- - The `--dotcucumber` option is no longer supported and `stepdefs.json` is no longer written. (Aslak Hellesøy)
1111
-
1112
- ### New Features
1113
-
1114
- - Include both outline step and expanded step in error backtrace ([730](https://github.com/cucumber/cucumber-ruby/pull/730) @brasmusson)
1115
- - Add TestCase#outline? for conditionals in Before / After hooks ([728](https://github.com/cucumber/cucumber-ruby/pull/728) [Erran Carey](https://github.com/erran))
1116
- - Support embedding images directly in HTML and JSON reports ([696](https://github.com/cucumber/cucumber-ruby/pull/696),[695](https://github.com/cucumber/cucumber-ruby/pull/695/files) @brasmusson)
1117
-
1118
- ### Bugfixes
1119
-
1120
- - Pass hook output to the formatters appropriately ([732](https://github.com/cucumber/cucumber-ruby/pull/732) @brasmusson)
1121
- - Added tests for, and re-added behaviour to support Scenario#failed? in hooks (Matt Wynne)
1122
- - Rescuing ArgumentError in HTML formatter so Cucumber won't stop tests due bad encoding ([690](https://github.com/cucumber/cucumber-ruby/pull/690) @awls99)
1123
- - Add back support for the DataTable API ([729](https://github.com/cucumber/cucumber-ruby/pull/729) @mattwynne and @tooky)
1124
- - Fix Windows support loading files properly ([739](https://github.com/cucumber/cucumber-ruby/issues/739) @os97673)
1125
-
1126
- ## [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)
1127
-
1128
- ### Bugfixes
1129
-
1130
- - Better reporting of exceptions in Before / After hooks ([723](https://github.com/cucumber/cucumber-ruby/pull/723) @mattwynne)
1131
- - Add `#source_tag_names` method to `TestCase` object passed to hooks (@mattwynne)
1132
-
1133
- ## [2.0.0.beta.1 ](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v2.0.0.beta.1) (2014-08-22)
1134
-
1135
- Version 2.0 contains a major internal redesign, extracting the core logic of
1136
- parsing and executing tests into a [separate gem](https://github.com/cucumber/cucumber-ruby-ruby-core).
1137
-
1138
- Although we've tried to keep the API and behaviour consistent through this change,
1139
- there are bound to be differences our tests haven't picked up. We're still working through
1140
- a backlog of scenarios that are not yet passing. Run `cucumber -p wip` to see them
1141
- all.
1142
-
1143
- ### New features
1144
-
1145
- - Better snippet comment ([579](https://github.com/cucumber/cucumber-ruby/pull/579) Jeff Nyman)
1146
- - Random scenario ordering with `--order random`
1147
- - Embed plain text ([712](https://github.com/cucumber/cucumber-ruby/pull/712) @bingwei)
1148
- - Support the cucumber-reporting tools also when using Scenario Outlines ([700](https://github.com/cucumber/cucumber-ruby/pull/700) @brasmusson)
1149
-
1150
- ### Features removed
1151
-
1152
- - Removed deprecated StepMother and Ast::Visitor classes (Matt Wynne)
1153
- - Remove support for i18n nested step methods (Matt Wynne)
1154
- - Remove experimental .js and .py support (Matt Wynne)
1155
- - Remove Ruby 1.8.7 support, including RCov
1156
- - Spork support
1157
-
1158
- ### API Changes
1159
-
1160
- - String arguments passed to step definitions are immutable (frozen). This is
1161
- to prevent garbled output in case an argument gets modified. If you need to
1162
- modify an argument, `dup` it first. (Aslak Hellesøy)
1163
-
1164
- ### Minor changes
1165
-
1166
- - Greek examples added ([497](https://github.com/cucumber/cucumber-ruby/issues/497) @rousisk)
1167
-
1168
- ## [1.3.16](https://github.com/cucumber/cucumber-ruby/compare/v1.3.15...v1.3.16) (2014-07-28)
1169
-
1170
- - Pass output from the step definition on to the JSON formatter ([701](https://github.com/cucumber/cucumber-ruby/pull/701) @brasmusson)
1171
- - Add RSpec 3 test double support ([689](https://github.com/cucumber/cucumber-ruby/pull/689) @cyphactor)
1172
- - Fix bug with rerun formatter and `--expand` option ([710](https://github.com/cucumber/cucumber-ruby/pull/710) @brasmusson)
1173
-
1174
- ## [1.3.15](https://github.com/cucumber/cucumber-ruby/compare/v1.3.14...v1.3.15) (2014-05-09)
1175
-
1176
- - Fixed intermittent ConcurrencyError seen in JRuby
1177
- ([671](https://github.com/cucumber/cucumber-ruby/issues/670) @cbusbey)
1178
-
1179
- ## [1.3.14](https://github.com/cucumber/cucumber-ruby/compare/v1.3.13...v1.3.14) (2014-03-28)
1180
-
1181
- - Rerun formatter includes all scenarios when the background fails
1182
- ([660](https://github.com/cucumber/cucumber-ruby/issues/660),
1183
- [661](https://github.com/cucumber/cucumber-ruby/pull/661) @brasmusson)
1184
-
1185
- ## [1.3.13](https://github.com/cucumber/cucumber-ruby/compare/v1.3.12...v1.3.13) (2014-03-25)
1186
-
1187
- - Rerun formatter includes all scenarios when the background fails
1188
- ([654](https://github.com/cucumber/cucumber-ruby/pull/654) @brasmusson)
1189
-
1190
- ## [1.3.12](https://github.com/cucumber/cucumber-ruby/compare/v1.3.11...v1.3.12) (2014-03-16)
1191
-
1192
- - Use MultiTest to handle assertions library selection (@tooky)
1193
- - Adds full support for rails 4.1 / Minitest
1194
-
1195
- ## [1.3.11](https://github.com/cucumber/cucumber-ruby/compare/v1.3.10...v1.3.11) (2014-03-02)
1196
-
1197
- - Add Ruby 2.1 Support ([#644](https://github.com/cucumber/cucumber-ruby/pull/644) @tooky, @chrismdp)
1198
-
1199
- ## [1.3.10](https://github.com/cucumber/cucumber-ruby/compare/v1.3.9...v1.3.10) (2013-11-16)
1200
-
1201
- - Fixed "nil:NilClass (NoMethodError)" problem for auto-formatting ([599](https://github.com/cucumber/cucumber-ruby/pull/599) @jmcaffee)
1202
-
1203
- ## [1.3.9](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v1.3.9) (2013-11-06)
1204
-
1205
- - Disable minitest autorun after loading support files (@tooky)
1206
- - Add `Ast::Table#map_column` for non-mutating column mapping (@tooky)
1207
- - Remove deprecation warnings on `Ast::Table` (@tooky)
1208
- - Fixed ArgumentError for NoStepMatch#format_args ([587](https://github.com/cucumber/cucumber-ruby/pull/587) @jshraibman-mdsol)
1209
-
1210
- ## [1.3.8](https://github.com/cucumber/cucumber-ruby/compare/v1.3.7...v1.3.8) (2013-09-10)
1211
-
1212
- - Make the MultiJson dependency less restrictive (@tooky)
1213
-
1214
- ## [1.3.7](https://github.com/cucumber/cucumber-ruby/compare/v1.3.6...v1.3.7) (2013-09-06)
1215
-
1216
- - Fixed incorrect html formatter behaviour when background step fails
1217
- ([520](https://github.com/cucumber/cucumber-ruby/issues/520),
1218
- [521](https://github.com/cucumber/cucumber-ruby/issues/521) @mlex)
1219
-
1220
- - Fixed problem with printing badly formatted backtrace for failed background
1221
- ([522](https://github.com/cucumber/cucumber-ruby/issues/522),
1222
- [523](https://github.com/cucumber/cucumber-ruby/issues/523) @mlex)
1223
-
1224
- - required Gherkin version bumped to 2.12.1
1225
-
1226
- - All mutating methods of AST::Table deprecated
1227
- ([505](https://github.com/cucumber/cucumber-ruby/issues/505),
1228
- [525](https://github.com/cucumber/cucumber-ruby/issues/525) @adbatista)
1229
-
1230
- - AST::Table#map_headers doesn't use #map_headers! anymore
1231
- ([505](https://github.com/cucumber/cucumber-ruby/issues/528) @adbatista)
1232
-
1233
- ## [1.3.6](https://github.com/cucumber/cucumber-ruby/compare/v1.3.5...v1.3.6) (2013-08-09)
1234
-
1235
- - Html formatter fixed to not mark passes scenarios with tables as pending
1236
- ([493](https://github.com/cucumber/cucumber-ruby/issues/493) Oleg Sukhodolsky)
1237
-
1238
- ## [1.3.5](https://github.com/cucumber/cucumber-ruby/compare/v1.3.4...v1.3.5) (2013-07-19)
1239
-
1240
- - Fix Rails 4 Minitest autorun problems. ([501](https://github.com/cucumber/cucumber-ruby/issues/501) @mattwynne)
1241
-
1242
- ## [1.3.4](https://github.com/cucumber/cucumber-ruby/compare/v1.3.3...v1.3.4) (2013-07-12)
1243
-
1244
- - JUnit formatter fixed to report skipped scenarios correctly ([496](https://github.com/cucumber/cucumber-ruby/issues/496) @ambirag)
1245
-
1246
- ## [1.3.3](https://github.com/cucumber/cucumber-ruby/compare/v1.3.2...v1.3.3) (2013-07-07)
1247
-
1248
- - Fix compatability with MiniTest 5.0 ([#456](https://github.com/cucumber/cucumber-ruby/issues/456) Matt Wynne)
1249
- - Warn that Spork support is broken (Steve Tooke)
1250
- - Fix error with Ruby 2.0.0 and `Cucumber::RUBY_1_8_7`
1251
- ([#492](https://github.com/cucumber/cucumber-ruby/issues/492) Matt Wynne)
1252
- - Use new Rubygems API to look for bundler ([#448](https://github.com/cucumber/cucumber-ruby/issues/448) Matt Wynne)
1253
-
1254
- ## [1.3.2](https://github.com/cucumber/cucumber-ruby/compare/v1.3.1...v1.3.2) (2013-05-22)
1255
-
1256
- ### Bugfixes
1257
-
1258
- - Fixed ugly NoMethodError when a Scenario Outline has no Examples
1259
- ([#438](https://github.com/cucumber/cucumber-ruby/issues/438) Steve Tooke)
1260
-
1261
- ## [1.3.1](https://github.com/cucumber/cucumber-ruby/compare/v1.3.0...v1.3.1) (2013-04-21)
1262
-
1263
- ### Bugfixes
1264
-
1265
- - Fixed typo which breaks unicode.rb on Windows (Oleg Sukhodolsky)
1266
-
1267
- ## [1.3.0](https://github.com/cucumber/cucumber-ruby/compare/v1.2.5...v1.3.0) (2013-04-21)
1268
-
1269
- ### New Features
1270
-
1271
- - Faster features, thanks to in-process Aruba. (Aslak Hellesøy)
1272
- - Add lib to default load path
1273
- ([#162](https://github.com/cucumber/cucumber-ruby/issues/162) Steve Tooke)
1274
- - Add snippet type to support different type of ruby snippets.
1275
- ([#390](https://github.com/cucumber/cucumber-ruby/pull/390) Roel van Dijk)
1276
- - Call nested steps using any language keywords ([#433](https://github.com/cucumber/cucumber-ruby/pull/433) Tomohiko Himura)
1277
-
1278
- ### Bugfixes
1279
-
1280
- - Update watir example ([#427](https://github.com/cucumber/cucumber-ruby/issues/427)) Luiz Guilherme D'Abruzzo Pereira
1281
- - Ensure that cucumber.yml is only parsed once ([#416](https://github.com/cucumber/cucumber-ruby/issues/416)) Steve Tooke
1282
- - Improve rake task report on failure ([#400](https://github.com/cucumber/cucumber-ruby/issues/400) Andrey Vakarev
1283
- - Show details of nested steps in backtraces
1284
- ([#69](https://github.com/cucumber/cucumber-ruby/issues/69)) Steve Tooke
1285
- - Filter out control characters from CDATA section of JUnit formatter output.
1286
- ([#383](https://github.com/cucumber/cucumber-ruby/issues/383) @teacup-on-rockingchair)
1287
- - Fix problem with non-ascii characters in file path
1288
- ([#150](https://github.com/cucumber/cucumber-ruby/issues/150) Oleg Sukhodolsky)
1289
- - Fix problem loading ruby files in project root directory
1290
- ([#269](https://github.com/cucumber/cucumber-ruby/issues/269) Steve Tooke)
1291
- - Fix JsonPretty formatter problem
1292
- ([#197](https://github.com/cucumber/cucumber-ruby/issues/197) Oleg Sukhodolsky)
1293
- - Don't display multi-line strings when --no-multiline is passed
1294
- ([#201](https://github.com/cucumber/cucumber-ruby/issues/201) David Kowis)
1295
- - Moved the profile information output to a callback of the formatter
1296
- ([#175](https://github.com/cucumber/cucumber-ruby/issues/175) David Kowis)
1297
- - Fix html formatter to not mark skipped/unimplemented steps as failed
1298
- ([#337](https://github.com/cucumber/cucumber-ruby/issues/337) Oleg Sukhodolsky)
1299
- - Allow duplication for format+output pair in command line
1300
- ([#434](https://github.com/cucumber/cucumber-ruby/issues/434) David Lantos)
1301
- - Better delegation to IO in Cucumber::Formatter::Interceptor::Pipe
1302
- ([#312](https://github.com/cucumber/cucumber-ruby/issues/312) Oleg Sukhodolsky)
1303
-
1304
- ## [1.2.5](https://github.com/cucumber/cucumber-ruby/compare/v1.2.3...v1.2.5) (2013-04-08)
1305
-
1306
- - Upgrade Gherkin version to remove warnings when running on JRuby. ([#393](https://github.com/cucumber/cucumber-ruby/issues/393) Oleg Sukhodolsky)
1307
- - Do not use TagExpression.eval() which is deprecated in Gherkin 2.11.7 ([#420](https://github.com/cucumber/cucumber-ruby/issues/420) Oleg Sukhodolsky)
1308
-
1309
- ## 1.2.4 (2013-04-07)
1310
-
1311
- Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1312
-
1313
- ## [1.2.3](https://github.com/cucumber/cucumber-ruby/compare/v1.2.2...v1.2.3) (2013-03-07)
1314
-
1315
- ### Bugfixes
1316
-
1317
- - 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)
1318
- - Fix embedding images in json ([#315](https://github.com/cucumber/cucumber-ruby/issues/315) Oleg Sukhodolsky)
1319
-
1320
- ## [1.2.2](https://github.com/cucumber/cucumber-ruby/compare/v1.2.1...v1.2.2) (2013-03-02)
1321
-
1322
- ### New Features
1323
-
1324
- - Ruby 2.0.0 support ([#377](https://github.com/cucumber/cucumber-ruby/issues/377) Matt Wynne & [#357](https://github.com/cucumber/cucumber-ruby/issues/357) @charliesome)
1325
- - Capture duration value for json formatter ([#329](https://github.com/cucumber/cucumber-ruby/issues/329) Rick Beyer)
1326
- - Added support for Hindi (hi), although some systems may need to install fonts which support the Devanagari script.
1327
- - Obey program suffix when invoking bundler ([#324](https://github.com/cucumber/cucumber-ruby/issues/324) Eric Hodel)
1328
-
1329
- ### Bugfixes
1330
-
1331
- - Fix class loading problems --format option had ([#345](https://github.com/cucumber/cucumber-ruby/issues/345), [#346](https://github.com/cucumber/cucumber-ruby/issues/346) @ksylvest)
1332
- - Exit with failure status when interrupted ([#299](https://github.com/cucumber/cucumber-ruby/issues/299) @aaronjensen)
1333
- - Cannot map table headers after table hashes is referenced ([#275](https://github.com/cucumber/cucumber-ruby/issues/275) @chrisbloom7 / Matt Wynne)
1334
- - (before|after)\_step aren't called when scenario outline's table is processed ([#284](https://github.com/cucumber/cucumber-ruby/issues/284) Oleg Sukhodolsky)
1335
- - Raise exception when remote socket end disconnects using wire protocol ([#348](https://github.com/cucumber/cucumber-ruby/issues/348) @rdammkoehler)
1336
- - Fix --dry-run option ignored when set via profile ([#248](https://github.com/cucumber/cucumber-ruby/issues/248) / [#255](https://github.com/cucumber/cucumber-ruby/issues/255) Igor Afonov)
1337
- - More clear suggested ruby code for undefined steps ([#328](https://github.com/cucumber/cucumber-ruby/issues/328) / [#331](https://github.com/cucumber/cucumber-ruby/issues/331) @martco)
1338
- - Fix exception in Html formatter with --expand mode and undefined steps ([#336](https://github.com/cucumber/cucumber-ruby/issues/336) Roberto Decurnex)
1339
- - Fix Table.diff! problem with :surplus_row => false and interleaved surplus rows ([#220](https://github.com/cucumber/cucumber-ruby/issues/220))
1340
-
1341
- ## [1.2.1](https://github.com/cucumber/cucumber-ruby/compare/v1.2.0...v1.2.1) (2012-06-09)
1342
-
1343
- ### New Features
1344
-
1345
- - Updated to gherkin 2.11.0. (Aslak Hellesøy)
1346
-
1347
- ## [1.2.0](https://github.com/cucumber/cucumber-ruby/compare/v1.1.9...v1.2.0) (2012-05-07)
1348
-
1349
- ### Bugfixes
1350
-
1351
- - Fix backtraces in JRuby ([#266](https://github.com/cucumber/cucumber-ruby/issues/266) Andrew Kiellor)
1352
-
1353
- ### New Features
1354
-
1355
- - Extracted the PDF formatter into a separate gem. ([#241](https://github.com/cucumber/cucumber-ruby/issues/241) Matt Wynne)
1356
- - Remove dependency on term/ansicolor ([#43](https://github.com/cucumber/cucumber-ruby/issues/43) Joe Fiorini)
1357
- - Methods for Step Definitions ([#168](https://github.com/cucumber/cucumber-ruby/issues/168) Giles Alexander)
1358
- - Add file:line to step events in formatter API ([#181](https://github.com/cucumber/cucumber-ruby/issues/181) Roman Chernyatchik)
1359
- - Collapsible backgrounds in HTML formatter ([#182](https://github.com/cucumber/cucumber-ruby/issues/182) Niklas H)
1360
- - Slightly cleaner regexp suggestions ([#237](https://github.com/cucumber/cucumber-ruby/issues/237) meyering)
1361
- - Allow for --no-drb command-line option ([#252](https://github.com/cucumber/cucumber-ruby/issues/252) Chase Stubblefield)
1362
- - Add misplaced_col option when diffing tables ([#212](https://github.com/cucumber/cucumber-ruby/issues/212) Steve Richert)
1363
- - JUnit formatter, classname contains only the feature's name ([#193](https://github.com/cucumber/cucumber-ruby/issues/193) @litvinok)
1364
- - Include the output $stderr and $stdout in JUnit formatted XML ([#259](https://github.com/cucumber/cucumber-ruby/issues/259) R. Tyler Croy)
1365
-
1366
- ## [1.1.9](https://github.com/cucumber/cucumber-ruby/compare/v1.1.8...v1.1.9) (2012-02-22)
1367
-
1368
- ### Bugfixes
1369
-
1370
- - Removed deprecation warning for `source_tag_names`. It's not deprecated anymore. (Aslak Hellesøy)
1371
-
1372
- ## [1.1.8](https://github.com/cucumber/cucumber-ruby/compare/v1.1.7...v1.1.8) (2012-02-19)
1373
-
1374
- ### Bugfixes
1375
-
1376
- - Column mapping dangerously applied twice to the same cell! ([#202](https://github.com/cucumber/cucumber-ruby/issues/202), [#208](https://github.com/cucumber/cucumber-ruby/pull/208) Brian Dunn)
1377
-
1378
- ### New Features
1379
-
1380
- - 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)
1381
-
1382
- ## [1.1.7](https://github.com/cucumber/cucumber-ruby/compare/v1.1.6...v1.1.7) (2012-02-19)
1383
-
1384
- ### Bugfixes
1385
-
1386
- - Finish off backwards compatability fix for Capybara ([#229](https://github.com/cucumber/cucumber-ruby/pull/229) Cezary Baginski)
1387
-
1388
- ## [1.1.6](https://github.com/cucumber/cucumber-ruby/compare/v1.1.5...v1.1.6) (2012-02-18)
1389
-
1390
- ### New features
1391
-
1392
- - Added `file_colon_line` to `stepdefs.json` (outputted by `--dotcucumber`). ([#214](https://github.com/cucumber/cucumber-ruby/pull/214) MOROHASHI Kyosuke)
1393
-
1394
- ### Bugfixes
1395
-
1396
- - Release 1.1.5 unintentionally broke backwards compatibility in some APIs we hadn't considered were used outside of cucumber.
1397
- Well, it was, in the popular Capybara browser automation tool, so we added back the API we removed. See the history for details. (Aslak Hellesøy)
1398
- - After some infantile bickering about a trivial bug that any hipster startup ruby programmer could have circumvented by using a fork with a fix,
1399
- 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)
1400
-
1401
- ## [1.1.5](https://github.com/cucumber/cucumber-ruby/compare/v1.1.4...v1.1.5) (2012-02-17)
1402
-
1403
- ### New Features
1404
-
1405
- - Upgraded to gherkin 2.8.0 (Aslak Hellesøy)
1406
-
1407
- ### Bugfixes
1408
-
1409
- - Background fails, but build succeeds ([#205](https://github.com/cucumber/cucumber-ruby/issues/205) tcwitte)
1410
-
1411
- ## [1.1.4](https://github.com/cucumber/cucumber-ruby/compare/v1.1.3...v1.1.4) (2011-12-10)
1412
-
1413
- ### New Features
1414
-
1415
- - Upgrade to Gherkin 2.7.1 (Aslak Hellesøy)
1416
-
1417
- ## [1.1.3](https://github.com/cucumber/cucumber-ruby/compare/v1.1.2...v1.1.3) (2011-11-22)
1418
-
1419
- ### New Features
1420
-
1421
- - Generate stepdef metadata with --dotcucumber. Useful for Cukepatch. (Aslak Hellesøy)
1422
- - Show class name of exceptions in the HTML formatter ([#159](https://github.com/cucumber/cucumber-ruby/pull/159) Jari Bakken)
1423
- - Deferred table header and column mappings ([#163](https://github.com/cucumber/cucumber-ruby/pull/163) Richard Lawrence)
1424
-
1425
- ### Bugfixes
1426
-
1427
- - Escape exceptions in HTML formatter ([#178](https://github.com/cucumber/cucumber-ruby/pull/178) leachdaniel)
1428
- - Retry when feature_element returns failed ([#172](https://github.com/cucumber/cucumber-ruby/pull/172) Charles Finkel)
1429
- - Rerun formatter output does not include failing scenario outline examples ([#57](https://github.com/cucumber/cucumber-ruby/issues/57) Jan Brauer)
1430
-
1431
- ## [1.1.2](https://github.com/cucumber/cucumber-ruby/compare/v1.1.1...v1.1.2) (2011-11-09)
1432
-
1433
- ### Changed features
1434
-
1435
- - Break long lines in output. Only needed for better output formatting in the Cucumber Book! (Aslak Hellesøy)
1436
-
1437
- ### Changed features
1438
-
1439
- - Deprecated i18n methods in World, and added a new #step method to use instead. ([#68](https://github.com/cucumber/cucumber-ruby/issues/68) Matt Wynne)
1440
- - The JSON formatter output has changed slightly. Old format:
1441
-
1442
- {
1443
- features: [feature here]
1444
- }
1445
-
1446
- New format:
1447
-
1448
- [feature here]
1449
-
1450
- 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.
1451
-
1452
- ## [1.1.0](https://github.com/cucumber/cucumber-ruby/compare/v1.0.6...v1.1.0) (2011-09-22)
1453
-
1454
- ### Changed features
1455
-
1456
- - The JSON formatter output has changed. See [Gherkin 2.5.0 History](https://github.com/cucumber/gherkin/blob/master/CHANGELOG.md) (Aslak Hellesøy)
1457
-
1458
- ## [1.0.6](https://github.com/cucumber/cucumber-ruby/compare/v1.0.5...v1.0.6) (2011-09-13)
1459
-
1460
- ### Bugfixes
1461
-
1462
- - Work around rubygems/yaml utter retardedness ([#136](https://github.com/cucumber/cucumber-ruby/issues/136) Aslak Hellesøy)
1463
-
1464
- ## [1.0.5](https://github.com/cucumber/cucumber-ruby/compare/v1.0.4...v1.0.5) (2011-09-13)
1465
-
1466
- ### Bugfixes
1467
-
1468
- - 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)
1469
-
1470
- ## [1.0.4](https://github.com/cucumber/cucumber-ruby/compare/v1.0.3...v1.0.4) (2011-09-11)
1471
-
1472
- ### Bugfixes
1473
-
1474
- - Guard against the require succeeding, but not properly loading a module. ([#93](https://github.com/cucumber/cucumber-ruby/pull/93) Christopher Meiklejohn)
1475
- - Cmdline arguments parsing error if --drb is enabled. ([#117](https://github.com/cucumber/cucumber-ruby/issues/117) Roman Chernyatchik)
1476
- - Replace capturing groups with non-capturing in RbTransform#to_s ([#106](https://github.com/cucumber/cucumber-ruby/pull/106) Thomas Walpole)
1477
- - Patched unmatched message in HTML formatter. (Nikita)
1478
- - Overriding a method that causes a NoMethodError when a Before hook is called on a feature run that has no scenarios. (ccthiel)
1479
-
1480
- ## [1.0.3](https://github.com/cucumber/cucumber-ruby/compare/v1.0.2...v1.0.3) (2011-09-07)
1481
-
1482
- ### Bugfixes
1483
-
1484
- - Do not escape the replaced entity ([#126](https://github.com/cucumber/cucumber-ruby/pull/126) Jonathan Tron)
1485
-
1486
- ### New Features
1487
-
1488
- - DocStrings now have a content_type ([#132](https://github.com/cucumber/cucumber-ruby/issues/132) Matt Wynne)
1489
-
1490
- ## [1.0.2](https://github.com/cucumber/cucumber-ruby/compare/v1.0.1...v1.0.2) (2011-07-17)
1491
-
1492
- ### Bugfixes
1493
-
1494
- - Cucumber 1.0.1 breaks cuke4duke ([#104](https://github.com/cucumber/cucumber-ruby/issues/104) Aslak Hellesøy)
1495
-
1496
- ### New Features
1497
-
1498
- - Better line truncation if $CUCUMBER_TRUNCATE_OUTPUT has a max line length value. (Aslak Hellesøy)
1499
-
1500
- ### Changes Features
1501
-
1502
- - --no-source also excludes location from the summary. (Aslak Hellesøy)
1503
-
1504
- ## [1.0.1](https://github.com/cucumber/cucumber-ruby/compare/v1.0.0...v1.0.1) (2011-07-10)
1505
-
1506
- ### Bugfixes
1507
-
1508
- - Removed extra colons emitted by rerun formatter ([#99](https://github.com/cucumber/cucumber-ruby/pull/99) Juan Manuel Barreneche)
1509
- - cucumber 1.0.0 wrong number of arguments error when generating json format on jruby for windows ([#97](https://github.com/cucumber/cucumber-ruby/issues/97) (Aslak Hellesøy)
1510
- - Recent change to junit.rb breaks on Windows ([#81](https://github.com/cucumber/cucumber-ruby/issues/81), [#86](https://github.com/cucumber/cucumber-ruby/pull/86) Johnlon, Aslak Hellesøy)
1511
- - Cucumber fails on nil and does not print out failed tests ([#95](https://github.com/cucumber/cucumber-ruby/pull/95) Nikita)
1512
- - Javascript code is not being displayed in HTML output ([#58](https://github.com/cucumber/cucumber-ruby/issues/58) Aslak Hellesøy)
1513
-
1514
- ### New Features
1515
-
1516
- - If the CUCUMBER_TRUNCATE_OUTPUT environment variable is set, lines will be truncated. Used by the Cucumber book. (Aslak Hellesøy)
1517
-
1518
- ## [1.0.0](https://github.com/cucumber/cucumber-ruby/compare/v0.10.6...v1.0.0) (2011-06-20)
1519
-
1520
- Yipeeeeeeeee!
1521
-
1522
- ### New Features
1523
-
1524
- - Use Rake 1.9.2 for development (Aslak Hellesøy)
1525
- - Rake task exits with an error if rcov is true and we're on Ruby 1.9.x (Aslak Hellesøy)
1526
- - Started implementation of cucumber-features (Mike Sassak, Julien Biezemans, Aslak Hellesøy)
1527
-
1528
- ## [0.10.6](https://github.com/cucumber/cucumber-ruby/compare/v0.10.5...v0.10.6) (2011-06-07)
1529
-
1530
- ### New Features
1531
-
1532
- - API docs at http://cukes.info/cucumber/api/ruby/latest/
1533
-
1534
- ### Bugfixes
1535
-
1536
- - Fixed a regression in the HTML formatter's #embed implementation (#77 Aslak Hellesøy)
1537
-
1538
- ## [0.10.5](https://github.com/cucumber/cucumber-ruby/compare/v0.10.3...v0.10.5) (2011-06-05)
1539
-
1540
- (0.10.4 was forgotten!)
1541
-
1542
- ### Changed features
1543
-
1544
- - The announce method is deprecated. Use puts instead (#67 Aslak Hellesøy)
1545
- - The announce_world method is gone. Use puts(self) instead (#67 Aslak Hellesøy)
1546
-
1547
- ### New Features
1548
-
1549
- - Better JUnit formatter support for sub directories and scenario outlines (#59, #61, #62 Matt Simpson, Kenny Ortmann)
1550
-
1551
- ### Bugfixes
1552
-
1553
- - Fix for Gem.available? deprecation warning (#75 Jake Benilov)
1554
- - Update URLs to reflect Cucumber's new location on Github (Jake Benilov)
1555
-
1556
- ## [0.10.3](https://github.com/cucumber/cucumber-ruby/compare/v0.10.2...v0.10.3) (2011-05-23)
1557
-
1558
- ### New Features
1559
-
1560
- - Better JUnit formatter support for sub directories and scenario outlines (#59 Matt Simpson)
1561
- - Coloured output that spans several lines sets colours for each line. (Aslak Hellesøy)
1562
- - New bundler attribute on the Rake task, allowing faster execution. (Aslak Hellesøy)
1563
- - Fix Table#rows cell ordering in ruby 1.8. (#47_github Brian Dunn)
1564
- - JUnit Formatter: record skipped/pending/undefined scenario results (#655 meeee)
1565
-
1566
- ## [0.10.2](https://github.com/cucumber/cucumber-ruby/compare/v0.10.1...v0.10.2) (2011-03-20)
1567
-
1568
- ### Bugfixes
1569
-
1570
- - Neuter both MiniTest::Unit and Test::Unit's overzealous test runners. (Aslak Hellesøy)
1571
-
1572
- ## [0.10.1](https://github.com/cucumber/cucumber-ruby/compare/v0.10.0...v0.10.1) (2011-03-20)
1573
-
1574
- ### New Features
1575
-
1576
- - The #embed method can take a 3rd optional label argument. In the HTML report that's used for the link title. (Pat Leamon)
1577
- - Render .wire files through ERB (Kevin Olbrich)
1578
- - Happy coexistence with Rake 0.9 (Cezary Baginski)
1579
- - Add -l, --lines option just like rspec's (Gabriel Horner)
1580
- - Support for named transforms. See features/transforms.feature (Matt Wynne)
1581
- - Experimental support for non-UTF-8 encoding in feature files. A "# encoding=iso-8859-1" header (or any other encoding)
1582
- in the file will read the file in with that encoding and convert it to UTF-8 before it's parsed with gherkin.
1583
- Step definition arguments will be passed in UTF-8 encoded strings regardless of the encoding in the feature file.
1584
- - Better error message if there is no features directory (David Lindes)
1585
- - Include scenario file reference in html formatter output (Brandon Faloona)
1586
- - Relax gem dependencies to use >= instead of ~> (Rob Slifka, Aslak Hellesøy)
1587
-
1588
- ### Bugfixes
1589
-
1590
- - Missing methods in Runtime::ForProgrammingLanguages - make v8 example run again (Chris Mytton)
1591
- - Features files are sorted before they are executed, giving consistent results across different OSes (Guewen Baconnier)
1592
- - Remove duplicate lines in backtraces in the HTML report (Jari Bakken)
1593
-
1594
- ## [0.10.0](https://github.com/cucumber/cucumber-ruby/compare/v0.9.4...v0.10.0) (2010-12-07)
1595
-
1596
- We're bumping the minor number in this release because there are some incompatible changes in the JSON support.
1597
- This should not affect users. The major new feature in this release is ANSICON support for Windows users.
1598
-
1599
- ### New Features
1600
-
1601
- - map_column! should allow a string or symbol as the column name passed in (Ed Schmalzle)
1602
- - Deprecate win32console and use ANSICON instead (Boško Ivanišević)
1603
- - Set builder dependency to >= 2.1.2, which will work with both Rails 2 and 3. (bUg., David Trasbo, Matt Wynne)
1604
-
1605
- ### Bugfixes
1606
-
1607
- - Changed the HTML formatter to show Scenarios with 'Pending' steps to be yellow rather than green (Arti)
1608
-
1609
- ### Changed Features
1610
-
1611
- - JSON output now contains optional "match", "result" and "embeddings" elements underneath each step. (Aslak Hellesøy)
1612
-
1613
- ## [0.9.4](https://github.com/cucumber/cucumber-ruby/compare/v0.9.3...v0.9.4) (2010-11-06)
1614
-
1615
- ### Bugfixes
1616
-
1617
- - Superfluous space after step_keyword value in snippet_text message (#679 Aslak Hellesøy)
1618
- - Better Handling for "puts" in HTML formatter (#676 Stephen Kennedy)
1619
- - Too many open files - getcwd (#666 Aslak Hellesøy)
1620
- - Cucumber 0.9.3 prevents Test::Unit from running (#677 Aslak Hellesøy)
1621
- - Performance degradation when running feature files with over 1000 steps (#675 Dimitri Geshef)
1622
-
1623
- ## [0.9.3](https://github.com/cucumber/cucumber-ruby/compare/v0.9.2...v0.9.3) (2010-10-24)
1624
-
1625
- ### Bugfixes
1626
-
1627
- - Better JSON representation of Regexps (Aslak Hellesøy)
1628
- - Update to work with latest spork (Matt Wynne)
1629
- - Prevent MiniTest::Unit#autorun from running in at_exit hook. (Aslak Hellesøy)
1630
- - Fixed incorect --help for --strict. It fails on both pending and undefined. (Aslak Hellesøy)
1631
-
1632
- ## [0.9.2](https://github.com/cucumber/cucumber-ruby/compare/v0.9.1...v0.9.2) (2010-10-04)
1633
-
1634
- ### Bugfixes
1635
-
1636
- - Too many open files - getcwd (#666 Aslak Hellesøy)
1637
-
1638
- ## [0.9.1](https://github.com/cucumber/cucumber-ruby/compare/v0.9.0...v0.9.1) (2010-10-01)
1639
-
1640
- ### Bugfixes
1641
-
1642
- - Just a minor internal change to make Cuke4Duke happy. (Aslak Hellesøy)
1643
-
1644
- ## [0.9.0](https://github.com/cucumber/cucumber-ruby/compare/v0.8.5...v0.9.0) (2010-09-21)
1645
-
1646
- Maintenance release for the new release of Gherkin 2.2.3.
1647
-
1648
- ### Bugfixes
1649
-
1650
- - Compatibility with rspec-2.0.0.beta.19 mocks (Aslak Hellesøy)
1651
- - JUnit formatter now puts output in CDATA sections. (Dmitry Amelchenko)
1652
-
1653
- ### New features
1654
-
1655
- - --dry-run now shows snippets (Ben Hall)
1656
- - Use Bundler for dependency management. (Aslak Hellesøy, Rob Hunter)
1657
-
1658
- ### Removed features
1659
-
1660
- - No more Jeweler
1661
-
1662
- ### Internal changes
1663
-
1664
- - Big refactoring of StepMother (Matt Wynne)
1665
-
1666
- ## [0.8.5](https://github.com/cucumber/cucumber-ruby/compare/v0.8.4...v0.8.5) (2010-07-14)
1667
-
1668
- ### Bugfixes
1669
-
1670
- - Location of stepdefs outside the project (in gems) are reported incorrectly. (#583 Aslak Hellesøy)
1671
- - Cucumber::Rake::Task uses 'bundle exec' when using bundler (#626 John Firebaugh)
1672
-
1673
- ## [0.8.4](https://github.com/cucumber/cucumber-ruby/compare/v0.8.3...v0.8.4) (2010-07-12)
1674
-
1675
- ### Bugfixes
1676
-
1677
- - Fix "Errno::EADDRNOTAVAIL" errors that may be received with spork on Snow Leopard. (Lucas Mundim)
1678
-
1679
- ### New features
1680
-
1681
- - Detect limit for negative tags (#636 Aslak Hellesøy)
1682
- - Support for RSpec 2 doubles (mocks and stubs) (Aslak Hellesøy)
1683
-
1684
- ## [0.8.3](https://github.com/cucumber/cucumber-ruby/compare/v0.8.2...v0.8.3) (2010-06-16)
1685
-
1686
- Just a quick bugfix release.
1687
-
1688
- ### Bugfixes
1689
-
1690
- - Scenario outlines that fail with exception exit process (Aslak Hellesøy)
1691
-
1692
- ## [0.8.2](https://github.com/cucumber/cucumber-ruby/compare/v0.8.1...v0.8.2) (2010-06-16)
1693
-
1694
- Bugfix release which most importantly fixes an issue with the gem's gemspec.
1695
-
1696
- ### Bufixes
1697
-
1698
- - Fix v8 support which broke in 0.8.1 because of new gherkin API (Aslak Hellesøy)
1699
- - Call Around hooks for each example in scenario outlines. (John Firebaugh)
1700
- - Remove extraneous tmp file from the gemspec, which broke installation in some environments. (Fernando Brito, Aslak Hellesøy)
1701
- - 0.8.1 fails on JRuby (#627 Aslak Hellesøy)
1702
-
1703
- ### New Features
1704
-
1705
- - JavaScript to Hide/Expand Scenarios in HTML report (#621 stkenned)
1706
-
1707
- ## [0.8.1](https://github.com/cucumber/cucumber-ruby/compare/v0.8.0...v0.8.1) (2010-06-14)
1708
-
1709
- ### Bufixes
1710
-
1711
- - generate test report fails: ast/outline_table.rb fails in status() (#615 Aslak Hellesøy)
1712
-
1713
- ### New Features
1714
-
1715
- - Undefined steps with integers (Given 3 cukes) will generate snippets like (Given /(\d+) cukes/). (Aslak Hellesøy)
1716
-
1717
- ## [0.8.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.3...v0.8.0) (2010-06-06)
1718
-
1719
- ### Bugfixes
1720
-
1721
- - Require profile option causes a NoMethodError for Cucumber with JRuby (#601 John Firebaugh)
1722
- - Deprecations warnings with Spork + Cucumber + RSpec 2.0. (#619 Brian Cardarella)
1723
- - Fixed edge case compatibility problem with Gherkin 1.0.30. (#618 Aslak Hellesøy)
1724
-
1725
- ### New features
1726
-
1727
- - Better table support in the V8 Javascript support (Joseph Wilk)
1728
- - JSON formatters (json and json_pretty). (Jari Bakken)
1729
-
1730
- ### Removed features
1731
-
1732
- - The --no-diff option is removed. If you're using RSpec you will*always* get diffs. (Aslak Hellesøy)
1733
-
1734
- ### Changed Features
1735
-
1736
- - Upgraded to be compatible with rspec 2.0.0.beta.10 (Aslak Hellesøy)
1737
- - Ruby snippets will use "([^"]_)" instead of "([^\"]_)"$/ - wasn't properly fixed in 0.7.1. (Aslak Hellesøy)
1738
- - Preserve the order features files are passed and use this for execution order (#617 Joseph Wilk)
1739
-
1740
- ## [0.7.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.2...v0.7.3) (2010-05-17)
1741
-
1742
- ### New Features
1743
-
1744
- - Table cells can now contain escaped bars - \| and escaped backslashes - \\. (Gregory Hnatiuk, Aslak Hellesøy)
1745
- - Added support for Around hooks. (#605 John Firebaugh)
1746
-
1747
- ## [0.7.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.1...v0.7.2) (2010-05-04)
1748
-
1749
- ### Bugfixes
1750
-
1751
- - REALLY add backwards compatibility fix (with deprecation warning) for legacy 0.6.4 formatters. (Aslak Hellesøy)
1752
-
1753
- ## [0.7.1](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0...v0.7.1) (2010-05-03)
1754
-
1755
- ### Bugfixes
1756
-
1757
- - Add backwards compatibility fix (with deprecation warning) for legacy 0.6.4 formatters. (Aslak Hellesøy)
1758
-
1759
- ### Changed Features
1760
-
1761
- - Ruby and Javascript snippets will use "([^"]_)" instead of "([^\"]_)"$/ (Aslak Hellesøy)
1762
-
1763
- ## [0.7.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.8...v0.7.0) (2010-05-02)
1764
-
1765
- This release is an important milestone for Cucumber. A new parser (the gherkin gem) parses feature
1766
- files 50-100 times faster than with 0.6.x and previous releases. Make sure you read the upgrade
1767
- instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
1768
-
1769
- ## [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)
1770
-
1771
- ### Bugfixes
1772
-
1773
- - Inconsistent order of execution Background and Before in 0.7.0.beta.2 (#600 Mike Sassak)
1774
- - Make sure both lexing and parsing errors are captured and reported with line number (Gregory Hnatiuk)
1775
-
1776
- ## [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)
1777
-
1778
- ### Bugfixes
1779
-
1780
- - 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)
1781
-
1782
- ## [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)
1783
-
1784
- ### Bugfixes
1785
-
1786
- - Fixed a small regression with pystrings and calling steps from stepdefs, introduced in a previous beta. (Aslak Hellesøy)
1787
-
1788
- ## [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)
1789
-
1790
- ### New Features
1791
-
1792
- - Support RSpec 2. (RSpec >= 1.2.4 is still supported). (Aslak Hellesøy, Ryan Bigg)
1793
-
1794
- ### Removed features
1795
-
1796
- - No more support for RSpec <= 1.2.3. (Aslak Hellesøy)
1797
-
1798
- ## [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)
1799
-
1800
- ### New Features
1801
-
1802
- - New, experimental V8 javascript support - step definitions in Javascript! (Joseph Wilk)
1803
-
1804
- ### Bugfixes
1805
-
1806
- - Gherkin is loaded via rubygems if it can't be found on the $LOAD_PATH. (Aslak Hellesøy)
1807
-
1808
- ## [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)
1809
-
1810
- ### Changed Features
1811
-
1812
- - 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)
1813
-
1814
- ## [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)
1815
-
1816
- ### New Features
1817
-
1818
- - Depend on Gherkin 1.0.18, which has some bugfixes. (Aslak Hellesøy)
1819
-
1820
- ## [0.7.0.beta.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.4...v0.7.0.beta.1) (2010-04-20)
1821
-
1822
- Treetop is gone and replaced with Ragel. The new Ragel parser lives in the gherkin gem.
1823
- Parse times are up to 100 times faster.
1824
-
1825
- ### New Features
1826
-
1827
- - Upgraded Sinatra example to use Sinatra 1.0 and Capybara. (Aslak Hellesøy)
1828
-
1829
- ### Changed Features
1830
-
1831
- - New i18n translations now have to be contributed to the gherkin project.
1832
-
1833
- ## [0.6.4](https://github.com/cucumber/cucumber-ruby/compare/v0.6.3...v0.6.4) (2010-03-30)
1834
-
1835
- ### Bugfixes
1836
-
1837
- - Better handling of --guess with optional capture groups (Tim Felgentreff)
1838
- - Parsing of rerun.txt can't use Shellwords on Windows (#581 David Esposito)
1839
- - \#puts can now take non-String arguments just like Kernel#puts - #to_s is done implicitly. (Aslak Hellesøy)
1840
- - Attempt to fix Cucumber::CODEPAGE error again for Windows (#561 Aslak Hellesøy)
1841
- - Tab indentation causes multiline step arguments to fail (#585 Aslak Hellesøy)
1842
- - Properly pass tags over the wire protocol (Matt Wynne)
1843
- - Profile loading should honour the --strict option (#580 Rob Holland)
1844
- - Snippets are properly printed when using '\*' as step keyword. (Used to cause infinite recursion). (Aslak Hellesøy)
1845
-
1846
- ### New features
1847
-
1848
- - Added #puts_world method, printing the World class and all included modules (Ruby only). (Aslak Hellesøy)
1849
- - Added #puts to the PDF formatter (Nicolas Bessi)
1850
- - Show fails for After/Before hooks in the progress formatter (#584 Joseph Wilk)
1851
-
1852
- ### Changed features
1853
-
1854
- - Switced to ISO 639-1 (language) and ISO 3166 alpha-2 (region - if applicable). Applies to Catalan,
1855
- Swedish, Welsh, Romanian and Serbian. (Aslak Hellesøy)
1856
-
1857
- ## [0.6.3](https://github.com/cucumber/cucumber-ruby/compare/v0.6.2...v0.6.3) (2010-03-02)
1858
-
1859
- ### Bugfixes
1860
-
1861
- - Split arguments in cucumber.yml with shellwords. Example: myprofile: --out="Features report.html" (Nathaniel Haas)
1862
- - Breakage in Rails 2-3-stable after html_safe is added to the repo. (#577 Aslak Hellesøy)
1863
- - uninitialized constant Cucumber::CODEPAGE (NameError) (#561 Aslak Hellesøy)
1864
- - HTML Formatter is broken in cucumber 0.6.2 and cuke4duke 0.2.3 (#567 Dan Fitch)
1865
- - Ensure consistent load order of support files (#564 Mike Sassak)
1866
- - Fix various places in PDF formatter where HTML entities could break prawn (Matt Wynne)
1867
- - The rerun formatter outputs failed, pending and undefined scenarios (before: only failing) (Aslak Hellesøy)
1868
-
1869
- ### New features
1870
-
1871
- - Added "Angenommen" as German synonym for Given (Sven Fuchs, Aslak Hellesøy)
1872
- - New #ask(question, timeout_seconds=60) method available to stepdefs. Asks for input and #puts-s question and answer. (Aslak Hellesøy)
1873
- - Links to step definitions are now clickable in TextMate's HTML report (Rob Aldred)
1874
- - Add diff! message to wire protocol to allow for immediate diff response to invokes (Matt Wynne)
1875
- - Add tags to begin/end scenario messages on wire protocol to support tagged hooks (#571 Matt Wynne)
1876
- - Default timeouts to 120s for invoke, begin_scenario and end_scenario messages in wire protocol (#572 Matt Wynne)
1877
-
1878
- ## [0.6.2](https://github.com/cucumber/cucumber-ruby/compare/v0.6.1...v0.6.2) (2010-01-17)
1879
-
1880
- ### Bugfixes
1881
-
1882
- - Update --help for --tags which was out of date. (Aslak Hellesøy)
1883
- - Explicitly use Prawn 0.6.3 for pdf formatter since 0.7.1 is broken (Aslak Hellesøy)
1884
- - PDF formatter renders tables incorrectly (#553 Andy Waite)
1885
- - Better colouring in HTML report (Rob Aldred)
1886
- - Detect output encoding properly on JRuby+Windows (Aslak Hellesøy)
1887
- - Added option to override output encoding on Windows with an CUCUMBER_OUTPUT_ENCODING env var (Aslak Hellesøy)
1888
- - PDF generation requires 'prawn-format' (#558 Aslak Hellesøy)
1889
-
1890
- ### New features
1891
-
1892
- - Show profiles in error scenario summary. (#550 Joseph Wilk)
1893
-
1894
- ### Removed features
1895
-
1896
- - element_at and table_at have been removed. Use tableish in cucumber-rails instead. (Aslak Hellesœy)
1897
-
1898
- ## [0.6.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.0...v0.6.1) (2010-01-03)
1899
-
1900
- ### Bugfixes
1901
-
1902
- - Fixed broken console handling on Windows/JRuby that was introduced in 0.6.0. (Aslak Hellesøy)
1903
-
1904
- ## [0.6.0](https://github.com/cucumber/cucumber-ruby/compare/v0.5.3...v0.6.0) (2010-01-03)
1905
-
1906
- Bumping to 0.6.0 for this release since we're breaking backwards compatibility with tags.
1907
-
1908
- ### Changed Features
1909
-
1910
- - Tag boolean logic is inverted. What was ORed before is now ANDed and vice versa. (#504 Aslak Hellesøy)
1911
- This makes it more practical in most cases to mix tags from profiles and the command line
1912
-
1913
- In previous versions the following command line:
1914
-
1915
- `--tags @foo,~@bar --tags @zap (on the command line)`
1916
-
1917
- or the following Hook:
1918
-
1919
- `Before("@foo,~@bar", "@zap") (for Hooks)`
1920
-
1921
- would be equivalent to the boolean expression: (@foo && !@bar) || @zap
1922
- Starting with this release it will be equivalent to: (@foo || !@bar) && @zap
1923
-
1924
- ### Bugfixes
1925
-
1926
- - Cucumber not loading the correct settings using autospec (#496, #523 Aslak Hellesøy, Andrzej Śliwa)
1927
- - Ruby 1.9.2 fails to load features/support/env.rb (#549 Aslak Hellesøy)
1928
- - All features (except 4) pass on 1.9.2 (but not on 1.9.1) (Aslak Hellesøy)
1929
- - Add missing require statement in rerun formatter which broke RubyMine (Noah Sussman)
1930
-
1931
- ## [0.5.3](https://github.com/cucumber/cucumber-ruby/compare/v0.5.2...v0.5.3) (2009-12-22)
1932
-
1933
- Another small release today to please a sister project. This time Cuke4Nuke.
1934
-
1935
- ### New Features
1936
-
1937
- - Simplified wire protocol to mostly use success / fail responses (Matt Wynne)
1938
-
1939
- ## [0.5.2](https://github.com/cucumber/cucumber-ruby/compare/v0.5.1...v0.5.2) (2009-12-22)
1940
-
1941
- ### New Features
1942
-
1943
- - On JRuby/Cuke4Duke, --require DIR will put DIR on the $CLASSPATH, making it easier to load step def classes (Aslak Hellesøy)
1944
- - New --jars option that will load jar files. Only available on JRuby. Practical for Cuke4Duke. (Aslak Hellesøy)
1945
-
1946
- ### Bugfixes
1947
-
1948
- - Add #embed back to html formatter (#547 Brandon Faloona)
1949
- - Refactored wire protocol code and added configurable timeout to allow for long running step definitions. (#546 Matt Wynne)
1950
-
1951
- ## [0.5.1](https://github.com/cucumber/cucumber-ruby/compare/v0.5.0...v0.5.1) (2009-12-16)
1952
-
1953
- Small bugfix release.
1954
-
1955
- ### Bugfixes
1956
-
1957
- - Replaced dependency on json gem with an error message, so that the cucumber gem installs on JRuby. (Aslak Hellesøy)
1958
-
1959
- ## [0.5.0](https://github.com/cucumber/cucumber-ruby/compare/v0.4.4...v0.5.0) (2009-12-15)
1960
-
1961
- 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.
1962
- Please see History.txt in cucumber-rails for details about what's new on the Rails side.
1963
-
1964
- ### New features
1965
-
1966
- - "Given" in Dutch is now aliased to "Gegeven" or "Stel". (Iain Hecker)
1967
- - New --i18n option to list keywords in various languages. (Aslak Hellesøy)
1968
- - Added a Tcl example using Sam Stephenson's ruby-tcl (Aslak Hellesøy)
1969
- - Added\* as a synonym for Given/When/Then/And/But (for all i18n languages). (#462 Aslak Hellesøy)
1970
- - The HTML formatter produces a much nicer report, with TextMate link integration. (Rob Aldred)
1971
- - Wire protocol now supports table arguments, step definition source & regexp, snippets, pending, table diffing (Matt Wynne)
1972
-
1973
- ### Changed Features
1974
-
1975
- - Per-word trailing-space setting for step keywords using '<'. See 'fr' in languages.yml for example. (#525 Gregory Hnatiuk)
1976
- - Formatters will no longer be passed File objects. They must use ensure_io, ensure_file or ensure_dir. (Aslak Hellesøy)
1977
-
1978
- ### Bugfixes
1979
-
1980
- - Exception messages are properly escaped in the HTML report. (Aslak Hellesøy)
1981
- - Improved UTF-8 support for Windows. (Aslak Hellesøy)
1982
- - Make #element_at / #table_at work on Webrat 0.6.0. This is now deprecated it in favour of #tableish from the cucumber-rails gem. (Aslak Hellesøy)
1983
- - JUnit formatter not handling multiline table steps inside Scenario Outlines (#538 Matt Wynne)
1984
- - Pending in scenario outline is red (#399 Matt Wynne)
1985
- - Allow optional step arguments to play happily with step transforms (Rob Holland)
1986
- - Regex escape the path when filtering the backtrace (Corey Donohoe & Simon Rozet)
1987
- - Add gem dependency on JSON gem, required by wire protocol (#533 Matt Wynne)
1988
-
1989
- ### Removed Features
1990
-
1991
- - All Rails-related code is in a separate gem: cucumber-rails. Install that if you're working with Rails. (#483 Aslak Hellesøy)
1992
- - --language is removed: http://wiki.github.com/aslakhellesoy/cucumber/spoken-languages (Aslak Hellesøy)
1993
-
1994
- ## [0.4.4](https://github.com/cucumber/cucumber-ruby/compare/v0.4.3...v0.4.4) (2009-11-13)
1995
-
1996
- What a bad day to make a release, but here goes.
1997
-
1998
- ### New features
1999
-
2000
- - Cucumber should use ActiveSupport::Callbacks for fixtures (#516 Adam Salter)
2001
- - Make 'I' optional in all webrat steps. (Gavin Hughes)
2002
- - Make generated cucumber.rake work with a vendored gem (Alex Rothenberg)
2003
- - Native support for ANSIColor on IronRuby via the iron-term-ansicolor gem (Will Green)
2004
- - Call a bunch of steps from step definitions - also with tables or pystrings. Copy-paste friendly (Bodaniel Jeanes, Jack Chen, Aslak Hellesøy)
2005
-
2006
- ### Bugfixes
2007
-
2008
- - Pretty printer fails when expanding scenario outlines with -x when the background includes a table (#515 Mike Sassak)
2009
- - Ensure tags used with Before/After hooks always get parsed (#520 Joseph Wilk)
2010
- - Define IRONRUBY correctly on Ruby 1.9 (Joe Van Dyk)
2011
- - RbStepDefinition#invoke calls #backtrace_line on self rather than @proc (#503 Mike Sassak)
2012
- - Avoid duplicate cucumber entries in database.yml (Daniel Hofstetter)
2013
- - Added respond_to? when checking config.cache_classes for older Rails versions (Jeremy Durham)
2014
-
2015
- ### Changed Features
2016
-
2017
- - Rails support has been moved to the cucumber-rails gem (Dennis Blöte, Aslak Hellesøy) TODO - WIKI DOCUMENTATION BEFORE RELEASE
2018
- - The code for Czech has changed from cz to cs. (deepj)
2019
- - $cucumber_interrupted is now Cucumber.wants_to_quit - avoid global variable, which gives warnings. (Aslak Hellesøy)
2020
- - Examples keyword without a colon is deprecated loudly. Gherkin will not recognize it at all. (Gherkin #30 Mike Sassak)
2021
-
2022
- ## [0.4.3](https://github.com/cucumber/cucumber-ruby/compare/v0.4.2...v0.4.3) (2009-10-27)
2023
-
2024
- The exciting thing about this release is that the wire protocol is starting to take shape. This means you can
2025
- now use Cucumber with .NET - writing step definitions in C#. And this is without having to use IronRuby at all!
2026
- See Cuke4Nuke (http://wiki.github.com/richardlawrence/Cuke4Nuke) for more information.
2027
-
2028
- As usual there are several small features and bug fixes.
2029
-
2030
- ### New Features
2031
-
2032
- - Add support for ORing tags which are passed in with seperate --tag arguments. Make comma seperated tags use AND (#368 Joseph Wilk)
2033
- - New Wire Protocol - allowing out of process execution of Cucumber scenarios. (#428 Matt Wynne)
2034
- - Added an example illustrating how to get screenshots in HTML reports (examples/watir) (Aslak Hellesøy)
2035
- - Added new #embed(file, mime_type) method to visitors and Ruby Worlds to make it easier to embed screenshots (Aslak Hellesøy)
2036
- - The #puts method available from Ruby Step Definitions will print*after* the step is executed. (#487 Zoltan Penzeli)
2037
- - Add support for rolling back transaction for all open database connections. (John Ferlito)
2038
- - Show scenario and step summary in HTML formatter (#285 Joseph Wilk)
2039
- - Ast::Table can now be constructed with an Array of Hash. (Aslak Hellesøy)
2040
-
2041
- ### Changed features
2042
-
2043
- - The #puts method will no longer escape HTML if the html formatter is used. Escaping must be done manually. (Aslak Hellesøy)
2044
-
2045
- ### Bugfixes
2046
-
2047
- - Fixed incorrect rendering of step arguments with UTF8 characters (Aslak Hellesøy)
2048
- - "--format rerun", with a Scenario Outline, kills cucumber (#492 Aslak Hellesøy)
2049
- - Usage formatter is not reporting time correctly. (Elliot Crosby-McCullough)
2050
- - JUnit formatter raises a more helpful error when run on a feature with no name. (#493 Matt Wynne)
2051
- - Better Danish translation (Thorbjørn Ravn Andersen)
2052
-
2053
- ## [0.4.2](https://github.com/cucumber/cucumber-ruby/compare/v0.4.1...v0.4.2) (2009-10-14)
2054
-
2055
- Bugfix release. The 0.4.1 release was hosed when switching from Hoe to Jeweler.
2056
-
2057
- ## [0.4.1](https://github.com/cucumber/cucumber-ruby/compare/v0.4.0...v0.4.1) (2009-10-14)
2058
-
2059
- This is mostly a bugfix release. Some of Cucumber's own features have been fixed so they pass on more platforms,
2060
- making it easier for people to contribute. The README.txt also describes how to get up and running with the
2061
- development environment.
2062
-
2063
- ### Bugfixes
2064
-
2065
- - Cucumber's features verified passing on MRI 1.8.6 (OSX), 1.8.7 (OSX), 1.9.1 (OSX/Win) and JRuby 1.4.0RC1 (OSX). (Aslak Hellesøy)
2066
- - Ensure no errors are raised when limiting with tags which are not in the feature set (#464 Joseph Wilk)
2067
- - Missing Romanian keywords added for Examples, Scenario Outline and Background (to my best google translate knowledge) (Aslak Hellesøy)
2068
- - Make rerun and --drb work together again after formatter API changes (#485 Erik Hansson, John Ferlito)
2069
-
2070
- ### New Features
2071
-
2072
- - The Rails cucumber generator will only default to RSpec if installed. And print better help. (Aslak Hellesøy)
2073
- - Added 'but' variants to Japanese. (Kakutani Shintaro)
2074
- - README.txt explains people how to run all tests. Install gems with geminstaller. (Aslak Hellesøy)
2075
- - Added support for Serbian language, both Cyrillic and Latin with usage examples. (Dejan Dimic)
2076
- - Add new 'debug' formatter for debugging and visualising the calls to listeners. (Matt Wynne)
2077
-
2078
- ### Changed features
2079
-
2080
- - Use http://github.com/aslakhellesoy/wac instead of http://github.com/aslakhellesoy/ansicolor on Windows/JRuby (#456 Aslak Hellesøy)
2081
-
2082
- ### Internal changes
2083
-
2084
- - Ditched Hoe for Jeweler (Aslak Hellesøy)
2085
- - Added StepMother#invoke(step_name, multiline_argument=nil) - needed by cuke4duke ticket #26 (Aslak Hellesøy)
2086
- - StepDefinitionMethods is gone.
2087
-
2088
- ## [0.4.0](https://github.com/cucumber/cucumber-ruby/compare/v0.3.104...v0.4.0) (2009-10-09)
2089
-
2090
- 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
2091
- went nuts and a lot of great contributions came in. Some of those broke backwards compatibility, and we decided it would be
2092
- better to do this while still on 0.3.x.
2093
-
2094
- Rails users: you*must* run script/generate cucumber after installing this version.
2095
-
2096
- If something breaks for you, please please please read this file carefully. It's most likely something referenced here, and
2097
- that will give you more information so you can solve any problems. If not, just get in touch on IRC or the Google Group.
2098
-
2099
- ### New Features
2100
-
2101
- - Total feature parsing time is shown when run with --verbose. Useful for benchmarking with future Ragel parser (Aslak Hellesøy)
2102
- - Tables yielded to step definitions are no longer frozen, so you can edit their data without #dup'ing (Aslak Hellesøy)
2103
- - Transform can now transform tables, using /table:col1,col2,col3/ (#478 Corey Haines)
2104
- - cucumber.yml can also end in .yaml and be located in .config/ or config/ dirs (#447 trans)
2105
- - Turkish support. (Hakan Şenol Ensari)
2106
- - Upgrade Rails generator to set a dependency to Spork 0.7.3. (Aslak Hellesøy)
2107
- - Installation via rubygems will print a message telling people to read this file. (Aslak Hellesøy)
2108
- - Files generated by the Rails cucumber generator have information about the risks of editing. (Aslak Hellesøy)
2109
- - Rotten Cucumber alert on Rails if you upgrade your gem without regenerating with script/generate cucumber. (Aslak Hellesøy)
2110
- - Stop the confusion between "homepage" and "home page" by allowing both (Ryan Bigg & Bodaniel Jeanes)
2111
- - Make script/cucumber file generated by the Rails cucumber generator look for cucumber in vendored gems as well. (Tom ten Thij)
2112
-
2113
- ### Changed Features
2114
-
2115
- - Step tables now default empty table cells to empty strings and not nil (#470 Joseph Wilk)
2116
-
2117
- ### Removed Features
2118
-
2119
- - The feature_list, feature_pattern, step_list and step_pattern properties are removed from the Rake task. Use profiles instead. (Aslak Hellesøy)
2120
- - The FeatureTask is removed. Use profiles instead.
2121
-
2122
- ### Bugfixes
2123
-
2124
- - instance_exec get declared private (#477 Tim Galeckas)
2125
- - Transforms can return nil. (Thomas Marek)
2126
- - Generated rails rake tasks doesn't use the vendored version cucumber binary (#468 Josh Nichols)
2127
- - Incorrect diagnostics in case when Before raises in presence of Background (#465 Fedor Kocherga)
2128
- - Error on pystring in scenario outline with pretty formatter (#475 Aslak Hellesøy)
2129
- - Adding After('@allow-rescue') to set allow_rescue back to its former value. (Alf Mikula)
2130
- - Feature files are now sorted before they are executed, because different operating systems may list files differently. (Aslak Hellesøy)
2131
- - Fixed image loading for Windows in PDF formatter. Allow use of both png and jpg. (#461 Declan Whelan)
2132
- - Before('~@no-txn') is run on all scenarios without @no-txn causing Cucumber::Rails::World.use_transactional_fixtures to always be true. (#457 Aslak Hellesøy)
2133
- - JUnit formatter not handling scenario outline tables (#472 Matt Wynne)
2134
- - Language help broken (#467 Matt Wynne)
2135
- - Language help formatter aligns output better on Ruby 1.8.6 (Aslak Hellesøy)
2136
- - Better backtraces for Ruby 1.8.7. (Jakob Skov-Pedersen)
2137
- - String step definitions ( Given 'I have $number cucumbers' ) are escaped before being turned into regular expressions. (David Waite)
2138
-
2139
- ## [0.3.104](https://github.com/cucumber/cucumber-ruby/compare/v0.3.103...v0.3.104) (2009-09-27)
2140
-
2141
- This release has some minor changes to the command line and formatters. The biggest change is internally, paving
2142
- the way for more programming language support in Cuke4Duke, which now supports step definitions written in Java, Scala,
2143
- Groovy, Clojure and Javascript!
2144
-
2145
- ### New Features
2146
-
2147
- - "usage" formatter should display progress (#437 Aslak Hellesøy)
2148
- - Added example for Ramaze. (Yutaka HARA)
2149
-
2150
- ### Bugfixes
2151
-
2152
- - Fixed regression in profile formatter from 0.3.102. (Aslak Hellesøy)
2153
- - Raise a proper error message if someone forgets @ for tags, example: --tags ~foo or --tags bar. (Aslak Hellesøy)
2154
- - lib/cucumber/formatter/html.rb requires xml (#458 Brent Snook)
2155
- - lib/cucumber/formatter/html.rb requires ruby-debug (#455 Assaf Arkin)
2156
- - Allow for STDOUT formatters to be defined in profiles. Addresses an Autotest plugin issue. (#375 Gabriel Medina)
2157
-
2158
- ### Removed features
2159
-
2160
- - The --dry-run option no longer implies --no-source and --no-snippets. It only implies --no-snippets. (Aslak Hellesøy)
2161
-
2162
- ### Changed features
2163
-
2164
- - The profile and usage formatters have been combined to the usage formatter. Use it eith or without --dry-run. See --help for more. (Aslak Hellesøy)
2165
- - The steps formatter has been renamed to stepdefs formatter. (Aslak Hellesøy)
2166
- - The internal programming language API has changed, giving more power to the implementation. See #428. (Aslak Hellesøy)
2167
-
2168
- ## [0.3.103](https://github.com/cucumber/cucumber-ruby/compare/v0.3.102...v0.3.103) (2009-09-24)
2169
-
2170
- This release gives you back some of the control over the Rails environment that was accidentally taken away from you in the
2171
- previous release.
2172
-
2173
- Using this release on a Rails project requires a rerun of script/generate cucumber.
2174
-
2175
- ### New Features
2176
-
2177
- - Added a new @no-txn tag to selectively turn off transactions for a particlular scenario.
2178
- - Added back a way to globally turn off transactions.
2179
- - Renamed @allow_rescue tag to @allow-rescue.
2180
-
2181
- ### Bugfixes
2182
-
2183
- - Gracefully handle cases when optional regexp groups are not matched. Ex: /should( not)? be flashed '([^']\*?)'$/ (Aslak Hellesøy)
2184
-
2185
- ### Changed Features
2186
-
2187
- - The Formatter API has completely changed. Formatters are no longer a double-dispacth visitor - just a single-dispatch listener (#438 Matt Wynne)
2188
-
2189
- ## [0.3.102](https://github.com/cucumber/cucumber-ruby/compare/v0.3.101...v0.3.102) (2009-09-22)
2190
-
2191
- This release has some changes in the Rails support, so make sure you run "script/generate cucumber" after you upgrade.
2192
- Other noteworthy new features are improved Hook, tags and Transform support, and as always - several smaller bug fixes.
2193
-
2194
- ### New Features
2195
-
2196
- - Added new internal API for Regexp and groups, allowing other programming languages to leverage native regexps. (Aslak Hellesøy)
2197
- - New @allow_rescue tag for Rails scenarios. Causes exceptions raised in actions to be caught by rails and not bubble up to Cucumber (Aslak Hellesøy)
2198
- - Negative tags can now be used in hooks, just like the command line's --tags option: Before('~@yarr') - will run for all scenarios that*don't* have the @yarr tag. (Aslak Hellesøy)
2199
- - Transform has current "World" scope (Larry Diehl)
2200
- - Other Transforms can be reused by calling Transform with a string inside of another Transform definition (Larry Diehl)
2201
- - Execute "After" hooks in reverse order of declaration for better behavior with dependent blocks and to mimic the behavior of at_exit (David Waite)
2202
-
2203
- ### Bugfixes
2204
-
2205
- - features/support/env.rb runs commands twice (bugfix cuts total time by almost 50% w00t) (#452 Jim Meyer)
2206
- - Problems adding custom formatters to features/support. (features/support is added to $LOAD_PATH) (#449 Aslak Hellesøy)
2207
- - Some options set in cucumber.yml profiles are ignored (#446 Leonard CHIN)
2208
- - Missing step_definition snippets not properly displayed (#433 Aslak Hellesøy)
2209
- - rspec-rails, :lib => false (#447 David Chelimsky)
2210
- - Cucumber with Spork breaks on OS X Snow Leopard (#431 David Chelimsky)
2211
-
2212
- ### Changed Features
2213
-
2214
- - Tag names passed on the command line*always* have to use the @ sign. --tags foo or --tags ~bar won't work. Use --tags @foo or --tags ~@bar (Aslak Hellesøy)
2215
-
2216
- ### Removed features
2217
-
2218
- - The Cucumber::Rails.bypass_rescue no longer exists. Errors will always bubble up, unless you use the new @allow_rescue tag. (Aslak Hellesøy)
2219
- - The Cucumber::Rails.use_transactional_fixtures no longer exists. Transactional fixtures are always enabled for the cucumber environment. (Aslak Hellesøy)
2220
-
2221
- ## [0.3.101](https://github.com/cucumber/cucumber-ruby/compare/v0.3.100...v0.3.101)
2222
-
2223
- Two exciting things in this release. Step Argument Transforms and a PDF formatter you can use to send
2224
- your features to your customer for review!
2225
-
2226
- ### New Features
2227
-
2228
- - New pdf formatter (#425 Mads Buus)
2229
- - Step Argument Transforms: These let you use the Transform method to register regular expressions
2230
- to catch and transform/coerce arguments before they are yielded to step definitions:
2231
- http://wiki.github.com/aslakhellesoy/cucumber/step-argument-transforms (Larry Diehl & Dave Astels)
2232
- - Adding webrat steps for asserting content does or does not exist within a particular element
2233
- (using webrat's within method) (Kieran Pilkington)
2234
-
2235
- ## [0.3.100](https://github.com/cucumber/cucumber-ruby/compare/v0.3.99...v0.3.100) (2009-09-08)
2236
-
2237
- The JavaZone release!
2238
-
2239
- ### New Features
2240
-
2241
- - Added support for Uzbek (msarvar)
2242
- - The file argument on the cucumber command line will replace contents of file on cli if file is prefixed with @ (Tero Tilus)
2243
-
2244
- ### Bugfixes
2245
-
2246
- - Backtraces on JRuby are handled in a cleaner way when the exception comes from Java (NativeException). (Aslak Hellesøy)
2247
- - When exceptions occur in a Before block the rest of the scenario is now skipped (#331 Matt Wynne)
2248
-
2249
- ## [0.3.99](https://github.com/cucumber/cucumber-ruby/compare/v0.3.98...v0.3.99) (2009-09-02)
2250
-
2251
- ### New Features
2252
-
2253
- - Support for Croatian (Bkrsta)
2254
- - Make #feature available from scenario so you can do: Before{|scenario| scenario.feature}. (Aslak Hellesøy)
2255
- - cucumber.yml parsing supports ERB syntax (#427 Gregory Hnatiuk)
2256
- - New AfterConfiguration hook added; a block can be specified that takes Cucumber::Cli::Configuration (#423 Brent Snook)
2257
- - Cucumber::Cli::Configuration#feature_dirs and #out_stream exposed as public attributes so that they may be used in AfterConfiguration hook (#423 Brent Snook)
2258
-
2259
- ## [0.3.98](https://github.com/cucumber/cucumber-ruby/compare/v0.3.97...v0.3.98) (2009-08-25)
2260
-
2261
- Just a small release to help Cuke4Duke, which will be presented at Agile2009
2262
- in 2 days.
2263
-
2264
- ### New Features
2265
-
2266
- - Backtrace filtering now happens in StepInvocation class, meaning other languages (Cuke4Duke) can get backtraces stripped. (Aslak Hellesøy)
2267
- - Cucumber::Ast::Table#map_headers now allows for a block that will convert all the headers. See docs for details. (Ben Mabey)
2268
-
2269
- ## [0.3.97](https://github.com/cucumber/cucumber-ruby/compare/v0.3.96...v0.3.97) (2009-08-23)
2270
-
2271
- The AA-FTT release. Creating a release for the AA-FTT meeting in Chicago so that we can play
2272
- with the new language API and maybe knock out some better .NET support.
2273
-
2274
- ### Bugfixes
2275
-
2276
- - Allow comments on examples sections underneath scenario outlines (#420 Mike Sassak)
2277
- - Table.map_headers! will fail with a decent error message when 0 or 2+ headers are matched. (Aslak Hellesøy)
2278
- - Fixed an issue with comments with preceding spaces after a background causing a parse error (#401 Joseph Wilk)
2279
-
2280
- ### New Features
2281
-
2282
- - The public API is documented and there is a new :sdoc task to generate nice searchable API docs.
2283
- - Add :default => :cucumber when setting up Rake tasks for Cucumber in Rails (Aslak Hellesøy)
2284
- - New When /^I fill in "([^\"]_)" for "([^\"]_)"$/ Webrat step for Rails (Aslak Hellesøy)
2285
-
2286
- ### Changed Features
2287
-
2288
- - Changed the Programming Language API to support languages without "bleed through" (e.g. rubypython can't invoke ruby objs) (Aslak Hellesøy)
2289
- - The Programming Language API manages hooks on the language level instead of on the step mother level (Aslak Hellesøy)
2290
-
2291
- ## [0.3.96](https://github.com/cucumber/cucumber-ruby/compare/v0.3.95...v0.3.96) (2009-08-15)
2292
-
2293
- This release doesn't have any significant new features or bug fixes, but there are big
2294
- internal changes. This release has a new API for plugging in other programming languages.
2295
- You can read more about that here: http://groups.google.com/group/cukes/browse_thread/thread/b9db8bf1f3ec9708
2296
-
2297
- This might break other tools that are using Cucumber's internal APIs. For example Spork broke and had to
2298
- be patched. Please upgrade to Spork 0.5.9 if you are using Spork.
2299
-
2300
- ### New Features
2301
-
2302
- - Ability to preload natural language in Spork's prefork. Rerun script/generate cucumber --spork to see how. (Aslak Hellesøy)
2303
- - Ability to control which DRb port is used via the --port flag or by setting CUCUMBER_DRB environment variable. (Chris Flipse)
2304
- - Upgrade Rails generator to use webrat 0.5.0. (Aslak Hellesøy)
2305
- - Upgrade Sinatra example to work with rack-test 0.4.1 and webrat 0.5.0. (Aslak Hellesøy)
2306
-
2307
- ### Changed Features
2308
-
2309
- - --strict will cause an exit code 1 for missing and pending (used to be for missing only). (Mads Buus)
2310
- - junit formatter doesn't report pending steps unless --strict is used. (Mads Buus)
2311
-
2312
- ## [0.3.95](https://github.com/cucumber/cucumber-ruby/compare/v0.3.94...v0.3.95) (2009-08-13)
2313
-
2314
- This release improves Webrat support for table-like HTML markup. Now you can easily turn the HTML
2315
- elements table, dl, ol and ul elements into a 2D array. This is particularly useful for comparing
2316
- data in your HTML with a Cucumber table using Cucumber::Ast::Table#diff!
2317
-
2318
- This release also fixes several bugs related to --drb (Spork) and profiles (cucumber.yml)
2319
-
2320
- ### Bug Fixes
2321
-
2322
- - --guess will always prefer the longest regexp with no groups if they exist.
2323
- - Prevent delays if a NoMethodError is raise in a step definition. Define a light #inspect in World. (#374 Aslak Hellesøy)
2324
- - Restore 'features' as the default feature running path. (#412 Ben Mabey)
2325
- - --drb degrades gracefully when no drb server is running and no formatter is provided. (#410 Ben Mabey)
2326
- - --language picked up from profiles again. (#409 Ben Mabey)
2327
- - Resolved infinite loop problem when --drb was defined in a profile. (#408 Ben Mabey)
2328
-
2329
- ### New Features
2330
-
2331
- - Cucumber::World#table has been overloaded to work with 2D Array in addition to a table String to be parsed.
2332
- - New When /^I fill in the following:$/ step definition for Webrat. Useful for filling out a form with a Table. (Aslak Hellesøy)
2333
- - The object returned by element_at (Webrat::Element) has a #to_table that works for table, dl, ol and ul. (Aslak Hellesøy)
2334
- - An explanation of why failures are ok is printed when --wip is used. (Aslak Hellesøy)
2335
- - Added cucumber alias for cucumber:ok in Rails Rake tasks. (Aslak Hellesøy)
2336
-
2337
- ### Changed features
2338
-
2339
- - 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)
2340
- - 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)
2341
-
2342
- ## [0.3.94](https://github.com/cucumber/cucumber-ruby/compare/v0.3.93...v0.3.94) (2009-08-06)
2343
-
2344
- Kanban take II.
2345
-
2346
- Release 0.3.6 introduced a new --wip switch that can be used to limit work in progress
2347
- (WIP). Limiting WIP is central for Kanban Software Development (http://www.infoq.com/articles/hiranabe-lean-agile-kanban).
2348
-
2349
- However, this feature went mostly unnoticed, and because we think it's so great we have decided
2350
- to make it the default for Rails projects. When you bootstrap your Rails project for Cucumber
2351
- you will now get 2 Cucumber Rake tasks for Kanban development:
2352
-
2353
- cucumber:ok : Run features that should pass. This runs your "good,old" features
2354
- cucumber:wip : Run the features you're working on that don't pass yet. Tag them with @wip. Max 2!
2355
-
2356
- So upgrade today and get into the habit of tagging new features with @wip (or invent your own tags).
2357
- You'll achieve better flow this way.
2358
-
2359
- ### New features
2360
-
2361
- - Support limiting the number of feature elements with certain tags (#353 Joseph Wilk)
2362
- - script/generate cucumber sets up 'cucumber:ok' and 'cucumber:wip' tasks and deprecates 'features'. More Kanban love. (#344 Aslak Hellesøy)
2363
- - Better JUnit formatter: feature->testsuite, scenario->testcase. Better timing and support for background and scenario outline. (Mads Buus Westmark)
2364
- - Added examples/python that uses rubypython. (Aslak Hellesøy)
2365
- - Checks the number of available colors on the terminal with ruby-terminfo if ruby-terminfo is installed.
2366
- This prevents Apple's Terminal.app from stalling (Yugui - Yuki Sonoda).
2367
- - Set 'xterm-256color' to TERM if your terminal supports grey.
2368
- - ruby-terminfo is available as genki-ruby-terminfo gem from github.
2369
- - Document builtin formatters with --help. (#406 Aslak Hellesøy)
2370
- - Added support for using regular expressions when mapping table headers. (Peter Williams)
2371
-
2372
- ## [0.3.93](https://github.com/cucumber/cucumber-ruby/compare/v0.3.92...v0.3.93) (2009-08-03)
2373
-
2374
- Highlights in this release: Improved profile handling (cucumber.yml) and a fix for cucumber hanging.
2375
-
2376
- ### New features
2377
-
2378
- - script/generate cucumber --spork now sets up a spork gem dependency in the cucumber.rb environment. (Aslak Hellesøy)
2379
- - Feature files defined on the command line override any that are present in profiles. (#344 Ben Mabey)
2380
- - Default (STDOUT) formatter defined in profile can be overridden from the command line. (#344 Ben Mabey)
2381
- - Displays which profile, if any, is being used. (Ben Mabey)
2382
- - click_link_within(parent, link) webrat step (Joakim Kolsjö)
2383
-
2384
- ### Bugfixes
2385
-
2386
- - script/cucumber correctly loads the gem's binary if the plugin isn't installed.
2387
- - Cucumber hangs waiting for Ctrl+C if an Error is raised. (#374 Aslak Hellesøy)
2388
-
2389
- ## [0.3.92](https://github.com/cucumber/cucumber-ruby/compare/v0.3.91...v0.3.92) (2009-07-29)
2390
-
2391
- This release has some minor improvements to the new Table.diff! functionality. For example,
2392
- if you're using Webrat and you want to compare a feature table with a HTML table containing
2393
- links in one of the columns, you can do:
2394
-
2395
- actual = Cucumber::Ast::Table.new(table_at('table').to_a)
2396
- actual.map_column!('Name') { |text| text.strip.match(/>(.*)</)[1] }
2397
- table.diff!(actual)
2398
-
2399
- ### New features
2400
-
2401
- - Allow Step Definitions to accept mix of required & optional args (Niels Ganser)
2402
- - table_a.diff!(table_b) now uses column conversions from both tables (Table#map_column!) (Aslak Hellesøy)
2403
-
2404
- ### Bugfixes
2405
-
2406
- - Upgrade Sinatra example to work with rack-test 0.3.0 and aslakhellesoy-webrat 0.4.4.1 (Aslak Hellesøy)
2407
- - require 'cucumber/webrat/table_locator' added to Spork environment for Rails (Anders Furseth)
2408
-
2409
- ### Changed Features
2410
-
2411
- - The 'default' profile is now ALWAYS used unless you specify another profile or use the -P or --no-profile flag. (#344 Ben Mabey)
2412
-
2413
- ## [0.3.91](https://github.com/cucumber/cucumber-ruby/compare/v0.3.90...v0.3.91) (2009-07-27)
2414
-
2415
- ### New Features
2416
-
2417
- - CTRL-C will exit immediately instead of carrying on until all features are run. (Aslak Hellesøy)
2418
- - Run can be stopped programmatically by setting $cucumber_interrupted = true, for example in an After block. (Aslak Hellesøy)
2419
- - Support limiting the number of feature elements with certain tags (#353 Joseph Wilk)
2420
- - Table support for cuke4duke
2421
-
2422
- ## [0.3.90](https://github.com/cucumber/cucumber-ruby/compare/v0.3.11...v0.3.90) (2009-07-21)
2423
-
2424
- The Hot summer release
2425
-
2426
- This is a hot summer in Norway, and Cucumbers are growing in abundance. To celebrate this we give you
2427
- a new release with lots of new features and bugfixes. This is also one of the last releases in the 0.3 series
2428
- (hence the 0.3.90 number), so 0.4 (or maybe 1.0!) will be coming up soon. The highlights of this release are:
2429
-
2430
- ### Egality
2431
-
2432
- English is not the world's most spoken language, so why should Cucumber force non-English speakers to use the
2433
- --language flag? As of this release you're no longer forced to do that. Instead, you can add a comment header
2434
- to your .feature files:
2435
-
2436
- # language: fr
2437
- # Cucumber understands that this is French
2438
- Fonctionnalité: Trou de boulette
2439
-
2440
- If you don't have that header, Cucumber will work as before - using whatever you specified with --language,
2441
- or default to English if no --language option was specified. A nice side effect of this is that you can now
2442
- have features in several languages side by side and run them in the same cucumber. (Not recommended unless
2443
- you want to take polyglot programming to an extreme level).
2444
-
2445
- ### Table diffing (experimental)
2446
-
2447
- When you pass a table as an argument to your Then steps you often want to compare that table
2448
- to some actual values. In previous releases you had to iterate over the table's values and manually
2449
- compare each row using cell.should equal('foo') or assert_equal('foo', cell). If a discrepancy was found
2450
- you'd get an error, but it was hard to see how the entire expected data set was different from the actual one.
2451
-
2452
- With this release you have a much more powerful way to compare expected tables with actual data. An
2453
- Ast::Table object now has a new #diff!(table) method that you can invoke in your step definitions
2454
- that take table arguments. If the table you pass in is different from the expected table (from your
2455
- plain text step), Cucumber will print the difference for each of the row or column and fail your step.
2456
-
2457
- The Table#diff! method expects an Array of Array, Array of Hash (similar to what you'd get from table#hashes)
2458
- or simply another Ast::Table object. Here is a simple example:
2459
-
2460
- Then /^I should see the following cukes:$/ do |expected_cukes_table|
2461
- actual_table = ... # For example [['Latin', 'English'], ['Cucumis sativus', 'Cucumber'], ['Cucumis anguria', 'Burr Gherkin']]
2462
- expected_cukes_table.diff!(actual_table)
2463
- end
2464
-
2465
- As an extra bonus we provide Webrat users with a new #table_at(selector) method that you can use to transform
2466
- an HTML table into an Array of Array, so that you can easily compare the contents of your HTML table to
2467
- expected data passed to a step. Here is an example:
2468
-
2469
- Then /^I should see the following cukes:$/ do |expected_cukes_table|
2470
- expected_cukes_table.diff!(table_at('#cuke_table').to_a)
2471
- end
2472
-
2473
- You can do the same trick to compare data from a Rails ActiveRecord table (although this is not a
2474
- recommended practice - your Then steps should compare against what users*see*, not what's in the
2475
- database):
2476
-
2477
- # This requires that you use the column names in the header of the plain text expected table
2478
- Then /^I should have the following cukes in the database:$/ do |expected_cukes_table|
2479
- expected_cukes_table.diff!(Cuke.find(:all).map(&attributes))
2480
- end
2481
-
2482
- ### Environment variables
2483
-
2484
- Another useful new feature is the ability to define environment variables on Cucumber's command line (just
2485
- like you can with Rake). Example:
2486
-
2487
- cucumber FOO=BAR --format progress features
2488
-
2489
- You can now pick up ENV['FOO'] in ruby (for example in env.rb) and take actions according to the value,
2490
- for example enabling your super hack that validates all HTTP responses for XHTML validity.
2491
-
2492
- This release also has several bugfixes related to --format and Before/After hooks.
2493
-
2494
- ### Bugfixes
2495
-
2496
- - Fix some misspellings which affect test fail for Korean example (#373 Dongju Kim)
2497
- - Make it possible to write non-localized step definitions (#377 Aslak Hellesøy)
2498
- - Table cells containing unicode are rendered incorrectly (#386 Stefan Kanev)
2499
- - Before and After hooks run after everything is finished when there are 2+ --format options (#371 Aslak Hellesøy)
2500
- - When using --out and two --format the first is not delivered inline with execution of features (#361 Aslak Hellesøy)
2501
- - Profile Formatter broken (#370 Aslak Hellesøy)
2502
- - Default profile usage with --drb flag degrades gracefully with no server. (#367 Ben Mabey)
2503
- - JUnit formatter uses original file name instead of narrative to avoid accidental duplicate XML files (Aslak Hellesøy)
2504
- - rake gems no longer lists cucumber as a [F]ramework gem (David Chelimsky)
2505
- - CLI issues correct exit code when using --drb. Requires Spork version >= 0.5.1. (#355 Ben Mabey)
2506
- - Make sure script/generate cucumber --spork uses the cucumber Rails environment (Philippe Lafoucrière)
2507
- - Fixed bug with rake task raising errors with feature files with spaces (#380 Joseph Wilk)
2508
-
2509
- ### New Features
2510
-
2511
- - I should see should support regexes (#382 John Ferlito)
2512
- - Access to scenario outline name from After hook scenario parameter (#342 Aslak Hellesøy)
2513
- - Allow multiple --tags switches to be passed
2514
- - Load step definitions from vendored gems and plugins (#388 Mike Burns)
2515
- - New --format steps formatter. Variant of the usage formatter that lists available step definitions (Demetrius Nunes)
2516
- - Possibility to specify scenario language as part of the .feature file (#345 Aslak Hellesøy)
2517
- - Support specifying environment variables using foo=bar syntax on command line or in profiles (#362 Bryan Helmkamp)
2518
- - Display failing scenarios at the end of pretty format to make it easier for people to play them back (#360 Ryan Bigg)
2519
-
2520
- ### Changed Features
2521
-
2522
- - When using --tags, positive tags are &&'ed while negative tags are ||'ed (John Wilger)
2523
- - The data returned from Table#hashes and similar methods are frozen. Dup if you need to modify. (Aslak Hellesøy)
2524
- - Visitor.visit_table_cell_value(value, col_width, status) is now visitor.visit_table_cell_value(value, status)
2525
-
2526
- ## [0.3.11](https://github.com/cucumber/cucumber-ruby/compare/v0.3.10...v0.3.11) (2009-06-05)
2527
-
2528
- This release just fixes a tiny bug in the formatter to fix an incompatibility
2529
- with the latest RedMine release. It should have been included in 0.3.10, but
2530
- was forgotten.
2531
-
2532
- ### Bugfixes
2533
-
2534
- - Formatter API was broken in 0.3.9 (Roman Chernyatchik)
2535
-
2536
- ## [0.3.10](https://github.com/cucumber/cucumber-ruby/compare/v0.3.9...v0.3.10) (2009-06-05)
2537
-
2538
- The Spork Release!
2539
-
2540
- This release has an exciting new feature - a new --drb switch! This magic switch lets you run your
2541
- features much faster than before, because you can eliminate the startup time for your code. This is
2542
- thanks to a brand new gem called Spork by Tim Harper and Ben Mabey. (You can find out more about Spork
2543
- here: http://github.com/timcharper/spork/tree/master). You can start Spork and have it preload your
2544
- application in a separate process. Spork listens for DRb connections, and when you run cucumber with
2545
- --drb the features will run inside the Spork server instead. Spork provides two simple hooks for preloading
2546
- your application - one for framework/stable code (Spork.prefork) and one for the code that*you* write and
2547
- change often (Spork.each_run). Keep in mind that all World, Before, and other Cucumber hooks need to be
2548
- in the Spork.each_run block. Using Spork works great for Ruby on Rails, which can take a while to load,
2549
- but --drb and Spork aren't tied to Rails at all. The new --drb switch also works great alongside autotest
2550
- (just add --drb to your autotest profile in cucumber.yml), so now you can get even faster feedback.
2551
-
2552
- Cucumber's built-in cucumber generator now has a new --spork switch, so when you bootstrap your Rails
2553
- application for cucumber, you can have spork configuration set up out of the box. (It's just a
2554
- slightly different env.rb.)
2555
-
2556
- Although Spork was in mind when the --drb switch was added it is important to realize that all that was added
2557
- to Cucumber was a DRb client. Any DRb server that adheres to this protocol can be used with Cucumber's --drb
2558
- switch. While Spork is geared towards removing the load time to give you a faster feedback loop you could
2559
- just as easily use this client with a server that distributes your features to run in parallel. Someone just
2560
- needs to write such a server. ;)
2561
-
2562
- This release also has some minor bugfixes related to RSpec and Rails interop.
2563
-
2564
- ### Bugfixes
2565
-
2566
- - RSpec's be\_\* matchers did not work in 0.3.9 and probably earlier versions. Now they do. (Aslak Hellesøy)
2567
- - The Rails cucumber environment won't declare gem dependencies if the plugin exists. (Aslak Hellesøy)
2568
- - The Rails cucumber generator will no longer declare gem dependencies on rspec if you use --testunit. (Aslak Hellesøy)
2569
-
2570
- ### New features
2571
-
2572
- - Spork support via --drb. (Ben Mabey)
2573
- - Added a Ast::Feature#name method for convenience. (Aslak Hellesøy)
2574
-
2575
- ### Changed features
2576
-
2577
- - The HTML formatter wraps examples in a div, and distinguishes between Scenario and Scenario Outline. (Aslak Hellesøy)
2578
-
2579
- ## [0.3.9](https://github.com/cucumber/cucumber-ruby/compare/v0.3.8...v0.3.9) (2009-05-27)
2580
-
2581
- Bugfix release for 0.3.8 released earlier today. 0.3.8 had a bug in the Rails cucumber
2582
- generator which is fixed in 0.3.9.
2583
-
2584
- ### Bugfixes
2585
-
2586
- - Fix broken Rails cucumber generator (Tim Glen)
2587
- - The Cucumber Rake task in non-fork mode will properly cause Rake to exit with 1 when Cucumber fails. (Aslak Hellesøy)
2588
-
2589
- ## [0.3.8](https://github.com/cucumber/cucumber-ruby/compare/v0.3.7...v0.3.8) (2009-05-27)
2590
-
2591
- This Cucumber version fixes several bugs related to Ruby on Rails and RSpec. If you
2592
- use Cucumber with a Rails app we*strongly* recommend you bootstrap Cucumber again:
2593
-
2594
- ruby script/generate cucumber
2595
-
2596
- ### New Features
2597
-
2598
- - Rails cucumber generator sets up default gem dependencies in cucumber environment.
2599
- - The duration of a run is reported by formatters - same format as the Linux time command (#228 Aslak Hellesøy)
2600
- - Scenario and ExampleRow objects (passed to Before and After hooks) have #name and #line methods (#316 Aslak Hellesøy)
2601
- - Rails generator creates a cucumber environment file to avoid potential cache_classes conflicts in test.rb (#165, Ben Mabey)
2602
- - HTML formatter renders @tags (but the CSS is still ugly)
2603
-
2604
- ### Removed/changed features
2605
-
2606
- - The Cucumber Rake task will again fork by default (as 0.3.3 and earlier). Forking must be turned off explicitly. (Aslak Hellesøy)
2607
-
2608
- ### Bugfixes
2609
-
2610
- - Better coexistence with RSpec - Cucumber now*neuters* the part of RSpec that tries to parse ARGV.
2611
- - The differ= exception is gone (#325, #340 Aslak Hellesøy)
2612
-
2613
- ## [0.3.7](https://github.com/cucumber/cucumber-ruby/compare/v0.3.6...v0.3.7) (2009-05-22)
2614
-
2615
- This is the "Help JetBrains RubyMine" release!
2616
-
2617
- ### New Features
2618
-
2619
- - Added new Given alias for Catalan: Donat|Donada (Lleïr Borràs Metje)
2620
- - New --expand option. This will print Scenario Outlines once for each Example row - with values expanded. (#327 Aslak Hellesøy)
2621
- - You can override the formatter in Rails-generated rake tasks with the CUCUMBER_FORMAT environment variable (#335 Aslak Hellesøy)
2622
-
2623
- ### Bugfixes
2624
-
2625
- - 'specs' folder needs to be renamed back to 'spec' (#339 Aslak Hellesøy)
2626
- - CUCUMBER_OPTS doesn't work for cucumber rake tasks (#336 Aslak Hellesøy)
2627
-
2628
- ## [0.3.6](https://github.com/cucumber/cucumber-ruby/compare/v0.3.5...v0.3.6) (2009-05-20)
2629
-
2630
- Kanban! With this release you can tag features or scenarios that are work in progress
2631
- with a tag and use the new --wip switch.
2632
-
2633
- Another handy feature in this release is that you can package your own formatters in RubyGems.
2634
-
2635
- ### New features
2636
-
2637
- - New --wip switch. See http://www.jroller.com/perryn/entry/bdd_on_a_multi_disciplined (Perryn Fowler)
2638
- - Added a AfterStep hook (Luke Melia)
2639
- - New aliases for Vietnamese (Ngoc Dao)
2640
- - Automatic require of custom formatters. --require is no longer needed to load them, and they can be in Ruby gems. (Aslak Hellesøy)
2641
- - Lazy loading of built-in formatters. Should improve startup time a little bit.
2642
-
2643
- ### Bugfixes
2644
-
2645
- - Gracefully handle exceptions in After block (#330 Matt Wynne)
2646
- - Feature with only Background doesn't run hooks (#314, #329 Aslak Hellesøy)
2647
-
2648
- ## [0.3.5](https://github.com/cucumber/cucumber-ruby/compare/v0.3.4...v0.3.5) (2009-05-15)
2649
-
2650
- Let's make a new release today because two annoying bugs are fixed.
2651
-
2652
- ### Bugfixes
2653
-
2654
- - Allow feature element names to contain Gherkin keywords as long as they are not the first word on a newline (#319, #307 Joseph Wilk)
2655
-
2656
- ## [0.3.4](https://github.com/cucumber/cucumber-ruby/compare/v0.3.3...v0.3.4) (2009-05-14)
2657
-
2658
- A couple of great new features in this release. Running with Rake is faster than before,
2659
- and there is a brand new JUnit formatter - great for Continuous Integration reports!
2660
-
2661
- This release was made especially for the Oslo XP Meetup today.
2662
-
2663
- ** IMPORTANT UPGRADE NOTES FOR RAILS USERS**
2664
-
2665
- Running Cucumber features in the same Ruby interpreter as Rake doesn't seem to work,
2666
- so you have to explicitly tell the task to fork (like it was doing by default in prior
2667
- versions). In lib/tasks/cucumber.rake:
2668
-
2669
- Cucumber::Rake::Task.new(:features) do |t|
2670
- t.fork = true # Explicitly fork
2671
- t.cucumber_opts = %w{--format pretty}
2672
- end
2673
-
2674
- (If you run script/generate cucumber this will be done for you).
2675
- Alternatively you can omit forking and run features like this:
2676
-
2677
- RAILS_ENV=test rake cucumber
2678
-
2679
- However, setting the RAILS_ENV is easy to forget, so I don't recommend relying on this.
2680
-
2681
- ### Bugfixes
2682
-
2683
- - Hooks (World, Before, After) are no longer executed when --dry-run (Aslak Hellesøy)
2684
- - Proper UTF8 use in HTML formatter (Herminio Torres)
2685
- - Problem with multiple terms in languages.yml (#321 Aslak Hellesøy)
2686
-
2687
- ### New features
2688
-
2689
- - New JUnit formatter (Gareth Jones)
2690
- - Support for Vietnamese (Ngoc Dao)
2691
- - Added aliases for Feature and But in Japanese (Leonard Chin)
2692
- - Support for Catalan (Francesc Esplugas)
2693
-
2694
- ### Changed features
2695
-
2696
- - --exclude flag now works on ruby files in addition to feature files (#312 Ben Mabey)
2697
- - The Java example under examples/java uses Ant instead of Rake - and the new JUnit formatter.
2698
- - Rake task should not shell out (#297 Aslak Hellesøy)
2699
- The Cucumber Rake task will run Cucumber in the same Ruby interpreter as Rake itself
2700
- unless explicitly told to fork a new interpreter. This is to increase speed. You can
2701
- force a new interpreter by setting fork=true or rcov=true in the task.
2702
-
2703
- ## [0.3.3](https://github.com/cucumber/cucumber-ruby/compare/v0.3.2...v0.3.3) (2009-05-10)
2704
-
2705
- Minor bugfix release, made specially for EuRuKo!
2706
-
2707
- ### Bugfixes
2708
-
2709
- - Summaries are no longer printed in an empty () if there are no scenarios/steps (Aslak Hellesøy)
2710
- - Background, Scenario Outline, Before Hook interaction (#309 Aslak Hellesøy)
2711
- - Multiline String snippets no longer give misleading info. It's a String, not a PyString that's sent to step def.
2712
-
2713
- ### Removed/changed features
2714
-
2715
- - New aliases: --no-source/-s, --name/-n (#317 Lonnon Foster)
2716
-
2717
- ## [0.3.2](https://github.com/cucumber/cucumber-ruby/compare/v0.3.1...v0.3.2) (2009-05-03)
2718
-
2719
- This release has some minor bug fixes and new features.
2720
- Nothing major, but we need a release for RailsConf'09 in Las Vegas!
2721
-
2722
- ### Bugfixes
2723
-
2724
- - rake tasks with profiles not respecting --require flags (#311 Ben Mabey)
2725
- - Step table with blank cell fails (#308 JohnnyT)
2726
- - Fixed error where unused table cells in Examples where raising exceptions due to having no status (#302 Joseph Wilk)
2727
-
2728
- ### New features
2729
-
2730
- - Support for Hebrew (Ido Kanner)
2731
- - Summary should report scenarios (#32 Aslak Hellesøy)
2732
- - Examples and the associated tables are indented one level deeper than Scenario Outline. (Aslak Hellesøy)
2733
- - Added support for Examples selection when using --name. (#295 Joseph Wilk)
2734
-
2735
- ## [0.3.1](https://github.com/cucumber/cucumber-ruby/compare/v0.3.0...v0.3.1) (2009-04-26)
2736
-
2737
- This release has several minor bug fixes and new features. With the addition of Latvian and Hungarian Cucumber
2738
- now supports 32(!!) languages.
2739
-
2740
- ### New features
2741
-
2742
- - Support multiline names for Scenarios, Scenario Outlines, Backgrounds, Examples (#231 Joseph Wilk)
2743
- - Added #headers to Cucumber::Ast::Table (Ben Mabey)
2744
- - New translation for Latvian (Vitauts Stočka)
2745
- - New translation for Hungarian (#287 Bence Golda)
2746
- - Pick up failure on after hook (#272 Aslak Hellesøy)
2747
-
2748
- ### Bugfixes
2749
-
2750
- - Pretty formatter not colouring Examples tables correctly (#304 Aslak Hellesøy)
2751
- - Problem using --scenario and Scenario Outline (#298 Aslak Hellesøy)
2752
- - Tag Hook gets executed always there is a background (#301 Aslak Hellesøy)
2753
- - Feature which only has a Background with steps causes an exception (#306 Aslak Hellesøy)
2754
- - Gem no longer depends on Hoe (Aslak Hellesøy)
2755
- - Span html tags appear on HTML results with 0.3.0 (#299 Aslak Hellesøy)
2756
- - Fixed incorrect colours in pretty formatter's table headers for outline tables (Aslak Hellesøy)
2757
- - Exceptions from steps called within hooks are now reraised. (#294 Ben Mabey)
2758
-
2759
- ### Removed/changed features
2760
-
2761
- - --scenario handle has been removed and replaced with --name which supports partial matches, regexp special characters, running named backgrounds (#295 Joseph Wilk)
2762
-
2763
- ## [0.3.0](https://github.com/cucumber/cucumber-ruby/compare/v0.2.3...v0.3.0) (2009-04-14)
2764
-
2765
- This release has some minor changes to the APIs, but big enough that a new major release is in order.
2766
- The biggest change is the new semantics of the #World method. Previously you would call this method
2767
- several times, passing a Proc and extending the world object of the previous one with a Ruby module.
2768
- The problem was that there was no nice way to ensure the order in which these procs were called, which
2769
- led to some unexpected situations. In this release you can only register a single World proc. If you
2770
- want to extend a world with certain modules, you simply call the #World method with the module(s)
2771
- you wish to extend the World with. The Sinatra example illustrates how to do this. Also check out
2772
- the RDoc for Cucumber::StepMother#World.
2773
-
2774
- The Visitor API (which is used for formatters) has also changed slightly. However, we have tried to
2775
- do this in a backwards compatible way, so if you have custom formatters for Cucumber 0.2 they should
2776
- still work.
2777
-
2778
- One of the most significant new features is Tagged Hooks: http://wiki.github.com/aslakhellesoy/cucumber/hooks
2779
- This lets you associate Before and After blocks with specific scenarios.
2780
-
2781
- We are also deprecating the step_list, step_pattern, feature_list, and feature_pattern accessors on
2782
- Cucumber::Rake::Task. These accessors will be completely removed in version 0.4. For complex settings
2783
- please rely on cucumber profiles in your rake tasks:
2784
- http://wiki.github.com/aslakhellesoy/cucumber/using-rake#profiles
2785
-
2786
- ### New features
2787
-
2788
- - Use Hooks with @tags (#229 Aslak Hellesøy)
2789
- - Rake task supports cucumber.yml profiles (#187 Ben Mabey)
2790
- - Field value steps for Webrat (Jack Chen)
2791
- - Added translation for Bulgarian (Krasimir Angelov)
2792
- - Updated translation for Polish (#273 Grzegorz Marszałek)
2793
- - Only a single World proc can be registered. World extension now happens by calling #World with ruby modules.
2794
- - Portuguese uses Funcionalidade in stead of Característica and accented words are aliased with unaccented ones (Alexandre da Silva and Felipe Coury).
2795
- - The usage formatter also prints unused step definitions (Aslak Hellesøy)
2796
- - Better exception if a World proc returns nil. (Aslak Hellesøy)
2797
- - Allow Step Definitions to use |\*varargs|, but only on Ruby 1.9. (Aslak Hellesøy)
2798
- - Snippets for steps that use Step Tables or PyStrings include block param and object type hint comment (#247 Joseph Wilk)
2799
- - Support description string for Backgrounds (#271 Joseph Wilk)
2800
-
2801
- ### Bugfixes
2802
-
2803
- - After methods not being executed when Background fails (#288 Luismi Cavallé)
2804
- - Fixed dependency on internal files in rspec breaks cucumber w/ rspec-1.2.4 (#291 Aslak Hellesøy)
2805
- - Fix color use when using autotest on Linux. (Hans de Graaff)
2806
- - Fixed incorrect calculation of pystring indentation (#279 Eugene Naydanov)
2807
- - Fixed --format html leads to an error (#252 Aslak Hellesøy)
2808
- - Fixed Background runs twice (#255 Aslak Hellesøy)
2809
- - Fixed Background Transactions and :xx (#270 Aslak Hellesøy)
2810
- - Fixed Autospec failing with cucumber 0.2 (#254 Aslak Hellesøy)
2811
- - Sibling file detecting not working (#278 Aslak Hellesøy)
2812
-
2813
- ### Removed/changed features
2814
-
2815
- - The visitor API has changed slightly:
2816
- - \#visit_step_name, #visit_multiline_arg and \#visit_exception are no longer official API methods.
2817
- - \#visit_step_result replaces those 3 methods.
2818
- - Table and PyString no longer hold status information. Each visitor subclass should store state in @state if needed.
2819
- - \#visit_py_string no longer takes a status argument.
2820
-
2821
- ## [0.2.3](https://github.com/cucumber/cucumber-ruby/compare/v0.2.2...v0.2.3) (2009-03-30)
2822
-
2823
- This release sports 4 updated languages, slightly better help with snippets if you "quote" arguments
2824
- in your steps. Windows/JRuby users can enjoy colours and you get some more sugar with Tables.
2825
-
2826
- ### New features
2827
-
2828
- - Added new Then /^I should be on (.+)$/ do |page_name| step (Grant Hollingworth)
2829
- - Use skipped_param color for examples table header (#266 Eugene Naydanov)
2830
- - Added new Cucumber::Ast::Table#rows_hash method (Torbjørn Vatn)
2831
- - Windows/JRuby users can now enjoy colourful output (via http://github.com/aslakhellesoy/ansicolor) (#166 Aslak Hellesøy)
2832
- - Ambiguous step errors hint about --guess (unless --guess already on) (Aslak Hellesøy)
2833
- - Added translation for Slovak (Ahmed Al Hafoudh)
2834
- - Updated translation for Dutch (Bart Zonneveld)
2835
- - Updated translation for Italian (Alessandro Baroni)
2836
- - Updated translation for Japanese (KAKUTANI Shintaro)
2837
-
2838
- ### Bugfixes
2839
-
2840
- - Fixed step name after step keyword without space (#265 Aslak Hellesøy)
2841
- - Backtrace is back in HTML reports (Aslak Hellesøy)
2842
-
2843
- ## [0.2.2](https://github.com/cucumber/cucumber-ruby/compare/v0.2.1...v0.2.2) (2009-03-25)
2844
-
2845
- This release includes some minor changes to make Cucumber work with pure Java. Cucumber
2846
- has already worked with Java for a while (using JRuby and step definitions in Ruby),
2847
- but now you can write step definitions in pure Java!
2848
-
2849
- Check out the Cucumber Java project for more details:
2850
- http://github.com/aslakhellesoy/cucumber_java/tree/master
2851
-
2852
- ## [0.2.1](https://github.com/cucumber/cucumber-ruby/compare/v0.2.0...v0.2.1) (2009-03-25)
2853
-
2854
- This release fixes a few minor bugs and adds a couple of new features.
2855
-
2856
- ### Bugfixes
2857
-
2858
- - Fixed Cucumber, and rails controller error handling (#49 Matt Patterson)
2859
- - HTML Formatter doesn't work correctly with scenario Outlines. (#260 Aslak Hellesøy)
2860
- - After blocks are run in reverse order of registration. (#113 Aslak Hellesøy)
2861
- - Snippets are showing 'Ands' (#249 Aslak Hellesøy)
2862
-
2863
- ### New features
2864
-
2865
- - Snippets use a regexp and block arguments if the step name has "quoted" arguments. (Aslak Hellesøy)
2866
- - Cucumber::Ast::Feature#to_sexp includes the file name. (Aslak Hellesøy)
2867
- - support/env.rb is not loaded when --dry-run is specified. This is to increase performance. (Aslak Hellesøy)
2868
- - New usage formatter. This is the foundation for editor autocompletion and navigation between steps and step definitions. (#209 Aslak Hellesøy)
2869
-
2870
- ### Removed features
2871
-
2872
- - -S/--step-definitions option introduced in 0.2.0 is removed. Use --format usage [--dry-run] [--no-color].
2873
-
2874
- ## [0.2.0](https://github.com/cucumber/cucumber-ruby/compare/v0.1.16...v0.2.0) (2009-03-18)
2875
-
2876
- This release sports a bunch of new and exciting features, as well a major rewrite of Cucumber's internals.
2877
- The rewrite was done to address technical debt and to have a code base that is easier to evolve and maintain.
2878
-
2879
- There are some changes to the Gherkin language that breaks backwards compatible with the 0.1.x series.
2880
- Most importantly, "GivenScenario" and "More Examples" no longer exist. See the "Removed features" section
2881
- below for more details on how to use alternatives.
2882
-
2883
- Since the grammar has changed, there are some new keywords. We have to rely on the community
2884
- to provide updated translations. This is much easier than before - just update languages.yml.
2885
- There is no static code generation anymore. To list all languages:
2886
-
2887
- cucumber --lang help
2888
-
2889
- And to list the keywords for a particular language:
2890
-
2891
- cucumber --lang en-lol help
2892
-
2893
- There are some really awesome new features in this release: Tagging, Autoformatting, automatic
2894
- aliasing of keywords in all languages, full Ruby 1.9 support and improved output
2895
- for multiline arguments are some of the highlights.
2896
-
2897
- ### Bugfixes
2898
-
2899
- - New StepInvocation breaks console formatter for pending steps. (#241 Jacob Radford)
2900
- - Within Scenario Outlines when replacing with a nil in a step name use empty string instead. (#237 Joseph Wilk)
2901
- - Fixed bug with Scenario Outlines incorrectly replacing values in step tables with nil. (#237 Joseph Wilk)
2902
- - Within Scenario Outlines when replacing with a nil in multiline strings use empty string instead. (#238 Joseph Wilk)
2903
- - Re-structure the ast: Feature -> Background -> (Scenario|ScenarioOutline)\*. Fixes bug with background being called outside transactions. (#181 Joseph Wilk)
2904
- - --strict always exits with status 1 (#230 Tim Cuthbertson)
2905
- - Fix error with nil values in tables raising an exception (#227 Joseph Wilk)
2906
- - Add support for using << in formatters to ensure the html formatter works (#210 Joseph Wilk)
2907
- - Explicitly require env.rb files first to avoid potential load order problems. (#213, Ben Mabey, Randy Harmon)
2908
- - Depend on polyglot version (0.2.4) to avoid masking require errors. (Aslak Hellesøy).
2909
- - -n option does not suppress the line info for a Scenario Outline (#175 Aslak Hellesøy)
2910
- - Errors with rspec-rails matchers in cucumber 0.1.99 (#173 David Chelimsky)
2911
- - Can't use an empty string as a table value in a scenario outline (#172 Aslak Hellesøy)
2912
- - Really skip skipped steps (#90 Aslak Hellesøy)
2913
- - No output for multi-line strings (#71 Aslak Hellesøy)
2914
- - Fix cucumber/formatter/unicode flaws on Windows (#145 Michael)
2915
- - Autotest-related Bugs: YAML missing (#136 Tobias Pape)
2916
- - Overeager "rescue LoadError" hides lots of errors (#137 Jonathan del Strother)
2917
- - Nested steps don't show mismatch (#116 Aslak Hellesøy)
2918
- - Pending steps in > steps called from steps (#65 Aslak Hellesøy)
2919
-
2920
- ### New features
2921
-
2922
- - Australian translation (Josh Graham)
2923
- - Added World#puts(announcment) which lets you output text to the formatted output (#222 Rob Kaufmann)
2924
- - Added Table#transpose to to allow use of vertically aligned table keys (Torbjørn Vatn, Aslak Hellesøy)
2925
- - Added Table#map_headers to to allow use of more readable headers (Rob Holland)
2926
- - New -S/--step-definitions option. Useful (among other things) for tools that implement automcompletion. (#208 Aslak Hellesøy).
2927
- - The cucumber.rake file defines a dummy :features task if Cucumber is not installed (#225 Josh Nichols)
2928
- - Added Table#map_column! to ease casting of cell values into relevant types (#223 Rob Holland)
2929
- - New --no-diff option (#218 Bryan Ash)
2930
- - Rails generators supports testunit and rspec option, defaulting to rspec (#217 Josh Nichols)
2931
- - Sinatra Example (#204 Rob Holland)
2932
- - Keywords can be aliased in languages.yml. See English for an example (examples: Examples|Scenarios)
2933
- - Adding support for Background (#153 Joseph Wilk)
2934
- - Added Česky/Czech (Vojtech Salbaba)
2935
- - New --no-multiline option to reduce noise in output. Useful if lots of features are failing. (Aslak Hellesøy)
2936
- - Added ability to pass URIs to cucumber in addition to files and directories. Useful for troubleshooting! (Aslak Hellesøy)
2937
- - Groups of tabular scenarios (#57 Aslak Hellesøy)
2938
- - Tagging scenarios and features. Pick the ones to run with --tags (#54 Aslak Hellesøy)
2939
- - Make the current scenario available to the steps. (#44 Aslak Hellesøy)
2940
- - Step definition snippets contain a 'pending' call (#84 Aslak Hellesøy)
2941
- - Call multiline steps from other steps (#144 Aslak Hellesøy)
2942
- - Run cucumber with --autoformat DIR to reformat (pretty print) all of your feature files. (Aslak Hellesøy)
2943
- - New --strict option exits with an error code if there are undefined steps. (#52 Aslak Hellesøy)
2944
- - Given, When, Then methods (used in step definitions) are automatically aliased to current language. Use $KCODE='u' in env.rb if needed.
2945
- - Run cucumber --language help to see all supported languages. (Aslak Hellesøy)
2946
- - Run cucumber --language LANG help to see keywords for a given language. (Aslak Hellesøy)
2947
- - Multiline arguments (tables and """ strings) are printed in the output. (Aslak Hellesøy)
2948
- - It's no longer necessary to compile the Treetop grammar when adding a new language. Localised parser is generated at runtime. (Aslak Hellesøy)
2949
- - New --guess option tries to guess the best step definition match instead of raising Cucumber::Multiple. (Jake Howerton)
2950
-
2951
- ### Removed features
2952
-
2953
- - "GivenScenario" is gone. Instead you can call Steps from Step Definitions, or use the new Background feature (#153)
2954
- - "More Examples" is gone. "Scenario" + "More Examples" is no longer supported. Use "Scenario Outline" + "Examples" instead.
2955
- - Pure Ruby features are no longer supported.
2956
- - Remove --color option in autotest. Can be added manually in cucumber.yml (#215 Jean-Michel Garnier)
2957
-
2958
- ## 0.1.16.4 (2009-01-22)
2959
-
2960
- Bugfix release.
2961
-
2962
- IMPORTANT NOTE FOR RAILS USERS.
2963
- The template used to generate your features/support/env.rb has changed. You have to apply a minor change
2964
- manually for existing Rails projects when you upgrade to this version. Change this:
2965
-
2966
- require 'webrat/rspec-rails'
2967
-
2968
- to this:
2969
-
2970
- require 'webrat/core/matchers'
2971
-
2972
- ### New features
2973
-
2974
- - Finnish translation (Tero Tilus)
2975
- - Use Webrat's #contain matcher in generated "I should (not) see" step definitions (Bryan Helmkamp)
2976
-
2977
- == Bugfixes
2978
-
2979
- - Escaped quotes - \" - inside multiline strings will be unescaped.
2980
- - Flush output in HTML formatter since JRuby doesnt do it automatically (Diego Carrion)
2981
- - Better handling of ARGV (#169 David Chelimsky, Ben Mabey)
2982
- - Compatibility with ruby-debug (do ARGV.dup in bin/cucumber so it can restart ruby with same args) (Aslak Hellesøy)
2983
-
2984
- ## [0.1.16](https://github.com/cucumber/cucumber-ruby/compare/v0.1.15...v0.1.16) (2009-01-18)
2985
-
2986
- This is a small bugfix release. The most notable improvement is compatibility with Webrat 0.4. Rails/Webrat users should
2987
- upgrade both Cucumber and Webrat gems.
2988
-
2989
- ### New features
2990
-
2991
- - Allow argument placeholders in step tables and multiline comments (#121 Joseph Wilk)
2992
- - Scenario Outline can be followed by several named Examples sections (#123 Aslak Hellesøy)
2993
- - Add the #binary= method back to the Rake task. It is needed by merb_cucumber for running the features of a merb app with it's bundled gems. (Thomas Marek)
2994
- - Added a /^When I go to (.+)$/ step definition to webrat_steps.rb and a simple page name to path mapping method (Bryan Helmkamp)
2995
-
2996
- ### Bugfixes
2997
-
2998
- - Fix to run single scenarios when the line number specified doesn't correspond to a step (i.e. blank lines or rows) (#160 Luismi Cavallé)
2999
-
3000
- ### Removed features
3001
-
3002
- ## [0.1.15](https://github.com/cucumber/cucumber-ruby/compare/v0.1.14...v0.1.15) (2009-01-07)
3003
-
3004
- Bugfix release
3005
-
3006
- ### New features
3007
-
3008
- - 한국어! (Korean!) (John Hwang)
3009
-
3010
- ### Bugfixes
3011
-
3012
- - --dry-run skips running before/after/steps (#147 Ian Dees)
3013
- - Fix a minor bug in the console formatter's summary (David Chelimsky)
3014
- - Better quoting of Scenario names in Autotest (Peter Jaros)
3015
- - Added some small workarounds for unicode handling on Windows (Aslak Hellesøy)
3016
-
3017
- ## [0.1.14](https://github.com/cucumber/cucumber-ruby/compare/v0.1.13...v0.1.14) (2009-01-04)
3018
-
3019
- This is the first release of Cucumber that runs on Ruby 1.9. There are still some encoding-related issues
3020
- with Arabic (ar), Japanese (ja) and Simplified Chinese (zh-CN). Patches are welcome. Other than that -
3021
- a couple of minor bug fixes and polishing.
3022
-
3023
- ### New features
3024
-
3025
- - Pretty formatter shows number of scenarios (#139 Joseph Wilk)
3026
- - Rudimentary support for Ruby 1.9. Now it's ok to file Ruby 1.9-related bugs.
3027
-
3028
- ### Bugfixes
3029
-
3030
- - Fixed "No such file or directory -- cucumber (LoadError)" bug with AutoTest (Aslak Hellesøy)
3031
- - Fixed `load_missing_constant': uninitialized constant Dispatcher error with Rails (Aslak Hellesøy)
3032
-
3033
- ### Removed features
3034
-
3035
- - The #binary= method is gone from the Rake task. It will always point to the binary in the current gem. (Aslak Hellesøy)
3036
-
3037
- ## [0.1.13](https://github.com/cucumber/cucumber-ruby/compare/v0.1.12...v0.1.13) (2008-12-20)
3038
-
3039
- It's time for some new features again. Output is now much better since you can use diffing, tweak
3040
- the output colours and get the full --backtrace if you want. Managing your support/\* files became
3041
- a little easier since they are now always loaded before the step definitions. Life became easier
3042
- for Windows users in Norway (and other countries using unicode in the features). Plus several other
3043
- bug fixes.
3044
-
3045
- Enjoy!
3046
-
3047
- ### New features
3048
-
3049
- - Console output is no longer bold, but regular. Step arguments are bold instead of blold+underlined. (Aslak Hellesøy)
3050
- - Console output can be configured with CUCUMBER_COLORS in your shell. (Aslak Hellesøy)
3051
- - Added new --backtrace option to show full backtrace (Aslak Hellesøy)
3052
- - Enable RSpec's diffing automatically if RSpec is loaded (Aslak Hellesøy)
3053
- - Files in support directories are loaded before any other file (i.e. step definitions.) (#120, Ben Mabey)
3054
- - The Rails features generator got some love and is now tested: http://github.com/aslakhellesoy/cucumber_rails (Aslak Hellesøy)
3055
- - --language is aliased to -l instead of -a (-l became available when --line was refactored) (Aslak Hellesøy)
3056
- - Scenario Outlines which through placeholders in the steps allow control of how scenario table values are used. (#57 Joseph Wilk)
3057
- - Scenario Outlines are now usable in pure ruby (Joseph Wilk)
3058
- - Add support for calling 'pending' from step definitions. (#112 Joseph Wilk)
3059
-
3060
- ### Bugfixes
3061
-
3062
- - Make rails before filters work correctly (#122, #129 Guillermo Álvarez Fernández)
3063
- - Proper Unicode support for Windows command shells: Just require cucumber/formatter/unicode in env.rb (Aslak Hellesøy)
3064
- - Fixed disappearing "a" on Windows (#81 Aslak Hellesøy)
3065
- - Fixed a bug where row step outlines were loosing step tables. (#121 Joseph Wilk, Ben Mabey)
3066
- - The Cucumber Autotest plugin now launches JRuby if autotest is run with JRuby (Aslak Hellesøy)
3067
- - Provide helpful and non-confusing error message when specified profile is blank. (#118, Ben Mabey)
3068
- - Improve handling and error messages for malformed cucumber.yml files. (#117, Ben Mabey)
3069
- - document :x run option in command line help (#114, Aslak Hellesøy)
3070
- - Change 'visits' to 'visit' in features generator to comply with new Webrat API (Darius Roberts)
3071
-
3072
- ### Removed features
3073
-
3074
- ## [0.1.12](https://github.com/cucumber/cucumber-ruby/compare/v0.1.11...v0.1.12) (2008-12-04)
3075
-
3076
- This is the "getting serious with IronRuby release" - largely based on
3077
- "Patrick Gannon":http://www.patrickgannon.net/archive/2008/10/23/bdd-style-feature-tests-using-ironruby-and-rspeccucumber.aspx's
3078
- blog entry.
3079
-
3080
- ### New features
3081
-
3082
- - Cucumber works with IronRuby/.NET - http://github.com/aslakhellesoy/cucumber/wikis/ironruby-and-net (Aslak Hellesøy)
3083
-
3084
- ### Bugfixes
3085
-
3086
- - Fixed bug which was preventing coloring under Autotest (#111, Alan Larkin)
3087
-
3088
- ### Removed features
3089
-
3090
- None
3091
-
3092
- ## [0.1.11](https://github.com/cucumber/cucumber-ruby/compare/v0.1.10...v0.1.11) (2008-12-02)
3093
-
3094
- Bugfix release with a couple of minor additional features to the command line options.
3095
-
3096
- ### New features
3097
-
3098
- - Capture output from cucumber in Autotest (Alan Larkin)
3099
- - Update cucumber generator to work with latest Webrat (Bryan Helkamp)
3100
- - CUCUMBR LIKEZ 2 SPEEK WIF KATS. KTHXBAI (Aimee Daniells)
3101
- - Support for dynamically pluggable formatters (#99 Joseph Wilk)
3102
- - --verbose mode to see ruby files and feature files loaded by Cucumber (#106 Joseph Wilk)
3103
-
3104
- ### Bugfixes
3105
-
3106
- - The jcode library is not loaded on JRuby/Rails. Workaround for http://tinyurl.com/55uu3u. (Aslak Hellesøy)
3107
- - Support including modules for class passed to --format (#109 Joseph Wilk)
3108
-
3109
- ### Removed features
3110
-
3111
- - The cucumber gem no longer depends on the rspec gem. It must be downloaded manually if RSpec is used. (Jeff Rafter)
3112
-
3113
- ## [0.1.10](https://github.com/cucumber/cucumber-ruby/compare/v0.1.9...v0.1.10) (2008-11-25)
3114
-
3115
- This release mostly has smaller bugfixes. The most significant new feature is how
3116
- line numbers are specified. You can now run multiple features at specific lines numbers like this:
3117
-
3118
- cucumber foo.feature:15 bar.feature:6:45:111
3119
-
3120
- This will run foo.feature at line 15 and bar.feature at line 6, 45 and 111.
3121
-
3122
- ### New features
3123
-
3124
- - Added example showing how to use Cucumber with Test::Unit + Matchy instead of RSpec (Aslak Hellesøy)
3125
- - Yield existing world object to World block (#87 Aslak Hellesøy)
3126
- - AUTOFEATURE=tRue works (case insensitive) (Aslak Hellesøy)
3127
- - Initial support for .NET via IronRuby. (Aslak Hellesøy)
3128
- - Lithuanian translation (sauliusgrigaitis)
3129
- - New webrat step defintions to wrap the new selects_time, selects_date, and selects_datetime methods. (Ben Mabey)
3130
- - Try to load webrat gem if it's not installed as a plugin (Aslak Hellesøy)
3131
- - Support example.feature:20 or example.feature:10:20:30 syntax for running features at specific line number(s). (#88 Joseph Wilk)
3132
-
3133
- ### Bugfixes
3134
-
3135
- - Windows - all the 'a' characters in the output have gone on strike (#81 Luis Lavena, Joseph Wilk, Aslak Hellesøy)
3136
- - Raise a nice error when encountering step definition without block (#95 Aslak Hellesøy)
3137
- - Features written using Ruby where breaking due to missing a line number (#91 Joseph Wilk)
3138
- - Directly creating a Table meant the scenario table header was never set which was causing a formatter error (#91 Joseph Wilk)
3139
-
3140
- ### Removed features
3141
-
3142
- - $KCODE='u' is no longer done automatically. Developers should do that explicitly when needed in step definitions or env.rb.
3143
- - Step definition without a block being treated as pending (#64 Joseph Wilk)
3144
- - The --line option has been removed. Use the new file.feature:line format instead.
3145
-
3146
- ## [0.1.9](https://github.com/cucumber/cucumber-ruby/compare/v0.1.8...v0.1.9) (2008-11-12)
3147
-
3148
- With this release Cucumber supports 19 (!) natural languages:
3149
-
3150
- - Arabic
3151
- - Chinese Simplified
3152
- - Danish
3153
- - Dutch
3154
- - Estonian
3155
- - French
3156
- - German
3157
- - Italian
3158
- - Japanese
3159
- - Malay
3160
- - Norwegian
3161
- - Polish
3162
- - Portuguese
3163
- - Romanian
3164
- - Russian
3165
- - Spanish
3166
- - Swedish
3167
- - Texan
3168
- - Welsh
3169
-
3170
- Thanks a lot to everyone who has contributed translations. If you don't see your language here, please
3171
- add it: http://github.com/aslakhellesoy/cucumber/wikis/spoken-languages
3172
-
3173
- Main functional changes in this release is "Autotest":http://github.com/aslakhellesoy/cucumber/wikis/autotest-integration
3174
- support and how multiline strings work in feature files:
3175
-
3176
- # In your .feature file
3177
- Then I should see
3178
- """
3179
- A string
3180
- that "indents"
3181
- and spans
3182
- several lines
3183
-
3184
- """
3185
-
3186
- # In your steps.rb file
3187
- Then 'I should see' do |text|
3188
- text.should == "A string\n that \"indents\"\nand spans\nseveral lines\n"
3189
- end
3190
-
3191
- The triple quotes are used to define the start and end of a string, and it also defines what gets stripped away
3192
- in the inside string. If the triple quotes are indented 4 spaces, then the text within will have the 4 first
3193
- spaces removed too.
3194
-
3195
- ### New features
3196
-
3197
- - Added --[no-]color option to force color on or off (Peter Jaros)
3198
- - Step definition without a block will be treated as pending (#64 Joseph Wilk)
3199
- - Added support for Welsh (improvements welcome) (Joseph Wilk)
3200
- - Added --quiet option to hide all development aid output when using Pretty formatter (#69 Joseph Wilk)
3201
- - Added --no-snippets option to hide snippets for pending steps when using Pretty formatter (#69 Joseph Wilk)
3202
- - Added error messages concerning cucumber.yml. (#70 Ben Mabey)
3203
- - Added Autotest support - work in progress... (Peter Jaros)
3204
- - Added new --exclude option (Bryan Helkamp)
3205
- - Added new --scenario option (Peter Jaros)
3206
- - Renamed common_webrat.rb to webrat_steps.rb (Ben Mabey, Aslak Hellesøy)
3207
- - Added new feature[:feature_path] task (Roman Gonzalez)
3208
- - Added support for Polish (Joseph Wilk)
3209
- - Support specifying multiple formatters and multiple outputs (#47 Joseph Wilk)
3210
- - Added support for Japanese. (Kakutani Shintaro)
3211
- - Added support for Texan (improvements welcome). (Aslak Hellesøy)
3212
-
3213
- ### Bugfixes
3214
-
3215
- - Pending step snippets should escape special Regexp characters (#82 Joseph Wilk)
3216
- - Scenario without a body shouldn't show up as complete (#63 Josh Knowles)
3217
- - Fixed bug where utf-8 strings where breaking comment alighments. (#79 Joseph Wilk)
3218
- - Fixed next_column_index not resetting after large tables (#60, Barry Mitchelson)
3219
- - The HTML formatter was rendering everything twice. Cannot invoke visit_feature on formatters in executor (#72 Joseph Wilk)
3220
- - Row Scenarios need to support pending? in order for the Profile formatter to work (Joseph Wilk)
3221
- - Snippets are not shown for steps which already have a step definition (#65 Joseph Wilk)
3222
- - Prevent feature/scenario/pending step comments from containing '//' when running features by specifying a directory with a trailing '/' (Joseph Wilk)
3223
- - Scenario tables need spacing after them (#59 Joseph Wilk)
3224
- - Support running scenario table rows when using --line argument (#55 Joseph Wilk)
3225
- - Don't load cucumber.yml unless it exists (Aslak Hellesøy)
3226
- - Fixing bug where specifying line number 1 in a feature which starts with a scenario with a scenario table was raising an error (#56 Joseph Wilk)
3227
-
3228
- ### Removed features
3229
-
3230
- ## [0.1.8](https://github.com/cucumber/cucumber-ruby/compare/v0.1.7...v0.1.8) (2008-10-18)
3231
-
3232
- This release extends the support for tables. PLEASE NOTE THAT TABLES ARE STILL EXPERIMENTAL.
3233
- In previous releases it has been possible to use tables to define "more examples" of a scenario in
3234
- a FIT-style column fixture kind of way. Now you can also use tables as arguments to steps.
3235
-
3236
- Tables used to define more examples after a scenario must now be prefixed. In English it looks like this:
3237
-
3238
- Feature: Addition
3239
- In order to avoid silly mistakes
3240
- As a math idiot
3241
- I want to be told the sum of two numbers
3242
-
3243
- Scenario: Add two numbers
3244
- Given I have entered 50 into the calculator
3245
- And I have entered 70 into the calculator
3246
- When I press add
3247
- Then the result should be 120 on the screen
3248
-
3249
- More Examples:
3250
- | input_1 | input_2 | button | output |
3251
- | 20 | 30 | add | 50 |
3252
- | 2 | 5 | add | 7 |
3253
- | 0 | 40 | add | 40 |
3254
-
3255
- Languages that are not updated yet will have to use "More Examples" until we get the translations.
3256
-
3257
- Tables can also be used as arguments to individual steps. In fact, steps now support a single argument
3258
- that can span several lines. This can be a table or a string.
3259
-
3260
- Example:
3261
-
3262
- Given the following people exist:
3263
- | name | email | phone |
3264
- | Aslak | aslak@email.com | 123 |
3265
- | Joe | joe@email.com | 234 |
3266
- | Bryan | bryan@email.org | 456 |
3267
- When I search for email.com
3268
- Then I should see:
3269
- | name | email | phone |
3270
- | Aslak | aslak@email.com | 123 |
3271
- | Joe | joe@email.com | 234 |
3272
- And I should see:
3273
- "Some text
3274
- on several lines"
3275
-
3276
- The step definitions for such multiline steps must define an extra block argument for the argument:
3277
-
3278
- Given /the following people exist:/ do |people_table|
3279
- # people_table is of type Cucumber::Model::Table
3280
- # See RDoc for more info
3281
- end
3282
-
3283
- Then /I should see:/ do |string|
3284
- # string is a plain old ruby String with leading spaces on each line removed
3285
- end
3286
-
3287
- ### New features
3288
-
3289
- - Added profile formatter. (#35, Joseph Wilk)
3290
- - Added support for Chinese Simplified. (Liming Lian)
3291
- - Added support for Dutch. (Sjoerd Tieleman)
3292
- - Multiline steps are now supported. (#4, Aslak Hellesøy)
3293
- - Tables used to define more examples for a scenario must be prefixed "More Examples" (see languages.yml for other languages)
3294
- - Show the file and line number for scenarios as a comment when displaying with the pretty formatter. (#40, Joseph Wilk)
3295
- - Show the file for the feature as a comment when displaying with the pretty formatter. (#40, Joseph Wilk)
3296
- - Show the feature file and line for pending steps as a comment when displaying with the pretty formatter. (#40, Joseph Wilk)
3297
-
3298
- ### Bugfixes
3299
-
3300
- - Fixed speling errors in Spanish (Daniel Cadenas)
3301
- - ActionMailer delivery_method should not be set to test (#41, Luke Melia)
3302
- - Reverse incorrectly ordered args in webrat select step (#43, David Chelimsky)
3303
- - Support comments above the first scenario (#31, Aslak Hellesøy)
3304
- - Fixed the HTML Formatter to use actual values for FIT table headers (#30, Joseph Wilk)
3305
-
3306
- ### Removed features
3307
-
3308
- - Removed the /^I go to (.\*)$/ step from common_webrat.rb - it's not language agnostic and provides little value.
3309
-
3310
- ### New features
3311
-
3312
- - Added new --out option to make it easier to specify output from Rake and cucumber.yml
3313
-
3314
- ## [0.1.7](https://github.com/cucumber/cucumber-ruby/compare/v0.1.6...v0.1.7) (2008-10-05)
3315
-
3316
- This release fixes a few bugs and adds some new features. The most notable features are:
3317
-
3318
- ### Calling steps from steps
3319
-
3320
- Step definitions are a little bit closer to having regular method semantics.
3321
- You define them, but now you can also call them from other steps. Here is an
3322
- example:
3323
-
3324
- Given /I am logged in as an (.*) named (.*)$/ do |role, name|
3325
- Given "I am registered as #{role}, #{name}, secret"
3326
- When "I log in with #{name}, secret"
3327
- end
3328
-
3329
- Given /I am registered as (.*), (.*), (.*)/ do |role, name, password|
3330
- # (Code removed for brevity)
3331
- end
3332
-
3333
- When /I log in with (.*), (.*)/ do |name, password|
3334
- # (Code removed for brevity)
3335
- end
3336
-
3337
- This means that steps can be reused in other steps. The GivenScenario feature achieves a similar
3338
- effect (on the scenario level), but this feature is something we're not very happy with, mostly
3339
- because it's not parameterisable. Calling steps from steps is.
3340
-
3341
- GivenScenario will still be working several releases, but the plan is to remove it completely in
3342
- the 0.3.0 release.
3343
-
3344
- ### Seeing where a step is defined
3345
-
3346
- Prior to this release it could be hard to find out where the ruby step definition matching
3347
- a plain text step is defined. Not anymore! Cucumber will now output this:
3348
-
3349
- Scenario: Regular numbers
3350
- Given I have entered 3 into the calculator # features/steps/calculator_steps.rb:12
3351
- And I have entered 2 into the calculator # features/steps/calculator_steps.rb:12
3352
- When I press divide # features/steps/calculator_steps.rb:16
3353
- Then the result should be 1.5 on the screen # features/steps/calculator_steps.rb:20
3354
- And the result class should be Float # features/steps/calculator_steps.rb:24
3355
-
3356
- ### Bugfixes
3357
-
3358
- - Fixed a bug in the command line args being lost when using --profile (#27, Joseph Wilk)
3359
- - Fixed a bug in Webrat selects (Tim Glen)
3360
- - Fixed parsing of DOS line endings (#2, #28, Aslak Hellesøy)
3361
-
3362
- ### New features
3363
-
3364
- - Steps can be called from other steps (#3, Bryan Helmkamp, Aslak Hellesøy)
3365
- - Added But keyword to all languages (#21, Aslak Hellesøy)
3366
- - Added --no-source option to display step definition location next to step text (#26, Joseph Wilk, Aslak Hellesøy)
3367
- - Added more Webrat steps (#25, Tim Glen)
3368
-
3369
- ## [0.1.6](https://github.com/cucumber/cucumber-ruby/compare/f3292f4023a707099d02602b2bd6c4ca3cec6820...v0.1.6) (2008-10-01)
3370
-
3371
- First gem release!