cucumber 7.0.0 → 8.0.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +329 -170
- data/CONTRIBUTING.md +2 -6
- data/README.md +7 -5
- data/lib/autotest/cucumber_mixin.rb +5 -2
- data/lib/autotest/discover.rb +3 -2
- data/lib/cucumber/cli/configuration.rb +4 -1
- data/lib/cucumber/cli/main.rb +4 -3
- data/lib/cucumber/cli/options.rb +8 -2
- data/lib/cucumber/cli/profile_loader.rb +1 -5
- data/lib/cucumber/cli/rerun_file.rb +1 -1
- data/lib/cucumber/configuration.rb +5 -4
- data/lib/cucumber/constantize.rb +1 -1
- data/lib/cucumber/deprecate.rb +2 -1
- data/lib/cucumber/errors.rb +1 -1
- data/lib/cucumber/events/hook_test_step_created.rb +1 -2
- data/lib/cucumber/events/step_activated.rb +0 -6
- data/lib/cucumber/events/step_definition_registered.rb +0 -5
- data/lib/cucumber/events/test_case_created.rb +1 -2
- data/lib/cucumber/events/test_run_finished.rb +2 -1
- data/lib/cucumber/events/test_step_created.rb +1 -2
- data/lib/cucumber/events/undefined_parameter_type.rb +1 -2
- data/lib/cucumber/events.rb +2 -2
- data/lib/cucumber/file_specs.rb +2 -1
- data/lib/cucumber/filters/activate_steps.rb +1 -0
- data/lib/cucumber/filters/tag_limits/verifier.rb +1 -3
- data/lib/cucumber/filters/tag_limits.rb +1 -3
- data/lib/cucumber/formatter/ansicolor.rb +63 -63
- data/lib/cucumber/formatter/ast_lookup.rb +2 -2
- data/lib/cucumber/formatter/backtrace_filter.rb +2 -1
- data/lib/cucumber/formatter/console.rb +10 -2
- data/lib/cucumber/formatter/console_issues.rb +6 -1
- data/lib/cucumber/formatter/duration_extractor.rb +1 -0
- data/lib/cucumber/formatter/errors.rb +1 -0
- data/lib/cucumber/formatter/fanout.rb +1 -1
- data/lib/cucumber/formatter/http_io.rb +6 -1
- data/lib/cucumber/formatter/ignore_missing_messages.rb +1 -1
- data/lib/cucumber/formatter/io.rb +5 -3
- data/lib/cucumber/formatter/json.rb +8 -6
- data/lib/cucumber/formatter/junit.rb +6 -3
- data/lib/cucumber/formatter/message_builder.rb +3 -2
- data/lib/cucumber/formatter/pretty.rb +15 -5
- data/lib/cucumber/formatter/progress.rb +1 -0
- data/lib/cucumber/formatter/query/hook_by_test_step.rb +1 -0
- data/lib/cucumber/formatter/query/test_case_started_by_test_case.rb +2 -0
- data/lib/cucumber/formatter/rerun.rb +2 -0
- data/lib/cucumber/formatter/summary.rb +1 -0
- data/lib/cucumber/formatter/unicode.rb +4 -4
- data/lib/cucumber/formatter/usage.rb +3 -3
- data/lib/cucumber/gherkin/data_table_parser.rb +1 -0
- data/lib/cucumber/gherkin/formatter/ansi_escapes.rb +2 -2
- data/lib/cucumber/glue/dsl.rb +29 -15
- data/lib/cucumber/glue/hook.rb +6 -3
- data/lib/cucumber/glue/invoke_in_world.rb +4 -4
- data/lib/cucumber/glue/proto_world.rb +10 -9
- data/lib/cucumber/glue/registry_and_more.rb +22 -7
- data/lib/cucumber/glue/registry_wrapper.rb +31 -0
- data/lib/cucumber/glue/step_definition.rb +6 -3
- data/lib/cucumber/hooks.rb +1 -0
- data/lib/cucumber/multiline_argument/data_table/diff_matrices.rb +2 -1
- data/lib/cucumber/multiline_argument/data_table.rb +58 -71
- data/lib/cucumber/platform.rb +2 -2
- data/lib/cucumber/rake/task.rb +20 -9
- data/lib/cucumber/rspec/disable_option_parser.rb +6 -3
- data/lib/cucumber/running_test_case.rb +1 -0
- data/lib/cucumber/runtime/meta_message_builder.rb +106 -0
- data/lib/cucumber/runtime/support_code.rb +3 -0
- data/lib/cucumber/runtime/user_interface.rb +5 -4
- data/lib/cucumber/runtime.rb +36 -22
- data/lib/cucumber/step_match.rb +5 -3
- data/lib/cucumber/step_match_search.rb +3 -2
- data/lib/cucumber/term/ansicolor.rb +74 -50
- data/lib/cucumber/term/banner.rb +1 -0
- data/lib/cucumber/version +1 -1
- data/lib/cucumber.rb +2 -1
- data/lib/simplecov_setup.rb +1 -1
- metadata +96 -88
data/CHANGELOG.md
CHANGED
@@ -10,7 +10,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
10
10
|
|
11
11
|
---
|
12
12
|
|
13
|
-
## [
|
13
|
+
## [Unreleased](https://github.com/cucumber/cucumber-ruby/compare/v8.0.0...main)
|
14
14
|
|
15
15
|
### Added
|
16
16
|
|
@@ -22,7 +22,166 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
22
22
|
|
23
23
|
### Security fixes
|
24
24
|
|
25
|
-
|
25
|
+
### Deprecated
|
26
|
+
|
27
|
+
### Dependencies
|
28
|
+
|
29
|
+
|
30
|
+
## [8.0.0](https://github.com/cucumber/cucumber-ruby/compare/v8.0.0.rc.1...v8.0.0)
|
31
|
+
|
32
|
+
### Added
|
33
|
+
|
34
|
+
- Add a *WARNING* message when using a space-separated string with cucumber_opts
|
35
|
+
([PR#](https://github.com/cucumber/cucumber-ruby/pull/1624)
|
36
|
+
[Issue#1614](https://github.com/cucumber/cucumber-ruby/issues/1614))
|
37
|
+
|
38
|
+
- Add support for TruffleRuby
|
39
|
+
([PR#1612](https://github.com/cucumber/cucumber-ruby/pull/1612)
|
40
|
+
[gogainda](https://github.com/gogainda))
|
41
|
+
|
42
|
+
- Add support for named hooks
|
43
|
+
([PR#1636](https://github.com/cucumber/cucumber-ruby/pull/1636))
|
44
|
+
|
45
|
+
### Fixed
|
46
|
+
|
47
|
+
- Use `required_rubygems_version` instead of `rubygems_version`([PR#1629](https://github.com/cucumber/cucumber-ruby/pull/1629))
|
48
|
+
|
49
|
+
- Suppress RSspec deprecation warnings([PR#1631](https://github.com/cucumber/cucumber-ruby/pull/1631))
|
50
|
+
|
51
|
+
## [8.0.0.RC.1](https://github.com/cucumber/cucumber-ruby/compare/v7.1.0...v8.0.0.rc.1)
|
52
|
+
|
53
|
+
### Fixed
|
54
|
+
|
55
|
+
- Fix TestRunFinished success property in html formatter and all formatters
|
56
|
+
based on the messages: it now returns true if the run has passed
|
57
|
+
([PR#1606](https://github.com/cucumber/cucumber-ruby/pull/1606)
|
58
|
+
[Issue#1604](https://github.com/cucumber/cucumber-ruby/issues/1604))
|
59
|
+
|
60
|
+
- Fix usage of namespaced modules across multiple scenarios
|
61
|
+
([PR#1603](https://github.com/cucumber/cucumber-ruby/pull/1603)
|
62
|
+
[Issue#1595](https://github.com/cucumber/cucumber-ruby/issues/1595))
|
63
|
+
|
64
|
+
- Do not serialize Messages::Hook#tag_expression if it is empty.
|
65
|
+
([PR#1579](https://github.com/cucumber/cucumber-ruby/pull/1579))
|
66
|
+
|
67
|
+
- JSON Formatter uses "pretty" output format
|
68
|
+
([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
|
69
|
+
|
70
|
+
- Fixed JSON Formatter "end of background" detection.
|
71
|
+
([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
|
72
|
+
|
73
|
+
- Fixed JSON Formatter expansion of Scenario Outline templates in Doc Strings.
|
74
|
+
([PR#1580](https://github.com/cucumber/cucumber-ruby/pull/1580))
|
75
|
+
|
76
|
+
- Removed usage of `eval` in `Cucumber::Term::ANSIColor` and `Cucumber::Formatter::ANSIColor`.
|
77
|
+
([PR#1589](https://github.com/cucumber/cucumber-ruby/pull/1589)
|
78
|
+
[Issue#1583](https://github.com/cucumber/cucumber-ruby/issues/1583))
|
79
|
+
|
80
|
+
- Fixed `DataTable#map_headers` when headers have the same prefix.
|
81
|
+
([PR#1598](https://github.com/cucumber/cucumber-ruby/pull/1598)
|
82
|
+
[Issue#1450](https://github.com/cucumber/cucumber-ruby/issues/1450))
|
83
|
+
|
84
|
+
### Changed
|
85
|
+
|
86
|
+
- Replace dependency [cucumber-create-meta](https://rubygems.org/gems/cucumber-create-meta)
|
87
|
+
with the new [cucumber-ci-environment](https://rubygems.org/gems/cucumber-ci-environment)
|
88
|
+
([PR#1601](https://github.com/cucumber/cucumber-ruby/pull/1601))
|
89
|
+
|
90
|
+
- In `DataTable#map_column`, Changed the `strict` argument into a keyword argument.
|
91
|
+
See [UPGRADING.md](./UPGRADING.md#upgrading-to-800).
|
92
|
+
([PR#1594](https://github.com/cucumber/cucumber-ruby/pull/1594)
|
93
|
+
[Issue#1592](https://github.com/cucumber/cucumber-ruby/issues/1592))
|
94
|
+
|
95
|
+
- Added Ruby 3.1
|
96
|
+
([PR#1607](https://github.com/cucumber/cucumber-ruby/pull/1607))
|
97
|
+
|
98
|
+
### Removed
|
99
|
+
|
100
|
+
- `AfterConfiguration` has been removed. Please use `InstallPlugin` or `BeforeAll` instead.
|
101
|
+
See the [UPGRADING.md](./UPGRADING.md#upgrading-to-800) to update your code accordingly.
|
102
|
+
([PR#1591](https://github.com/cucumber/cucumber-ruby/pull/1591))
|
103
|
+
|
104
|
+
- The built-in Wire protocol
|
105
|
+
The Wire protocol is still officially supported, but as an optional plugin rather
|
106
|
+
than a built-in feature. See the
|
107
|
+
[UPGRADING.md](./UPGRADING.md#upgrading-to-800)
|
108
|
+
to update your code accordingly.
|
109
|
+
|
110
|
+
([1562](https://github.com/cucumber/cucumber-ruby/pull/1562)
|
111
|
+
[aurelien-reeves](https://github.com/aurelien-reeves))
|
112
|
+
|
113
|
+
- Removed former unused `stdin` argument from `Cli::Main`. That may impact your code
|
114
|
+
if you use cucumber API `Cucumber::Cli::Main`. See [UPGRADING.md](./UPGRADING.md#upgrading-to-800).
|
115
|
+
([PR#1588](https://github.com/cucumber/cucumber-ruby/pull/1588)
|
116
|
+
[Issue#1581](https://github.com/cucumber/cucumber-ruby/issues/1581))
|
117
|
+
|
118
|
+
- Removed `DataTable#map_column!` and `DataTable#map_headers!`.
|
119
|
+
Those methods were error-prone and planned to be removed a long time ago. You
|
120
|
+
can use the immutable versions instead: `DataTable#map_column` and
|
121
|
+
`DataTable#map_headers`.
|
122
|
+
([PR#1590](https://github.com/cucumber/cucumber-ruby/pull/1590)
|
123
|
+
[Issue#1584](https://github.com/cucumber/cucumber-ruby/issues/1584))
|
124
|
+
|
125
|
+
- Removed support for Ruby 2.5 and JRuby 9.2.
|
126
|
+
|
127
|
+
## [7.1.0](https://github.com/cucumber/cucumber-ruby/compare/v7.0.0...v7.1.0) (2021-10-12)
|
128
|
+
|
129
|
+
### Added
|
130
|
+
|
131
|
+
- New `BeforeAll` and `AfterAll` hooks
|
132
|
+
|
133
|
+
More information about hooks can be found in
|
134
|
+
[features/docs/writing_support_code/hooks/README.md](./features/docs/writing_support_code/hooks/README.md).
|
135
|
+
|
136
|
+
([1569](https://github.com/cucumber/cucumber-ruby/pull/1569)
|
137
|
+
[aurelien-reeves](https://github.com/aurelien-reeves))
|
138
|
+
|
139
|
+
- New hook: `InstallPlugin`
|
140
|
+
|
141
|
+
It is intended to be used to install an external plugin, like cucumber-ruby-wire.
|
142
|
+
|
143
|
+
It is fired just after the `AfterConfiguration` one. Two parameters are given:
|
144
|
+
the same `configuration` instance that is given to `AfterConfiguration`,
|
145
|
+
and a [`registry_wrapper`](./lib/cucumber/glue/registry_wrapper.rb) which allows
|
146
|
+
plugins to have access to specific internal methods.
|
147
|
+
|
148
|
+
See [cucumber-ruby-wire](https://github.com/cucumber/cucumber-ruby-wire/) for a
|
149
|
+
usage example.
|
150
|
+
|
151
|
+
More information about hooks can be found in
|
152
|
+
[features/docs/writing_support_code/hooks/README.md](./features/docs/writing_support_code/hooks/README.md).
|
153
|
+
|
154
|
+
([1564](https://github.com/cucumber/cucumber-ruby/pull/1564)
|
155
|
+
[aurelien-reeves](https://github.com/aurelien-reeves))
|
156
|
+
|
157
|
+
### Changed
|
158
|
+
|
159
|
+
- Added release dates to CHANGELOG.md.
|
160
|
+
([1543](https://github.com/cucumber/cucumber-ruby/pull/1573)
|
161
|
+
[AudTheCodeWitch](https://github.com/AudTheCodeWitch))
|
162
|
+
|
163
|
+
### Deprecated
|
164
|
+
|
165
|
+
- `AfterConfiguration` is deprecated. Please use `InstallPlugin` or `BeforeAll` instead.
|
166
|
+
See the [UPGRADING.md](./UPGRADING.md#upgrading-to-710) to update your code accordingly.
|
167
|
+
([1570](https://github.com/cucumber/cucumber-ruby/pull/1570))
|
168
|
+
|
169
|
+
- The built-in Wire protocol
|
170
|
+
|
171
|
+
The Wire protocol is still officially supported, but as an optional plugin rather
|
172
|
+
than a built-in feature. See the
|
173
|
+
[UPGRADING.md](./UPGRADING.md#upgrading-to-710)
|
174
|
+
to update your code accordingly.
|
175
|
+
|
176
|
+
([1564](https://github.com/cucumber/cucumber-ruby/pull/1564)
|
177
|
+
[aurelien-reeves](https://github.com/aurelien-reeves))
|
178
|
+
|
179
|
+
### Known issue
|
180
|
+
|
181
|
+
- There is a known issue with JRuby 9.3. For more info, see
|
182
|
+
[PR#1571](https://github.com/cucumber/cucumber-ruby/pull/1571).
|
183
|
+
|
184
|
+
## [7.0.0](https://github.com/cucumber/cucumber-ruby/compare/v6.1.0...v7.0.0) (2021-07-19)
|
26
185
|
|
27
186
|
### Fixed
|
28
187
|
|
@@ -38,11 +197,11 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
38
197
|
|
39
198
|
This brings some breaking changes in `Cucumber::Messages`.
|
40
199
|
([1544](https://github.com/cucumber/cucumber-ruby/pull/1544)
|
41
|
-
|
200
|
+
[aurelien-reeves](https://github.com/aurelien-reeves))
|
42
201
|
|
43
202
|
This also fixes [1545](https://github.com/cucumber/cucumber-ruby/issues/1545)
|
44
203
|
([1549](https://github.com/cucumber/cucumber-ruby/pull/1549)
|
45
|
-
|
204
|
+
[luke-hill](https://github.com/luke-hill))
|
46
205
|
|
47
206
|
### Removed
|
48
207
|
|
@@ -51,17 +210,17 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
51
210
|
Windows, execute cucumber with `--no-color`, or install
|
52
211
|
[ANSICON](https://github.com/adoxa/ansicon/) globally.
|
53
212
|
([1561](https://github.com/cucumber/cucumber-ruby/pull/1561)
|
54
|
-
|
213
|
+
[yosukei3108](https://github.com/yosukei3108))
|
55
214
|
|
56
|
-
## [v6.1.0](https://github.com/cucumber/cucumber-ruby/compare/v6.0.0...v6.1.0)
|
215
|
+
## [v6.1.0](https://github.com/cucumber/cucumber-ruby/compare/v6.0.0...v6.1.0) (2021-05-18)
|
57
216
|
|
58
217
|
### Fixed
|
59
218
|
|
60
219
|
- `--dry-run` now supports `message` based-formatters
|
61
220
|
([1540](https://github.com/cucumber/cucumber-ruby/pull/1540)
|
62
|
-
|
63
|
-
|
64
|
-
|
221
|
+
[1496](https://github.com/cucumber/cucumber-ruby/issues/1496)
|
222
|
+
[1488](https://github.com/cucumber/cucumber-ruby/issues/1488)
|
223
|
+
[aurelien-reeves](https://github.com/aurelien-reeves))
|
65
224
|
- Step definitions now uses object instances created in the ParameterType
|
66
225
|
([1538](https://github.com/cucumber/cucumber-ruby/pull/1538)
|
67
226
|
[1532](https://github.com/cucumber/cucumber-ruby/issues/1532)
|
@@ -85,7 +244,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
85
244
|
|
86
245
|
- Updated `cucumber-core` ~> 9.0.1
|
87
246
|
|
88
|
-
## [v6.0.0](https://github.com/cucumber/cucumber-ruby/compare/v5.3.0...v6.0.0)
|
247
|
+
## [v6.0.0](https://github.com/cucumber/cucumber-ruby/compare/v5.3.0...v6.0.0) (2021-04-14)
|
89
248
|
|
90
249
|
### Added
|
91
250
|
|
@@ -115,7 +274,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
115
274
|
([#1523](https://github.com/cucumber/cucumber-ruby/pull/1523)
|
116
275
|
[aurelien-reeves](https://github.com/aurelien-reeves))
|
117
276
|
|
118
|
-
## [5.3.0](https://github.com/cucumber/cucumber-ruby/compare/v5.2.0...v5.3.0)
|
277
|
+
## [5.3.0](https://github.com/cucumber/cucumber-ruby/compare/v5.2.0...v5.3.0) (2021-01-28)
|
119
278
|
|
120
279
|
### Added
|
121
280
|
|
@@ -133,31 +292,31 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
133
292
|
[#1500](https://github.com/cucumber/cucumber-ruby/pull/1500)
|
134
293
|
[aurelien-reeves](https://github.com/aurelien-reeves))
|
135
294
|
|
136
|
-
## [5.2.0](https://github.com/cucumber/cucumber-ruby/compare/v5.1.3...v5.2.0)
|
295
|
+
## [5.2.0](https://github.com/cucumber/cucumber-ruby/compare/v5.1.3...v5.2.0) (2020-10-21)
|
137
296
|
|
138
297
|
### Changed
|
139
298
|
|
140
299
|
- `--publish` uses the response provided by the server as the banner [#1472](https://github.com/cucumber/cucumber-ruby/issues/1472)
|
141
300
|
|
142
|
-
## [5.1.3](https://github.com/cucumber/cucumber-ruby/compare/v5.1.2...v5.1.3)
|
301
|
+
## [5.1.3](https://github.com/cucumber/cucumber-ruby/compare/v5.1.2...v5.1.3) (2020-10-07)
|
143
302
|
|
144
303
|
### Fixed
|
145
304
|
|
146
305
|
- The `CUCUMBER_PUBLISH_TOKEN` now sets the correct HTTP header, following a fix in the curl option parser.
|
147
306
|
|
148
|
-
## [5.1.2](https://github.com/cucumber/cucumber-ruby/compare/v5.1.1...v5.1.2)
|
307
|
+
## [5.1.2](https://github.com/cucumber/cucumber-ruby/compare/v5.1.1...v5.1.2) (2020-09-18)
|
149
308
|
|
150
309
|
### Fixed
|
151
310
|
|
152
311
|
- Do not send headers after following redirection [#1475](https://github.com/cucumber/cucumber-ruby/pull/1475)
|
153
312
|
|
154
|
-
## [5.1.1](https://github.com/cucumber/cucumber-ruby/compare/v5.1.0...v5.1.1)
|
313
|
+
## [5.1.1](https://github.com/cucumber/cucumber-ruby/compare/v5.1.0...v5.1.1) (2020-09-04)
|
155
314
|
|
156
315
|
### Security fixes
|
157
316
|
|
158
317
|
- Update `cucumber-create-meta` to 2.0.2
|
159
318
|
|
160
|
-
## [5.1.0](https://github.com/cucumber/cucumber-ruby/compare/v5.0.0...5.1.0)
|
319
|
+
## [5.1.0](https://github.com/cucumber/cucumber-ruby/compare/v5.0.0...5.1.0) (2020-08-24)
|
161
320
|
|
162
321
|
### Added
|
163
322
|
|
@@ -176,7 +335,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
176
335
|
|
177
336
|
- Display banner on stderr when publishing reports [#1462](https://github.com/cucumber/cucumber-ruby/issues/1462)
|
178
337
|
|
179
|
-
## [5.0.0](https://github.com/cucumber/cucumber-ruby/compare/v4.1.0...5.0.0)
|
338
|
+
## [5.0.0](https://github.com/cucumber/cucumber-ruby/compare/v4.1.0...5.0.0) (2020-08-19)
|
180
339
|
|
181
340
|
### Added
|
182
341
|
|
@@ -207,7 +366,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
207
366
|
- Add filtering capabilities [#1444](https://github.com/cucumber/cucumber-ruby/issues/1444)
|
208
367
|
- Fix Interceptor that was raising exception when calling `puts` on the wrapped stream ([#1445](https://github.com/cucumber/cucumber-ruby/issues/1445))
|
209
368
|
|
210
|
-
## [4.1.0](https://github.com/cucumber/cucumber-ruby/compare/v4.0.1...v4.1.0)
|
369
|
+
## [4.1.0](https://github.com/cucumber/cucumber-ruby/compare/v4.0.1...v4.1.0) (2020-07-01)
|
211
370
|
|
212
371
|
### Changed
|
213
372
|
|
@@ -226,13 +385,13 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
226
385
|
|
227
386
|
- `AfterStep` hook do not cause issue when running `message` formatter. [#1433](https://github.com/cucumber/cucumber-ruby/issues/1433) - [#1434](https://github.com/cucumber/cucumber-ruby/pull/1434)
|
228
387
|
|
229
|
-
## [4.0.1](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0...v4.0.1)
|
388
|
+
## [4.0.1](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0...v4.0.1) (2020-06-23)
|
230
389
|
|
231
390
|
### Fixed
|
232
391
|
|
233
392
|
- force reference to `diff-lcs` to 1.3 as 1.4 introduced breaking changes.
|
234
393
|
|
235
|
-
## [4.0.0](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...v4.0.0)
|
394
|
+
## [4.0.0](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...v4.0.0) (2020-06-02)
|
236
395
|
|
237
396
|
### Changed
|
238
397
|
|
@@ -242,7 +401,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
242
401
|
|
243
402
|
- Display snippet when using undefined parameter type [#1411](https://github.com/cucumber/cucumber-ruby/issues/1411)
|
244
403
|
|
245
|
-
## [4.0.0.rc.6](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...4.0.0.rc.6)
|
404
|
+
## [4.0.0.rc.6](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...4.0.0.rc.6) (2020-04-24)
|
246
405
|
|
247
406
|
### Changed
|
248
407
|
|
@@ -270,7 +429,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
270
429
|
- use `PUT` method by default
|
271
430
|
- use a cURL like options (for example: `cucumber --out 'http://example.com -X POST -H Content-Type: json`)
|
272
431
|
|
273
|
-
## [4.0.0.rc.5](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.4...4.0.0.rc.5)
|
432
|
+
## [4.0.0.rc.5](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.4...4.0.0.rc.5) (2020-03-17)
|
274
433
|
|
275
434
|
### Added
|
276
435
|
|
@@ -282,7 +441,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
282
441
|
Other `http-` prefixed query parameters will be converted to request headers
|
283
442
|
(with the `http-` prefix stripped off).
|
284
443
|
|
285
|
-
## [4.0.0.rc.4](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.3...4.0.0.rc.4)
|
444
|
+
## [4.0.0.rc.4](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.3...4.0.0.rc.4) (2020-02-24)
|
286
445
|
|
287
446
|
### Added
|
288
447
|
|
@@ -296,13 +455,13 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
296
455
|
- `puts` in step definitions in favor of `log` ([cucumber#897](https://github.com/cucumber/cucumber/issues/897))
|
297
456
|
- `embed` in step definitions in favor of `attach` ([cucumber#897](https://github.com/cucumber/cucumber/issues/897))
|
298
457
|
|
299
|
-
## [4.0.0.rc.3](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.2...v4.0.0.rc.3)
|
458
|
+
## [4.0.0.rc.3](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.2...v4.0.0.rc.3) (2019-10-31)
|
300
459
|
|
301
460
|
### Changed
|
302
461
|
|
303
462
|
- Update to cucumber-wire 1.1.
|
304
463
|
|
305
|
-
## [4.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.1...v4.0.0.rc.2)
|
464
|
+
## [4.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.1...v4.0.0.rc.2) (2019-10-31)
|
306
465
|
|
307
466
|
### Added
|
308
467
|
|
@@ -520,7 +679,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
520
679
|
- As per [#251](https://github.com/cucumber/cucumber/issues/251): renamed History.md to CHANGELOG.md, added contributing message at beginning, and misc formatting. ([#1185](https://github.com/cucumber/cucumber-ruby/issues/1185) [jaysonesmith](https://github.com/jaysonesmith))
|
521
680
|
- Use past tense in event names (`xStarting` -> `xStarted`) ([#1166](https://github.com/cucumber/cucumber-ruby/issues/1166) @brasmusson).
|
522
681
|
|
523
|
-
## [3.0.0.pre.2](https://github.com/cucumber/cucumber-ruby/compare/v2.4.0...v3.0.0.pre.2)
|
682
|
+
## [3.0.0.pre.2](https://github.com/cucumber/cucumber-ruby/compare/v2.4.0...v3.0.0.pre.2) (2017-07-26)
|
524
683
|
|
525
684
|
### Breaking changes
|
526
685
|
|
@@ -596,7 +755,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
596
755
|
- Travis: use jruby-9.1.10.0 ([#1114](https://github.com/cucumber/cucumber-ruby/pull/1114) @olleolleolle)
|
597
756
|
- Change the Progress, Usage and Stepdef formatter use events ([#977](https://github.com/cucumber/cucumber-ruby/pull/977), [#1129](https://github.com/cucumber/cucumber-ruby/pull/1129) @brasmusson)
|
598
757
|
|
599
|
-
## [2.4.0](https://github.com/cucumber/cucumber-ruby/compare/v2.3.3...v2.4.0)
|
758
|
+
## [2.4.0](https://github.com/cucumber/cucumber-ruby/compare/v2.3.3...v2.4.0) (2016-06-09)
|
600
759
|
|
601
760
|
### New Features
|
602
761
|
|
@@ -612,7 +771,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
|
|
612
771
|
- Allow Rake task to accept multiple profiles. ([#907](https://github.com/cucumber/cucumber-ruby/pull/907) @jasonkarns)
|
613
772
|
- Let the JUnit formatter handle running test cases for different features interweaved ([#952](https://github.com/cucumber/cucumber-ruby/issues/952) @brasmusson)
|
614
773
|
|
615
|
-
## [2.3.3](https://github.com/cucumber/cucumber-ruby/compare/v2.3.2...v2.3.3)
|
774
|
+
## [2.3.3](https://github.com/cucumber/cucumber-ruby/compare/v2.3.2...v2.3.3) (2016-03-18)
|
616
775
|
|
617
776
|
Added a message pointing users to [The Great Cucumber and BDD Census of 2016](https://cucumber.typeform.com/to/kjrSc2?audience=cucumber-ruby) to the installer message. Please take a few moments to help us all learn more about how you're using Cucumber and BDD.
|
618
777
|
|
@@ -621,15 +780,15 @@ Added a message pointing users to [The Great Cucumber and BDD Census of 2016](ht
|
|
621
780
|
- Let the JSON formatter include data tables in the JSON file ([#948](https://github.com/cucumber/cucumber-ruby/issues/948) @brasmusson)
|
622
781
|
- Stringifying location in the JSON formatter for more consistent json parsing ([949](https://github.com/cucumber/cucumber-ruby/pull/949), [945](https://github.com/cucumber/cucumber-ruby/issues/945) @larryprice)
|
623
782
|
|
624
|
-
## [2.3.2](https://github.com/cucumber/cucumber-ruby/compare/v2.3.1...v2.3.2)
|
783
|
+
## [2.3.2](https://github.com/cucumber/cucumber-ruby/compare/v2.3.1...v2.3.2) (2016-01-21)
|
625
784
|
|
626
785
|
Brought the event bus code back into Cucumber to avoid https://github.com/fedux-org/event-bus/issues/6
|
627
786
|
|
628
|
-
## [2.3.1](https://github.com/cucumber/cucumber-ruby/compare/v2.3.0...v2.3.1)
|
787
|
+
## [2.3.1](https://github.com/cucumber/cucumber-ruby/compare/v2.3.0...v2.3.1) (2016-01-20)
|
629
788
|
|
630
789
|
Better deprecation warnings to help fix https://github.com/cucumber/cucumber-ruby/issues/942
|
631
790
|
|
632
|
-
## [2.3.0](https://github.com/cucumber/cucumber-ruby/compare/v2.2.0...v2.3.0)
|
791
|
+
## [2.3.0](https://github.com/cucumber/cucumber-ruby/compare/v2.2.0...v2.3.0) (2016-01-13)
|
633
792
|
|
634
793
|
### New Features
|
635
794
|
|
@@ -639,7 +798,7 @@ Better deprecation warnings to help fix https://github.com/cucumber/cucumber-rub
|
|
639
798
|
|
640
799
|
### Refactoring
|
641
800
|
|
642
|
-
## [2.2.0](https://github.com/cucumber/cucumber-ruby/compare/v2.1.0...v2.2.0)
|
801
|
+
## [2.2.0](https://github.com/cucumber/cucumber-ruby/compare/v2.1.0...v2.2.0) (2016-01-08)
|
643
802
|
|
644
803
|
Although this release is only bugfixes and refactorings, the extraction of the wire protocol is quite a significant change and
|
645
804
|
could cause breaking changes for users of undocumented APIs. Hence the minor version bump.
|
@@ -656,7 +815,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
|
|
656
815
|
- Remove wire protocol to plugin ([#878](https://github.com/cucumber/cucumber-ruby/pull/878) @mattwynne @tooky)
|
657
816
|
- Remove event bus to separate gem ([#933](https://github.com/cucumber/cucumber-ruby/pull/933) @dg-ratiodata)
|
658
817
|
|
659
|
-
## [2.1.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.2...v2.1.0)
|
818
|
+
## [2.1.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.2...v2.1.0) (2015-09-11)
|
660
819
|
|
661
820
|
### New Features
|
662
821
|
|
@@ -676,14 +835,14 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
|
|
676
835
|
- Move behaviour from `Cucumber::Cli::Configuration` to `Cucumber::Configuration` (@tooky, @mattwynne)
|
677
836
|
- Integrate Gherkin3 parser ([884](https://github.com/cucumber/cucumber-ruby/pull/884) (@brasmusson)
|
678
837
|
|
679
|
-
## [2.0.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.1...v2.0.2)
|
838
|
+
## [2.0.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.1...v2.0.2) (2015-07-15)
|
680
839
|
|
681
840
|
### Bugfixes
|
682
841
|
|
683
842
|
- Revert interface change in Cucumber::Formatter::Console (which can break custom formatters in v2.0.1) ([893](https://github.com/cucumber/cucumber-ruby/issues/893) @brasmusson).
|
684
843
|
- Calculate the locations of hooks properly (so it also work between drives on Windows) ([885](https://github.com/cucumber/cucumber-ruby/issues/885) @brasmusson).
|
685
844
|
|
686
|
-
## [2.0.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0...v2.0.1)
|
845
|
+
## [2.0.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0...v2.0.1) (2015-07-08)
|
687
846
|
|
688
847
|
### New Features
|
689
848
|
|
@@ -710,7 +869,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
|
|
710
869
|
- Rewrite the JUnit Formatter to the new formatter API ([855](https://github.com/cucumber/cucumber-ruby/pull/855) @brasmusson)
|
711
870
|
- Rewrite the Progress, Usage, Stepdefs formatters to the new formatter API ([859](https://github.com/cucumber/cucumber-ruby/pull/859) @brasmusson)
|
712
871
|
|
713
|
-
## [2.0.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.5...v2.0.0)
|
872
|
+
## [2.0.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.5...v2.0.0) (2015-03-31)
|
714
873
|
|
715
874
|
### New Features
|
716
875
|
|
@@ -722,7 +881,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
|
|
722
881
|
- Ensure After Hooks execute in reverse order (@tooky)
|
723
882
|
- Make console output with embedded cr/lf look correct. ([820](https://github.com/cucumber/cucumber-ruby/pull/820) @SteveDonie)
|
724
883
|
|
725
|
-
## [2.0.0.rc5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.4...v2.0.0.rc.5)
|
884
|
+
## [2.0.0.rc5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.4...v2.0.0.rc.5) (2015-03-19)
|
726
885
|
|
727
886
|
### New Features
|
728
887
|
|
@@ -739,7 +898,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
|
|
739
898
|
- JUnit expand option ([808](https://github.com/cucumber/cucumber-ruby/pull/808) @richarda @brasmusson)
|
740
899
|
- Around hooks not executing in correct world context ([807](https://github.com/cucumber/cucumber-ruby/pull/807) @tooky)
|
741
900
|
|
742
|
-
## [2.0.0.rc.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.3...2.0.0.rc.4)
|
901
|
+
## [2.0.0.rc.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.3...2.0.0.rc.4) (2015-02-15)
|
743
902
|
|
744
903
|
### Features
|
745
904
|
|
@@ -753,19 +912,19 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
|
|
753
912
|
- Sort scenarios by location ([789](https://github.com/cucumber/cucumber-ruby/issues/789) @mattwynne)
|
754
913
|
- Remove keyword from name property of test case object yielded to hooks ([768](https://github.com/cucumber/cucumber-ruby/issues/768) @richarda, @akostadinov)
|
755
914
|
|
756
|
-
## [2.0.0.rc.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.2...v2.0.0.rc.3)
|
915
|
+
## [2.0.0.rc.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.2...v2.0.0.rc.3) (2015-01-23)
|
757
916
|
|
758
917
|
### Bugfixes
|
759
918
|
|
760
919
|
- MultilineArgument::DataTable#diff will correctly compare to an Array (@tooky)
|
761
920
|
|
762
|
-
## [2.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.1...v2.0.0.rc.2)
|
921
|
+
## [2.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.1...v2.0.0.rc.2) (2015-01-23)
|
763
922
|
|
764
923
|
### Bugfixes
|
765
924
|
|
766
925
|
- World#table no longer creates invalid table objects when using an Array (@tooky, @mattwynne)
|
767
926
|
|
768
|
-
## [2.0.0.rc.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.5...v2.0.0.rc.1)
|
927
|
+
## [2.0.0.rc.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.5...v2.0.0.rc.1) (2015-01-23)
|
769
928
|
|
770
929
|
### Removed Features
|
771
930
|
|
@@ -784,11 +943,11 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
|
|
784
943
|
- Using file:line CLI to select scenarios was running same scenario multiple times ([786](https://github.com/cucumber/cucumber-ruby/pull/786) @jdks)
|
785
944
|
- Allow spaces in filenames for rerun formatter ([793](https://github.com/cucumber/cucumber-ruby/pull/793) @callahat)
|
786
945
|
|
787
|
-
## [2.0.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.4...v2.0.0.beta.5)
|
946
|
+
## [2.0.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.4...v2.0.0.beta.5) (2014-12-18)
|
788
947
|
|
789
948
|
- Depend on the correct version of core (@tooky)
|
790
949
|
|
791
|
-
## [2.0.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.3...v2.0.0.beta.4)
|
950
|
+
## [2.0.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.3...v2.0.0.beta.4) (2014-12-18)
|
792
951
|
|
793
952
|
### New Features
|
794
953
|
|
@@ -804,7 +963,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
|
|
804
963
|
|
805
964
|
- Re-write rerun formatter against new formatter API
|
806
965
|
|
807
|
-
## [2.0.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.2...v2.0.0.beta.3)
|
966
|
+
## [2.0.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.2...v2.0.0.beta.3) (2014-09-14)
|
808
967
|
|
809
968
|
### Removed Features
|
810
969
|
|
@@ -824,14 +983,14 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
|
|
824
983
|
- Add back support for the DataTable API ([729](https://github.com/cucumber/cucumber-ruby/pull/729) @mattwynne and @tooky)
|
825
984
|
- Fix Windows support loading files properly ([739](https://github.com/cucumber/cucumber-ruby/issues/739) @os97673)
|
826
985
|
|
827
|
-
## [2.0.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.1...v2.0.0.beta.2)
|
986
|
+
## [2.0.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.1...v2.0.0.beta.2) (2014-08-29)
|
828
987
|
|
829
988
|
### Bugfixes
|
830
989
|
|
831
990
|
- Better reporting of exceptions in Before / After hooks ([723](https://github.com/cucumber/cucumber-ruby/pull/723) @mattwynne)
|
832
991
|
- Add `#source_tag_names` method to `TestCase` object passed to hooks (@mattwynne)
|
833
992
|
|
834
|
-
## [2.0.0.beta.1 ](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v2.0.0.beta.1)
|
993
|
+
## [2.0.0.beta.1 ](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v2.0.0.beta.1) (2014-08-22)
|
835
994
|
|
836
995
|
Version 2.0 contains a major internal redesign, extracting the core logic of
|
837
996
|
parsing and executing tests into a [separate gem](https://github.com/cucumber/cucumber-ruby-ruby-core).
|
@@ -866,53 +1025,53 @@ all.
|
|
866
1025
|
|
867
1026
|
- Greek examples added ([497](https://github.com/cucumber/cucumber-ruby/issues/497) @rousisk)
|
868
1027
|
|
869
|
-
## [1.3.16](https://github.com/cucumber/cucumber-ruby/compare/v1.3.15...v1.3.16)
|
1028
|
+
## [1.3.16](https://github.com/cucumber/cucumber-ruby/compare/v1.3.15...v1.3.16) (2014-07-28)
|
870
1029
|
|
871
1030
|
- Pass output from the step definition on to the JSON formatter ([701](https://github.com/cucumber/cucumber-ruby/pull/701) @brasmusson)
|
872
1031
|
- Add RSpec 3 test double support ([689](https://github.com/cucumber/cucumber-ruby/pull/689) @cyphactor)
|
873
1032
|
- Fix bug with rerun formatter and `--expand` option ([710](https://github.com/cucumber/cucumber-ruby/pull/710) @brasmusson)
|
874
1033
|
|
875
|
-
## [1.3.15](https://github.com/cucumber/cucumber-ruby/compare/v1.3.14...v1.3.15)
|
1034
|
+
## [1.3.15](https://github.com/cucumber/cucumber-ruby/compare/v1.3.14...v1.3.15) (2014-05-09)
|
876
1035
|
|
877
1036
|
- Fixed intermittent ConcurrencyError seen in JRuby
|
878
1037
|
([671](https://github.com/cucumber/cucumber-ruby/issues/670) @cbusbey)
|
879
1038
|
|
880
|
-
## [1.3.14](https://github.com/cucumber/cucumber-ruby/compare/v1.3.13...v1.3.14)
|
1039
|
+
## [1.3.14](https://github.com/cucumber/cucumber-ruby/compare/v1.3.13...v1.3.14) (2014-03-28)
|
881
1040
|
|
882
1041
|
- Rerun formatter includes all scenarios when the background fails
|
883
1042
|
([660](https://github.com/cucumber/cucumber-ruby/issues/660),
|
884
1043
|
[661](https://github.com/cucumber/cucumber-ruby/pull/661) @brasmusson)
|
885
1044
|
|
886
|
-
## [1.3.13](https://github.com/cucumber/cucumber-ruby/compare/v1.3.12...v1.3.13)
|
1045
|
+
## [1.3.13](https://github.com/cucumber/cucumber-ruby/compare/v1.3.12...v1.3.13) (2014-03-25)
|
887
1046
|
|
888
1047
|
- Rerun formatter includes all scenarios when the background fails
|
889
1048
|
([654](https://github.com/cucumber/cucumber-ruby/pull/654) @brasmusson)
|
890
1049
|
|
891
|
-
## [1.3.12](https://github.com/cucumber/cucumber-ruby/compare/v1.3.11...v1.3.12)
|
1050
|
+
## [1.3.12](https://github.com/cucumber/cucumber-ruby/compare/v1.3.11...v1.3.12) (2014-03-16)
|
892
1051
|
|
893
1052
|
- Use MultiTest to handle assertions library selection (@tooky)
|
894
1053
|
- Adds full support for rails 4.1 / Minitest
|
895
1054
|
|
896
|
-
## [1.3.11](https://github.com/cucumber/cucumber-ruby/compare/v1.3.10...v1.3.11)
|
1055
|
+
## [1.3.11](https://github.com/cucumber/cucumber-ruby/compare/v1.3.10...v1.3.11) (2014-03-02)
|
897
1056
|
|
898
1057
|
- Add Ruby 2.1 Support ([#644](https://github.com/cucumber/cucumber-ruby/pull/644) @tooky, @chrismdp)
|
899
1058
|
|
900
|
-
## [1.3.10](https://github.com/cucumber/cucumber-ruby/compare/v1.3.9...v1.3.10)
|
1059
|
+
## [1.3.10](https://github.com/cucumber/cucumber-ruby/compare/v1.3.9...v1.3.10) (2013-11-16)
|
901
1060
|
|
902
1061
|
- Fixed "nil:NilClass (NoMethodError)" problem for auto-formatting ([599](https://github.com/cucumber/cucumber-ruby/pull/599) @jmcaffee)
|
903
1062
|
|
904
|
-
## [1.3.9](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v1.3.9)
|
1063
|
+
## [1.3.9](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v1.3.9) (2013-11-06)
|
905
1064
|
|
906
1065
|
- Disable minitest autorun after loading support files (@tooky)
|
907
1066
|
- Add `Ast::Table#map_column` for non-mutating column mapping (@tooky)
|
908
1067
|
- Remove deprecation warnings on `Ast::Table` (@tooky)
|
909
1068
|
- Fixed ArgumentError for NoStepMatch#format_args ([587](https://github.com/cucumber/cucumber-ruby/pull/587) @jshraibman-mdsol)
|
910
1069
|
|
911
|
-
## [1.3.8](https://github.com/cucumber/cucumber-ruby/compare/v1.3.7...v1.3.8)
|
1070
|
+
## [1.3.8](https://github.com/cucumber/cucumber-ruby/compare/v1.3.7...v1.3.8) (2013-09-10)
|
912
1071
|
|
913
1072
|
- Make the MultiJson dependency less restrictive (@tooky)
|
914
1073
|
|
915
|
-
## [1.3.7](https://github.com/cucumber/cucumber-ruby/compare/v1.3.6...v1.3.7)
|
1074
|
+
## [1.3.7](https://github.com/cucumber/cucumber-ruby/compare/v1.3.6...v1.3.7) (2013-09-06)
|
916
1075
|
|
917
1076
|
- Fixed incorrect html formatter behaviour when background step fails
|
918
1077
|
([520](https://github.com/cucumber/cucumber-ruby/issues/520),
|
@@ -931,20 +1090,20 @@ all.
|
|
931
1090
|
- AST::Table#map_headers doesn't use #map_headers! anymore
|
932
1091
|
([505](https://github.com/cucumber/cucumber-ruby/issues/528) @adbatista)
|
933
1092
|
|
934
|
-
## [1.3.6](https://github.com/cucumber/cucumber-ruby/compare/v1.3.5...v1.3.6)
|
1093
|
+
## [1.3.6](https://github.com/cucumber/cucumber-ruby/compare/v1.3.5...v1.3.6) (2013-08-09)
|
935
1094
|
|
936
1095
|
- Html formatter fixed to not mark passes scenarios with tables as pending
|
937
1096
|
([493](https://github.com/cucumber/cucumber-ruby/issues/493) Oleg Sukhodolsky)
|
938
1097
|
|
939
|
-
## [1.3.5](https://github.com/cucumber/cucumber-ruby/compare/v1.3.4...v1.3.5)
|
1098
|
+
## [1.3.5](https://github.com/cucumber/cucumber-ruby/compare/v1.3.4...v1.3.5) (2013-07-19)
|
940
1099
|
|
941
1100
|
- Fix Rails 4 Minitest autorun problems. ([501](https://github.com/cucumber/cucumber-ruby/issues/501) @mattwynne)
|
942
1101
|
|
943
|
-
## [1.3.4](https://github.com/cucumber/cucumber-ruby/compare/v1.3.3...v1.3.4)
|
1102
|
+
## [1.3.4](https://github.com/cucumber/cucumber-ruby/compare/v1.3.3...v1.3.4) (2013-07-12)
|
944
1103
|
|
945
1104
|
- JUnit formatter fixed to report skipped scenarios correctly ([496](https://github.com/cucumber/cucumber-ruby/issues/496) @ambirag)
|
946
1105
|
|
947
|
-
## [1.3.3](https://github.com/cucumber/cucumber-ruby/compare/v1.3.2...v1.3.3)
|
1106
|
+
## [1.3.3](https://github.com/cucumber/cucumber-ruby/compare/v1.3.2...v1.3.3) (2013-07-07)
|
948
1107
|
|
949
1108
|
- Fix compatability with MiniTest 5.0 ([#456](https://github.com/cucumber/cucumber-ruby/issues/456) Matt Wynne)
|
950
1109
|
- Warn that Spork support is broken (Steve Tooke)
|
@@ -952,20 +1111,20 @@ all.
|
|
952
1111
|
([#492](https://github.com/cucumber/cucumber-ruby/issues/492) Matt Wynne)
|
953
1112
|
- Use new Rubygems API to look for bundler ([#448](https://github.com/cucumber/cucumber-ruby/issues/448) Matt Wynne)
|
954
1113
|
|
955
|
-
## [1.3.2](https://github.com/cucumber/cucumber-ruby/compare/v1.3.1...v1.3.2)
|
1114
|
+
## [1.3.2](https://github.com/cucumber/cucumber-ruby/compare/v1.3.1...v1.3.2) (2013-05-22)
|
956
1115
|
|
957
1116
|
### Bugfixes
|
958
1117
|
|
959
1118
|
- Fixed ugly NoMethodError when a Scenario Outline has no Examples
|
960
1119
|
([#438](https://github.com/cucumber/cucumber-ruby/issues/438) Steve Tooke)
|
961
1120
|
|
962
|
-
## [1.3.1](https://github.com/cucumber/cucumber-ruby/compare/v1.3.0...v1.3.1)
|
1121
|
+
## [1.3.1](https://github.com/cucumber/cucumber-ruby/compare/v1.3.0...v1.3.1) (2013-04-21)
|
963
1122
|
|
964
1123
|
### Bugfixes
|
965
1124
|
|
966
1125
|
- Fixed typo which breaks unicode.rb on Windows (Oleg Sukhodolsky)
|
967
1126
|
|
968
|
-
## [1.3.0](https://github.com/cucumber/cucumber-ruby/compare/v1.2.5...v1.3.0)
|
1127
|
+
## [1.3.0](https://github.com/cucumber/cucumber-ruby/compare/v1.2.5...v1.3.0) (2013-04-21)
|
969
1128
|
|
970
1129
|
### New Features
|
971
1130
|
|
@@ -1002,23 +1161,23 @@ all.
|
|
1002
1161
|
- Better delegation to IO in Cucumber::Formatter::Interceptor::Pipe
|
1003
1162
|
([#312](https://github.com/cucumber/cucumber-ruby/issues/312) Oleg Sukhodolsky)
|
1004
1163
|
|
1005
|
-
## [1.2.5](https://github.com/cucumber/cucumber-ruby/compare/v1.2.3...v1.2.5)
|
1164
|
+
## [1.2.5](https://github.com/cucumber/cucumber-ruby/compare/v1.2.3...v1.2.5) (2013-04-08)
|
1006
1165
|
|
1007
1166
|
- Upgrade Gherkin version to remove warnings when running on JRuby. ([#393](https://github.com/cucumber/cucumber-ruby/issues/393) Oleg Sukhodolsky)
|
1008
1167
|
- Do not use TagExpression.eval() which is deprecated in Gherkin 2.11.7 ([#420](https://github.com/cucumber/cucumber-ruby/issues/420) Oleg Sukhodolsky)
|
1009
1168
|
|
1010
|
-
## 1.2.4
|
1169
|
+
## 1.2.4 (2013-04-07)
|
1011
1170
|
|
1012
1171
|
Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
|
1013
1172
|
|
1014
|
-
## [1.2.3](https://github.com/cucumber/cucumber-ruby/compare/v1.2.2...v1.2.3)
|
1173
|
+
## [1.2.3](https://github.com/cucumber/cucumber-ruby/compare/v1.2.2...v1.2.3) (2013-03-07)
|
1015
1174
|
|
1016
1175
|
### Bugfixes
|
1017
1176
|
|
1018
1177
|
- Fix problem with rake task for jruby and ruby installed from packages on Ubuntu ([#386](https://github.com/cucumber/cucumber-ruby/issues/386), [#388](https://github.com/cucumber/cucumber-ruby/issues/388) @y-higuchi)
|
1019
1178
|
- Fix embedding images in json ([#315](https://github.com/cucumber/cucumber-ruby/issues/315) Oleg Sukhodolsky)
|
1020
1179
|
|
1021
|
-
## [1.2.2](https://github.com/cucumber/cucumber-ruby/compare/v1.2.1...v1.2.2)
|
1180
|
+
## [1.2.2](https://github.com/cucumber/cucumber-ruby/compare/v1.2.1...v1.2.2) (2013-03-02)
|
1022
1181
|
|
1023
1182
|
### New Features
|
1024
1183
|
|
@@ -1039,13 +1198,13 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
|
|
1039
1198
|
- Fix exception in Html formatter with --expand mode and undefined steps ([#336](https://github.com/cucumber/cucumber-ruby/issues/336) Roberto Decurnex)
|
1040
1199
|
- Fix Table.diff! problem with :surplus_row => false and interleaved surplus rows ([#220](https://github.com/cucumber/cucumber-ruby/issues/220))
|
1041
1200
|
|
1042
|
-
## [1.2.1](https://github.com/cucumber/cucumber-ruby/compare/v1.2.0...v1.2.1)
|
1201
|
+
## [1.2.1](https://github.com/cucumber/cucumber-ruby/compare/v1.2.0...v1.2.1) (2012-06-09)
|
1043
1202
|
|
1044
1203
|
### New Features
|
1045
1204
|
|
1046
1205
|
- Updated to gherkin 2.11.0. (Aslak Hellesøy)
|
1047
1206
|
|
1048
|
-
## [1.2.0](https://github.com/cucumber/cucumber-ruby/compare/v1.1.9...v1.2.0)
|
1207
|
+
## [1.2.0](https://github.com/cucumber/cucumber-ruby/compare/v1.1.9...v1.2.0) (2012-05-07)
|
1049
1208
|
|
1050
1209
|
### Bugfixes
|
1051
1210
|
|
@@ -1064,13 +1223,13 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
|
|
1064
1223
|
- JUnit formatter, classname contains only the feature's name ([#193](https://github.com/cucumber/cucumber-ruby/issues/193) @litvinok)
|
1065
1224
|
- Include the output $stderr and $stdout in JUnit formatted XML ([#259](https://github.com/cucumber/cucumber-ruby/issues/259) R. Tyler Croy)
|
1066
1225
|
|
1067
|
-
## [1.1.9](https://github.com/cucumber/cucumber-ruby/compare/v1.1.8...v1.1.9)
|
1226
|
+
## [1.1.9](https://github.com/cucumber/cucumber-ruby/compare/v1.1.8...v1.1.9) (2012-02-22)
|
1068
1227
|
|
1069
1228
|
### Bugfixes
|
1070
1229
|
|
1071
1230
|
- Removed deprecation warning for `source_tag_names`. It's not deprecated anymore. (Aslak Hellesøy)
|
1072
1231
|
|
1073
|
-
## [1.1.8](https://github.com/cucumber/cucumber-ruby/compare/v1.1.7...v1.1.8)
|
1232
|
+
## [1.1.8](https://github.com/cucumber/cucumber-ruby/compare/v1.1.7...v1.1.8) (2012-02-19)
|
1074
1233
|
|
1075
1234
|
### Bugfixes
|
1076
1235
|
|
@@ -1080,13 +1239,13 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
|
|
1080
1239
|
|
1081
1240
|
- Don't pollute RbWorld with the AnsiEscapes methods ([#219](https://github.com/cucumber/cucumber-ruby/issues/219), [#221](https://github.com/cucumber/cucumber-ruby/pull/221) Ben Woosley)
|
1082
1241
|
|
1083
|
-
## [1.1.7](https://github.com/cucumber/cucumber-ruby/compare/v1.1.6...v1.1.7)
|
1242
|
+
## [1.1.7](https://github.com/cucumber/cucumber-ruby/compare/v1.1.6...v1.1.7) (2012-02-19)
|
1084
1243
|
|
1085
1244
|
### Bugfixes
|
1086
1245
|
|
1087
1246
|
- Finish off backwards compatability fix for Capybara ([#229](https://github.com/cucumber/cucumber-ruby/pull/229) Cezary Baginski)
|
1088
1247
|
|
1089
|
-
## [1.1.6](https://github.com/cucumber/cucumber-ruby/compare/v1.1.5...v1.1.6)
|
1248
|
+
## [1.1.6](https://github.com/cucumber/cucumber-ruby/compare/v1.1.5...v1.1.6) (2012-02-18)
|
1090
1249
|
|
1091
1250
|
### New features
|
1092
1251
|
|
@@ -1099,7 +1258,7 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
|
|
1099
1258
|
- After some infantile bickering about a trivial bug that any hipster startup ruby programmer could have circumvented by using a fork with a fix,
|
1100
1259
|
I finally sucked up to a horde of people and made HTML reports work again (I'm gonna rename them TPS reports). ([#203](https://github.com/cucumber/cucumber-ruby/pull/203) Jon Merrifield)
|
1101
1260
|
|
1102
|
-
## [1.1.5](https://github.com/cucumber/cucumber-ruby/compare/v1.1.4...v1.1.5)
|
1261
|
+
## [1.1.5](https://github.com/cucumber/cucumber-ruby/compare/v1.1.4...v1.1.5) (2012-02-17)
|
1103
1262
|
|
1104
1263
|
### New Features
|
1105
1264
|
|
@@ -1109,13 +1268,13 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
|
|
1109
1268
|
|
1110
1269
|
- Background fails, but build succeeds ([#205](https://github.com/cucumber/cucumber-ruby/issues/205) tcwitte)
|
1111
1270
|
|
1112
|
-
## [1.1.4](https://github.com/cucumber/cucumber-ruby/compare/v1.1.3...v1.1.4)
|
1271
|
+
## [1.1.4](https://github.com/cucumber/cucumber-ruby/compare/v1.1.3...v1.1.4) (2011-12-10)
|
1113
1272
|
|
1114
1273
|
### New Features
|
1115
1274
|
|
1116
1275
|
- Upgrade to Gherkin 2.7.1 (Aslak Hellesøy)
|
1117
1276
|
|
1118
|
-
## [1.1.3](https://github.com/cucumber/cucumber-ruby/compare/v1.1.2...v1.1.3)
|
1277
|
+
## [1.1.3](https://github.com/cucumber/cucumber-ruby/compare/v1.1.2...v1.1.3) (2011-11-22)
|
1119
1278
|
|
1120
1279
|
### New Features
|
1121
1280
|
|
@@ -1129,7 +1288,7 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
|
|
1129
1288
|
- Retry when feature_element returns failed ([#172](https://github.com/cucumber/cucumber-ruby/pull/172) Charles Finkel)
|
1130
1289
|
- Rerun formatter output does not include failing scenario outline examples ([#57](https://github.com/cucumber/cucumber-ruby/issues/57) Jan Brauer)
|
1131
1290
|
|
1132
|
-
## [1.1.2](https://github.com/cucumber/cucumber-ruby/compare/v1.1.1...v1.1.2)
|
1291
|
+
## [1.1.2](https://github.com/cucumber/cucumber-ruby/compare/v1.1.1...v1.1.2) (2011-11-09)
|
1133
1292
|
|
1134
1293
|
### Changed features
|
1135
1294
|
|
@@ -1150,25 +1309,25 @@ New format:
|
|
1150
1309
|
|
1151
1310
|
Also see [Gherkin 2.6.0 History](https://github.com/cucumber/cucumber/blob/master/gherkin/History.md) for info about new `id` and `uri` elements in the JSON.
|
1152
1311
|
|
1153
|
-
## [1.1.0](https://github.com/cucumber/cucumber-ruby/compare/v1.0.6...v1.1.0)
|
1312
|
+
## [1.1.0](https://github.com/cucumber/cucumber-ruby/compare/v1.0.6...v1.1.0) (2011-09-22)
|
1154
1313
|
|
1155
1314
|
### Changed features
|
1156
1315
|
|
1157
1316
|
- The JSON formatter output has changed. See [Gherkin 2.5.0 History](https://github.com/cucumber/gherkin/blob/master/CHANGELOG.md) (Aslak Hellesøy)
|
1158
1317
|
|
1159
|
-
## [1.0.6](https://github.com/cucumber/cucumber-ruby/compare/v1.0.5...v1.0.6)
|
1318
|
+
## [1.0.6](https://github.com/cucumber/cucumber-ruby/compare/v1.0.5...v1.0.6) (2011-09-13)
|
1160
1319
|
|
1161
1320
|
### Bugfixes
|
1162
1321
|
|
1163
1322
|
- Work around rubygems/yaml utter retardedness ([#136](https://github.com/cucumber/cucumber-ruby/issues/136) Aslak Hellesøy)
|
1164
1323
|
|
1165
|
-
## [1.0.5](https://github.com/cucumber/cucumber-ruby/compare/v1.0.4...v1.0.5)
|
1324
|
+
## [1.0.5](https://github.com/cucumber/cucumber-ruby/compare/v1.0.4...v1.0.5) (2011-09-13)
|
1166
1325
|
|
1167
1326
|
### Bugfixes
|
1168
1327
|
|
1169
1328
|
- Gemspec corrupted in 1.0.4 (I had to upgrade my rubygems to 1.8.10 to fix it). ([#136](https://github.com/cucumber/cucumber-ruby/issues/136) Aslak Hellesøy)
|
1170
1329
|
|
1171
|
-
## [1.0.4](https://github.com/cucumber/cucumber-ruby/compare/v1.0.3...v1.0.4)
|
1330
|
+
## [1.0.4](https://github.com/cucumber/cucumber-ruby/compare/v1.0.3...v1.0.4) (2011-09-11)
|
1172
1331
|
|
1173
1332
|
### Bugfixes
|
1174
1333
|
|
@@ -1178,7 +1337,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/cucumber/blob/maste
|
|
1178
1337
|
- Patched unmatched message in HTML formatter. (Nikita)
|
1179
1338
|
- Overriding a method that causes a NoMethodError when a Before hook is called on a feature run that has no scenarios. (ccthiel)
|
1180
1339
|
|
1181
|
-
## [1.0.3](https://github.com/cucumber/cucumber-ruby/compare/v1.0.2...v1.0.3)
|
1340
|
+
## [1.0.3](https://github.com/cucumber/cucumber-ruby/compare/v1.0.2...v1.0.3) (2011-09-07)
|
1182
1341
|
|
1183
1342
|
### Bugfixes
|
1184
1343
|
|
@@ -1188,7 +1347,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/cucumber/blob/maste
|
|
1188
1347
|
|
1189
1348
|
- DocStrings now have a content_type ([#132](https://github.com/cucumber/cucumber-ruby/issues/132) Matt Wynne)
|
1190
1349
|
|
1191
|
-
## [1.0.2](https://github.com/cucumber/cucumber-ruby/compare/v1.0.1...v1.0.2)
|
1350
|
+
## [1.0.2](https://github.com/cucumber/cucumber-ruby/compare/v1.0.1...v1.0.2) (2011-07-17)
|
1192
1351
|
|
1193
1352
|
### Bugfixes
|
1194
1353
|
|
@@ -1202,7 +1361,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/cucumber/blob/maste
|
|
1202
1361
|
|
1203
1362
|
- --no-source also excludes location from the summary. (Aslak Hellesøy)
|
1204
1363
|
|
1205
|
-
## [1.0.1](https://github.com/cucumber/cucumber-ruby/compare/v1.0.0...v1.0.1)
|
1364
|
+
## [1.0.1](https://github.com/cucumber/cucumber-ruby/compare/v1.0.0...v1.0.1) (2011-07-10)
|
1206
1365
|
|
1207
1366
|
### Bugfixes
|
1208
1367
|
|
@@ -1216,7 +1375,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/cucumber/blob/maste
|
|
1216
1375
|
|
1217
1376
|
- If the CUCUMBER_TRUNCATE_OUTPUT environment variable is set, lines will be truncated. Used by the Cucumber book. (Aslak Hellesøy)
|
1218
1377
|
|
1219
|
-
## [1.0.0](https://github.com/cucumber/cucumber-ruby/compare/v0.10.6...v1.0.0)
|
1378
|
+
## [1.0.0](https://github.com/cucumber/cucumber-ruby/compare/v0.10.6...v1.0.0) (2011-06-20)
|
1220
1379
|
|
1221
1380
|
Yipeeeeeeeee!
|
1222
1381
|
|
@@ -1226,7 +1385,7 @@ Yipeeeeeeeee!
|
|
1226
1385
|
- Rake task exits with an error if rcov is true and we're on Ruby 1.9.x (Aslak Hellesøy)
|
1227
1386
|
- Started implementation of cucumber-features (Mike Sassak, Julien Biezemans, Aslak Hellesøy)
|
1228
1387
|
|
1229
|
-
## [0.10.6](https://github.com/cucumber/cucumber-ruby/compare/v0.10.5...v0.10.6)
|
1388
|
+
## [0.10.6](https://github.com/cucumber/cucumber-ruby/compare/v0.10.5...v0.10.6) (2011-06-07)
|
1230
1389
|
|
1231
1390
|
### New Features
|
1232
1391
|
|
@@ -1236,7 +1395,7 @@ Yipeeeeeeeee!
|
|
1236
1395
|
|
1237
1396
|
- Fixed a regression in the HTML formatter's #embed implementation (#77 Aslak Hellesøy)
|
1238
1397
|
|
1239
|
-
## [0.10.5](https://github.com/cucumber/cucumber-ruby/compare/v0.10.3...v0.10.5)
|
1398
|
+
## [0.10.5](https://github.com/cucumber/cucumber-ruby/compare/v0.10.3...v0.10.5) (2011-06-05)
|
1240
1399
|
|
1241
1400
|
(0.10.4 was forgotten!)
|
1242
1401
|
|
@@ -1254,7 +1413,7 @@ Yipeeeeeeeee!
|
|
1254
1413
|
- Fix for Gem.available? deprecation warning (#75 Jake Benilov)
|
1255
1414
|
- Update URLs to reflect Cucumber's new location on Github (Jake Benilov)
|
1256
1415
|
|
1257
|
-
## [0.10.3](https://github.com/cucumber/cucumber-ruby/compare/v0.10.2...v0.10.3)
|
1416
|
+
## [0.10.3](https://github.com/cucumber/cucumber-ruby/compare/v0.10.2...v0.10.3) (2011-05-23)
|
1258
1417
|
|
1259
1418
|
### New Features
|
1260
1419
|
|
@@ -1264,13 +1423,13 @@ Yipeeeeeeeee!
|
|
1264
1423
|
- Fix Table#rows cell ordering in ruby 1.8. (#47_github Brian Dunn)
|
1265
1424
|
- JUnit Formatter: record skipped/pending/undefined scenario results (#655 meeee)
|
1266
1425
|
|
1267
|
-
## [0.10.2](https://github.com/cucumber/cucumber-ruby/compare/v0.10.1...v0.10.2)
|
1426
|
+
## [0.10.2](https://github.com/cucumber/cucumber-ruby/compare/v0.10.1...v0.10.2) (2011-03-20)
|
1268
1427
|
|
1269
1428
|
### Bugfixes
|
1270
1429
|
|
1271
1430
|
- Neuter both MiniTest::Unit and Test::Unit's overzealous test runners. (Aslak Hellesøy)
|
1272
1431
|
|
1273
|
-
## [0.10.1](https://github.com/cucumber/cucumber-ruby/compare/v0.10.0...v0.10.1)
|
1432
|
+
## [0.10.1](https://github.com/cucumber/cucumber-ruby/compare/v0.10.0...v0.10.1) (2011-03-20)
|
1274
1433
|
|
1275
1434
|
### New Features
|
1276
1435
|
|
@@ -1292,7 +1451,7 @@ Yipeeeeeeeee!
|
|
1292
1451
|
- Features files are sorted before they are executed, giving consistent results across different OSes (Guewen Baconnier)
|
1293
1452
|
- Remove duplicate lines in backtraces in the HTML report (Jari Bakken)
|
1294
1453
|
|
1295
|
-
## [0.10.0](https://github.com/cucumber/cucumber-ruby/compare/v0.9.4...v0.10.0)
|
1454
|
+
## [0.10.0](https://github.com/cucumber/cucumber-ruby/compare/v0.9.4...v0.10.0) (2010-12-07)
|
1296
1455
|
|
1297
1456
|
We're bumping the minor number in this release because there are some incompatible changes in the JSON support.
|
1298
1457
|
This should not affect users. The major new feature in this release is ANSICON support for Windows users.
|
@@ -1311,7 +1470,7 @@ This should not affect users. The major new feature in this release is ANSICON s
|
|
1311
1470
|
|
1312
1471
|
- JSON output now contains optional "match", "result" and "embeddings" elements underneath each step. (Aslak Hellesøy)
|
1313
1472
|
|
1314
|
-
## [0.9.4](https://github.com/cucumber/cucumber-ruby/compare/v0.9.3...v0.9.4)
|
1473
|
+
## [0.9.4](https://github.com/cucumber/cucumber-ruby/compare/v0.9.3...v0.9.4) (2010-11-06)
|
1315
1474
|
|
1316
1475
|
### Bugfixes
|
1317
1476
|
|
@@ -1321,7 +1480,7 @@ This should not affect users. The major new feature in this release is ANSICON s
|
|
1321
1480
|
- Cucumber 0.9.3 prevents Test::Unit from running (#677 Aslak Hellesøy)
|
1322
1481
|
- Performance degradation when running feature files with over 1000 steps (#675 Dimitri Geshef)
|
1323
1482
|
|
1324
|
-
## [0.9.3](https://github.com/cucumber/cucumber-ruby/compare/v0.9.2...v0.9.3)
|
1483
|
+
## [0.9.3](https://github.com/cucumber/cucumber-ruby/compare/v0.9.2...v0.9.3) (2010-10-24)
|
1325
1484
|
|
1326
1485
|
### Bugfixes
|
1327
1486
|
|
@@ -1330,19 +1489,19 @@ This should not affect users. The major new feature in this release is ANSICON s
|
|
1330
1489
|
- Prevent MiniTest::Unit#autorun from running in at_exit hook. (Aslak Hellesøy)
|
1331
1490
|
- Fixed incorect --help for --strict. It fails on both pending and undefined. (Aslak Hellesøy)
|
1332
1491
|
|
1333
|
-
## [0.9.2](https://github.com/cucumber/cucumber-ruby/compare/v0.9.1...v0.9.2)
|
1492
|
+
## [0.9.2](https://github.com/cucumber/cucumber-ruby/compare/v0.9.1...v0.9.2) (2010-10-04)
|
1334
1493
|
|
1335
1494
|
### Bugfixes
|
1336
1495
|
|
1337
1496
|
- Too many open files - getcwd (#666 Aslak Hellesøy)
|
1338
1497
|
|
1339
|
-
## [0.9.1](https://github.com/cucumber/cucumber-ruby/compare/v0.9.0...v0.9.1)
|
1498
|
+
## [0.9.1](https://github.com/cucumber/cucumber-ruby/compare/v0.9.0...v0.9.1) (2010-10-01)
|
1340
1499
|
|
1341
1500
|
### Bugfixes
|
1342
1501
|
|
1343
1502
|
- Just a minor internal change to make Cuke4Duke happy. (Aslak Hellesøy)
|
1344
1503
|
|
1345
|
-
## [0.9.0](https://github.com/cucumber/cucumber-ruby/compare/v0.8.5...v0.9.0)
|
1504
|
+
## [0.9.0](https://github.com/cucumber/cucumber-ruby/compare/v0.8.5...v0.9.0) (2010-09-21)
|
1346
1505
|
|
1347
1506
|
Maintenance release for the new release of Gherkin 2.2.3.
|
1348
1507
|
|
@@ -1364,14 +1523,14 @@ Maintenance release for the new release of Gherkin 2.2.3.
|
|
1364
1523
|
|
1365
1524
|
- Big refactoring of StepMother (Matt Wynne)
|
1366
1525
|
|
1367
|
-
## [0.8.5](https://github.com/cucumber/cucumber-ruby/compare/v0.8.4...v0.8.5)
|
1526
|
+
## [0.8.5](https://github.com/cucumber/cucumber-ruby/compare/v0.8.4...v0.8.5) (2010-07-14)
|
1368
1527
|
|
1369
1528
|
### Bugfixes
|
1370
1529
|
|
1371
1530
|
- Location of stepdefs outside the project (in gems) are reported incorrectly. (#583 Aslak Hellesøy)
|
1372
1531
|
- Cucumber::Rake::Task uses 'bundle exec' when using bundler (#626 John Firebaugh)
|
1373
1532
|
|
1374
|
-
## [0.8.4](https://github.com/cucumber/cucumber-ruby/compare/v0.8.3...v0.8.4)
|
1533
|
+
## [0.8.4](https://github.com/cucumber/cucumber-ruby/compare/v0.8.3...v0.8.4) (2010-07-12)
|
1375
1534
|
|
1376
1535
|
### Bugfixes
|
1377
1536
|
|
@@ -1382,7 +1541,7 @@ Maintenance release for the new release of Gherkin 2.2.3.
|
|
1382
1541
|
- Detect limit for negative tags (#636 Aslak Hellesøy)
|
1383
1542
|
- Support for RSpec 2 doubles (mocks and stubs) (Aslak Hellesøy)
|
1384
1543
|
|
1385
|
-
## [0.8.3](https://github.com/cucumber/cucumber-ruby/compare/v0.8.2...v0.8.3)
|
1544
|
+
## [0.8.3](https://github.com/cucumber/cucumber-ruby/compare/v0.8.2...v0.8.3) (2010-06-16)
|
1386
1545
|
|
1387
1546
|
Just a quick bugfix release.
|
1388
1547
|
|
@@ -1390,7 +1549,7 @@ Just a quick bugfix release.
|
|
1390
1549
|
|
1391
1550
|
- Scenario outlines that fail with exception exit process (Aslak Hellesøy)
|
1392
1551
|
|
1393
|
-
## [0.8.2](https://github.com/cucumber/cucumber-ruby/compare/v0.8.1...v0.8.2)
|
1552
|
+
## [0.8.2](https://github.com/cucumber/cucumber-ruby/compare/v0.8.1...v0.8.2) (2010-06-16)
|
1394
1553
|
|
1395
1554
|
Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
1396
1555
|
|
@@ -1405,7 +1564,7 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
1405
1564
|
|
1406
1565
|
- JavaScript to Hide/Expand Scenarios in HTML report (#621 stkenned)
|
1407
1566
|
|
1408
|
-
## [0.8.1](https://github.com/cucumber/cucumber-ruby/compare/v0.8.0...v0.8.1)
|
1567
|
+
## [0.8.1](https://github.com/cucumber/cucumber-ruby/compare/v0.8.0...v0.8.1) (2010-06-14)
|
1409
1568
|
|
1410
1569
|
### Bufixes
|
1411
1570
|
|
@@ -1415,7 +1574,7 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
1415
1574
|
|
1416
1575
|
- Undefined steps with integers (Given 3 cukes) will generate snippets like (Given /(\d+) cukes/). (Aslak Hellesøy)
|
1417
1576
|
|
1418
|
-
## [0.8.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.3...v0.8.0)
|
1577
|
+
## [0.8.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.3...v0.8.0) (2010-06-06)
|
1419
1578
|
|
1420
1579
|
### Bugfixes
|
1421
1580
|
|
@@ -1438,20 +1597,20 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
1438
1597
|
- Ruby snippets will use "([^"]_)" instead of "([^\"]_)"$/ - wasn't properly fixed in 0.7.1. (Aslak Hellesøy)
|
1439
1598
|
- Preserve the order features files are passed and use this for execution order (#617 Joseph Wilk)
|
1440
1599
|
|
1441
|
-
## [0.7.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.2...v0.7.3)
|
1600
|
+
## [0.7.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.2...v0.7.3) (2010-05-17)
|
1442
1601
|
|
1443
1602
|
### New Features
|
1444
1603
|
|
1445
1604
|
- Table cells can now contain escaped bars - \| and escaped backslashes - \\. (Gregory Hnatiuk, Aslak Hellesøy)
|
1446
1605
|
- Added support for Around hooks. (#605 John Firebaugh)
|
1447
1606
|
|
1448
|
-
## [0.7.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.1...v0.7.2)
|
1607
|
+
## [0.7.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.1...v0.7.2) (2010-05-04)
|
1449
1608
|
|
1450
1609
|
### Bugfixes
|
1451
1610
|
|
1452
1611
|
- REALLY add backwards compatibility fix (with deprecation warning) for legacy 0.6.4 formatters. (Aslak Hellesøy)
|
1453
1612
|
|
1454
|
-
## [0.7.1](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0...v0.7.1)
|
1613
|
+
## [0.7.1](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0...v0.7.1) (2010-05-03)
|
1455
1614
|
|
1456
1615
|
### Bugfixes
|
1457
1616
|
|
@@ -1461,32 +1620,32 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
1461
1620
|
|
1462
1621
|
- Ruby and Javascript snippets will use "([^"]_)" instead of "([^\"]_)"$/ (Aslak Hellesøy)
|
1463
1622
|
|
1464
|
-
## [0.7.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.8...v0.7.0)
|
1623
|
+
## [0.7.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.8...v0.7.0) (2010-05-02)
|
1465
1624
|
|
1466
1625
|
This release is an important milestone for Cucumber. A new parser (the gherkin gem) parses feature
|
1467
1626
|
files 50-100 times faster than with 0.6.x and previous releases. Make sure you read the upgrade
|
1468
1627
|
instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
1469
1628
|
|
1470
|
-
## [0.7.0.beta.8](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.7...v0.7.0.beta.8)
|
1629
|
+
## [0.7.0.beta.8](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.7...v0.7.0.beta.8) (2010-04-29)
|
1471
1630
|
|
1472
1631
|
### Bugfixes
|
1473
1632
|
|
1474
1633
|
- Inconsistent order of execution Background and Before in 0.7.0.beta.2 (#600 Mike Sassak)
|
1475
1634
|
- Make sure both lexing and parsing errors are captured and reported with line number (Gregory Hnatiuk)
|
1476
1635
|
|
1477
|
-
## [0.7.0.beta.7](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.6...v0.7.0.beta.7)
|
1636
|
+
## [0.7.0.beta.7](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.6...v0.7.0.beta.7) (2010-04-28)
|
1478
1637
|
|
1479
1638
|
### Bugfixes
|
1480
1639
|
|
1481
1640
|
- Depend on gherkin-1.0.22, which should now make things work on Windows and Ruby 1.8.x-1.9.x. (Aslak Hellesøy)
|
1482
1641
|
|
1483
|
-
## [0.7.0.beta.6](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.5...v0.7.0.beta.6)
|
1642
|
+
## [0.7.0.beta.6](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.5...v0.7.0.beta.6) (2010-04-28)
|
1484
1643
|
|
1485
1644
|
### Bugfixes
|
1486
1645
|
|
1487
1646
|
- Fixed a small regression with pystrings and calling steps from stepdefs, introduced in a previous beta. (Aslak Hellesøy)
|
1488
1647
|
|
1489
|
-
## [0.7.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.4...v0.7.0.beta.5)
|
1648
|
+
## [0.7.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.4...v0.7.0.beta.5) (2010-04-27)
|
1490
1649
|
|
1491
1650
|
### New Features
|
1492
1651
|
|
@@ -1496,7 +1655,7 @@ instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
|
1496
1655
|
|
1497
1656
|
- No more support for RSpec <= 1.2.3. (Aslak Hellesøy)
|
1498
1657
|
|
1499
|
-
## [0.7.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.3...v0.7.0.beta.4)
|
1658
|
+
## [0.7.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.3...v0.7.0.beta.4) (2010-04-23)
|
1500
1659
|
|
1501
1660
|
### New Features
|
1502
1661
|
|
@@ -1506,19 +1665,19 @@ instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
|
1506
1665
|
|
1507
1666
|
- Gherkin is loaded via rubygems if it can't be found on the $LOAD_PATH. (Aslak Hellesøy)
|
1508
1667
|
|
1509
|
-
## [0.7.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.2...v0.7.0.beta.3)
|
1668
|
+
## [0.7.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.2...v0.7.0.beta.3) (2010-04-23)
|
1510
1669
|
|
1511
1670
|
### Changed Features
|
1512
1671
|
|
1513
1672
|
- Step Definitions and calling steps from step definitions can again use And and But (was removed in 0.7.0.beta.2) (Aslak Hellesøy)
|
1514
1673
|
|
1515
|
-
## [0.7.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.1...v0.7.0.beta.2)
|
1674
|
+
## [0.7.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.1...v0.7.0.beta.2) (2010-04-21)
|
1516
1675
|
|
1517
1676
|
### New Features
|
1518
1677
|
|
1519
1678
|
- Depend on Gherkin 1.0.18, which has some bugfixes. (Aslak Hellesøy)
|
1520
1679
|
|
1521
|
-
## [0.7.0.beta.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.4...v0.7.0.beta.1)
|
1680
|
+
## [0.7.0.beta.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.4...v0.7.0.beta.1) (2010-04-20)
|
1522
1681
|
|
1523
1682
|
Treetop is gone and replaced with Ragel. The new Ragel parser lives in the gherkin gem.
|
1524
1683
|
Parse times are up to 100 times faster.
|
@@ -1531,7 +1690,7 @@ Parse times are up to 100 times faster.
|
|
1531
1690
|
|
1532
1691
|
- New i18n translations now have to be contributed to the gherkin project.
|
1533
1692
|
|
1534
|
-
## [0.6.4](https://github.com/cucumber/cucumber-ruby/compare/v0.6.3...v0.6.4)
|
1693
|
+
## [0.6.4](https://github.com/cucumber/cucumber-ruby/compare/v0.6.3...v0.6.4) (2010-03-30)
|
1535
1694
|
|
1536
1695
|
### Bugfixes
|
1537
1696
|
|
@@ -1555,7 +1714,7 @@ Parse times are up to 100 times faster.
|
|
1555
1714
|
- Switced to ISO 639-1 (language) and ISO 3166 alpha-2 (region - if applicable). Applies to Catalan,
|
1556
1715
|
Swedish, Welsh, Romanian and Serbian. (Aslak Hellesøy)
|
1557
1716
|
|
1558
|
-
## [0.6.3](https://github.com/cucumber/cucumber-ruby/compare/v0.6.2...v0.6.3)
|
1717
|
+
## [0.6.3](https://github.com/cucumber/cucumber-ruby/compare/v0.6.2...v0.6.3) (2010-03-02)
|
1559
1718
|
|
1560
1719
|
### Bugfixes
|
1561
1720
|
|
@@ -1576,7 +1735,7 @@ Parse times are up to 100 times faster.
|
|
1576
1735
|
- Add tags to begin/end scenario messages on wire protocol to support tagged hooks (#571 Matt Wynne)
|
1577
1736
|
- Default timeouts to 120s for invoke, begin_scenario and end_scenario messages in wire protocol (#572 Matt Wynne)
|
1578
1737
|
|
1579
|
-
## [0.6.2](https://github.com/cucumber/cucumber-ruby/compare/v0.6.1...v0.6.2)
|
1738
|
+
## [0.6.2](https://github.com/cucumber/cucumber-ruby/compare/v0.6.1...v0.6.2) (2010-01-17)
|
1580
1739
|
|
1581
1740
|
### Bugfixes
|
1582
1741
|
|
@@ -1596,13 +1755,13 @@ Parse times are up to 100 times faster.
|
|
1596
1755
|
|
1597
1756
|
- element_at and table_at have been removed. Use tableish in cucumber-rails instead. (Aslak Hellesœy)
|
1598
1757
|
|
1599
|
-
## [0.6.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.0...v0.6.1)
|
1758
|
+
## [0.6.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.0...v0.6.1) (2010-01-03)
|
1600
1759
|
|
1601
1760
|
### Bugfixes
|
1602
1761
|
|
1603
1762
|
- Fixed broken console handling on Windows/JRuby that was introduced in 0.6.0. (Aslak Hellesøy)
|
1604
1763
|
|
1605
|
-
## [0.6.0](https://github.com/cucumber/cucumber-ruby/compare/v0.5.3...v0.6.0)
|
1764
|
+
## [0.6.0](https://github.com/cucumber/cucumber-ruby/compare/v0.5.3...v0.6.0) (2010-01-03)
|
1606
1765
|
|
1607
1766
|
Bumping to 0.6.0 for this release since we're breaking backwards compatibility with tags.
|
1608
1767
|
|
@@ -1629,7 +1788,7 @@ Bumping to 0.6.0 for this release since we're breaking backwards compatibility w
|
|
1629
1788
|
- All features (except 4) pass on 1.9.2 (but not on 1.9.1) (Aslak Hellesøy)
|
1630
1789
|
- Add missing require statement in rerun formatter which broke RubyMine (Noah Sussman)
|
1631
1790
|
|
1632
|
-
## [0.5.3](https://github.com/cucumber/cucumber-ruby/compare/v0.5.2...v0.5.3)
|
1791
|
+
## [0.5.3](https://github.com/cucumber/cucumber-ruby/compare/v0.5.2...v0.5.3) (2009-12-22)
|
1633
1792
|
|
1634
1793
|
Another small release today to please a sister project. This time Cuke4Nuke.
|
1635
1794
|
|
@@ -1637,7 +1796,7 @@ Another small release today to please a sister project. This time Cuke4Nuke.
|
|
1637
1796
|
|
1638
1797
|
- Simplified wire protocol to mostly use success / fail responses (Matt Wynne)
|
1639
1798
|
|
1640
|
-
## [0.5.2](https://github.com/cucumber/cucumber-ruby/compare/v0.5.1...v0.5.2)
|
1799
|
+
## [0.5.2](https://github.com/cucumber/cucumber-ruby/compare/v0.5.1...v0.5.2) (2009-12-22)
|
1641
1800
|
|
1642
1801
|
### New Features
|
1643
1802
|
|
@@ -1649,7 +1808,7 @@ Another small release today to please a sister project. This time Cuke4Nuke.
|
|
1649
1808
|
- Add #embed back to html formatter (#547 Brandon Faloona)
|
1650
1809
|
- Refactored wire protocol code and added configurable timeout to allow for long running step definitions. (#546 Matt Wynne)
|
1651
1810
|
|
1652
|
-
## [0.5.1](https://github.com/cucumber/cucumber-ruby/compare/v0.5.0...v0.5.1)
|
1811
|
+
## [0.5.1](https://github.com/cucumber/cucumber-ruby/compare/v0.5.0...v0.5.1) (2009-12-16)
|
1653
1812
|
|
1654
1813
|
Small bugfix release.
|
1655
1814
|
|
@@ -1657,7 +1816,7 @@ Small bugfix release.
|
|
1657
1816
|
|
1658
1817
|
- Replaced dependency on json gem with an error message, so that the cucumber gem installs on JRuby. (Aslak Hellesøy)
|
1659
1818
|
|
1660
|
-
## [0.5.0](https://github.com/cucumber/cucumber-ruby/compare/v0.4.4...v0.5.0)
|
1819
|
+
## [0.5.0](https://github.com/cucumber/cucumber-ruby/compare/v0.4.4...v0.5.0) (2009-12-15)
|
1661
1820
|
|
1662
1821
|
We're bumping to 0.5.0 for this release since all of the Rails code has now moved to a new gem - cucumber-rails.
|
1663
1822
|
Please see History.txt in cucumber-rails for details about what's new on the Rails side.
|
@@ -1692,7 +1851,7 @@ Please see History.txt in cucumber-rails for details about what's new on the Rai
|
|
1692
1851
|
- All Rails-related code is in a separate gem: cucumber-rails. Install that if you're working with Rails. (#483 Aslak Hellesøy)
|
1693
1852
|
- --language is removed: http://wiki.github.com/aslakhellesoy/cucumber/spoken-languages (Aslak Hellesøy)
|
1694
1853
|
|
1695
|
-
## [0.4.4](https://github.com/cucumber/cucumber-ruby/compare/v0.4.3...v0.4.4)
|
1854
|
+
## [0.4.4](https://github.com/cucumber/cucumber-ruby/compare/v0.4.3...v0.4.4) (2009-11-13)
|
1696
1855
|
|
1697
1856
|
What a bad day to make a release, but here goes.
|
1698
1857
|
|
@@ -1720,7 +1879,7 @@ What a bad day to make a release, but here goes.
|
|
1720
1879
|
- $cucumber_interrupted is now Cucumber.wants_to_quit - avoid global variable, which gives warnings. (Aslak Hellesøy)
|
1721
1880
|
- Examples keyword without a colon is deprecated loudly. Gherkin will not recognize it at all. (Gherkin #30 Mike Sassak)
|
1722
1881
|
|
1723
|
-
## [0.4.3](https://github.com/cucumber/cucumber-ruby/compare/v0.4.2...v0.4.3)
|
1882
|
+
## [0.4.3](https://github.com/cucumber/cucumber-ruby/compare/v0.4.2...v0.4.3) (2009-10-27)
|
1724
1883
|
|
1725
1884
|
The exciting thing about this release is that the wire protocol is starting to take shape. This means you can
|
1726
1885
|
now use Cucumber with .NET - writing step definitions in C#. And this is without having to use IronRuby at all!
|
@@ -1751,11 +1910,11 @@ As usual there are several small features and bug fixes.
|
|
1751
1910
|
- JUnit formatter raises a more helpful error when run on a feature with no name. (#493 Matt Wynne)
|
1752
1911
|
- Better Danish translation (Thorbjørn Ravn Andersen)
|
1753
1912
|
|
1754
|
-
## [0.4.2](https://github.com/cucumber/cucumber-ruby/compare/v0.4.1...v0.4.2)
|
1913
|
+
## [0.4.2](https://github.com/cucumber/cucumber-ruby/compare/v0.4.1...v0.4.2) (2009-10-14)
|
1755
1914
|
|
1756
1915
|
Bugfix release. The 0.4.1 release was hosed when switching from Hoe to Jeweler.
|
1757
1916
|
|
1758
|
-
## [0.4.1](https://github.com/cucumber/cucumber-ruby/compare/v0.4.0...v0.4.1)
|
1917
|
+
## [0.4.1](https://github.com/cucumber/cucumber-ruby/compare/v0.4.0...v0.4.1) (2009-10-14)
|
1759
1918
|
|
1760
1919
|
This is mostly a bugfix release. Some of Cucumber's own features have been fixed so they pass on more platforms,
|
1761
1920
|
making it easier for people to contribute. The README.txt also describes how to get up and running with the
|
@@ -1786,7 +1945,7 @@ development environment.
|
|
1786
1945
|
- Added StepMother#invoke(step_name, multiline_argument=nil) - needed by cuke4duke ticket #26 (Aslak Hellesøy)
|
1787
1946
|
- StepDefinitionMethods is gone.
|
1788
1947
|
|
1789
|
-
## [0.4.0](https://github.com/cucumber/cucumber-ruby/compare/v0.3.104...v0.4.0)
|
1948
|
+
## [0.4.0](https://github.com/cucumber/cucumber-ruby/compare/v0.3.104...v0.4.0) (2009-10-09)
|
1790
1949
|
|
1791
1950
|
The back to stable release. When we went from 0.3.11 to 0.3.90 we thought we were close to a 0.4.0 release. Then the community
|
1792
1951
|
went nuts and a lot of great contributions came in. Some of those broke backwards compatibility, and we decided it would be
|
@@ -1837,7 +1996,7 @@ that will give you more information so you can solve any problems. If not, just
|
|
1837
1996
|
- Better backtraces for Ruby 1.8.7. (Jakob Skov-Pedersen)
|
1838
1997
|
- String step definitions ( Given 'I have $number cucumbers' ) are escaped before being turned into regular expressions. (David Waite)
|
1839
1998
|
|
1840
|
-
## [0.3.104](https://github.com/cucumber/cucumber-ruby/compare/v0.3.103...v0.3.104)
|
1999
|
+
## [0.3.104](https://github.com/cucumber/cucumber-ruby/compare/v0.3.103...v0.3.104) (2009-09-27)
|
1841
2000
|
|
1842
2001
|
This release has some minor changes to the command line and formatters. The biggest change is internally, paving
|
1843
2002
|
the way for more programming language support in Cuke4Duke, which now supports step definitions written in Java, Scala,
|
@@ -1866,7 +2025,7 @@ Groovy, Clojure and Javascript!
|
|
1866
2025
|
- The steps formatter has been renamed to stepdefs formatter. (Aslak Hellesøy)
|
1867
2026
|
- The internal programming language API has changed, giving more power to the implementation. See #428. (Aslak Hellesøy)
|
1868
2027
|
|
1869
|
-
## [0.3.103](https://github.com/cucumber/cucumber-ruby/compare/v0.3.102...v0.3.103)
|
2028
|
+
## [0.3.103](https://github.com/cucumber/cucumber-ruby/compare/v0.3.102...v0.3.103) (2009-09-24)
|
1870
2029
|
|
1871
2030
|
This release gives you back some of the control over the Rails environment that was accidentally taken away from you in the
|
1872
2031
|
previous release.
|
@@ -1887,7 +2046,7 @@ Using this release on a Rails project requires a rerun of script/generate cucumb
|
|
1887
2046
|
|
1888
2047
|
- The Formatter API has completely changed. Formatters are no longer a double-dispacth visitor - just a single-dispatch listener (#438 Matt Wynne)
|
1889
2048
|
|
1890
|
-
## [0.3.102](https://github.com/cucumber/cucumber-ruby/compare/v0.3.101...v0.3.102)
|
2049
|
+
## [0.3.102](https://github.com/cucumber/cucumber-ruby/compare/v0.3.101...v0.3.102) (2009-09-22)
|
1891
2050
|
|
1892
2051
|
This release has some changes in the Rails support, so make sure you run "script/generate cucumber" after you upgrade.
|
1893
2052
|
Other noteworthy new features are improved Hook, tags and Transform support, and as always - several smaller bug fixes.
|
@@ -1933,7 +2092,7 @@ your features to your customer for review!
|
|
1933
2092
|
- Adding webrat steps for asserting content does or does not exist within a particular element
|
1934
2093
|
(using webrat's within method) (Kieran Pilkington)
|
1935
2094
|
|
1936
|
-
## [0.3.100](https://github.com/cucumber/cucumber-ruby/compare/v0.3.99...v0.3.100)
|
2095
|
+
## [0.3.100](https://github.com/cucumber/cucumber-ruby/compare/v0.3.99...v0.3.100) (2009-09-08)
|
1937
2096
|
|
1938
2097
|
The JavaZone release!
|
1939
2098
|
|
@@ -1947,7 +2106,7 @@ The JavaZone release!
|
|
1947
2106
|
- Backtraces on JRuby are handled in a cleaner way when the exception comes from Java (NativeException). (Aslak Hellesøy)
|
1948
2107
|
- When exceptions occur in a Before block the rest of the scenario is now skipped (#331 Matt Wynne)
|
1949
2108
|
|
1950
|
-
## [0.3.99](https://github.com/cucumber/cucumber-ruby/compare/v0.3.98...v0.3.99)
|
2109
|
+
## [0.3.99](https://github.com/cucumber/cucumber-ruby/compare/v0.3.98...v0.3.99) (2009-09-02)
|
1951
2110
|
|
1952
2111
|
### New Features
|
1953
2112
|
|
@@ -1957,7 +2116,7 @@ The JavaZone release!
|
|
1957
2116
|
- New AfterConfiguration hook added; a block can be specified that takes Cucumber::Cli::Configuration (#423 Brent Snook)
|
1958
2117
|
- Cucumber::Cli::Configuration#feature_dirs and #out_stream exposed as public attributes so that they may be used in AfterConfiguration hook (#423 Brent Snook)
|
1959
2118
|
|
1960
|
-
## [0.3.98](https://github.com/cucumber/cucumber-ruby/compare/v0.3.97...v0.3.98)
|
2119
|
+
## [0.3.98](https://github.com/cucumber/cucumber-ruby/compare/v0.3.97...v0.3.98) (2009-08-25)
|
1961
2120
|
|
1962
2121
|
Just a small release to help Cuke4Duke, which will be presented at Agile2009
|
1963
2122
|
in 2 days.
|
@@ -1967,7 +2126,7 @@ in 2 days.
|
|
1967
2126
|
- Backtrace filtering now happens in StepInvocation class, meaning other languages (Cuke4Duke) can get backtraces stripped. (Aslak Hellesøy)
|
1968
2127
|
- Cucumber::Ast::Table#map_headers now allows for a block that will convert all the headers. See docs for details. (Ben Mabey)
|
1969
2128
|
|
1970
|
-
## [0.3.97](https://github.com/cucumber/cucumber-ruby/compare/v0.3.96...v0.3.97)
|
2129
|
+
## [0.3.97](https://github.com/cucumber/cucumber-ruby/compare/v0.3.96...v0.3.97) (2009-08-23)
|
1971
2130
|
|
1972
2131
|
The AA-FTT release. Creating a release for the AA-FTT meeting in Chicago so that we can play
|
1973
2132
|
with the new language API and maybe knock out some better .NET support.
|
@@ -1989,7 +2148,7 @@ with the new language API and maybe knock out some better .NET support.
|
|
1989
2148
|
- Changed the Programming Language API to support languages without "bleed through" (e.g. rubypython can't invoke ruby objs) (Aslak Hellesøy)
|
1990
2149
|
- The Programming Language API manages hooks on the language level instead of on the step mother level (Aslak Hellesøy)
|
1991
2150
|
|
1992
|
-
## [0.3.96](https://github.com/cucumber/cucumber-ruby/compare/v0.3.95...v0.3.96)
|
2151
|
+
## [0.3.96](https://github.com/cucumber/cucumber-ruby/compare/v0.3.95...v0.3.96) (2009-08-15)
|
1993
2152
|
|
1994
2153
|
This release doesn't have any significant new features or bug fixes, but there are big
|
1995
2154
|
internal changes. This release has a new API for plugging in other programming languages.
|
@@ -2010,7 +2169,7 @@ be patched. Please upgrade to Spork 0.5.9 if you are using Spork.
|
|
2010
2169
|
- --strict will cause an exit code 1 for missing and pending (used to be for missing only). (Mads Buus)
|
2011
2170
|
- junit formatter doesn't report pending steps unless --strict is used. (Mads Buus)
|
2012
2171
|
|
2013
|
-
## [0.3.95](https://github.com/cucumber/cucumber-ruby/compare/v0.3.94...v0.3.95)
|
2172
|
+
## [0.3.95](https://github.com/cucumber/cucumber-ruby/compare/v0.3.94...v0.3.95) (2009-08-13)
|
2014
2173
|
|
2015
2174
|
This release improves Webrat support for table-like HTML markup. Now you can easily turn the HTML
|
2016
2175
|
elements table, dl, ol and ul elements into a 2D array. This is particularly useful for comparing
|
@@ -2040,7 +2199,7 @@ This release also fixes several bugs related to --drb (Spork) and profiles (cucu
|
|
2040
2199
|
- element_at('table').to_table should be used instead of table_at('table').to_a. The old way is deprecated but still works. (Aslak Hellesøy)
|
2041
2200
|
- element_at (and the depracated table_at) no longer takes a DOM id, only CSS selectors. Change "my_id" to "#my_id". (Aslak Hellesøy)
|
2042
2201
|
|
2043
|
-
## [0.3.94](https://github.com/cucumber/cucumber-ruby/compare/v0.3.93...v0.3.94)
|
2202
|
+
## [0.3.94](https://github.com/cucumber/cucumber-ruby/compare/v0.3.93...v0.3.94) (2009-08-06)
|
2044
2203
|
|
2045
2204
|
Kanban take II.
|
2046
2205
|
|
@@ -2070,7 +2229,7 @@ You'll achieve better flow this way.
|
|
2070
2229
|
- Document builtin formatters with --help. (#406 Aslak Hellesøy)
|
2071
2230
|
- Added support for using regular expressions when mapping table headers. (Peter Williams)
|
2072
2231
|
|
2073
|
-
## [0.3.93](https://github.com/cucumber/cucumber-ruby/compare/v0.3.92...v0.3.93)
|
2232
|
+
## [0.3.93](https://github.com/cucumber/cucumber-ruby/compare/v0.3.92...v0.3.93) (2009-08-03)
|
2074
2233
|
|
2075
2234
|
Highlights in this release: Improved profile handling (cucumber.yml) and a fix for cucumber hanging.
|
2076
2235
|
|
@@ -2087,7 +2246,7 @@ Highlights in this release: Improved profile handling (cucumber.yml) and a fix f
|
|
2087
2246
|
- script/cucumber correctly loads the gem's binary if the plugin isn't installed.
|
2088
2247
|
- Cucumber hangs waiting for Ctrl+C if an Error is raised. (#374 Aslak Hellesøy)
|
2089
2248
|
|
2090
|
-
## [0.3.92](https://github.com/cucumber/cucumber-ruby/compare/v0.3.91...v0.3.92)
|
2249
|
+
## [0.3.92](https://github.com/cucumber/cucumber-ruby/compare/v0.3.91...v0.3.92) (2009-07-29)
|
2091
2250
|
|
2092
2251
|
This release has some minor improvements to the new Table.diff! functionality. For example,
|
2093
2252
|
if you're using Webrat and you want to compare a feature table with a HTML table containing
|
@@ -2111,7 +2270,7 @@ links in one of the columns, you can do:
|
|
2111
2270
|
|
2112
2271
|
- The 'default' profile is now ALWAYS used unless you specify another profile or use the -P or --no-profile flag. (#344 Ben Mabey)
|
2113
2272
|
|
2114
|
-
## [0.3.91](https://github.com/cucumber/cucumber-ruby/compare/v0.3.90...v0.3.91)
|
2273
|
+
## [0.3.91](https://github.com/cucumber/cucumber-ruby/compare/v0.3.90...v0.3.91) (2009-07-27)
|
2115
2274
|
|
2116
2275
|
### New Features
|
2117
2276
|
|
@@ -2120,7 +2279,7 @@ links in one of the columns, you can do:
|
|
2120
2279
|
- Support limiting the number of feature elements with certain tags (#353 Joseph Wilk)
|
2121
2280
|
- Table support for cuke4duke
|
2122
2281
|
|
2123
|
-
## [0.3.90](https://github.com/cucumber/cucumber-ruby/compare/v0.3.11...v0.3.90)
|
2282
|
+
## [0.3.90](https://github.com/cucumber/cucumber-ruby/compare/v0.3.11...v0.3.90) (2009-07-21)
|
2124
2283
|
|
2125
2284
|
The Hot summer release
|
2126
2285
|
|
@@ -2224,7 +2383,7 @@ This release also has several bugfixes related to --format and Before/After hook
|
|
2224
2383
|
- The data returned from Table#hashes and similar methods are frozen. Dup if you need to modify. (Aslak Hellesøy)
|
2225
2384
|
- Visitor.visit_table_cell_value(value, col_width, status) is now visitor.visit_table_cell_value(value, status)
|
2226
2385
|
|
2227
|
-
## [0.3.11](https://github.com/cucumber/cucumber-ruby/compare/v0.3.10...v0.3.11)
|
2386
|
+
## [0.3.11](https://github.com/cucumber/cucumber-ruby/compare/v0.3.10...v0.3.11) (2009-06-05)
|
2228
2387
|
|
2229
2388
|
This release just fixes a tiny bug in the formatter to fix an incompatibility
|
2230
2389
|
with the latest RedMine release. It should have been included in 0.3.10, but
|
@@ -2234,7 +2393,7 @@ was forgotten.
|
|
2234
2393
|
|
2235
2394
|
- Formatter API was broken in 0.3.9 (Roman Chernyatchik)
|
2236
2395
|
|
2237
|
-
## [0.3.10](https://github.com/cucumber/cucumber-ruby/compare/v0.3.9...v0.3.10)
|
2396
|
+
## [0.3.10](https://github.com/cucumber/cucumber-ruby/compare/v0.3.9...v0.3.10) (2009-06-05)
|
2238
2397
|
|
2239
2398
|
The Spork Release!
|
2240
2399
|
|
@@ -2277,7 +2436,7 @@ This release also has some minor bugfixes related to RSpec and Rails interop.
|
|
2277
2436
|
|
2278
2437
|
- The HTML formatter wraps examples in a div, and distinguishes between Scenario and Scenario Outline. (Aslak Hellesøy)
|
2279
2438
|
|
2280
|
-
## [0.3.9](https://github.com/cucumber/cucumber-ruby/compare/v0.3.8...v0.3.9)
|
2439
|
+
## [0.3.9](https://github.com/cucumber/cucumber-ruby/compare/v0.3.8...v0.3.9) (2009-05-27)
|
2281
2440
|
|
2282
2441
|
Bugfix release for 0.3.8 released earlier today. 0.3.8 had a bug in the Rails cucumber
|
2283
2442
|
generator which is fixed in 0.3.9.
|
@@ -2287,7 +2446,7 @@ generator which is fixed in 0.3.9.
|
|
2287
2446
|
- Fix broken Rails cucumber generator (Tim Glen)
|
2288
2447
|
- The Cucumber Rake task in non-fork mode will properly cause Rake to exit with 1 when Cucumber fails. (Aslak Hellesøy)
|
2289
2448
|
|
2290
|
-
## [0.3.8](https://github.com/cucumber/cucumber-ruby/compare/v0.3.7...v0.3.8)
|
2449
|
+
## [0.3.8](https://github.com/cucumber/cucumber-ruby/compare/v0.3.7...v0.3.8) (2009-05-27)
|
2291
2450
|
|
2292
2451
|
This Cucumber version fixes several bugs related to Ruby on Rails and RSpec. If you
|
2293
2452
|
use Cucumber with a Rails app we*strongly* recommend you bootstrap Cucumber again:
|
@@ -2311,7 +2470,7 @@ use Cucumber with a Rails app we*strongly* recommend you bootstrap Cucumber agai
|
|
2311
2470
|
- Better coexistence with RSpec - Cucumber now*neuters* the part of RSpec that tries to parse ARGV.
|
2312
2471
|
- The differ= exception is gone (#325, #340 Aslak Hellesøy)
|
2313
2472
|
|
2314
|
-
## [0.3.7](https://github.com/cucumber/cucumber-ruby/compare/v0.3.6...v0.3.7)
|
2473
|
+
## [0.3.7](https://github.com/cucumber/cucumber-ruby/compare/v0.3.6...v0.3.7) (2009-05-22)
|
2315
2474
|
|
2316
2475
|
This is the "Help JetBrains RubyMine" release!
|
2317
2476
|
|
@@ -2326,7 +2485,7 @@ This is the "Help JetBrains RubyMine" release!
|
|
2326
2485
|
- 'specs' folder needs to be renamed back to 'spec' (#339 Aslak Hellesøy)
|
2327
2486
|
- CUCUMBER_OPTS doesn't work for cucumber rake tasks (#336 Aslak Hellesøy)
|
2328
2487
|
|
2329
|
-
## [0.3.6](https://github.com/cucumber/cucumber-ruby/compare/v0.3.5...v0.3.6)
|
2488
|
+
## [0.3.6](https://github.com/cucumber/cucumber-ruby/compare/v0.3.5...v0.3.6) (2009-05-20)
|
2330
2489
|
|
2331
2490
|
Kanban! With this release you can tag features or scenarios that are work in progress
|
2332
2491
|
with a tag and use the new --wip switch.
|
@@ -2346,7 +2505,7 @@ Another handy feature in this release is that you can package your own formatter
|
|
2346
2505
|
- Gracefully handle exceptions in After block (#330 Matt Wynne)
|
2347
2506
|
- Feature with only Background doesn't run hooks (#314, #329 Aslak Hellesøy)
|
2348
2507
|
|
2349
|
-
## [0.3.5](https://github.com/cucumber/cucumber-ruby/compare/v0.3.4...v0.3.5)
|
2508
|
+
## [0.3.5](https://github.com/cucumber/cucumber-ruby/compare/v0.3.4...v0.3.5) (2009-05-15)
|
2350
2509
|
|
2351
2510
|
Let's make a new release today because two annoying bugs are fixed.
|
2352
2511
|
|
@@ -2354,7 +2513,7 @@ Let's make a new release today because two annoying bugs are fixed.
|
|
2354
2513
|
|
2355
2514
|
- Allow feature element names to contain Gherkin keywords as long as they are not the first word on a newline (#319, #307 Joseph Wilk)
|
2356
2515
|
|
2357
|
-
## [0.3.4](https://github.com/cucumber/cucumber-ruby/compare/v0.3.3...v0.3.4)
|
2516
|
+
## [0.3.4](https://github.com/cucumber/cucumber-ruby/compare/v0.3.3...v0.3.4) (2009-05-14)
|
2358
2517
|
|
2359
2518
|
A couple of great new features in this release. Running with Rake is faster than before,
|
2360
2519
|
and there is a brand new JUnit formatter - great for Continuous Integration reports!
|
@@ -2401,7 +2560,7 @@ However, setting the RAILS_ENV is easy to forget, so I don't recommend relying o
|
|
2401
2560
|
unless explicitly told to fork a new interpreter. This is to increase speed. You can
|
2402
2561
|
force a new interpreter by setting fork=true or rcov=true in the task.
|
2403
2562
|
|
2404
|
-
## [0.3.3](https://github.com/cucumber/cucumber-ruby/compare/v0.3.2...v0.3.3)
|
2563
|
+
## [0.3.3](https://github.com/cucumber/cucumber-ruby/compare/v0.3.2...v0.3.3) (2009-05-10)
|
2405
2564
|
|
2406
2565
|
Minor bugfix release, made specially for EuRuKo!
|
2407
2566
|
|
@@ -2415,7 +2574,7 @@ Minor bugfix release, made specially for EuRuKo!
|
|
2415
2574
|
|
2416
2575
|
- New aliases: --no-source/-s, --name/-n (#317 Lonnon Foster)
|
2417
2576
|
|
2418
|
-
## [0.3.2](https://github.com/cucumber/cucumber-ruby/compare/v0.3.1...v0.3.2)
|
2577
|
+
## [0.3.2](https://github.com/cucumber/cucumber-ruby/compare/v0.3.1...v0.3.2) (2009-05-03)
|
2419
2578
|
|
2420
2579
|
This release has some minor bug fixes and new features.
|
2421
2580
|
Nothing major, but we need a release for RailsConf'09 in Las Vegas!
|
@@ -2433,7 +2592,7 @@ Nothing major, but we need a release for RailsConf'09 in Las Vegas!
|
|
2433
2592
|
- Examples and the associated tables are indented one level deeper than Scenario Outline. (Aslak Hellesøy)
|
2434
2593
|
- Added support for Examples selection when using --name. (#295 Joseph Wilk)
|
2435
2594
|
|
2436
|
-
## [0.3.1](https://github.com/cucumber/cucumber-ruby/compare/v0.3.0...v0.3.1)
|
2595
|
+
## [0.3.1](https://github.com/cucumber/cucumber-ruby/compare/v0.3.0...v0.3.1) (2009-04-26)
|
2437
2596
|
|
2438
2597
|
This release has several minor bug fixes and new features. With the addition of Latvian and Hungarian Cucumber
|
2439
2598
|
now supports 32(!!) languages.
|
@@ -2461,7 +2620,7 @@ now supports 32(!!) languages.
|
|
2461
2620
|
|
2462
2621
|
- --scenario handle has been removed and replaced with --name which supports partial matches, regexp special characters, running named backgrounds (#295 Joseph Wilk)
|
2463
2622
|
|
2464
|
-
## [0.3.0](https://github.com/cucumber/cucumber-ruby/compare/v0.2.3...v0.3.0)
|
2623
|
+
## [0.3.0](https://github.com/cucumber/cucumber-ruby/compare/v0.2.3...v0.3.0) (2009-04-14)
|
2465
2624
|
|
2466
2625
|
This release has some minor changes to the APIs, but big enough that a new major release is in order.
|
2467
2626
|
The biggest change is the new semantics of the #World method. Previously you would call this method
|
@@ -2519,7 +2678,7 @@ http://wiki.github.com/aslakhellesoy/cucumber/using-rake#profiles
|
|
2519
2678
|
- Table and PyString no longer hold status information. Each visitor subclass should store state in @state if needed.
|
2520
2679
|
- \#visit_py_string no longer takes a status argument.
|
2521
2680
|
|
2522
|
-
## [0.2.3](https://github.com/cucumber/cucumber-ruby/compare/v0.2.2...v0.2.3)
|
2681
|
+
## [0.2.3](https://github.com/cucumber/cucumber-ruby/compare/v0.2.2...v0.2.3) (2009-03-30)
|
2523
2682
|
|
2524
2683
|
This release sports 4 updated languages, slightly better help with snippets if you "quote" arguments
|
2525
2684
|
in your steps. Windows/JRuby users can enjoy colours and you get some more sugar with Tables.
|
@@ -2541,7 +2700,7 @@ in your steps. Windows/JRuby users can enjoy colours and you get some more sugar
|
|
2541
2700
|
- Fixed step name after step keyword without space (#265 Aslak Hellesøy)
|
2542
2701
|
- Backtrace is back in HTML reports (Aslak Hellesøy)
|
2543
2702
|
|
2544
|
-
## [0.2.2](https://github.com/cucumber/cucumber-ruby/compare/v0.2.1...v0.2.2)
|
2703
|
+
## [0.2.2](https://github.com/cucumber/cucumber-ruby/compare/v0.2.1...v0.2.2) (2009-03-25)
|
2545
2704
|
|
2546
2705
|
This release includes some minor changes to make Cucumber work with pure Java. Cucumber
|
2547
2706
|
has already worked with Java for a while (using JRuby and step definitions in Ruby),
|
@@ -2550,7 +2709,7 @@ but now you can write step definitions in pure Java!
|
|
2550
2709
|
Check out the Cucumber Java project for more details:
|
2551
2710
|
http://github.com/aslakhellesoy/cucumber_java/tree/master
|
2552
2711
|
|
2553
|
-
## [0.2.1](https://github.com/cucumber/cucumber-ruby/compare/v0.2.0...v0.2.1)
|
2712
|
+
## [0.2.1](https://github.com/cucumber/cucumber-ruby/compare/v0.2.0...v0.2.1) (2009-03-25)
|
2554
2713
|
|
2555
2714
|
This release fixes a few minor bugs and adds a couple of new features.
|
2556
2715
|
|
@@ -2572,7 +2731,7 @@ This release fixes a few minor bugs and adds a couple of new features.
|
|
2572
2731
|
|
2573
2732
|
- -S/--step-definitions option introduced in 0.2.0 is removed. Use --format usage [--dry-run] [--no-color].
|
2574
2733
|
|
2575
|
-
## [0.2.0](https://github.com/cucumber/cucumber-ruby/compare/v0.1.16...v0.2.0)
|
2734
|
+
## [0.2.0](https://github.com/cucumber/cucumber-ruby/compare/v0.1.16...v0.2.0) (2009-03-18)
|
2576
2735
|
|
2577
2736
|
This release sports a bunch of new and exciting features, as well a major rewrite of Cucumber's internals.
|
2578
2737
|
The rewrite was done to address technical debt and to have a code base that is easier to evolve and maintain.
|
@@ -2656,7 +2815,7 @@ for multiline arguments are some of the highlights.
|
|
2656
2815
|
- Pure Ruby features are no longer supported.
|
2657
2816
|
- Remove --color option in autotest. Can be added manually in cucumber.yml (#215 Jean-Michel Garnier)
|
2658
2817
|
|
2659
|
-
## 0.1.16.4
|
2818
|
+
## 0.1.16.4 (2009-01-22)
|
2660
2819
|
|
2661
2820
|
Bugfix release.
|
2662
2821
|
|
@@ -2682,7 +2841,7 @@ to this:
|
|
2682
2841
|
- Better handling of ARGV (#169 David Chelimsky, Ben Mabey)
|
2683
2842
|
- Compatibility with ruby-debug (do ARGV.dup in bin/cucumber so it can restart ruby with same args) (Aslak Hellesøy)
|
2684
2843
|
|
2685
|
-
## [0.1.16](https://github.com/cucumber/cucumber-ruby/compare/v0.1.15...v0.1.16)
|
2844
|
+
## [0.1.16](https://github.com/cucumber/cucumber-ruby/compare/v0.1.15...v0.1.16) (2009-01-18)
|
2686
2845
|
|
2687
2846
|
This is a small bugfix release. The most notable improvement is compatibility with Webrat 0.4. Rails/Webrat users should
|
2688
2847
|
upgrade both Cucumber and Webrat gems.
|
@@ -2700,7 +2859,7 @@ upgrade both Cucumber and Webrat gems.
|
|
2700
2859
|
|
2701
2860
|
### Removed features
|
2702
2861
|
|
2703
|
-
## [0.1.15](https://github.com/cucumber/cucumber-ruby/compare/v0.1.14...v0.1.15)
|
2862
|
+
## [0.1.15](https://github.com/cucumber/cucumber-ruby/compare/v0.1.14...v0.1.15) (2009-01-07)
|
2704
2863
|
|
2705
2864
|
Bugfix release
|
2706
2865
|
|
@@ -2715,7 +2874,7 @@ Bugfix release
|
|
2715
2874
|
- Better quoting of Scenario names in Autotest (Peter Jaros)
|
2716
2875
|
- Added some small workarounds for unicode handling on Windows (Aslak Hellesøy)
|
2717
2876
|
|
2718
|
-
## [0.1.14](https://github.com/cucumber/cucumber-ruby/compare/v0.1.13...v0.1.14)
|
2877
|
+
## [0.1.14](https://github.com/cucumber/cucumber-ruby/compare/v0.1.13...v0.1.14) (2009-01-04)
|
2719
2878
|
|
2720
2879
|
This is the first release of Cucumber that runs on Ruby 1.9. There are still some encoding-related issues
|
2721
2880
|
with Arabic (ar), Japanese (ja) and Simplified Chinese (zh-CN). Patches are welcome. Other than that -
|
@@ -2735,7 +2894,7 @@ a couple of minor bug fixes and polishing.
|
|
2735
2894
|
|
2736
2895
|
- The #binary= method is gone from the Rake task. It will always point to the binary in the current gem. (Aslak Hellesøy)
|
2737
2896
|
|
2738
|
-
## [0.1.13](https://github.com/cucumber/cucumber-ruby/compare/v0.1.12...v0.1.13)
|
2897
|
+
## [0.1.13](https://github.com/cucumber/cucumber-ruby/compare/v0.1.12...v0.1.13) (2008-12-20)
|
2739
2898
|
|
2740
2899
|
It's time for some new features again. Output is now much better since you can use diffing, tweak
|
2741
2900
|
the output colours and get the full --backtrace if you want. Managing your support/\* files became
|
@@ -2772,7 +2931,7 @@ Enjoy!
|
|
2772
2931
|
|
2773
2932
|
### Removed features
|
2774
2933
|
|
2775
|
-
## [0.1.12](https://github.com/cucumber/cucumber-ruby/compare/v0.1.11...v0.1.12)
|
2934
|
+
## [0.1.12](https://github.com/cucumber/cucumber-ruby/compare/v0.1.11...v0.1.12) (2008-12-04)
|
2776
2935
|
|
2777
2936
|
This is the "getting serious with IronRuby release" - largely based on
|
2778
2937
|
"Patrick Gannon":http://www.patrickgannon.net/archive/2008/10/23/bdd-style-feature-tests-using-ironruby-and-rspeccucumber.aspx's
|
@@ -2790,7 +2949,7 @@ blog entry.
|
|
2790
2949
|
|
2791
2950
|
None
|
2792
2951
|
|
2793
|
-
## [0.1.11](https://github.com/cucumber/cucumber-ruby/compare/v0.1.10...v0.1.11)
|
2952
|
+
## [0.1.11](https://github.com/cucumber/cucumber-ruby/compare/v0.1.10...v0.1.11) (2008-12-02)
|
2794
2953
|
|
2795
2954
|
Bugfix release with a couple of minor additional features to the command line options.
|
2796
2955
|
|
@@ -2811,7 +2970,7 @@ Bugfix release with a couple of minor additional features to the command line op
|
|
2811
2970
|
|
2812
2971
|
- The cucumber gem no longer depends on the rspec gem. It must be downloaded manually if RSpec is used. (Jeff Rafter)
|
2813
2972
|
|
2814
|
-
## [0.1.10](https://github.com/cucumber/cucumber-ruby/compare/v0.1.9...v0.1.10)
|
2973
|
+
## [0.1.10](https://github.com/cucumber/cucumber-ruby/compare/v0.1.9...v0.1.10) (2008-11-25)
|
2815
2974
|
|
2816
2975
|
This release mostly has smaller bugfixes. The most significant new feature is how
|
2817
2976
|
line numbers are specified. You can now run multiple features at specific lines numbers like this:
|
@@ -2844,7 +3003,7 @@ This will run foo.feature at line 15 and bar.feature at line 6, 45 and 111.
|
|
2844
3003
|
- Step definition without a block being treated as pending (#64 Joseph Wilk)
|
2845
3004
|
- The --line option has been removed. Use the new file.feature:line format instead.
|
2846
3005
|
|
2847
|
-
## [0.1.9](https://github.com/cucumber/cucumber-ruby/compare/v0.1.8...v0.1.9)
|
3006
|
+
## [0.1.9](https://github.com/cucumber/cucumber-ruby/compare/v0.1.8...v0.1.9) (2008-11-12)
|
2848
3007
|
|
2849
3008
|
With this release Cucumber supports 19 (!) natural languages:
|
2850
3009
|
|
@@ -2928,7 +3087,7 @@ spaces removed too.
|
|
2928
3087
|
|
2929
3088
|
### Removed features
|
2930
3089
|
|
2931
|
-
## [0.1.8](https://github.com/cucumber/cucumber-ruby/compare/v0.1.7...v0.1.8)
|
3090
|
+
## [0.1.8](https://github.com/cucumber/cucumber-ruby/compare/v0.1.7...v0.1.8) (2008-10-18)
|
2932
3091
|
|
2933
3092
|
This release extends the support for tables. PLEASE NOTE THAT TABLES ARE STILL EXPERIMENTAL.
|
2934
3093
|
In previous releases it has been possible to use tables to define "more examples" of a scenario in
|
@@ -3012,7 +3171,7 @@ The step definitions for such multiline steps must define an extra block argumen
|
|
3012
3171
|
|
3013
3172
|
- Added new --out option to make it easier to specify output from Rake and cucumber.yml
|
3014
3173
|
|
3015
|
-
## [0.1.7](https://github.com/cucumber/cucumber-ruby/compare/v0.1.6...v0.1.7)
|
3174
|
+
## [0.1.7](https://github.com/cucumber/cucumber-ruby/compare/v0.1.6...v0.1.7) (2008-10-05)
|
3016
3175
|
|
3017
3176
|
This release fixes a few bugs and adds some new features. The most notable features are:
|
3018
3177
|
|
@@ -3067,6 +3226,6 @@ a plain text step is defined. Not anymore! Cucumber will now output this:
|
|
3067
3226
|
- Added --no-source option to display step definition location next to step text (#26, Joseph Wilk, Aslak Hellesøy)
|
3068
3227
|
- Added more Webrat steps (#25, Tim Glen)
|
3069
3228
|
|
3070
|
-
## [0.1.6](https://github.com/cucumber/cucumber-ruby/compare/f3292f4023a707099d02602b2bd6c4ca3cec6820...v0.1.6)
|
3229
|
+
## [0.1.6](https://github.com/cucumber/cucumber-ruby/compare/f3292f4023a707099d02602b2bd6c4ca3cec6820...v0.1.6) (2008-10-01)
|
3071
3230
|
|
3072
3231
|
First gem release!
|