@cucumber/cucumber 7.3.1 → 7.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +4 -3
  2. package/CHANGELOG.md +0 -1922
package/CHANGELOG.md DELETED
@@ -1,1922 +0,0 @@
1
- # Changelog
2
- All notable changes to this project will be documented in this file.
3
-
4
- The format is based on [Keep a Changelog](http://keepachangelog.com/)
5
- and this project adheres to [Semantic Versioning](http://semver.org/).
6
-
7
- Please see [CONTRIBUTING.md](https://github.com/cucumber/cucumber/blob/master/CONTRIBUTING.md) on how to contribute to Cucumber.
8
-
9
- ----
10
- ## [Unreleased] (In Git)
11
-
12
- ### Added
13
-
14
- ### Changed
15
-
16
- ### Deprecated
17
-
18
- ### Removed
19
-
20
- ### Fixed
21
-
22
- ## [7.3.1] (2021-07-20)
23
-
24
- ### Deprecated
25
-
26
- * Deprecate `setDefinitionFunctionWrapper` and step definition option `wrapperOptions`
27
-
28
- ### Fixed
29
-
30
- * Prevent duplicate scenario execution where the same feature is targeted in multiple line expressions ([#1706](https://github.com/cucumber/cucumber-js/issues/1706))
31
- * Fixed reports banner to point to [new docs](https://cucumber.io/docs/cucumber/environment-variables/) about environment variables
32
- * Re-add color functions for use with custom formatters [1582](https://github.com/cucumber/cucumber-js/issues/1582)
33
- * IParameterTypeDefinition regexp fix [1702](https://github.com/cucumber/cucumber-js/issues/1702)
34
-
35
- ## [7.3.0] (2021-06-17)
36
-
37
- ### Added
38
-
39
- * Experimental support for [Markdown](https://github.com/cucumber/common/blob/main/gherkin/MARKDOWN_WITH_GHERKIN.md)
40
- ([#1645](https://github.com/cucumber/cucumber-js/pull/1645))
41
-
42
- ### Changed
43
-
44
- * All `testCase` messages now emitted upfront at the start of the run (relevant for formatter authors) ([#1408](https://github.com/cucumber/cucumber-js/issues/1408)
45
- [#1669](https://github.com/cucumber/cucumber-js/pull/1669))
46
- * Clarify that the JSON formatter will not be removed any time soon
47
-
48
- ### Fixed
49
-
50
- * `this` now has correct TypeScript type in support code functions ([#1667](https://github.com/cucumber/cucumber-js/issues/1667) [#1690](https://github.com/cucumber/cucumber-js/pull/1690))
51
- * Progress bar formatter now reports total step count correctly ([#1579](https://github.com/cucumber/cucumber-js/issues/1579)
52
- [#1669](https://github.com/cucumber/cucumber-js/pull/1669))
53
- * Rerun functionality will now run nothing if the rerun file is empty from the previous run ([#1302](https://github.com/cucumber/cucumber-js/issues/1302) [#1568](https://github.com/cucumber/cucumber-js/pull/1568))
54
- * All messages now emitted with project-relative `uri`s
55
- ([#1534](https://github.com/cucumber/cucumber-js/issues/1534)
56
- [#1672](https://github.com/cucumber/cucumber-js/pull/1672))
57
- * Json formatter now works with tagged examples
58
- ([#1621](https://github.com/cucumber/cucumber-js/issues/1621)
59
- [#1651](https://github.com/cucumber/cucumber-js/pull/1651))
60
-
61
- ## [7.2.1] (2021-04-21)
62
-
63
- ### Fixed
64
-
65
- * Temporarily remove ESM changes due to impact on formatters
66
-
67
- ## [7.2.0] (2021-04-20)
68
-
69
- ### Added
70
-
71
- * Experimental support for native ES modules via the [`--esm` flag](./docs/cli.md#es-modules-experimental-nodejs-12) ([#1589](https://github.com/cucumber/cucumber-js/pull/1589))
72
-
73
- ## [7.1.0] (2021-04-06)
74
-
75
- ### Added
76
-
77
- - Support attachments that are already base64-encoded via a prefix on the MIME type e.g. `this.attach(base64String, 'base64:image/png')` ([#1552](https://github.com/cucumber/cucumber-js/pull/1552))
78
- - Support tagged rules ([cucumber#1123](https://github.com/cucumber/cucumber/issues/1123))
79
-
80
- ### Fixed
81
-
82
- * Fix types for hook functions so they can return e.g. `'skipped'` ([#1542](https://github.com/cucumber/cucumber-js/pull/1542))
83
- * Display the response of the reports server when an error is returned before failing. ([#1608](https://github.com/cucumber/cucumber-js/pull/1608))
84
- * Remove unnecessary implicit dependency on `long` package ([cucumber#1313](https://github.com/cucumber/cucumber/pull/1313))
85
- * Remove unnecessary transitive dependencies on `react` etc ([cucumber#1308](https://github.com/cucumber/cucumber/pull/1308))
86
-
87
- ## [7.0.0] (2020-12-21)
88
-
89
- ### Added
90
-
91
- * Add a built in `html` formatter for rich HTML reports output as a standalone page ([#1432](https://github.com/cucumber/cucumber-js/pull/1432))
92
- * Add support for `BeforeStep` and `AfterStep` hooks ([#1416](https://github.com/cucumber/cucumber-js/pull/1416))
93
- * Custom formatters can now be resolved by a module name (as well as by a relative path), enabling use of Yarn PnP ([#1413](https://github.com/cucumber/cucumber-js/pull/1413))
94
-
95
- ### Removed
96
-
97
- * Support for running Cucumber in web browsers has been removed ([#1508](https://github.com/cucumber/cucumber-js/pull/1508)). This feature was increasingly difficult to support and seldom used. Node.js will now be the only support runtime for Cucumber itself; of course as before you can still use tools like WebDriver and Puppeteer to instrument testing of browser-based software. See [the discussion in #1437](https://github.com/cucumber/cucumber-js/issues/1437) for more about why this change is happening.
98
-
99
- ### Fixed
100
-
101
- * Wrong version in meta message [#1439](https://github.com/cucumber/cucumber-js/issues/1439) [#1442](https://github.com/cucumber/cucumber-js/pull/1442)
102
-
103
- ## [7.0.0-rc.0] (2020-09-14)
104
-
105
- See the [migration guide](./docs/migration.md) for details of how to migrate from 6.x.x.
106
-
107
- ### New Features
108
-
109
- * Add `--publish` option to publish reports to [reports.cucumber.io](https://reports.cucumber.io) [#1423](https://github.com/cucumber/cucumber-js/issues/1423), [#1424](https://github.com/cucumber/cucumber-js/pull/1424)
110
- * Add support for Gherkin's [Rule/Example syntax](https://cucumber.io/docs/gherkin/reference/#rule)
111
- * Add `transpose` method to [data table interface](docs/support_files/data_table_interface.md)
112
- * Add `log` function to world, providing a shorthand to log plain text as [attachment(s)](docs/support_files/attachments.md)
113
- * Now includes [TypeScript](https://www.typescriptlang.org/) type definitions, deprecating the need for `@types/cucumber` in TypeScript projects
114
-
115
- ### Breaking changes
116
-
117
- * The npm module has changed name from `cucumber` to `@cucumber/cucumber` - `require`/`import` statements must be changed from `cucumber` to `@cucumber/cucumber`
118
- * TypeScript users must rename `TableDefinition` to `DataTable`
119
- * Drop support for Node.js 8, add support for Node.js 14
120
- * Formatters
121
- * Events are now based on [cucumber-messages](https://github.com/cucumber/cucumber/tree/master/messages)
122
- * `event-protocol` formatter has been removed and replaced with `message`
123
- * Remove long-deprecated `typeName` from options object for `defineParameterType` in favour of `name`
124
- * Parallel runtime environment variables renamed for inclusivity:
125
- * `CUCUMBER_TOTAL_SLAVES` is now `CUCUMBER_TOTAL_WORKERS`
126
- * `CUCUMBER_SLAVE_ID` is now `CUCUMBER_WORKER_ID`
127
- * Custom formatters are now loaded via the regular require paths relative to the current directory, unless it begins with a dot (e.g. `--format=./relpath/to/formatter`). Previously this was always loaded as a file relative to the current directory.
128
-
129
- ### Deprecations
130
-
131
- * `json` formatter is deprecated and will be removed in next major release. Custom formatters should migrate to use the `message` formatter, or the [standalone JSON formatter](https://github.com/cucumber/cucumber/tree/master/json-formatter) as a stopgap.
132
-
133
- ### Bug fixes
134
-
135
- * don't execute BeforeAll and AfterAll hooks when in dry-run
136
- * support correct case for `--retry-tag-filter` CLI argument
137
-
138
- ## [6.0.5] (2019-11-13)
139
-
140
- ### Bug fixes
141
-
142
- * json formatter: fix duration to be nanoseconds (was femtoseconds)
143
-
144
- ## [6.0.4] (2019-11-10)
145
-
146
- ### Bug fixes
147
-
148
- * retry: create a new World instance for every attempt
149
-
150
- ## [6.0.3] (2019-10-27)
151
-
152
- * Revert JSON formatter changes to be backward compatible
153
-
154
- ## [6.0.2] (2019-10-07)
155
-
156
- * Upgrade to cucumber-expressions 8.0.1 to fix failure on multiple installs
157
-
158
- ## [6.0.1] (2019-10-06)
159
-
160
- * Release to fix missing lib
161
-
162
- ## [6.0.0] (2019-10-06)
163
-
164
- ### BREAKING CHANGES
165
-
166
- * Drop support for Node.js 6
167
- * JSON formatter has major breaking changes. View some sample outputs [here](/features/fixtures/formatters/). The `*.json.js` files contain the js objects the json parses to. (UPDATE - reverted in 6.0.3)
168
- * Duration is now in nanoseconds in event-protocol formatter and in events sent to custom formatters
169
- * Custom formatters: Formatter helpers and EventDataCollector had breaking changes to support retry
170
-
171
- ### Bug fixes
172
-
173
- * Prevent after hooks from updating skipped scenarios to passed
174
- * Parallel: beforeAll / afterAll errors fail the suite
175
- * Fix CLI help link
176
-
177
- ### New features
178
-
179
- * Add ability to retry flaky tests
180
- * Use `--retry <NUMBER>` and limit what tests will be retried with `--retryTagFilter <EXPRESSION>`
181
- * Event-protocol added an `attemptNumber` to test case started, test case finished, and all test step events and a `retried` boolean to the test case result to signify if the test case was retried
182
- * usage-json formatter: add code and patternType
183
- * Add support for Node.js 12
184
-
185
- ## [5.1.0] (2018-12-28)
186
-
187
- ### Internals
188
-
189
- * Upgrade to babel 7
190
-
191
- ## [5.0.3] (2018-12-03)
192
-
193
- ### Speed Improvements
194
-
195
- * Only create Cucumber Expressions once
196
-
197
- ## [5.0.2] (2018-10-06)
198
-
199
- ### Bug Fixes
200
-
201
- * Update default of formatters' colors enabled to be true only if the stream is a TTY
202
- * Allow writing to stdout when running in parallel
203
- * Skip other before hooks if one returns skipped
204
-
205
- ## [5.0.1] (2018-04-09)
206
-
207
- ### Bug Fixes
208
-
209
- * Update dependencies to avoid licensing problems
210
-
211
- ## [5.0.0] (2018-04-09)
212
-
213
- ### BREAKING CHANGES
214
-
215
- * Drop support for Node.js 4
216
-
217
- ### Bug Fixes
218
-
219
- * Update dependencies to avoid licensing problems
220
- * Provide better error message when trying to attach data after the scenario has finished. This is possible if not waiting for the attach to finish.
221
-
222
- ### New features
223
-
224
- * Add support for Node.js 10
225
-
226
- ## [4.2.1] (2018-04-09)
227
-
228
- ### Bug Fixes
229
-
230
- * improve the error message for gherkin parse errors
231
-
232
- ## [4.2.0] (2018-04-03)
233
-
234
- * add cli option `--order <TYPE[:SEED]>` to run scenarios in the specified order. Type should be `defined` or `random`
235
-
236
- ## [4.1.0] (2018-03-27)
237
-
238
- ### New Features
239
-
240
- * update step timeout error message for each interface ([#1028](https://github.com/cucumber/cucumber-js/pull/1028), Bruce Lindsay)
241
- * default to synchronous snippets
242
- * print text step attachments ([#1041](https://github.com/cucumber/cucumber-js/pull/1041), DevSide)
243
-
244
- ### Bug Fixes
245
-
246
- * cucumber-expressions: Upgrade from 5.0.7 to [5.0.13](https://github.com/cucumber/cucumber/blob/master/cucumber-expressions/CHANGELOG.md#5013---2018-01-21)
247
- * fix error serialization in parallel mode
248
-
249
- ## [4.0.0] (2018-01-24)
250
-
251
- ### BREAKING CHANGES
252
-
253
- * cucumber now waits for the event loop to drain before exiting. To exit immediately when the tests finish running use `--exit`. Use of this flag is discouraged. See [here](/docs/cli.md#exiting) for more information
254
- * remove `--compiler` option. See [here](/docs/cli.md#transpilers) for the new way to use transpilers
255
- * remove binaries `cucumber.js` and `cucumberjs`. Use `cucumber-js`
256
-
257
- ### New Features
258
-
259
- * can now use glob patterns for selecting what features to run
260
- * update `--require` to support glob patterns
261
- * add `--require-module <NODE_MODULE>` to require node modules before support code is loaded
262
- * add snippet interface "async-await"
263
- * add `--parallel <NUMBER_OF_SLAVES>` option to run tests in parallel. Note this is an experimental feature. See [here](/docs/cli.md#parallel-experimental) for more information
264
-
265
- ### Bug Fixes
266
-
267
- * revert json formatter duration to nanoseconds
268
-
269
- ### Deprecations
270
-
271
- * `defineSupportCode` is deprecated. Require/import the individual methods instead
272
- ```js
273
- var {defineSupportCode} = require('cucumber');
274
-
275
- defineSupportCode(function({Given}) {
276
- Given(/^a step$/, function() {});
277
- });
278
-
279
- // Should be updated to
280
-
281
- var {Given} = require('cucumber');
282
-
283
- Given(/^a step$/, function() {});
284
- ```
285
-
286
- ## [3.2.1] (2018-01-03)
287
-
288
- ### Bug Fixes
289
- * revert json formatter mime type ([#995](https://github.com/cucumber/cucumber-js/pull/995)
290
-
291
- ## [3.2.0] (2017-12-08)
292
-
293
- ### New Features
294
- * add exception to `test-case-finished` event ([#952](https://github.com/cucumber/cucumber-js/pull/952) Giuseppe DiBella)
295
- * compiler option - allow `:` in module name to support specifying an absolute path on Windows ([#958](https://github.com/cucumber/cucumber-js/pull/958) Darrin Holst)
296
- * json formatter: format step result exception ([#973](https://github.com/cucumber/cucumber-js/pull/973) Valerio Innocenti Sedili)
297
-
298
- ### Bug Fixes
299
- * cucumber-expressions: Upgrade from 5.0.3 to [5.0.6](https://github.com/cucumber/cucumber/blob/master/cucumber-expressions/CHANGELOG.md#506---2017-11-28)
300
- * tag-expressions: Upgrade from 1.0.1 to [1.1.1](https://github.com/cucumber/cucumber/blob/master/tag-expressions/CHANGELOG.md#111---2017-12-01)
301
-
302
- ## [3.1.0] (2017-10-25)
303
-
304
- ### New Features
305
- * add `--language` cli option to provide the default language for feature files
306
-
307
- ### Bug Fixes
308
- * pickle filter: support relative paths ([#962](https://github.com/cucumber/cucumber-js/pull/962) Marco Muller)
309
-
310
- ## [3.0.6] (2017-10-18)
311
-
312
- * cli: fix `--format` option parsing on Windows ([#954](https://github.com/cucumber/cucumber-js/pull/954) Darrin Holst)
313
-
314
- ## [3.0.5] (2017-10-14)
315
-
316
- ### New Features
317
-
318
- * `defineParameterType`: The `transformer` function's `this` object is now the current World (as long as it's not an arrow function). ([#948](https://github.com/cucumber/cucumber-js/pull/948) Aslak Hellesøy)
319
- * `Before` / `After`: The first argument now includes a `pickle` property which can
320
- be used to get the name / tags of the running scenario. ([#947](https://github.com/cucumber/cucumber-js/pull/947) Giuseppe DiBella)
321
-
322
- ## [3.0.4] (2017-10-04)
323
-
324
- ### New Features
325
-
326
- * cli: make `--tags` option repeatable (joined with `and`) ([#940](https://github.com/cucumber/cucumber-js/issues/940), Ilya Kozhevnikov)
327
- * rerun formatter: make separator configurable. See docs [here](https://github.com/cucumber/cucumber-js/blob/fb9e8fc2e68d4395b9b0a124d18e036d00a8c69f/docs/cli.md) ([#930](https://github.com/cucumber/cucumber-js/issues/930), Máté Karácsony)
328
-
329
- ## [3.0.3] (2017-09-23)
330
-
331
- ### New Features
332
-
333
- * support to imperatively skip steps. See documentation [here](/docs/support_files/step_definitions.md#skipped-steps) ([#912](https://github.com/cucumber/cucumber-js/issues/912), jshifflet)
334
-
335
- ## [3.0.2] (2017-09-13)
336
-
337
- ### New Features
338
-
339
- * `defineParameterType`: new options `useForSnippets` and `preferForRegexpMatch`. Please see documentation for usage.
340
-
341
- ### Bug Fixes
342
-
343
- * fix `usage` and `usage-json` formatters when there are undefined steps
344
-
345
- ### Deprecations
346
-
347
- * `defineParameterType`: `typeName` option is deprecated in favor of `name`
348
-
349
- ## [3.0.1] (2017-08-28)
350
-
351
- ### Bug Fixes
352
-
353
- * JSON formatter: add type to scenario ([#893](https://github.com/cucumber/cucumber-js/issues/893), szymonprz)
354
- * BeforeAll/AfterAll hooks: fix timeout support ([#899](https://github.com/cucumber/cucumber-js/issues/899))
355
- * format output paths: allow absolute paths ([#906](https://github.com/cucumber/cucumber-js/issues/906), Darrin Holst)
356
- * Before/After: fix undefined hook parameter ([#919](https://github.com/cucumber/cucumber-js/issues/919))
357
-
358
- ### Documentation
359
-
360
- * update nodejs example
361
- ([#898](https://github.com/cucumber/cucumber-js/issues/898), João Guilherme Farias Duda)
362
- * fix typo and make punctuation consistent
363
- ([#909](https://github.com/cucumber/cucumber-js/issues/909), Dmitry Shirokov)
364
- * normalize CHANGELOG
365
- ([#915](https://github.com/cucumber/cucumber-js/issues/915), Jayson Smith)
366
-
367
- ## [3.0.0] (2017-08-08)
368
-
369
- ### BREAKING CHANGES
370
-
371
- * `pretty` formatter has been removed. All errors are now reported in a `pretty` format instead. The `progress` formatter is now the default.
372
- * Major changes to [custom formatter](/docs/custom_formatters.md) and [custom snippet syntax](/docs/custom_snippet_syntaxes.md) APIs due to rewrite in support of the event protocol. Please see the updated documentation.
373
- * Remove `registerHandler` and `registerListener`. Use `BeforeAll` / `AfterAll` for setup code. Use the event protocol formatter if used for reporting. Please open an issue if you have another use case.
374
- * Remove deprecated `addTransform`. Use `defineParameterType` instead.
375
- * `cucumber-expressions`:
376
- * using an undefined parameter type now results in an error
377
- * `{stringInDoubleQuotes}` is now `{string}` which works for strings in single or double quotes
378
- * Undefined steps fail the build in non-strict mode. Non-strict mode only allows pending steps now.
379
-
380
- ### New Features
381
-
382
- * Add `--i18n-languages` and `--i18n-keywords <ISO 639-1>` CLI options
383
- * Add `BeforeAll` / `AfterAll` hooks for suite level setup / teardown
384
- * Add event protocol formatter
385
- * `cucumber-expressions`:
386
- * Add built in `{word}` parameter type which is equivalent to `[A-Za-z0-9_]+`
387
- * Allow multiple parameter types to use the same regular expression
388
- * Improve error message when using multiple asynchronous interfaces
389
-
390
- ### Bug Fixes
391
-
392
- * Fix support code line and uri references when using direct imports
393
-
394
- ## [2.3.1] (2017-06-09)
395
-
396
- ### New Features
397
-
398
- * pass step specific options to definition function wrapper ([#838](https://github.com/cucumber/cucumber-js/issues/838), Łukasz Gandecki)
399
-
400
- ## [2.3.0] (2017-06-01)
401
-
402
- ### New Features
403
-
404
- * Add support code aliases for every method in the [support code API](./docs/support_files/api_reference.md). The following are now equivalent:
405
- ```javascript
406
- // Using defineSupportCode
407
- var {defineSupportCode} = require('cucumber');
408
-
409
- defineSupportCode(function({Given}) {
410
- Given(/^a step$/, function() {});
411
- });
412
-
413
- // Using aliases
414
- var {Given} = require('cucumber');
415
-
416
- Given(/^a step$/, function() {});
417
- ```
418
- (Nico Jansen and Łukasz Gandecki)
419
-
420
- ## [2.2.0] (2017-05-20)
421
-
422
- ### New Features
423
-
424
- * Add `progress-bar` formatter inspired by [fuubar-cucumber]( https://github.com/martinciu/fuubar-cucumber) and [fuubar](https://github.com/thekompanee/fuubar) which outputs a progress bar and errors as they happen
425
-
426
- ## [2.1.0](https://github.com/cucumber/cucumber-js/compare/v2.0.0-rc.9...v2.1.0) (2017-05-12)
427
-
428
- ### Bug Fixes
429
-
430
- * throw descriptive error message when running a global install
431
-
432
- ## [1.3.3] (2016-04-26)
433
-
434
- ### Bug Fixes
435
-
436
- * fix unhandled rejections in handlers ([#792](https://github.com/cucumber/cucumber-js/issues/792), yaronassa)
437
-
438
- ## [1.3.2] (2016-03-20)
439
-
440
- ### Bug Fixes
441
-
442
- * dependency: fix use of gherkin to not rely on removed field
443
-
444
- ## [2.0.0-rc.9](https://github.com/cucumber/cucumber-js/compare/v2.0.0-rc.8...v2.0.0-rc.9) (2017-03-16)
445
-
446
- ### Bug Fixes
447
-
448
- * dependency: fix use of gherkin to not rely on removed field
449
-
450
- ## [2.0.0-rc.8](https://github.com/cucumber/cucumber-js/compare/v2.0.0-rc.7...v2.0.0-rc.8) (2017-03-10)
451
-
452
- ### Bug Fixes
453
-
454
- * generated step definition snippets are not found ([#732](https://github.com/cucumber/cucumber-js/issues/732), Aslak Hellesøy)
455
- * catch attempt to define duplicate parameter type regular expression ([#780](https://github.com/cucumber/cucumber-js/issues/780), Aslak Hellesøy)
456
- * catch errors in parameter type transform functions (Aslak Hellesøy)
457
-
458
- ### New Features
459
-
460
- * all async parameter type transform functions (Aslak Hellesøy)
461
- * make all formatters available when requiring
462
-
463
- ### Deprecations
464
-
465
- * `addTransform` was deprecated in favor of `defineParameterType`
466
-
467
- ### Documentation
468
-
469
- * normalize syntax highlighting ([#726](https://github.com/cucumber/cucumber-js/issues/726), Martin Delille)
470
- * fix setWorldConstructor example
471
-
472
- ## [2.0.0-rc.7](https://github.com/cucumber/cucumber-js/compare/v2.0.0-rc.6...v2.0.0-rc.7) (2017-01-30)
473
-
474
- ### Bug Fixes
475
-
476
- * fix after hook run order ([#743](https://github.com/cucumber/cucumber-js/issues/743))
477
-
478
- ### Documentation
479
-
480
- * normalize syntax highlighting ([#726](https://github.com/cucumber/cucumber-js/issues/726), (Martin Delille)
481
- * fix addTransform parameter name ([#738](https://github.com/cucumber/cucumber-js/issues/738))
482
-
483
- ## [2.0.0-rc.6](https://github.com/cucumber/cucumber-js/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2017-01-06)
484
-
485
- ### New Features
486
-
487
- * usage and usage-json formatters
488
- * update error reporting for `registerHandler` errors
489
- * add ability to disable timeout
490
-
491
- ### Bug Fixes
492
-
493
- * update snippets to new support code interface
494
-
495
- ## [2.0.0-rc.5](https://github.com/cucumber/cucumber-js/compare/v2.0.0-rc.4...v2.0.0-rc.5) (2016-12-22)
496
-
497
- ### Breaking Changes
498
-
499
- * Drop support for Node 0.12
500
- * format assertion errors to display diffs
501
-
502
- ### Documentation
503
-
504
- * fix CLI format-options name ([#703](https://github.com/cucumber/cucumber-js/issues/703), Florian Ribon)
505
- * add link on README.md to custom formatters documentation
506
-
507
- ## [2.0.0-rc.4](https://github.com/cucumber/cucumber-js/compare/v2.0.0-rc.3...v2.0.0-rc.4) (2016-12-19)
508
-
509
- ### Breaking Changes
510
-
511
- * update support code library interface - instead of exporting a function and calling methods on `this`, require the `cucumber` module and call `defineSupportCode` which passes an object as the first argument whch exposes the methods. Overriding the world constructor has changed from overriding the World property to calling `setWorldConstructor`.
512
-
513
- ```javascript
514
- // 1.3.1
515
- module.exports = function () {
516
- this.Given(/^a step$/, function() {});
517
- this.World = CustomWorld
518
- });
519
-
520
- // 2.0.0
521
- var {defineSupportCode} = require('cucumber');
522
-
523
- defineSupportCode(function({Given, setWorldConstructor}) {
524
- Given(/^a step$/, function() {});
525
- setWorldConstructor(CustomWorld);
526
- });
527
- ```
528
-
529
- ## [2.0.0-rc.3](https://github.com/cucumber/cucumber-js/compare/v2.0.0-rc.2...v2.0.0-rc.3) (2016-12-19)
530
-
531
- ### Breaking Changes
532
-
533
- * make strict the default
534
- * previously pending and undefined steps did not cause an exit code of 1. This could be overridden with `--strict`. Strict is now the default and you can use `--no-strict` to return to the previous behavior.
535
- * update automatically required files
536
- * if the features live in a `features` directory at any level, all support files in the `features` directory are loaded.
537
-
538
- ### Bug Fixes
539
-
540
- * prevent crash on empty feature file
541
-
542
- ### New Features
543
-
544
- * validate argument types
545
-
546
- ### Documentation
547
-
548
- * docs: fix tag expression migration guide ([#691](https://github.com/cucumber/cucumber-js/issues/691), Aslak Hellesøy)
549
-
550
- ## [2.0.0-rc.2](https://github.com/cucumber/cucumber-js/compare/v2.0.0-rc.1...v2.0.0-rc.2) (2016-12-04)
551
-
552
- ### Breaking Changes
553
-
554
- * pass `attach` to world constructor instead of assigning it to world
555
- * the world constructor now receives `{attach, parameters}` as the first argument instead of `parameters`
556
-
557
- ### New Features
558
-
559
- * json formatter: add `isBackground` to steps
560
-
561
- ### Bug Fixes
562
-
563
- * clear timeouts of asynchronous hooks/steps
564
- * stop running features with no scenarios
565
-
566
- ### Documentation
567
-
568
- * update node js example
569
-
570
- ## [2.0.0-rc.1](https://github.com/cucumber/cucumber-js/compare/v2.0.0-rc.0...v2.0.0-rc.1) (2016-11-25)
571
-
572
- ### Bug Fixes
573
-
574
- * fix browser version
575
-
576
- ## [2.0.0-rc.0](https://github.com/cucumber/cucumber-js/compare/v1.3.1...v2.0.0-rc.0) (2016-11-25)
577
-
578
- ### Breaking Changes
579
-
580
- * Dropped support for Node 0.10
581
- * CLI
582
- * `--colors / --no-colors` has moved to `--format-options '{"colorsEnabled": <BOOLEAN>}'`
583
- * `--require <DIR|FILE>`: the required files are no longer reordered to require anything in a `support` directory first
584
- * `--snippet-interface <INTERFACE>` has moved to `--format-options '{"snippetInterface": "<INTERFACE>"}'`
585
- * `--snippet-syntax <SYNTAX>` has moved to `--format-options '{"snippetSyntax": "<SYNTAX>"}'`
586
- * `--tags <EXPRESSION>` now uses [cucumber-tag-expressions](https://docs.cucumber.io/tag-expressions/). It is no longer repeatable and new values will override previous
587
- * `--tags @dev` stays the same
588
- * `--tags ~@dev` becomes `--tags 'not @dev'`
589
- * `--tags @foo,@bar` becomes `--tags '@foo or @bar'`
590
- * `--tags @foo --tags @bar` becomes `--tags '@foo and @bar'`
591
- * Internals
592
- * complete rewrite using ES2015 and promises
593
- * JSON Formatter
594
- * String attachments are no longer base64 encoded. Buffer and Stream attachments are still base64 encoded.
595
- * Support Files
596
- * Attachments
597
- * The `attach` function used for adding attachments moved from the API scenario object to world. It is thus now available in step definitions without saving a reference to the scenario.
598
-
599
- ```javascript
600
- // 1.3.0
601
- this.After(function(scenario, callback) {
602
- scenario.attach(new Buffer([137, 80, 78, 71]), 'image/png')
603
- });
604
-
605
- // 2.0.0
606
- this.After(function() {
607
- this.attach(new Buffer([137, 80, 78, 71]), 'image/png');
608
- });
609
- ```
610
-
611
- * When attaching buffers or strings, the callback argument is ignored.
612
- * Hooks
613
- * Hooks now receive a [ScenarioResult](/src/models/scenario_result.js) instead of the Scenario
614
-
615
- ```javascript
616
- // 1.3.0
617
- this.After(function(scenario) {});
618
-
619
- // 2.0.0
620
- this.After(function(scenarioResult) {});
621
- ```
622
-
623
- * The `tags` option for hook should now be a string instead of an array and uses [cucumber-tag-expressions](https://docs.cucumber.io/tag-expressions/)
624
-
625
- ```javascript
626
- // 1.3.0
627
- this.Before({tags: ["@foo"]}, function (scenario) {})
628
- this.Before({tags: ["@foo,@bar"]}, function (scenario) {})
629
- this.Before({tags: ["@foo", "@bar"]}, function (scenario) {})
630
-
631
- // 2.0.0
632
- this.Before({tags: "@foo"}, function (scenario) {})
633
- this.Before({tags: "@foo and @bar"}, function (scenario) {})
634
- this.Before({tags: "@foo or @bar"}, function (scenario) {})
635
- ```
636
-
637
- * Step Definitions
638
- * String patterns were removed in favor [cucumber-expressions](https://docs.cucumber.io/cucumber-expressions/)
639
- * Regular Expressions
640
- * capture groups matching `(-?\d+)` will be automatically converted to an integer using `parseInt`
641
- * capture groups matching `(-?\d*\.?\d+)` will be automatically converted to a float using `parseFloat`
642
- * Generator functions are no longer automatically run with `co`. To retain the previous functionality, use [this.setDefinitionFunctionWrapper](/docs/support_files/step_definitions.md#definition-function-wrapper)
643
- * Event Handlers
644
- * Objects no longer have `get*` methods and instead have exposed properties
645
- * For example: `scenario.getName()` is now just `scenario.name`
646
- * `StepResult` duration is now in milliseconds instead of nanoseconds
647
-
648
- ### Bug Fixes
649
-
650
- * remove empty lines from `@rerun` files ([#660](https://github.com/cucumber/cucumber-js/issues/660), Cody Ray Hoeft)
651
- * catch uncaught errors in the browser (Charlie Rudolph)
652
-
653
- ### New Features
654
-
655
- * Support Files
656
- * Attachments:
657
- * When attaching a stream, the interface can either accept a callback as a third argument or will return a promise if not passed a callback
658
- * Step Definitions
659
- * Ability to add custom argument transformations
660
- * Fail fast / rerun formatter
661
- * When used together rerun formatter will output all skipped scenarios that didn't run due to a failure
662
-
663
- ### Documentation
664
-
665
- * fix typo ([#659](https://github.com/cucumber/cucumber-js/issues/659), gforceg)
666
- * update support files api reference ([#661](https://github.com/cucumber/cucumber-js/issues/661), Zearin)
667
-
668
- ## [1.3.1] (2016-09-30)
669
-
670
- ### Bug Fixes
671
-
672
- * pass formatter options to listener ([#641](https://github.com/cucumber/cucumber-js/issues/641), Charlie Rudolph)
673
- * rerun formatter: output any scenario that doesn't pass (Charlie Rudolph)
674
- * populate scenario definition ([#647](https://github.com/cucumber/cucumber-js/issues/647), Charlie Rudolph)
675
- * handle empty stacktraces ([#605](https://github.com/cucumber/cucumber-js/issues/605), Hugues Malphettes)
676
- * use cross-platform symbols ([#635](https://github.com/cucumber/cucumber-js/issues/635), Kevin Goslar)
677
-
678
- ### Documentation
679
-
680
- * fix node.js example ([#637](https://github.com/cucumber/cucumber-js/issues/637), Jonathan Gomez)
681
- * fix links in event_handlers.md ([#638](https://github.com/cucumber/cucumber-js/issues/638), Oliver Rogers)
682
- * fix hooks example ([#644](https://github.com/cucumber/cucumber-js/issues/644), John McLaughlin)
683
-
684
- ## [1.3.0] (2016-09-08)
685
-
686
- ### New Features
687
-
688
- * add `--snippet-interface <INTERFACE>` CLI option (Charlie Rudolph)
689
- * add `--world-parameters <JSON>` CLI option (Charlie Rudolph)
690
- * add snippets formatter (Charlie Rudolph)
691
- * add support for ES6 default module syntax (dbillingham)
692
- * pretty formatter: add symbols (Charlie Rudolph)
693
- * add simplified hook parameters (Charlie Rudolph)
694
-
695
- ### Bug Fixes
696
-
697
- * step definition snippets internationalization (Charlie Rudolph)
698
-
699
- ### Documentation
700
-
701
- * document order of execution for multiple hooks (John McLaughlin)
702
- * breakup README.md, organize docs (Charlie Rudolph)
703
-
704
- ## [1.2.2] (2016-08-05)
705
-
706
- ### Bug Fixes
707
-
708
- * Fix error when stack trace has no frames ([#610](https://github.com/cucumber/cucumber-js/issues/610), Jan Molak)
709
-
710
- ## [1.2.1] (2016-07-01)
711
-
712
- ### Bug Fixes
713
-
714
- * Fix hook / step definition location and stacktraces in the browser ([#567](https://github.com/cucumber/cucumber-js/issues/567), [#538](https://github.com/cucumber/cucumber-js/issues/538), Charlie Rudolph)
715
-
716
- ## [1.2.0] (2016-06-24)
717
-
718
- ### Bug Fixes
719
-
720
- * Attachments
721
- * Remove intermediate conversion to string (Charlie Rudolph)
722
- * Use native base64 encoding which can encode binary ([#589](https://github.com/cucumber/cucumber-js/issues/589), Benjamín Eidelman)
723
-
724
- ## [1.1.0] (2016-06-23)
725
-
726
- ### New Features
727
-
728
- * Add full support to `registerHandler` (Charlie Rudolph)
729
- * Can now use all supported functions interfaces (synchronous, callback, promise, generators)
730
- * Will throw any error received and immediately kill the test suite
731
- * Supports handler specific timeouts
732
- * Updated documentation
733
-
734
- ### Bug Fixes
735
-
736
- * CLI format: support absolute path on windows (Charlie Rudolph)
737
- * Fix typo in event name. ([#590](https://github.com/cucumber/cucumber-js/issues/590), Artur Pomadowski)
738
- * Don't run hooks in dry run mode (Charlie Rudolph)
739
-
740
- ## [1.0.0] (2016-05-30)
741
-
742
- ### Bug Fixes
743
-
744
- * Escape all instances of special characters in example / data table (Charlie Rudolph)
745
-
746
- ## [0.10.4] (2016-05-30)
747
-
748
- ### New Features
749
-
750
- * Allow time to be faked by utilities such as `sinon.useFakeTimers` (John McLaughlin)
751
-
752
- ## [0.10.3] (2016-05-19)
753
-
754
- ### Bug Fixes
755
-
756
- * Escape newlines in table cells in pretty formatter (Julien Biezemans)
757
- * Fix handling of unusual error objects (efokschaner)
758
-
759
- ## [0.10.2] (2016-04-07)
760
-
761
- ### New Features
762
-
763
- * Add match location to JSON formatter output (Charlie Rudolph)
764
-
765
- ### Bug Fixes
766
-
767
- * Undefined background step (Scott Deakin)
768
-
769
- ## [0.10.1] (2016-04-01)
770
-
771
- ### New Features
772
-
773
- * Support generators for hooks/step definitions (Ádám Gólya)
774
-
775
- ## [0.10.0] (2016-04-01)
776
-
777
- ### Breaking changes
778
-
779
- * removed around hooks (Charlie Rudolph)
780
- * how to update: use separate before and after hooks. If this is not sufficient, please create an issue.
781
-
782
- * updated pending step interface (Charlie Rudolph)
783
- * how to update: change `callback.pending()` to `callback(null, 'pending')` or use one of the new pending step interfaces
784
-
785
- * updated tagged hook interface (Charlie Rudolph)
786
- * how to update:
787
-
788
- ```javascript
789
- this.Before('@tagA', function() { ... })
790
- // becomes
791
- this.Before({tags: ['@tagA']}, function() { ... })
792
-
793
- this.Before('@tagA', '@tagB,@tagC', function() { ... })
794
- // becomes
795
- this.Before({tags: ['@tagA', '@tagB,@tagC']}, function() { ... })
796
- ```
797
-
798
-
799
- ### New Features
800
-
801
- * support hook specific timeouts (Charlie Rudolph)
802
- * reworked formatter error reporting (Charlie Rudolph)
803
-
804
- ## [0.9.5] (2016-02-16)
805
-
806
- ### Bug Fixes
807
-
808
- * Fix rerun formatter output (Charlie Rudolph)
809
-
810
- ### New Features
811
-
812
- * Allow rerun file to be in subfolder (Charlie Rudolph)
813
-
814
- ## [0.9.4] (2016-01-28)
815
-
816
- ### Bug Fixes
817
-
818
- * Publish release folder to npm (Charlie Rudolph)
819
-
820
- ## [0.9.3] (2016-01-27)
821
-
822
- ### New Features
823
-
824
- * Run scenario by name (Charlie Rudolph)
825
-
826
- ### Bug Fixes
827
-
828
- * Prevent maximum call stack from being exceeded (John Krull)
829
-
830
- ### Documentation
831
-
832
- * Add documentation of profiles (Charlie Rudolph)
833
- * README improvements (Miika Hänninen, Kevin Goslar, Maxim Koretskiy)
834
-
835
- ## [0.9.2]
836
-
837
- ### New Features
838
-
839
- * Bump stack-chain (Rick Lee-Morlang)
840
-
841
- ## [0.9.1]
842
-
843
- ### New Features
844
-
845
- * Add rerun formatter (Charlie Rudolph)
846
-
847
- ### Fixes
848
-
849
- * Add ability to execute scenario outline example (Charlie Rudolph)
850
- * Support tags on scenario outline examples (Charlie Rudolph)
851
-
852
- ### Documentation
853
-
854
- * Fix invalid hook documentation (Charlie Rudolph)
855
-
856
- ## [0.9.0]
857
-
858
- ### Breaking changes
859
-
860
- * catch ambiguous step definitions (Charlie Rudolph)
861
- * remove use of domain (Charlie Rudolph)
862
-
863
- ### New Features
864
-
865
- * pretty formatter: source shows step definition location (Charlie Rudolph)
866
- * support node 5 (Charlie Rudolph)
867
-
868
- ### Fixes
869
-
870
- * Fix `Api.Scenario#attach` callback handling (Julien Biezemans)
871
-
872
- ### Documentation
873
-
874
- * Add async example to README (Artem Bronitsky)
875
- * Document hooks sync/async protocols (Julien Biezemans)
876
- * Remove useless callbacks in documentation (Julien Biezemans)
877
- * Fix browser example (Karine Pires)
878
-
879
- ## [v0.8.1]
880
-
881
- ### Documentation, internals and tests
882
-
883
- * Update World constructor documentation (Charlie Rudolph)
884
- * Remove badges from README.md (Charlie Rudolph)
885
-
886
- ## [v0.8.0]
887
-
888
- ### Breaking changes
889
-
890
- * Add strict function length checking to hooks and step definitions (Charlie Rudolph)
891
- * Make World constructors strictly synchronous (Julien Biezemans)
892
-
893
- ### New features
894
-
895
- * Add cli option to fail fast (Charlie Rudolph)
896
- * Add cli for specifying multiple formatters (Charlie Rudolph)
897
- * Add support for passing multiple line numbers (Charlie Rudolph)
898
- * Add ability to disable colors (Charlie Rudolph)
899
- * Add support for custom snippet syntaxes (Charlie Rudolph)
900
-
901
- ### Changed features
902
-
903
- * Hide errors in pretty formatter summary (Charlie Rudolph)
904
- * Remove unnecessary whitespaces in pretty formatter output (Charlie Rudolph)
905
-
906
- ### Fixes
907
-
908
- * Properly ask configurations for strict mode (Julien Biezemans)
909
-
910
- ### Documentation, internals and tests
911
-
912
- * Document data table interface (Charlie Rudolph)
913
- * Refactor: statuses (Charlie Rudolph)
914
- * Refactor: cleanup step definitions (Charlie Rudolph)
915
- * Cleanup: remove log to console from listeners (Charlie Rudolph)
916
- * Use svg badges (Charlie Rudolph)
917
- * Rename CONTRIBUTE.md to CONTRIBUTING.md (Julien Biezemans)
918
- * Require maintainers to document API changes in release tag descriptions (Julien Biezemans)
919
- * Add build-release NPM script (Julien Biezemans)
920
-
921
- ## [v0.7.0]
922
-
923
- ### New features
924
-
925
- * Time out steps that take too long (Charles Rudolph)
926
- * Print execution time (Charles Rudolph)
927
-
928
- ### Changed features
929
-
930
- * Remove callback.fail() (Charles Rudolph)
931
- * Update hooks interface (Charles Rudolph)
932
-
933
- ### Fixes
934
-
935
- * Don't try to handle empty features (Julien Biezemans)
936
- * Fix unpredictable nopt behavior (Charles Rudolph)
937
- * Fix pretty formatter step indentation after doc string (Charles Rudolph)
938
-
939
- ### Documentation, internals and tests
940
-
941
- * Rename Collection functions: forEach/syncForEach -> asyncForEach/forEach (Charles Rudolph)
942
- * Simplify installation instructions (Charles Rudolph)
943
- * Fix spec on Windows (Marcel Hoyer)
944
- * Simplify World examples in README (Charles Rudolph)
945
- * Update license in package.json (Charles Rudolph)
946
- * Convert test framework from jasmine-node to jasmine (Charles Rudolph)
947
- * Separate test output (Charles Rudolph)
948
- * Remove ruby, legacy features, cucumber-tck (Charles Rudolph)
949
-
950
- ## [v0.6.0]
951
-
952
- ### New features
953
-
954
- * Add --no-source to hide uris (Eddie Loeffen)
955
- * Add dry run capability (Karthik Viswanath)
956
- * Introduce --compiler CLI option (Charles Rudolph)
957
-
958
- ### Documentation, internals and tests
959
-
960
- * Stop IRC and email notifications from Travis (Julien Biezemans)
961
- * Remove Node.js 0.11 explicit support (Julien Biezemans)
962
- * Use basic for loop for array iterations (Charles Rudolph)
963
- * Bump browserify (Charles Rudolph)
964
- * Add CLI help for --profile (Charles Rudolph)
965
- * Use colors library (Charles Rudolph)
966
- * Improve --compiler help (Julien Biezemans)
967
- * Fix loading of external compiler modules (Julien Biezemans)
968
- * Document a few common compiler usages (Julien Biezemans)
969
-
970
- ## [v0.5.3]
971
-
972
- ### New features
973
-
974
- * Add support for profiles (Charles Rudolph)
975
-
976
- ### Changed features
977
-
978
- * Allow for multiple instances of placeholder (Charles Rudolph)
979
- * Print relative paths in summary output (Charles Rudolph)
980
-
981
- ### Fixes
982
-
983
- * Remove duplicate line number from output (Charles Rudolph)
984
- * Return clone of array from DataTable.Row.raw() (Julien Biezemans)
985
-
986
- ### Documentation, internals and tests
987
-
988
- * Update various urls (Dale Gardner)
989
- * Bump CoffeeScript (Julien Biezemans)
990
- * Bump PogoScript (Julien Biezemans)
991
- * Bump underscore (Julien Biezemans)
992
- * Bump underscore.string (Julien Biezemans)
993
- * Bump stack-chain (Julien Biezemans)
994
- * Bump nopt (Julien Biezemans)
995
- * Bump connect (Julien Biezemans)
996
- * Bump exorcist (Julien Biezemans)
997
- * Bump uglifyify (Julien Biezemans)
998
- * Bump through (Julien Biezemans)
999
- * Bump serve-static (Julien Biezemans)
1000
- * Bump rimraf (Julien Biezemans)
1001
- * Bump mkdirp (Julien Biezemans)
1002
- * Bump jshint (Julien Biezemans)
1003
- * Remove extra bracket in README example (Julien Biezemans)
1004
- * Officially support Node.js 4.x (Julien Biezemans)
1005
- * Use a profile for own build (Julien Biezemans)
1006
-
1007
- ## [v0.5.2]
1008
-
1009
- ### New features
1010
-
1011
- * Add rowsHash method to data tables (Mark Amery)
1012
-
1013
- ### Documentation, internals and tests
1014
-
1015
- * Remove CLI resource leak timeout (Julien Biezemans)
1016
- * Point to cucumber.io instead of cukes.info (Julien Biezemans)
1017
- * Fix mixed tabs and spaces (Mark Amery)
1018
- * Use hexadecimal values for console colours (Julien Biezemans)
1019
- * Update walkdir module to 0.0.10 (Artem Repko)
1020
- * Fix ruby tests on Windows (zs-zs)
1021
- * Fix npm test to run on Windows (zs-zs)
1022
- * Normalize OS-specific path separators in output assertions (zs-zs)
1023
- * Relax check for promises in step definitions (zs-zs)
1024
- * Add Ast.Feature.getFeatureElements() (Mark Derbecker)
1025
- * Add Util.Collection.sort() (Mark Derbecker)
1026
- * Add waffle.io badge (Julien Biezemans)
1027
-
1028
- ## [v0.5.1]
1029
-
1030
- ### New features
1031
-
1032
- * Support placeholders in scenario outlines (chrismilleruk)
1033
- * Add failure exception to scenario object (Mateusz Derks)
1034
-
1035
- ### Documentation, internals and tests
1036
-
1037
- * Fix World example in README (Julien Biezemans)
1038
- * Remove moot `version` property from bower.json (Kevin Kirsche)
1039
- * Remove obsolete release instruction for bower (Julien Biezemans)
1040
- * Add Gitter badge (Julien Biezemans)
1041
- * Rephrase spec example (Julien Biezemans)
1042
- * Add documentation for attachments (Simon Dean)
1043
- * Fix name of Cucumber.Api.Scenario in README (Simon Dean)
1044
-
1045
- ## [v0.5.0]
1046
-
1047
- ### New features
1048
-
1049
- * Support promises from step definitions (Will Farrell)
1050
- * Support synchronous step definitions (Julien Biezemans)
1051
-
1052
- ### Documentation, internals and tests
1053
-
1054
- * Remove irrelevant feature file (Julien Biezemans)
1055
- * Reorganise callback feature (Julien Biezemans)
1056
- * Remove unused dependency (Julien Biezemans)
1057
- * Document new step definition styles (Julien Biezemans)
1058
- * Make step definitions synchronous in example app (Julien Biezemans)
1059
-
1060
- ## [v0.4.9]
1061
-
1062
- ### New features
1063
-
1064
- * Make pretty formatter the default (Julien Biezemans)
1065
- * Filter stack traces (close [#157](https://github.com/cucumber/cucumber-js/issues/157), Julien Biezemans)
1066
-
1067
- ### Documentation, internals and tests
1068
-
1069
- * Separate source map from bundle (Julien Biezemans)
1070
- * Hint (Julien Biezemans)
1071
- * Fix misspelling io.js (Sonny Piers)
1072
- * Add 0.12 to supported engines in NPM manifest (Julien Biezemans)
1073
- * Fix test script to be more portable (Sam Saccone)
1074
- * Force Cucumber <2 for now (Julien Biezemans)
1075
- * Bump Cucumber gem to 2.0.0 (Julien Biezemans)
1076
- * Explicitly require json module in Ruby stepdefs (Julien Biezemans)
1077
- * Add CLI help section for --backtrace (Julien Biezemans)
1078
-
1079
- ## [v0.4.8]
1080
-
1081
- ### New features
1082
-
1083
- * Support IO.js (Sam Saccone)
1084
- * Support Node.js 0.12 (Julien Biezemans)
1085
-
1086
- ### Fixes
1087
-
1088
- * Handle BOM and fix regexp for hyphenated languages ([#144](https://github.com/cucumber/cucumber-js/issues/144), Aslak Hellesøy)
1089
- * Fix attachment clean up in hooks ([#282](https://github.com/cucumber/cucumber-js/issues/282), nebehr)
1090
-
1091
- ### Documentation, internals and tests
1092
-
1093
- * More thorough specs for GherkinLexer. Fix build? (Aslak Hellesøy)
1094
- * Add jshintrc (Jesse Harlin)
1095
- * Hint lib/ (Julien Biezemans)
1096
- * Hint bundler and bin (Julien Biezemans)
1097
- * Hint spec/ (Julien Biezemans)
1098
- * Be consistent in anonymous function syntax (Julien Biezemans)
1099
- * Use named functions for all constructors (Julien Biezemans)
1100
- * Indent (Julien Biezemans)
1101
- * Add more diagnostics to build (Julien Biezemans)
1102
- * Remove unnecessary spaces in shell commands (Julien Biezemans)
1103
-
1104
- ## [v0.4.7]
1105
-
1106
- ### Documentation, internals and tests
1107
-
1108
- * Do not dispose of step domains (Julien Biezemans)
1109
- * Refactor and add debug code (Julien Biezemans)
1110
- * Create a single domain per run (Julien Biezemans)
1111
- * Add missing AstTreeWalker specs (Julien Biezemans)
1112
- * Indent (Julien Biezemans)
1113
- * Spec domain enter/exit in AstTreeWalker (Julien Biezemans)
1114
-
1115
- ## [v0.4.6]
1116
-
1117
- ### New features
1118
-
1119
- * Add --no-snippets flag to CLI (close [#207](https://github.com/cucumber/cucumber-js/issues/207), Krispin Schulz)
1120
- * Add strict mode (close [#211](https://github.com/cucumber/cucumber-js/issues/211), Elwyn)
1121
- * Add strict mode to volatile configuration (close [#258](https://github.com/cucumber/cucumber-js/issues/258), Jan-Eric Duden)
1122
-
1123
- ### Fixes
1124
-
1125
- * Fix code loader on windows (close [#226](https://github.com/cucumber/cucumber-js/issues/226), Gary Taylor)
1126
-
1127
- ### Documentation, internals and tests
1128
-
1129
- * Connect to Rubygems through SSL (Julien Biezemans)
1130
- * Use Node domain's enter/exit in stepdefs (Julien Biezemans)
1131
- * Do not display snippets in build (Julien Biezemans)
1132
- * Asynchronously dispose of step domains (Julien Biezemans)
1133
- * Change order of tests in build (Julien Biezemans)
1134
- * Fix tests to run on Windows (close [#216](https://github.com/cucumber/cucumber-js/issues/216), kostya.misura)
1135
- * Fix registerHandler() example in README (Julien Biezemans)
1136
- * Fix typo in variable name (Julien Biezemans)
1137
- * Fix World property assignment in README example (Julian)
1138
- * Unix EOLs (Julien Biezemans)
1139
- * Ignore .ruby-* (Julien Biezemans)
1140
-
1141
- ## [v0.4.5]
1142
-
1143
- ### Documentation, internals and tests
1144
-
1145
- * Fix issue with npm upgrade on node.js v0.8 (Simon Dean)
1146
- * Use Node domain to handle asynchronous exceptions (Julien Biezemans)
1147
-
1148
- ## [v0.4.4]
1149
-
1150
- ### Fixes
1151
-
1152
- * Allow >1 parameter in string step definitions (Craig Morris)
1153
- * Don't skip scenario outlines (close [#245](https://github.com/cucumber/cucumber-js/issues/245), Julien Biezemans)
1154
-
1155
- ### Documentation, internals and tests
1156
-
1157
- * Bump nopt (Julien Biezemans)
1158
- * Bump coffee-script (Julien Biezemans)
1159
- * Bump pogo (Julien Biezemans)
1160
- * Bump underscore (Julien Biezemans)
1161
- * Bump rimraf (Julien Biezemans)
1162
- * Bump jasmine-node (Julien Biezemans)
1163
- * Bump connect (Julien Biezemans)
1164
- * Rewrite bundling system (close [#186](https://github.com/cucumber/cucumber-js/issues/186), Julien Biezemans)
1165
- * Rename release script (Julien Biezemans)
1166
- * Upgrade NPM on Travis (Julien Biezemans)
1167
- * Drop Node 0.6 support (Julien Biezemans)
1168
- * Drop Node 0.6 support (manifest) (Julien Biezemans)
1169
-
1170
- ## [v0.4.3]
1171
-
1172
- ### Fixes
1173
-
1174
- * Scenario outline fixes (Simon Dean)
1175
- * Correct the embeddings JSON to match other ports of Cucumber (Simon Dean)
1176
-
1177
- ## [v0.4.2]
1178
-
1179
- ### New features
1180
-
1181
- * Support attachments (close [#189](https://github.com/cucumber/cucumber-js/issues/189), Julien Biezemans)
1182
-
1183
- ### Documentation, internals and tests
1184
-
1185
- * Fix world example in main readme (Sam Saccone)
1186
- * Update instructings for running tests (Sam Saccone)
1187
-
1188
- ## [v0.4.1]
1189
-
1190
- ### New features
1191
-
1192
- * Target scenario by line number on CLI (close [#168](https://github.com/cucumber/cucumber-js/issues/168), Simon Lampen)
1193
-
1194
- ### Fixes
1195
-
1196
- * Ensure no stdout output is lost (Simon Dean)
1197
- * Properly tag scenario outlines (close [#195](https://github.com/cucumber/cucumber-js/issues/195), [#197](https://github.com/cucumber/cucumber-js/issues/197), Artur Kania)
1198
-
1199
- ### Documentation, internals and tests
1200
-
1201
- * Align snippet comment with Cucumber-Ruby/JVM (close [#150](https://github.com/cucumber/cucumber-js/issues/150), Julien Biezemans)
1202
- * Update build badge URL on README (Julien Biezemans)
1203
- * Add line number pattern to --help on CLI (Julien Biezemans)
1204
- * Document AfterFeatures event (close [#171](https://github.com/cucumber/cucumber-js/issues/171), Eddie Loeffen)
1205
- * Include 'features' in *Features events payload (Stanley Shyiko)
1206
- * Try to fix build on Travis (Julien Biezemans)
1207
- * Remove bower as a dev dependency (close [#191](https://github.com/cucumber/cucumber-js/issues/191), Simon Dean)
1208
- * Remove obsolete Travis trick for Node 0.8 (Julien Biezemans)
1209
- * Remove development status table from README (Julien Biezemans)
1210
- * Help the guy produce changelogs (Julien Biezemans)
1211
-
1212
- ## [v0.4.0]
1213
-
1214
- ### New features
1215
-
1216
- * Add support for scenario outlines and examples (close [#155](https://github.com/cucumber/cucumber-js/issues/155), Ben Van Treese)
1217
- * Add i18n support (close [#156](https://github.com/cucumber/cucumber-js/issues/156), Lukas Degener)
1218
-
1219
- ### Changed features
1220
-
1221
- * Pass scenario to hooks (Marat Dyatko)
1222
- * Minor change to stepdef snippets (JS) (Julien Biezemans)
1223
- * Make feature id in JSON output replace all spaces (close #[127](https://github.com/cucumber/cucumber-js/issues/127), Tim Perry)
1224
- * Bump CoffeeScript (close [#154](https://github.com/cucumber/cucumber-js/issues/154), Gabe Hayes)
1225
-
1226
- ### Documentation, internals and tests
1227
-
1228
- * Add Hook spec example for single-arg function (close [#143](https://github.com/cucumber/cucumber-js/issues/143), Julien Biezemans)
1229
- * Update README with Hook scenario object doc (Julien Biezemans)
1230
- * Style (Julien Biezemans)
1231
-
1232
- ## [v0.3.3]
1233
-
1234
- ### New features
1235
-
1236
- * Output step definition snippets in CoffeeScript (John George Wright)
1237
- * Add colors to CLI (Johny Jose)
1238
-
1239
- ### Changed features
1240
-
1241
- * Add durations to JSON formatter (Simon Dean)
1242
-
1243
- ### Documentation, internals and tests
1244
-
1245
- * Bump most dependencies (Julien Biezemans)
1246
- * DRY (Julien Biezemans)
1247
- * Refactor (Julien Biezemans)
1248
-
1249
- ## [v0.3.2]
1250
-
1251
- ### New features
1252
-
1253
- * Add PogoScript support (Josh Chisholm)
1254
- * Add listener and event handler registration (close [#130](https://github.com/cucumber/cucumber-js/issues/130), Paul Shannon)
1255
-
1256
- ### Documentation, internals and tests
1257
-
1258
- * Added some nice stats (Aslak Hellesøy)
1259
- * Fix spelling of "GitHub" (Peter Suschlik)
1260
- * Add Code Climate badge to README (Julien Biezemans)
1261
- * Update README.md (Sebastian Schürmann)
1262
-
1263
- ## [v0.3.1]
1264
-
1265
- ### New features
1266
-
1267
- * Add DataTable.rows() (Niklas Närhinen)
1268
- * Officially support Node 0.10 and 0.11 (Julien Biezemans)
1269
-
1270
- ### Changed features
1271
-
1272
- * Update cucumber-html (Aslak Hellesøy)
1273
- * Bump Gherkin (Julien Biezemans)
1274
- * Add options parameter to JSON formatter (Israël Hallé)
1275
- * Updated CoffeeScript (Matteo Collina)
1276
- * Specify strict coffee-script version number (Julien Biezemans)
1277
- * Bump jasmine-node (Julien Biezemans)
1278
-
1279
- ### Fixes
1280
-
1281
- * Fix travis build Node versions (Julien Biezemans)
1282
- * Fix Travis CI configuration (Julien Biezemans)
1283
-
1284
- ### Documentation, internals and tests
1285
-
1286
- * Remove words in History (Julien Biezemans)
1287
- * Update dev status table in README (Julien Biezemans)
1288
- * Update LICENSE (Julien Biezemans)
1289
- * Add contributors (Julien Biezemans)
1290
- * Move data table scenario to TCK (Julien Biezemans)
1291
- * Be consistent in spec matchers (Julien Biezemans)
1292
- * Remove cucumber.no.de links (Kim, Jang-hwan)
1293
- * Fix broken link in README dev status table ([#118](https://github.com/cucumber/cucumber-js/issues/118), Michael Zedeler)
1294
- * Refactor hook-related Given steps in JS stepdefs (Julien Biezemans)
1295
- * Refactor failing mapping JS step definitions (Julien Biezemans & Matt Wynne)
1296
- * Update README.md to correct error in example for zombie initialization (Tom V)
1297
- * Update minor typos in README.md (David Godfrey)
1298
-
1299
-
1300
-
1301
- ## [v0.3.0]
1302
-
1303
- ### New features
1304
-
1305
- * Allow for node-like callback errors (Julien Biezemans)
1306
- * Accept multiple features in volatile configuration ([#52](https://github.com/cucumber/cucumber-js/issues/52), Julien Biezemans)
1307
-
1308
- ### Fixes
1309
-
1310
- * Add ^ prefix and $ suffix to string-based step definition regexps ([#77](https://github.com/cucumber/cucumber-js/issues/77), Julien Biezemans)
1311
- * Allow for unsafe regexp characters in stepdef string patterns ([#77](https://github.com/cucumber/cucumber-js/issues/77), Julien Biezemans)
1312
-
1313
- ### Documentation, internals and tests
1314
-
1315
- * Build on Node.js 0.8 on Travis (Julien Biezemans)
1316
- * Rewrite README's status table in HTML (Julien Biezemans)
1317
- * Bump Gherkin ([#78](https://github.com/cucumber/cucumber-js/issues/78), Julien Biezemans)
1318
- * Switch to HTML tables in README (Julien Biezemans)
1319
- * Bump Aruba (Julien Biezemans)
1320
-
1321
-
1322
-
1323
- ## [v0.2.x](https://github.com/cucumber/cucumber-js/compare/v0.2.0...v0.3.0^)
1324
-
1325
- ## [v0.2.22]
1326
-
1327
- ### New features
1328
-
1329
- * Print data tables and doc strings in pretty formatter output ([#89](https://github.com/cucumber/cucumber-js/issues/89), [#81](https://github.com/cucumber/cucumber-js/issues/81), Julien Biezemans)
1330
-
1331
- ### Fixes
1332
-
1333
- * Exclude unmatched features from AST ([#80](https://github.com/cucumber/cucumber-js/issues/80), Julien Biezemans)
1334
-
1335
-
1336
-
1337
- ## [v0.2.21]
1338
-
1339
- ### New features
1340
-
1341
- * Add bundler (Julien Biezemans)
1342
-
1343
-
1344
-
1345
- **TBD**
1346
-
1347
- ## [v0.2.20]
1348
-
1349
- ### New features
1350
-
1351
- * Add JSON formatter ([#79](https://github.com/cucumber/cucumber-js/issues/79), Chris Young)
1352
-
1353
- ### Fixes
1354
-
1355
- * Fix data table and tags handling in JSON formatter (Julien Biezemans)
1356
-
1357
- ### Documentation, internals and tests
1358
-
1359
- * Force example feature execution order in JSON feature (Julien Biezemans)
1360
-
1361
-
1362
-
1363
- ## [v0.2.19]
1364
-
1365
- ### Fixes
1366
-
1367
- * Fix CLI arguments passing ([#83](https://github.com/cucumber/cucumber-js/issues/83), Omar Gonzalez)
1368
-
1369
- ### Documentation, internals and tests
1370
-
1371
- * Refactor "summarizer" listener to summary formatter ([#71](https://github.com/cucumber/cucumber-js/issues/71), 28b74ef, Julien Biezemans)
1372
- * Add "summary" formatter to available CLI formatters (Julien Biezemans)
1373
- * Fix spec example description (Julien Biezemans)
1374
-
1375
-
1376
-
1377
- ## [v0.2.18]
1378
-
1379
- ### Fixes
1380
-
1381
- * Replace findit with walkdir to fix file loading on Windows ([#73](https://github.com/cucumber/cucumber-js/issues/73), Aaron Garvey)
1382
-
1383
- ### Documentation, internals and tests
1384
-
1385
- * Rename spec file (Julien Biezemans)
1386
- * Extract developer documentation from README to CONTRIBUTE (Julien Biezemans)
1387
- * Bump browserify (Julien Biezemans)
1388
- * Update supported Node.js versions (Julien Biezemans)
1389
-
1390
-
1391
-
1392
- ## [v0.2.17]
1393
-
1394
- ### New features
1395
-
1396
- * Add pretty formatter (simplified, monochrome) ([#59](https://github.com/cucumber/cucumber-js/issues/59), @renier, Julien Biezemans)
1397
-
1398
- ### Documentation, internals and tests
1399
-
1400
- * Display only master branch build status in README (Julien Biezemans)
1401
- * Rename "summary logger" to "summarizer" ([#59](https://github.com/cucumber/cucumber-js/issues/59), Julien Biezemans)
1402
- * Extract common formatter methods ([#59](https://github.com/cucumber/cucumber-js/issues/59), [#63](https://github.com/cucumber/cucumber-js/issues/63), Julien Biezemans)
1403
-
1404
-
1405
-
1406
- ## [v0.2.16]
1407
-
1408
- ### New features
1409
-
1410
- * Display failing scenario URIs in summary (Julien Biezemans)
1411
-
1412
- ### Documentation, internals and tests
1413
-
1414
- * Ran a gem update (Aslak Hellesøy)
1415
- * Update NPM dependencies ([#69](https://github.com/cucumber/cucumber-js/issues/69), Aslak Hellesøy)
1416
- * Refactor listener infrastructure ([#35](https://github.com/cucumber/cucumber-js/issues/35), [#59](https://github.com/cucumber/cucumber-js/issues/59), [#63](https://github.com/cucumber/cucumber-js/issues/63), Julien Biezemans)
1417
- * Extract summary logger from progress formatter ([#59](https://github.com/cucumber/cucumber-js/issues/59), [#63](https://github.com/cucumber/cucumber-js/issues/63), Julien Biezemans)
1418
- * Store URI on AST elements (Julien Biezemans)
1419
-
1420
-
1421
-
1422
- ## [v0.2.15]
1423
-
1424
- ### New features
1425
-
1426
- * Handle asynchronous exceptions ([#51](https://github.com/cucumber/cucumber-js/issues/51), Julien Biezemans)
1427
-
1428
- ### Documentation, internals and tests
1429
-
1430
- * Remove commented code (Julien Biezemans)
1431
-
1432
-
1433
-
1434
- ## [v0.2.14]
1435
-
1436
- ### New features
1437
-
1438
- * Mention CS support in README (Julien Biezemans)
1439
- * Update command-line documentation in README (Julien Biezemans)
1440
-
1441
- ### Fixes
1442
-
1443
- * Add alternate binary script for Windows ([#60](https://github.com/cucumber/cucumber-js/issues/60), Julien Biezemans)
1444
-
1445
-
1446
-
1447
- ## [v0.2.13]
1448
-
1449
- ### New features
1450
-
1451
- * Add support for string-based step definition patterns ([#48](https://github.com/cucumber/cucumber-js/issues/48), Ted de Koning, Julien Biezemans)
1452
-
1453
- ### Documentation, internals and tests
1454
-
1455
- * Pass step instance to step definition invocation ([#57](https://github.com/cucumber/cucumber-js/issues/57), Julien Biezemans)
1456
- * Refactor step result specs (Julien Biezemans)
1457
- * Store step on step results ([#57](https://github.com/cucumber/cucumber-js/issues/57), Julien Biezemans)
1458
- * Increase Aruba timeout delay for slow Travis (Julien Biezemans)
1459
- * Decouple pattern from regexp in step definition ([#48](https://github.com/cucumber/cucumber-js/issues/48), Julien Biezemans)
1460
-
1461
-
1462
-
1463
- ## [v0.2.12]
1464
-
1465
- ### Changed features
1466
-
1467
- * Allow World constructor to set explicit World object ([#50](https://github.com/cucumber/cucumber-js/issues/50), Julien Biezemans)
1468
-
1469
- ### Documentation, internals and tests
1470
-
1471
- * Add semicolons (Julien Biezemans)
1472
- * Add documentation about World to README (Julien Biezemans)
1473
-
1474
-
1475
-
1476
- ## [v0.2.11]
1477
-
1478
- ### Changed features
1479
-
1480
- * Simplify World callbacks ([#49](https://github.com/cucumber/cucumber-js/issues/49), Julien Biezemans)
1481
-
1482
- ### Fixes
1483
-
1484
- * Fix callback.fail() when called without any reasons (Julien Biezemans)
1485
-
1486
- ### Documentation, internals and tests
1487
-
1488
- * Add toHaveBeenCalledWithInstanceOfConstructorAsNthParameter() spec helper (Julien Biezemans)
1489
- * Simplify default World constructor callback (Julien Biezemans)
1490
- * Adapt World constructors (Julien Biezemans)
1491
-
1492
-
1493
-
1494
- ## [v0.2.10]
1495
-
1496
- ### Fixes
1497
-
1498
- * Fix path handling on Windows platforms ([#47](https://github.com/cucumber/cucumber-js/issues/47), Julien Biezemans)
1499
-
1500
- ### Documentation, internals and tests
1501
-
1502
- * Add tagged hooks example to README (Julien Biezemans)
1503
- * Fix browserify setup for example page load (Julien Biezemans)
1504
- * Rename bundle to 'cucumber.js' in web example (Julien Biezemans)
1505
- * Remove obsolete browserify directive (Julien Biezemans)
1506
- * Improve platform detection (Julien Biezemans)
1507
-
1508
-
1509
-
1510
- ## [v0.2.9]
1511
-
1512
- ### New features
1513
-
1514
- * Add support for tagged hooks ([#32](https://github.com/cucumber/cucumber-js/issues/32), Julien Biezemans)
1515
-
1516
- ### Changed features
1517
-
1518
- * Allow for whitespaces in tag groups (Julien Biezemans)
1519
-
1520
- ### Documentation, internals and tests
1521
-
1522
- * Add Cucumber.Type.String and String#trim(, Julien Biezemans)
1523
- * Remove unnecessary this. from stepdefs (Julien Biezemans)
1524
- * Simplify tag-related stepdefs (Julien Biezemans)
1525
- * Simplify tag selection syntax in volatile configuration (Julien Biezemans)
1526
- * Mark hooks "done" in README dev status (Julien Biezemans)
1527
-
1528
-
1529
-
1530
- ## [v0.2.8]
1531
-
1532
- ### New features
1533
-
1534
- * Add around hooks ([#32](https://github.com/cucumber/cucumber-js/issues/32), Julien Biezemans)
1535
-
1536
- ### Changed features
1537
-
1538
- * Treat undefined and skipped step as any other step (Julien Biezemans)
1539
-
1540
- ### Documentation, internals and tests
1541
-
1542
- * Remove unused parameter in parser spec (Julien Biezemans)
1543
- * Add JS stepdef for async failing steps scenario (Julien Biezemans)
1544
- * Assign zombie in README example ([#44](https://github.com/cucumber/cucumber-js/issues/44), Julien Biezemans)
1545
- * Remove trailing spaces (Julien Biezemans)
1546
- * Get rid of obsolete PendingStepException (Julien Biezemans)
1547
- * Refactor SupportCode.Library spec (Julien Biezemans)
1548
- * Add around hooks documentation ([#32](https://github.com/cucumber/cucumber-js/issues/32), Julien Biezemans)
1549
-
1550
-
1551
-
1552
- ## [v0.2.7]
1553
-
1554
- ### New features
1555
-
1556
- * Allow for asynchronous pending steps (Julien Biezemans)
1557
- * Allow for asynchronous step failures (Julien Biezemans)
1558
-
1559
- ### Fixes
1560
-
1561
- * Fix matching groups in step definition snippets ([#42](https://github.com/cucumber/cucumber-js/issues/42), Julien Biezemans)
1562
- * Remove obsolete dependency from snippet builder spec (Julien Biezemans)
1563
-
1564
- ### Documentation, internals and tests
1565
-
1566
- * Add steps to release process in README (Julien Biezemans)
1567
- * Update development status table in README (Julien Biezemans)
1568
- * Import implementation-specific scenarios from cucumber-tck/undefined_steps (Julien Biezemans)
1569
- * Switch from throwing exceptions to callback.fail() in web example (Julien Biezemans)
1570
- * Add callback.fail() example to README (Julien Biezemans)
1571
-
1572
- ## [v0.2.6]
1573
-
1574
- ### New features
1575
-
1576
- * Add tags support ([#7](https://github.com/cucumber/cucumber-js/issues/7), Julien Biezemans)
1577
- * Add support for tags on features ([#7](https://github.com/cucumber/cucumber-js/issues/7), Julien Biezemans)
1578
-
1579
- ### Changed features
1580
-
1581
- * Handle missing instance in World constructor callback ([#40](https://github.com/cucumber/cucumber-js/issues/40), Julien Biezemans)
1582
-
1583
- ### Documentation, internals and tests
1584
-
1585
- * Update development status in README (Julien Biezemans)
1586
- * Typo in README (Julien Biezemans)
1587
- * Refactor parser and add AST assembler (required by [#7](https://github.com/cucumber/cucumber-js/issues/7), Julien Biezemans)
1588
- * Indent properly (Julien Biezemans)
1589
- * Refactor AST assembler to be stateful (needed by [#7](https://github.com/cucumber/cucumber-js/issues/7), Julien Biezemans)
1590
- * Update master diff in History (Julien Biezemans)
1591
- * Add --tags documentation to --help (CLI, Julien Biezemans)
1592
-
1593
-
1594
-
1595
- ## [v0.2.5]
1596
-
1597
- ### New features
1598
-
1599
- * Add Before/After hooks ([#32](https://github.com/cucumber/cucumber-js/issues/32), [#31](https://github.com/cucumber/cucumber-js/issues/31), Tristan Dunn)
1600
-
1601
- ### Changed features
1602
-
1603
- * Interpret "*" step keyword as a repeat keyword (Julien Biezemans)
1604
-
1605
- ### Documentation, internals and tests
1606
-
1607
- * Add NPM publishing to README release checklist (Julien Biezemans)
1608
- * Add "Help & Support" to README (Julien Biezemans)
1609
- * Words in README (Julien Biezemans)
1610
- * Document before and after hooks (Julien Biezemans)
1611
-
1612
-
1613
-
1614
- ## [v0.2.4]
1615
-
1616
- ### New features
1617
-
1618
- * Add --version to CLI (Julien Biezemans)
1619
- * Add --help to CLI (Julien Biezemans)
1620
-
1621
- ### Changed features
1622
-
1623
- * Add styles for reported errors on web example (Julien Biezemans)
1624
- * Make and expect World constructors to be asynchronous ([#39](https://github.com/cucumber/cucumber-js/issues/39), Julien Biezemans)
1625
-
1626
- ### Documentation, internals and tests
1627
-
1628
- * Update README (Julien Biezemans)
1629
- * Add development status to README (Julien Biezemans)
1630
- * Add link to demo at cucumber.no.de (Julien Biezemans)
1631
- * Add link to example app to README (Julien Biezemans)
1632
- * Add usage documentation to README ([#23](https://github.com/cucumber/cucumber-js/issues/23), Olivier Melcher)
1633
- * Add examples to run features with the CLI (Olivier Melcher)
1634
- * Fix header levels and whitespaces in README (Julien Biezemans)
1635
- * Add Opera to supported browsers in README (Julien Biezemans)
1636
- * Fix World constructor in README (Julien Biezemans)
1637
- * Simplify World#visit in README (Julien Biezemans)
1638
- * Rewrite step definition and wrapper documentation (Julien Biezemans)
1639
- * Remove useless words (Julien Biezemans)
1640
- * Use more consistent Markdown in README (Julien Biezemans)
1641
- * Fix Gherkin comment in README (Julien Biezemans)
1642
- * Add credits (Julien Biezemans)
1643
- * Add Aruba setup details to README (Julien Biezemans)
1644
- * Fix World constructor on web example according to the recent API changes (Julien Biezemans)
1645
- * Tell Travis CI to post build results to #cucumber (Julien Biezemans)
1646
- * Add release checklist to README (Julien Biezemans)
1647
-
1648
-
1649
-
1650
- ## [v0.2.3]
1651
-
1652
- ### New features
1653
-
1654
- * Add support for Node 0.6 (Julien Biezemans)
1655
-
1656
- ### Fixes
1657
-
1658
- * Prevent the same step definition snippet from being suggested twice (Julien Biezemans)
1659
-
1660
- ### Documentation, internals and tests
1661
-
1662
- * Don't make NPM ignore `example/` anymore (Julien Biezemans)
1663
- * Bump cucumber-features (Julien Biezemans)
1664
- * Use non-deprecated "url" key instead of "web" in NPM manifest (Julien Biezemans)
1665
- * Add JS step definitions related to data table scenarios (Julien Biezemans)
1666
- * Move from cucumber-features to cucumber-tck (Julien Biezemans)
1667
- * Bump Gherkin (Julien Biezemans)
1668
- * Bump jasmine-node (Julien Biezemans)
1669
- * Bump connect (Julien Biezemans)
1670
- * Fix Travis build (Julien Biezemans)
1671
- * Bump browserify (Julien Biezemans)
1672
- * Bump nopt (Julien Biezemans)
1673
- * Bump underscore (Julien Biezemans)
1674
- * Bump underscore.string (Julien Biezemans)
1675
- * Bump rimraf (Julien Biezemans)
1676
- * Bump mkdirp (Julien Biezemans)
1677
- * Bump Aruba (Julien Biezemans)
1678
-
1679
-
1680
-
1681
- ## [v0.2.2]
1682
-
1683
- ### New features
1684
-
1685
- * Suggest step definition snippets for undefined steps ([#33](https://github.com/cucumber/cucumber-js/issues/33), Julien Biezemans)
1686
-
1687
- ### Documentation, internals and tests
1688
-
1689
- * Add contributors to NPM package manifest (Julien Biezemans)
1690
- * Clean up JS step definitions (Julien Biezemans)
1691
- * Bump cucumber-features and reflect step changes (Julien Biezemans)
1692
- * Set up [continuous integration on Travis CI](http://travis-ci.org/#!/cucumber/cucumber-js) (Julien Biezemans)
1693
- * Add Travis's build status icon to README (Julien Biezemans)
1694
-
1695
-
1696
-
1697
- ## [v0.2.1]
1698
-
1699
- ### New features
1700
-
1701
- * Allow custom World constructors (Julien Biezemans)
1702
- * Add support for data tables (with conversion to hashes) ([#12](https://github.com/cucumber/cucumber-js/issues/12), Julien Biezemans)
1703
-
1704
- ### Changed features
1705
-
1706
- * Demonstrate World object usages in web example (Julien Biezemans)
1707
-
1708
-
1709
-
1710
- ## [v0.2.0]
1711
-
1712
- ### New features
1713
-
1714
- * Setup application to run on [Travis CI](http://travis-ci.org/#!/jbpros/cucumber-js) (Julien Biezemans)
1715
- * Add CoffeeScript support for step definition files (Paul Jensen)
1716
- * Add "World" ([#26](https://github.com/cucumber/cucumber-js/issues/26), Julien Biezemans)
1717
-
1718
- ### Changed features
1719
-
1720
- * Add link to the Github repository on web example (Julien Biezemans)
1721
- * Allow specifying the port the web example server should listen on (Julien Biezemans)
1722
- * Update web example to use cucumber-html formatter (Julien Biezemans)
1723
-
1724
- ### Fixes
1725
-
1726
- * Fix load paths in spec helper (Julien Biezemans)
1727
- * Prevent 'crypto' module from being included by browserify in web example (Julien Biezemans)
1728
- * Fix HTML indentation (Julien Biezemans)
1729
- * Prevent CLI support code loader from calling module main exports which are not functions (Julien Biezemans)
1730
- * Remove use of username for submodule (Kushal Pisavadia)
1731
-
1732
- ### Documentation, internals and tests
1733
-
1734
- * Bump jasmine-node
1735
- * Update README (Julien Biezemans)
1736
- * Bump Gherkin twice (Julien Biezemans)
1737
- * Bump cucumber-features twice (Julien Biezemans)
1738
- * Add missing getters on several AST feature elements (mostly getLine()) (Julien Biezemans)
1739
- * Ignore example/ on NPM (Julien Biezemans)
1740
- * Add Procfile (used by Heroku when deploying to cucumber.heroku.com) (Julien Biezemans)
1741
- * Bump Aruba (Julien Biezemans)
1742
- * Add guard-jasmine-node (Julien Biezemans)
1743
- * Improve Guardfile regular expressions (Julien Biezemans)
1744
- * Bump cucumber-html and remove DOM templates from web example HTML file (Julien Biezemans)
1745
- * Fix PathExpander internal name (Julien Biezemans)
1746
- * Remove unneeded requires from FeaturePathExpander (Julien Biezemans)
1747
- * Bump browserify (Julien Biezemans)
1748
- * Remove "glob" from dependencies (Julien Biezemans)
1749
- * Refactor SupportCodePathExpander spec (Julien Biezemans)
1750
- * Add feature for CoffeeScript support ([#29](https://github.com/cucumber/cucumber-js/issues/29), Julien Biezemans)
1751
-
1752
-
1753
-
1754
- ## [v0.1.x](https://github.com/cucumber/cucumber-js/compare/v0.1.0...v0.2.0^)
1755
-
1756
- ## [v0.1.5]
1757
-
1758
- ### New features
1759
-
1760
- * Add support for background ([#9](https://github.com/cucumber/cucumber-js/issues/9), Julien Biezemans)
1761
-
1762
- ### Documentation, internals and tests
1763
-
1764
- * Bump cucumber-features (twice) (Julien Biezemans)
1765
- * Bump gherkin and reflect changes in its API (add DocString content type) (Julien Biezemans)
1766
-
1767
-
1768
-
1769
- ## [v0.1.4]
1770
-
1771
- ### Changed features
1772
-
1773
- * Stop polluting the global namespace with Given(), When() and Then() ([#2](https://github.com/cucumber/cucumber-js/issues/2), Julien Biezemans)
1774
- * Step definitions can be created with the support code helper passed as 'this':
1775
- this.Given(), this.When(), this.Then() and this.defineStep() ([#2](https://github.com/cucumber/cucumber-js/issues/2), Julien Biezemans)
1776
-
1777
- ### Documentation, internals and tests
1778
-
1779
- * Fix typo "occured" -> "occurred" (Fernando Acorreia)
1780
- * Improve variable names in CLI support code loader (Julien Biezemans)
1781
-
1782
-
1783
-
1784
- ## [v0.1.3]
1785
-
1786
- ### New features
1787
-
1788
- * Allow several features to run at once ([#14](https://github.com/cucumber/cucumber-js/issues/14), Julien Biezemans)
1789
- * Add support for --require (Julien Biezemans)
1790
-
1791
- ### Documentation, internals and tests
1792
-
1793
- * Improve features and support code API (Julien Biezemans)
1794
- * Add "Cli" and "Volatile" configurations (Julien Biezemans)
1795
- * Internal refactoring and cleanup (Julien Biezemans)
1796
- * Cucumber.js can now fully test itself (Julien Biezemans)
1797
- * Remove run_all_features script in favor of bin/cucumber.js (Julien Biezemans)
1798
-
1799
-
1800
-
1801
- ## [v0.1.2]
1802
-
1803
- ### New features
1804
-
1805
- * Add failure reporting to the progress formatter ([#20](https://github.com/cucumber/cucumber-js/issues/20), Julien Biezemans)
1806
-
1807
-
1808
-
1809
- ## [v0.1.1]
1810
-
1811
- ### New features
1812
-
1813
- * Publish Cucumber.js to NPM as [`cucumber`](https://www.npmjs.com/search?q=cucumber) (Julien Biezemans)
1814
-
1815
- ### Changed features
1816
-
1817
- * Throw a clearer exception on missing feature argument (CLI) (Julien Biezemans)
1818
-
1819
- ### Documentation, internals and tests
1820
-
1821
- * Unify and clean up js-specific features and step definitions ([#21](https://github.com/cucumber/cucumber-js/issues/21), Julien Biezemans)
1822
-
1823
-
1824
-
1825
- ## [v0.1.0]
1826
-
1827
- ### New features
1828
-
1829
- * Add cucumber.js executable (Julien Biezemans)
1830
- * Handle step failures ([#6](https://github.com/cucumber/cucumber-js/issues/6), Julien Biezemans)
1831
- * Add the progress formatter ([#16](https://github.com/cucumber/cucumber-js/issues/16), Julien Biezemans)
1832
- * Add support for pending steps ([#18](https://github.com/cucumber/cucumber-js/issues/18), Julien Biezemans)
1833
- * Add support for undefined steps ([#19](https://github.com/cucumber/cucumber-js/issues/19), Julien Biezemans)
1834
-
1835
- ### Changed features
1836
-
1837
- * Update web example to use the new progress formatter (Julien Biezemans)
1838
-
1839
- ### Fixes
1840
-
1841
- * Fix asynchronous step definition callbacks ([#1](https://github.com/cucumber/cucumber-js/issues/1), Julien Biezemans)
1842
- * Fix stepResult.isSuccessful call in ProgressFormatter (Julien Biezemans)
1843
- * Load Gherkin properly in browsers (Julien Biezemans)
1844
- * Remove calls to console.log in web example (Julien Biezemans)
1845
-
1846
- ### Documentation, internals and tests
1847
-
1848
- * Pass against core.feature in its new form, both with the Cucumber-ruby/Aruba pair and cucumber-js itself (Julien Biezemans)
1849
- * Refactor cucumber-features JS mappings (Julien Biezemans)
1850
- * Refactor js-specific features (Julien Biezemans)
1851
- * Rename PyString to DocString ([#15](https://github.com/cucumber/cucumber-js/issues/15), Julien Biezemans)
1852
- * Update Gherkin to 2.4.0 (Julien Biezemans)
1853
- * Modularize the project and use browserify.js to serve a single JS file to browsers. ([#3](https://github.com/cucumber/cucumber-js/issues/3), Julien Biezemans)
1854
- * Rename Cucumber.Types to Cucumber.Type (Julien Biezemans)
1855
- * Use progress formatter in cucumber-features ([#17](https://github.com/cucumber/cucumber-js/issues/17), Julien Biezemans)
1856
-
1857
-
1858
-
1859
- ## [v0.0.x](https://github.com/cucumber/cucumber-js/compare/v0.0.1...v0.1.0^)
1860
-
1861
- ## [v0.0.1](https://github.com/cucumber/cucumber-js/tree/v0.0.1)
1862
-
1863
- * Emerge Cucumber.js with bare support for features, scenarios and steps. It does not handle several Gherkin elements nor failures yet. (Julien Biezemans)
1864
-
1865
-
1866
- <!-- Releases -->
1867
- [Unreleased]: https://github.com/cucumber/cucumber-js/compare/v7.3.1...master
1868
- [7.3.1]: https://github.com/cucumber/cucumber-js/compare/7.3.1-rc.0...7.0.0
1869
- [7.3.0]: https://github.com/cucumber/cucumber-js/compare/7.3.0-rc.0...7.0.0
1870
- [7.2.1]: https://github.com/cucumber/cucumber-js/compare/7.2.1-rc.0...7.0.0
1871
- [7.2.0]: https://github.com/cucumber/cucumber-js/compare/7.2.0-rc.0...7.0.0
1872
- [7.1.0]: https://github.com/cucumber/cucumber-js/compare/7.1.0-rc.0...7.0.0
1873
- [7.0.0]: https://github.com/cucumber/cucumber-js/compare/7.0.0-rc.0...v7.0.0
1874
- [7.0.0-rc.0]: https://github.com/cucumber/cucumber-js/compare/v6.0.5...v7.0.0-rc.0
1875
- [6.0.5]: https://github.com/cucumber/cucumber-js/compare/v6.0.4...v6.0.5
1876
- [6.0.4]: https://github.com/cucumber/cucumber-js/compare/v6.0.3...v6.0.4
1877
- [6.0.3]: https://github.com/cucumber/cucumber-js/compare/v6.0.2...v6.0.3
1878
- [6.0.2]: https://github.com/cucumber/cucumber-js/compare/v6.0.1...v6.0.2
1879
- [6.0.1]: https://github.com/cucumber/cucumber-js/compare/v6.0.0...v6.0.1
1880
- [6.0.0]: https://github.com/cucumber/cucumber-js/compare/v5.1.0...v6.0.0
1881
- [5.1.0]: https://github.com/cucumber/cucumber-js/compare/v5.0.3...v5.1.0
1882
- [5.0.3]: https://github.com/cucumber/cucumber-js/compare/v5.0.2...v5.0.3
1883
- [5.0.2]: https://github.com/cucumber/cucumber-js/compare/v5.0.1...v5.0.2
1884
- [5.0.1]: https://github.com/cucumber/cucumber-js/compare/v4.2.1...v5.0.1
1885
- [4.2.1]: https://github.com/cucumber/cucumber-js/compare/v4.2.0...v4.2.1
1886
- [4.2.0]: https://github.com/cucumber/cucumber-js/compare/v4.1.0...v4.2.0
1887
- [4.1.0]: https://github.com/cucumber/cucumber-js/compare/v4.0.0...v4.1.0
1888
- [4.0.0]: https://github.com/cucumber/cucumber-js/compare/v3.2.1...v4.0.0
1889
- [3.2.1]: https://github.com/cucumber/cucumber-js/compare/v3.2.0...v3.2.1
1890
- [3.2.0]: https://github.com/cucumber/cucumber-js/compare/v3.1.0...v3.2.0
1891
- [3.1.0]: https://github.com/cucumber/cucumber-js/compare/v3.0.6...v3.1.0
1892
- [3.0.6]: https://github.com/cucumber/cucumber-js/compare/v3.0.5...v3.0.6
1893
- [3.0.5]: https://github.com/cucumber/cucumber-js/compare/v3.0.4...v3.0.5
1894
- [3.0.4]: https://github.com/cucumber/cucumber-js/compare/v3.0.3...v3.0.4
1895
- [3.0.3]: https://github.com/cucumber/cucumber-js/compare/v3.0.2...v3.0.3
1896
- [3.0.2]: https://github.com/cucumber/cucumber-js/compare/v3.0.1...v3.0.2
1897
- [3.0.1]: https://github.com/cucumber/cucumber-js/compare/v3.0.0...v3.0.1
1898
- [3.0.0]: https://github.com/cucumber/cucumber-js/compare/v2.3.1...v3.0.0
1899
- [2.3.1]: https://github.com/cucumber/cucumber-js/compare/v2.3.0...v2.3.1
1900
- [2.3.0]: https://github.com/cucumber/cucumber-js/compare/v2.2.0...v2.3.0
1901
- [2.2.0]: https://github.com/cucumber/cucumber-js/compare/v2.1.0...v2.2.0
1902
- [2.1.0]: https://github.com/cucumber/cucumber-js/compare/v2.0.0-rc.9...v2.1.0
1903
- [1.3.3]: https://github.com/cucumber/cucumber-js/compare/v1.3.2...v1.3.3
1904
- [1.3.2]: https://github.com/cucumber/cucumber-js/compare/v1.3.1...v1.3.2
1905
- [1.3.1]: https://github.com/cucumber/cucumber-js/compare/v1.3.0...v1.3.1
1906
- [1.3.0]: https://github.com/cucumber/cucumber-js/compare/v1.2.2...v1.3.0
1907
- [1.2.2]: https://github.com/cucumber/cucumber-js/compare/v1.2.1...v1.2.2
1908
- [1.2.1]: https://github.com/cucumber/cucumber-js/compare/v1.2.0...v1.2.1
1909
- [1.2.0]: https://github.com/cucumber/cucumber-js/compare/v1.1.0...v1.2.0
1910
- [1.1.0]: https://github.com/cucumber/cucumber-js/compare/v1.0.0...v1.1.0
1911
- [1.0.0]: https://github.com/cucumber/cucumber-js/compare/v0.10.4...v1.0.0
1912
- [0.10.4]: https://github.com/cucumber/cucumber-js/compare/v0.10.3...v0.10.4
1913
- [0.10.3]: https://github.com/cucumber/cucumber-js/compare/v0.10.2...v0.10.3
1914
- [0.10.2]: https://github.com/cucumber/cucumber-js/compare/v0.10.1...v0.10.2
1915
- [0.10.1]: https://github.com/cucumber/cucumber-js/compare/v0.10.0...v0.10.1
1916
- [0.10.0]: https://github.com/cucumber/cucumber-js/compare/v0.9.5...v0.10.0
1917
- [0.9.5]: https://github.com/cucumber/cucumber-js/compare/v0.9.4...v0.9.5
1918
- [0.9.4]: https://github.com/cucumber/cucumber-js/compare/v0.9.3...v0.9.4
1919
- [0.9.3]: https://github.com/cucumber/cucumber-js/compare/v0.9.2...v0.9.3
1920
- [0.9.2]: https://github.com/cucumber/cucumber-js/compare/v0.9.1...v0.9.2
1921
- [0.9.1]: https://github.com/cucumber/cucumber-js/compare/v0.9.0...v0.9.1
1922
- [0.9.0]: https://github.com/cucumber/cucumber-js/compare/v0.8.1...v0.9.0