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