cucumber 1.2.2 → 1.2.3
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.
- data/{DEVELOPERS.md → CONTRIBUTING.md} +14 -3
- data/Gemfile +1 -1
- data/History.md +132 -126
- data/README.md +2 -2
- data/lib/cucumber/ast/background.rb +2 -2
- data/lib/cucumber/ast/{feature_element.rb → has_steps.rb} +1 -1
- data/lib/cucumber/ast/scenario.rb +2 -5
- data/lib/cucumber/ast/scenario_outline.rb +2 -2
- data/lib/cucumber/formatter/gherkin_formatter_adapter.rb +2 -2
- data/lib/cucumber/platform.rb +1 -1
- data/lib/cucumber/rake/task.rb +1 -2
- data/lib/cucumber/runtime.rb +6 -0
- data/lib/cucumber/wire_support/configuration.rb +16 -6
- data/lib/cucumber/wire_support/connection.rb +8 -3
- data/lib/cucumber/wire_support/wire_exception.rb +2 -2
- data/lib/cucumber/wire_support/wire_language.rb +1 -1
- data/spec/cucumber/rake/forked_spec.rb +1 -14
- data/spec/cucumber/runtime_spec.rb +4 -0
- data/spec/cucumber/wire_support/configuration_spec.rb +1 -1
- data/spec/cucumber/wire_support/wire_exception_spec.rb +2 -2
- data/spec/cucumber/wire_support/wire_language_spec.rb +1 -1
- metadata +7 -7
@@ -1,3 +1,16 @@
|
|
1
|
+
## About to create a new Github Issue?
|
2
|
+
|
3
|
+
We appreciate that. But before you do, please learn our basic rules:
|
4
|
+
|
5
|
+
* This is not a support forum. If you have a question, please go to [The Cukes Google Group](groups.google.com/group/cukes).
|
6
|
+
* Do you have an idea for a new feature? Then don't expect it to be implemented unless you or someone else sends a [pull request](https://help.github.com/articles/using-pull-requests). You might be better to start a discussion on [the google group](groups.google.com/group/cukes).
|
7
|
+
* Reporting a bug? Please tell us:
|
8
|
+
* which version of Cucumber you're using
|
9
|
+
* which version of Ruby you're using.
|
10
|
+
* How to reproduce it. Bugs with a failing test in a [pull request](https://help.github.com/articles/using-pull-requests) get fixed much quicker. Some bugs may never be fixed.
|
11
|
+
* Want to paste some code or output? Put \`\`\` on a line above and below your code/output. See [GFM](https://help.github.com/articles/github-flavored-markdown)'s *Fenced Code Blocks* for details.
|
12
|
+
* We love [pull requests](https://help.github.com/articles/using-pull-requests). But if you don't have a test to go with it we probably won't merge it.
|
13
|
+
|
1
14
|
# Contributing to Cucumber
|
2
15
|
|
3
16
|
This document is a guide for those maintaining Cucumber, and others who would like to submit patches.
|
@@ -20,12 +33,10 @@ This document is a guide for those maintaining Cucumber, and others who would li
|
|
20
33
|
|
21
34
|
## Release Process
|
22
35
|
|
23
|
-
Before you even attempt to do a release, make sure you can log into cukes.info and touch a file in /var/www/cucumber/api/ruby (see gem_tasks/yard.rake). You need to be able to do this in order to upload YARD docs as part of the release.
|
24
|
-
|
25
36
|
* Bump the version number in `lib/cucumber/platform.rb`.
|
26
37
|
* Make sure `History.md` is updated with the upcoming version number, and has entries for all fixes.
|
27
38
|
* No need to add a `History.md` header at this point - this should be done when a new change is made, later.
|
28
|
-
* Make sure you have up-to-date and clean copy of cucumber/cucumber.github.com.git at the same level as cucumber repo
|
39
|
+
* Make sure you have up-to-date and clean copy of cucumber/cucumber.github.com.git at the same level as cucumber repo.
|
29
40
|
|
30
41
|
Now release it
|
31
42
|
|
data/Gemfile
CHANGED
data/History.md
CHANGED
@@ -1,50 +1,56 @@
|
|
1
|
+
## [1.2.3](https://github.com/cucumber/cucumber/compare/v1.2.2...v1.2.3)
|
2
|
+
|
3
|
+
### Bugfixes
|
4
|
+
* Fix problem with rake task for jruby and ruby installed from packages on Ubuntu ([#386](https://github.com/cucumber/cucumber/issues/386), [#388](https://github.com/cucumber/cucumber/issues/388) @y-higuchi)
|
5
|
+
* Fix embedding images in json ([#315](https://github.com/cucumber/cucumber/issues/315) Oleg Sukhodolsky)
|
6
|
+
|
1
7
|
## [1.2.2](https://github.com/cucumber/cucumber/compare/v1.2.1...v1.2.2)
|
2
8
|
|
3
9
|
### New Features
|
4
|
-
* Ruby 2.0.0 support (#377 Matt Wynne & #357 @charliesome)
|
5
|
-
* Capture duration value for json formatter (#329 Rick Beyer)
|
10
|
+
* Ruby 2.0.0 support ([#377](https://github.com/cucumber/cucumber/issues/377) Matt Wynne & [#357](https://github.com/cucumber/cucumber/issues/357) @charliesome)
|
11
|
+
* Capture duration value for json formatter ([#329](https://github.com/cucumber/cucumber/issues/329) Rick Beyer)
|
6
12
|
* Added support for Hindi (hi), although some systems may need to install fonts which support the Devanagari script.
|
7
|
-
* Obey program suffix when invoking bundler (#324 Eric Hodel)
|
13
|
+
* Obey program suffix when invoking bundler ([#324](https://github.com/cucumber/cucumber/issues/324) Eric Hodel)
|
8
14
|
|
9
15
|
### Bugfixes
|
10
|
-
* Fix class loading problems --format option had (#345, #346 @ksylvest)
|
11
|
-
* Exit with failure status when interrupted (#299 @aaronjensen)
|
12
|
-
* Cannot map table headers after table hashes is referenced (#275 @chrisbloom7 / Matt Wynne)
|
13
|
-
* (before|after)_step aren't called when scenario outline's table is processed (#284 Oleg Sukhodolsky)
|
14
|
-
* Raise exception when remote socket end disconnects using wire protocol (#348 @rdammkoehler)
|
15
|
-
* Fix --dry-run option ignored when set via profile (#248 / #255 Igor Afonov)
|
16
|
-
* More clear suggested ruby code for undefined steps (#328 / #331 @martco)
|
17
|
-
* Fix exception in Html formatter with --expand mode and undefined steps (#336 Roberto Decurnex)
|
18
|
-
* Fix Table.diff! problem with :surplus_row => false and interleaved surplus rows (#220)
|
16
|
+
* Fix class loading problems --format option had ([#345](https://github.com/cucumber/cucumber/issues/345), [#346](https://github.com/cucumber/cucumber/issues/346) @ksylvest)
|
17
|
+
* Exit with failure status when interrupted ([#299](https://github.com/cucumber/cucumber/issues/299) @aaronjensen)
|
18
|
+
* Cannot map table headers after table hashes is referenced ([#275](https://github.com/cucumber/cucumber/issues/275) @chrisbloom7 / Matt Wynne)
|
19
|
+
* (before|after)_step aren't called when scenario outline's table is processed ([#284](https://github.com/cucumber/cucumber/issues/284) Oleg Sukhodolsky)
|
20
|
+
* Raise exception when remote socket end disconnects using wire protocol ([#348](https://github.com/cucumber/cucumber/issues/348) @rdammkoehler)
|
21
|
+
* Fix --dry-run option ignored when set via profile ([#248](https://github.com/cucumber/cucumber/issues/248) / [#255](https://github.com/cucumber/cucumber/issues/255) Igor Afonov)
|
22
|
+
* More clear suggested ruby code for undefined steps ([#328](https://github.com/cucumber/cucumber/issues/328) / [#331](https://github.com/cucumber/cucumber/issues/331) @martco)
|
23
|
+
* Fix exception in Html formatter with --expand mode and undefined steps ([#336](https://github.com/cucumber/cucumber/issues/336) Roberto Decurnex)
|
24
|
+
* Fix Table.diff! problem with :surplus_row => false and interleaved surplus rows ([#220](https://github.com/cucumber/cucumber/issues/220))
|
19
25
|
|
20
|
-
## [
|
26
|
+
## [1.2.1](https://github.com/cucumber/cucumber/compare/v1.2.0...v1.2.1)
|
21
27
|
|
22
28
|
### New Features
|
23
29
|
* Updated to gherkin 2.11.0. (Aslak Hellesøy)
|
24
30
|
|
25
|
-
## [
|
31
|
+
## [1.2.0](https://github.com/cucumber/cucumber/compare/v1.1.9...v1.2.0)
|
26
32
|
|
27
33
|
### Bugfixes
|
28
|
-
* Fix backtraces in JRuby (#266 Andrew Kiellor)
|
34
|
+
* Fix backtraces in JRuby ([#266](https://github.com/cucumber/cucumber/issues/266) Andrew Kiellor)
|
29
35
|
|
30
36
|
### New Features
|
31
|
-
* Extracted the PDF formatter into a separate gem. (#241 Matt Wynne)
|
32
|
-
* Remove dependency on term/ansicolor (#43 Joe Fiorini)
|
33
|
-
* Methods for Step Definitions (#168 Giles Alexander)
|
34
|
-
* Add file:line to step events in formatter API (#181 Roman Chernyatchik)
|
35
|
-
* Collapsible backgrounds in HTML formatter (#182 Niklas H)
|
36
|
-
* Slightly cleaner regexp suggestions (#237 meyering)
|
37
|
-
* Allow for --no-drb command-line option (#252 Chase Stubblefield)
|
38
|
-
* Add misplaced_col option when diffing tables (#212 Steve Richert)
|
39
|
-
* JUnit formatter, classname contains only the feature's name (#193 @litvinok)
|
40
|
-
* Include the output $stderr and $stdout in JUnit formatted XML (#259 R. Tyler Croy)
|
37
|
+
* Extracted the PDF formatter into a separate gem. ([#241](https://github.com/cucumber/cucumber/issues/241) Matt Wynne)
|
38
|
+
* Remove dependency on term/ansicolor ([#43](https://github.com/cucumber/cucumber/issues/43) Joe Fiorini)
|
39
|
+
* Methods for Step Definitions ([#168](https://github.com/cucumber/cucumber/issues/168) Giles Alexander)
|
40
|
+
* Add file:line to step events in formatter API ([#181](https://github.com/cucumber/cucumber/issues/181) Roman Chernyatchik)
|
41
|
+
* Collapsible backgrounds in HTML formatter ([#182](https://github.com/cucumber/cucumber/issues/182) Niklas H)
|
42
|
+
* Slightly cleaner regexp suggestions ([#237](https://github.com/cucumber/cucumber/issues/237) meyering)
|
43
|
+
* Allow for --no-drb command-line option ([#252](https://github.com/cucumber/cucumber/issues/252) Chase Stubblefield)
|
44
|
+
* Add misplaced_col option when diffing tables ([#212](https://github.com/cucumber/cucumber/issues/212) Steve Richert)
|
45
|
+
* JUnit formatter, classname contains only the feature's name ([#193](https://github.com/cucumber/cucumber/issues/193) @litvinok)
|
46
|
+
* Include the output $stderr and $stdout in JUnit formatted XML ([#259](https://github.com/cucumber/cucumber/issues/259) R. Tyler Croy)
|
41
47
|
|
42
|
-
## [
|
48
|
+
## [1.1.9](https://github.com/cucumber/cucumber/compare/v1.1.8...v1.1.9)
|
43
49
|
|
44
50
|
### Bugfixes
|
45
51
|
* Removed deprecation warning for `source_tag_names`. It's not deprecated anymore. (Aslak Hellesøy)
|
46
52
|
|
47
|
-
## [
|
53
|
+
## [1.1.8](https://github.com/cucumber/cucumber/compare/v1.1.7...v1.1.8)
|
48
54
|
|
49
55
|
### Bugfixes
|
50
56
|
* Column mapping dangerously applied twice to the same cell! ([#202](https://github.com/cucumber/cucumber/issues/202), [#208](https://github.com/cucumber/cucumber/pull/208) Brian Dunn)
|
@@ -52,13 +58,13 @@
|
|
52
58
|
### New Features
|
53
59
|
* Don't pollute RbWorld with the AnsiEscapes methods ([#219](https://github.com/cucumber/cucumber/issues/219), [#221](https://github.com/cucumber/cucumber/pull/221) Ben Woosley)
|
54
60
|
|
55
|
-
## [
|
61
|
+
## [1.1.7](https://github.com/cucumber/cucumber/compare/v1.1.6...v1.1.7)
|
56
62
|
|
57
63
|
### Bugfixes
|
58
64
|
|
59
65
|
* Finish off backwards compatability fix for Capybara ([#229](https://github.com/cucumber/cucumber/pull/229) Cezary Baginski)
|
60
66
|
|
61
|
-
## [
|
67
|
+
## [1.1.6](https://github.com/cucumber/cucumber/compare/v1.1.5...v1.1.6)
|
62
68
|
|
63
69
|
### New features
|
64
70
|
|
@@ -71,7 +77,7 @@
|
|
71
77
|
* After some infantile bickering about a trivial bug that any hipster startup ruby programmer could have circumvented by using a fork with a fix,
|
72
78
|
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/pull/203) Jon Merrifield)
|
73
79
|
|
74
|
-
## [
|
80
|
+
## [1.1.5](https://github.com/cucumber/cucumber/compare/v1.1.4...v1.1.5)
|
75
81
|
|
76
82
|
### New Features
|
77
83
|
|
@@ -81,13 +87,13 @@
|
|
81
87
|
|
82
88
|
* Background fails, but build succeeds ([#205](https://github.com/cucumber/cucumber/issues/205) tcwitte)
|
83
89
|
|
84
|
-
## [
|
90
|
+
## [1.1.4](https://github.com/cucumber/cucumber/compare/v1.1.3...v1.1.4)
|
85
91
|
|
86
92
|
### New Features
|
87
93
|
|
88
94
|
* Upgrade to Gherkin 2.7.1 (Aslak Hellesøy)
|
89
95
|
|
90
|
-
## [
|
96
|
+
## [1.1.3](https://github.com/cucumber/cucumber/compare/v1.1.2...v1.1.3)
|
91
97
|
|
92
98
|
### New Features
|
93
99
|
|
@@ -101,7 +107,7 @@
|
|
101
107
|
* Retry when feature_element returns failed ([#172](https://github.com/cucumber/cucumber/pull/172) Charles Finkel)
|
102
108
|
* Rerun formatter output does not include failing scenario outline examples ([#57](https://github.com/cucumber/cucumber/issues/57) Jan Brauer)
|
103
109
|
|
104
|
-
## [
|
110
|
+
## [1.1.2](https://github.com/cucumber/cucumber/compare/v1.1.1...v1.1.2)
|
105
111
|
|
106
112
|
### Changed features
|
107
113
|
|
@@ -122,23 +128,23 @@ New format:
|
|
122
128
|
|
123
129
|
Also see [Gherkin 2.6.0 History](https://github.com/cucumber/gherkin/blob/master/History.md) for info about new `id` and `uri` elements in the JSON.
|
124
130
|
|
125
|
-
## [
|
131
|
+
## [1.1.0](https://github.com/cucumber/cucumber/compare/v1.0.6...v1.1.0)
|
126
132
|
|
127
133
|
### Changed features
|
128
134
|
* The JSON formatter output has changed. See [Gherkin 2.5.0 History](https://github.com/cucumber/gherkin/blob/master/History.md) (Aslak Hellesøy)
|
129
135
|
|
130
|
-
## [
|
136
|
+
## [1.0.6](https://github.com/cucumber/cucumber/compare/v1.0.5...v1.0.6)
|
131
137
|
|
132
138
|
### Bugfixes
|
133
139
|
* Work around rubygems/yaml utter retardedness ([#136](https://github.com/cucumber/cucumber/issues/136) Aslak Hellesøy)
|
134
140
|
|
135
|
-
## [
|
141
|
+
## [1.0.5](https://github.com/cucumber/cucumber/compare/v1.0.4...v1.0.5)
|
136
142
|
|
137
143
|
### Bugfixes
|
138
144
|
|
139
145
|
* 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/issues/136) Aslak Hellesøy)
|
140
146
|
|
141
|
-
## [
|
147
|
+
## [1.0.4](https://github.com/cucumber/cucumber/compare/v1.0.3...v1.0.4)
|
142
148
|
|
143
149
|
### Bugfixes
|
144
150
|
|
@@ -148,7 +154,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/gherkin/blob/master
|
|
148
154
|
* Patched unmatched message in HTML formatter. (Nikita)
|
149
155
|
* Overriding a method that causes a NoMethodError when a Before hook is called on a feature run that has no scenarios. (ccthiel)
|
150
156
|
|
151
|
-
## [
|
157
|
+
## [1.0.3](https://github.com/cucumber/cucumber/compare/v1.0.2...v1.0.3)
|
152
158
|
|
153
159
|
### Bugfixes
|
154
160
|
* Do not escape the replaced entity ([#126](https://github.com/cucumber/cucumber/pull/126) Jonathan Tron)
|
@@ -156,7 +162,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/gherkin/blob/master
|
|
156
162
|
### New Features
|
157
163
|
* DocStrings now have a content_type ([#132](https://github.com/cucumber/cucumber/issues/132) Matt Wynne)
|
158
164
|
|
159
|
-
## [
|
165
|
+
## [1.0.2](https://github.com/cucumber/cucumber/compare/v1.0.1...v1.0.2)
|
160
166
|
|
161
167
|
### Bugfixes
|
162
168
|
* Cucumber 1.0.1 breaks cuke4duke ([#104](https://github.com/cucumber/cucumber/issues/104) Aslak Hellesøy)
|
@@ -167,7 +173,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/gherkin/blob/master
|
|
167
173
|
### Changes Features
|
168
174
|
* --no-source also excludes location from the summary. (Aslak Hellesøy)
|
169
175
|
|
170
|
-
## [
|
176
|
+
## [1.0.1](https://github.com/cucumber/cucumber/compare/v1.0.0...v1.0.1)
|
171
177
|
|
172
178
|
### Bugfixes
|
173
179
|
* Removed extra colons emitted by rerun formatter ([#99](https://github.com/cucumber/cucumber/pull/99) Juan Manuel Barreneche)
|
@@ -179,7 +185,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/gherkin/blob/master
|
|
179
185
|
### New Features
|
180
186
|
* If the CUCUMBER_TRUNCATE_OUTPUT environment variable is set, lines will be truncated. Used by the Cucumber book. (Aslak Hellesøy)
|
181
187
|
|
182
|
-
## [
|
188
|
+
## [1.0.0](https://github.com/cucumber/cucumber/compare/v0.10.6...v1.0.0)
|
183
189
|
|
184
190
|
Yipeeeeeeeee!
|
185
191
|
|
@@ -188,7 +194,7 @@ Yipeeeeeeeee!
|
|
188
194
|
* Rake task exits with an error if rcov is true and we're on Ruby 1.9.x (Aslak Hellesøy)
|
189
195
|
* Started implementation of cucumber-features (Mike Sassak, Julien Biezemans, Aslak Hellesøy)
|
190
196
|
|
191
|
-
## [
|
197
|
+
## [0.10.6](https://github.com/cucumber/cucumber/compare/v0.10.5...v0.10.6)
|
192
198
|
|
193
199
|
### New Features
|
194
200
|
* API docs at http://cukes.info/cucumber/api/ruby/latest/
|
@@ -196,7 +202,7 @@ Yipeeeeeeeee!
|
|
196
202
|
### Bugfixes
|
197
203
|
* Fixed a regression in the HTML formatter's #embed implementation (#77 Aslak Hellesøy)
|
198
204
|
|
199
|
-
## [
|
205
|
+
## [0.10.5](https://github.com/cucumber/cucumber/compare/v0.10.3...v0.10.5)
|
200
206
|
|
201
207
|
(0.10.4 was forgotten!)
|
202
208
|
|
@@ -211,7 +217,7 @@ Yipeeeeeeeee!
|
|
211
217
|
* Fix for Gem.available? deprecation warning (#75 Jake Benilov)
|
212
218
|
* Update URLs to reflect Cucumber's new location on Github (Jake Benilov)
|
213
219
|
|
214
|
-
## [
|
220
|
+
## [0.10.3](https://github.com/cucumber/cucumber/compare/v0.10.2...v0.10.3)
|
215
221
|
|
216
222
|
### New Features
|
217
223
|
* Better JUnit formatter support for sub directories and scenario outlines (#59 Matt Simpson)
|
@@ -220,12 +226,12 @@ Yipeeeeeeeee!
|
|
220
226
|
* Fix Table#rows cell ordering in ruby 1.8. (#47_github Brian Dunn)
|
221
227
|
* JUnit Formatter: record skipped/pending/undefined scenario results (#655 meeee)
|
222
228
|
|
223
|
-
## [
|
229
|
+
## [0.10.2](https://github.com/cucumber/cucumber/compare/v0.10.1...v0.10.2)
|
224
230
|
|
225
231
|
### Bugfixes
|
226
232
|
* Neuter both MiniTest::Unit and Test::Unit's overzealous test runners. (Aslak Hellesøy)
|
227
233
|
|
228
|
-
## [
|
234
|
+
## [0.10.1](https://github.com/cucumber/cucumber/compare/v0.10.0...v0.10.1)
|
229
235
|
|
230
236
|
### New Features
|
231
237
|
* The #embed method can take a 3rd optional label argument. In the HTML report that's used for the link title. (Pat Leamon)
|
@@ -245,7 +251,7 @@ Yipeeeeeeeee!
|
|
245
251
|
* Features files are sorted before they are executed, giving consistent results across different OSes (Guewen Baconnier)
|
246
252
|
* Remove duplicate lines in backtraces in the HTML report (Jari Bakken)
|
247
253
|
|
248
|
-
## [
|
254
|
+
## [0.10.0](https://github.com/cucumber/cucumber/compare/v0.9.4...v0.10.0)
|
249
255
|
|
250
256
|
We're bumping the minor number in this release because there are some incompatible changes in the JSON support.
|
251
257
|
This should not affect users. The major new feature in this release is ANSICON support for Windows users.
|
@@ -261,7 +267,7 @@ This should not affect users. The major new feature in this release is ANSICON s
|
|
261
267
|
### Changed Features
|
262
268
|
* JSON output now contains optional "match", "result" and "embeddings" elements underneath each step. (Aslak Hellesøy)
|
263
269
|
|
264
|
-
## [
|
270
|
+
## [0.9.4](https://github.com/cucumber/cucumber/compare/v0.9.3...v0.9.4)
|
265
271
|
|
266
272
|
### Bugfixes
|
267
273
|
* Superfluous space after step_keyword value in snippet_text message (#679 Aslak Hellesøy)
|
@@ -270,7 +276,7 @@ This should not affect users. The major new feature in this release is ANSICON s
|
|
270
276
|
* Cucumber 0.9.3 prevents Test::Unit from running (#677 Aslak Hellesøy)
|
271
277
|
* Performance degradation when running feature files with over 1000 steps (#675 Dimitri Geshef)
|
272
278
|
|
273
|
-
## [
|
279
|
+
## [0.9.3](https://github.com/cucumber/cucumber/compare/v0.9.2...v0.9.3)
|
274
280
|
|
275
281
|
### Bugfixes
|
276
282
|
* Better JSON representation of Regexps (Aslak Hellesøy)
|
@@ -278,17 +284,17 @@ This should not affect users. The major new feature in this release is ANSICON s
|
|
278
284
|
* Prevent MiniTest::Unit#autorun from running in at_exit hook. (Aslak Hellesøy)
|
279
285
|
* Fixed incorect --help for --strict. It fails on both pending and undefined. (Aslak Hellesøy)
|
280
286
|
|
281
|
-
## [
|
287
|
+
## [0.9.2](https://github.com/cucumber/cucumber/compare/v0.9.1...v0.9.2)
|
282
288
|
|
283
289
|
### Bugfixes
|
284
290
|
* Too many open files - getcwd (#666 Aslak Hellesøy)
|
285
291
|
|
286
|
-
## [
|
292
|
+
## [0.9.1](https://github.com/cucumber/cucumber/compare/v0.9.0...v0.9.1)
|
287
293
|
|
288
294
|
### Bugfixes
|
289
295
|
* Just a minor internal change to make Cuke4Duke happy. (Aslak Hellesøy)
|
290
296
|
|
291
|
-
## [
|
297
|
+
## [0.9.0](https://github.com/cucumber/cucumber/compare/v0.8.5...v0.9.0)
|
292
298
|
|
293
299
|
Maintenance release for the new release of Gherkin 2.2.3.
|
294
300
|
|
@@ -306,13 +312,13 @@ Maintenance release for the new release of Gherkin 2.2.3.
|
|
306
312
|
### Internal changes
|
307
313
|
* Big refactoring of StepMother (Matt Wynne)
|
308
314
|
|
309
|
-
## [
|
315
|
+
## [0.8.5](https://github.com/cucumber/cucumber/compare/v0.8.4...v0.8.5)
|
310
316
|
|
311
317
|
### Bugfixes
|
312
318
|
* Location of stepdefs outside the project (in gems) are reported incorrectly. (#583 Aslak Hellesøy)
|
313
319
|
* Cucumber::Rake::Task uses 'bundle exec' when using bundler (#626 John Firebaugh)
|
314
320
|
|
315
|
-
## [
|
321
|
+
## [0.8.4](https://github.com/cucumber/cucumber/compare/v0.8.3...v0.8.4)
|
316
322
|
|
317
323
|
### Bugfixes
|
318
324
|
* Fix "Errno::EADDRNOTAVAIL" errors that may be received with spork on Snow Leopard. (Lucas Mundim)
|
@@ -321,14 +327,14 @@ Maintenance release for the new release of Gherkin 2.2.3.
|
|
321
327
|
* Detect limit for negative tags (#636 Aslak Hellesøy)
|
322
328
|
* Support for RSpec 2 doubles (mocks and stubs) (Aslak Hellesøy)
|
323
329
|
|
324
|
-
## [
|
330
|
+
## [0.8.3](https://github.com/cucumber/cucumber/compare/v0.8.2...v0.8.3)
|
325
331
|
|
326
332
|
Just a quick bugfix release.
|
327
333
|
|
328
334
|
### Bugfixes
|
329
335
|
* Scenario outlines that fail with exception exit process (Aslak Hellesøy)
|
330
336
|
|
331
|
-
## [
|
337
|
+
## [0.8.2](https://github.com/cucumber/cucumber/compare/v0.8.1...v0.8.2)
|
332
338
|
|
333
339
|
Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
334
340
|
|
@@ -341,7 +347,7 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
341
347
|
### New Features
|
342
348
|
* JavaScript to Hide/Expand Scenarios in HTML report (#621 stkenned)
|
343
349
|
|
344
|
-
## [
|
350
|
+
## [0.8.1](https://github.com/cucumber/cucumber/compare/v0.8.0...v0.8.1)
|
345
351
|
|
346
352
|
### Bufixes
|
347
353
|
* generate test report fails: ast/outline_table.rb fails in status() (#615 Aslak Hellesøy)
|
@@ -349,7 +355,7 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
349
355
|
### New Features
|
350
356
|
* Undefined steps with integers (Given 3 cukes) will generate snippets like (Given /(\d+) cukes/). (Aslak Hellesøy)
|
351
357
|
|
352
|
-
## [
|
358
|
+
## [0.8.0](https://github.com/cucumber/cucumber/compare/v0.7.3...v0.8.0)
|
353
359
|
|
354
360
|
### Bugfixes
|
355
361
|
* Require profile option causes a NoMethodError for Cucumber with JRuby (#601 John Firebaugh)
|
@@ -368,18 +374,18 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
368
374
|
* Ruby snippets will use "([^"]*)" instead of "([^\"]*)"$/ - wasn't properly fixed in 0.7.1. (Aslak Hellesøy)
|
369
375
|
* Preserve the order features files are passed and use this for execution order (#617 Joseph Wilk)
|
370
376
|
|
371
|
-
## [
|
377
|
+
## [0.7.3](https://github.com/cucumber/cucumber/compare/v0.7.2...v0.7.3)
|
372
378
|
|
373
379
|
### New Features
|
374
380
|
* Table cells can now contain escaped bars - \| and escaped backslashes - \\. (Gregory Hnatiuk, Aslak Hellesøy)
|
375
381
|
* Added support for Around hooks. (#605 John Firebaugh)
|
376
382
|
|
377
|
-
## [
|
383
|
+
## [0.7.2](https://github.com/cucumber/cucumber/compare/v0.7.1...v0.7.2)
|
378
384
|
|
379
385
|
### Bugfixes
|
380
386
|
* REALLY add backwards compatibility fix (with deprecation warning) for legacy 0.6.4 formatters. (Aslak Hellesøy)
|
381
387
|
|
382
|
-
## [
|
388
|
+
## [0.7.1](https://github.com/cucumber/cucumber/compare/v0.7.0...v0.7.1)
|
383
389
|
|
384
390
|
### Bugfixes
|
385
391
|
* Add backwards compatibility fix (with deprecation warning) for legacy 0.6.4 formatters. (Aslak Hellesøy)
|
@@ -387,29 +393,29 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
387
393
|
### Changed Features
|
388
394
|
* Ruby and Javascript snippets will use "([^"]*)" instead of "([^\"]*)"$/ (Aslak Hellesøy)
|
389
395
|
|
390
|
-
## [
|
396
|
+
## [0.7.0](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.8...v0.7.0)
|
391
397
|
|
392
398
|
This release is an important milestone for Cucumber. A new parser (the gherkin gem) parses feature
|
393
399
|
files 50-100 times faster than with 0.6.x and previous releases. Make sure you read the upgrade
|
394
400
|
instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
395
401
|
|
396
|
-
## [
|
402
|
+
## [0.7.0.beta.8](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.7...v0.7.0.beta.8)
|
397
403
|
|
398
404
|
### Bugfixes
|
399
405
|
* Inconsistent order of execution Background and Before in 0.7.0.beta.2 (#600 Mike Sassak)
|
400
406
|
* Make sure both lexing and parsing errors are captured and reported with line number (Gregory Hnatiuk)
|
401
407
|
|
402
|
-
## [
|
408
|
+
## [0.7.0.beta.7](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.6...v0.7.0.beta.7)
|
403
409
|
|
404
410
|
### Bugfixes
|
405
411
|
* 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)
|
406
412
|
|
407
|
-
## [
|
413
|
+
## [0.7.0.beta.6](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.5...v0.7.0.beta.6)
|
408
414
|
|
409
415
|
### Bugfixes
|
410
416
|
* Fixed a small regression with pystrings and calling steps from stepdefs, introduced in a previous beta. (Aslak Hellesøy)
|
411
417
|
|
412
|
-
## [
|
418
|
+
## [0.7.0.beta.5](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.4...v0.7.0.beta.5)
|
413
419
|
|
414
420
|
### New Features
|
415
421
|
* Support RSpec 2. (RSpec >= 1.2.4 is still supported). (Aslak Hellesøy, Ryan Bigg)
|
@@ -417,7 +423,7 @@ instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
|
417
423
|
### Removed features
|
418
424
|
* No more support for RSpec <= 1.2.3. (Aslak Hellesøy)
|
419
425
|
|
420
|
-
## [
|
426
|
+
## [0.7.0.beta.4](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.3...v0.7.0.beta.4)
|
421
427
|
|
422
428
|
### New Features
|
423
429
|
* New, experimental V8 javascript support - step definitions in Javascript! (Joseph Wilk)
|
@@ -425,17 +431,17 @@ instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
|
425
431
|
### Bugfixes
|
426
432
|
* Gherkin is loaded via rubygems if it can't be found on the $LOAD_PATH. (Aslak Hellesøy)
|
427
433
|
|
428
|
-
## [
|
434
|
+
## [0.7.0.beta.3](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.2...v0.7.0.beta.3)
|
429
435
|
|
430
436
|
### Changed Features
|
431
437
|
* 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)
|
432
438
|
|
433
|
-
## [
|
439
|
+
## [0.7.0.beta.2](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.1...v0.7.0.beta.2)
|
434
440
|
|
435
441
|
### New Features
|
436
442
|
* Depend on Gherkin 1.0.18, which has some bugfixes. (Aslak Hellesøy)
|
437
443
|
|
438
|
-
## [
|
444
|
+
## [0.7.0.beta.1](https://github.com/cucumber/cucumber/compare/v0.6.4...v0.7.0.beta.1)
|
439
445
|
|
440
446
|
Treetop is gone and replaced with Ragel. The new Ragel parser lives in the gherkin gem.
|
441
447
|
Parse times are up to 100 times faster.
|
@@ -446,7 +452,7 @@ Parse times are up to 100 times faster.
|
|
446
452
|
### Changed Features
|
447
453
|
* New i18n translations now have to be contributed to the gherkin project.
|
448
454
|
|
449
|
-
## [
|
455
|
+
## [0.6.4](https://github.com/cucumber/cucumber/compare/v0.6.3...v0.6.4)
|
450
456
|
|
451
457
|
### Bugfixes
|
452
458
|
* Better handling of --guess with optional capture groups (Tim Felgentreff)
|
@@ -467,7 +473,7 @@ Parse times are up to 100 times faster.
|
|
467
473
|
* Switced to ISO 639-1 (language) and ISO 3166 alpha-2 (region - if applicable). Applies to Catalan,
|
468
474
|
Swedish, Welsh, Romanian and Serbian. (Aslak Hellesøy)
|
469
475
|
|
470
|
-
## [
|
476
|
+
## [0.6.3](https://github.com/cucumber/cucumber/compare/v0.6.2...v0.6.3)
|
471
477
|
|
472
478
|
### Bugfixes
|
473
479
|
* Split arguments in cucumber.yml with shellwords. Example: myprofile: --out="Features report.html" (Nathaniel Haas)
|
@@ -486,7 +492,7 @@ Parse times are up to 100 times faster.
|
|
486
492
|
* Add tags to begin/end scenario messages on wire protocol to support tagged hooks (#571 Matt Wynne)
|
487
493
|
* Default timeouts to 120s for invoke, begin_scenario and end_scenario messages in wire protocol (#572 Matt Wynne)
|
488
494
|
|
489
|
-
## [
|
495
|
+
## [0.6.2](https://github.com/cucumber/cucumber/compare/v0.6.1...v0.6.2)
|
490
496
|
|
491
497
|
### Bugfixes
|
492
498
|
* Update --help for --tags which was out of date. (Aslak Hellesøy)
|
@@ -503,12 +509,12 @@ Parse times are up to 100 times faster.
|
|
503
509
|
### Removed features
|
504
510
|
* element_at and table_at have been removed. Use tableish in cucumber-rails instead. (Aslak Hellesœy)
|
505
511
|
|
506
|
-
## [
|
512
|
+
## [0.6.1](https://github.com/cucumber/cucumber/compare/v0.6.0...v0.6.1)
|
507
513
|
|
508
514
|
### Bugfixes
|
509
515
|
* Fixed broken console handling on Windows/JRuby that was introduced in 0.6.0. (Aslak Hellesøy)
|
510
516
|
|
511
|
-
## [
|
517
|
+
## [0.6.0](https://github.com/cucumber/cucumber/compare/v0.5.3...v0.6.0)
|
512
518
|
|
513
519
|
Bumping to 0.6.0 for this release since we're breaking backwards compatibility with tags.
|
514
520
|
|
@@ -533,14 +539,14 @@ Bumping to 0.6.0 for this release since we're breaking backwards compatibility w
|
|
533
539
|
* All features (except 4) pass on 1.9.2 (but not on 1.9.1) (Aslak Hellesøy)
|
534
540
|
* Add missing require statement in rerun formatter which broke RubyMine (Noah Sussman)
|
535
541
|
|
536
|
-
## [
|
542
|
+
## [0.5.3](https://github.com/cucumber/cucumber/compare/v0.5.2...v0.5.3)
|
537
543
|
|
538
544
|
Another small release today to please a sister project. This time Cuke4Nuke.
|
539
545
|
|
540
546
|
### New Features
|
541
547
|
* Simplified wire protocol to mostly use success / fail responses (Matt Wynne)
|
542
548
|
|
543
|
-
## [
|
549
|
+
## [0.5.2](https://github.com/cucumber/cucumber/compare/v0.5.1...v0.5.2)
|
544
550
|
|
545
551
|
### New Features
|
546
552
|
* On JRuby/Cuke4Duke, --require DIR will put DIR on the $CLASSPATH, making it easier to load step def classes (Aslak Hellesøy)
|
@@ -550,14 +556,14 @@ Another small release today to please a sister project. This time Cuke4Nuke.
|
|
550
556
|
* Add #embed back to html formatter (#547 Brandon Faloona)
|
551
557
|
* Refactored wire protocol code and added configurable timeout to allow for long running step definitions. (#546 Matt Wynne)
|
552
558
|
|
553
|
-
## [
|
559
|
+
## [0.5.1](https://github.com/cucumber/cucumber/compare/v0.5.0...v0.5.1)
|
554
560
|
|
555
561
|
Small bugfix release.
|
556
562
|
|
557
563
|
### Bugfixes
|
558
564
|
* Replaced dependency on json gem with an error message, so that the cucumber gem installs on JRuby. (Aslak Hellesøy)
|
559
565
|
|
560
|
-
## [
|
566
|
+
## [0.5.0](https://github.com/cucumber/cucumber/compare/v0.4.4...v0.5.0)
|
561
567
|
|
562
568
|
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.
|
563
569
|
Please see History.txt in cucumber-rails for details about what's new on the Rails side.
|
@@ -588,7 +594,7 @@ Please see History.txt in cucumber-rails for details about what's new on the Rai
|
|
588
594
|
* All Rails-related code is in a separate gem: cucumber-rails. Install that if you're working with Rails. (#483 Aslak Hellesøy)
|
589
595
|
* --language is removed: http://wiki.github.com/aslakhellesoy/cucumber/spoken-languages (Aslak Hellesøy)
|
590
596
|
|
591
|
-
## [
|
597
|
+
## [0.4.4](https://github.com/cucumber/cucumber/compare/v0.4.3...v0.4.4)
|
592
598
|
|
593
599
|
What a bad day to make a release, but here goes.
|
594
600
|
|
@@ -613,7 +619,7 @@ What a bad day to make a release, but here goes.
|
|
613
619
|
* $cucumber_interrupted is now Cucumber.wants_to_quit - avoid global variable, which gives warnings. (Aslak Hellesøy)
|
614
620
|
* Examples keyword without a colon is deprecated loudly. Gherkin will not recognize it at all. (Gherkin #30 Mike Sassak)
|
615
621
|
|
616
|
-
## [
|
622
|
+
## [0.4.3](https://github.com/cucumber/cucumber/compare/v0.4.2...v0.4.3)
|
617
623
|
|
618
624
|
The exciting thing about this release is that the wire protocol is starting to take shape. This means you can
|
619
625
|
now use Cucumber with .NET - writing step definitions in C#. And this is without having to use IronRuby at all!
|
@@ -642,11 +648,11 @@ As usual there are several small features and bug fixes.
|
|
642
648
|
* Better Danish translation (Thorbjørn Ravn Andersen)
|
643
649
|
|
644
650
|
|
645
|
-
## [
|
651
|
+
## [0.4.2](https://github.com/cucumber/cucumber/compare/v0.4.1...v0.4.2)
|
646
652
|
|
647
653
|
Bugfix release. The 0.4.1 release was hosed when switching from Hoe to Jeweler.
|
648
654
|
|
649
|
-
## [
|
655
|
+
## [0.4.1](https://github.com/cucumber/cucumber/compare/v0.4.0...v0.4.1)
|
650
656
|
|
651
657
|
This is mostly a bugfix release. Some of Cucumber's own features have been fixed so they pass on more platforms,
|
652
658
|
making it easier for people to contribute. The README.txt also describes how to get up and running with the
|
@@ -673,7 +679,7 @@ development environment.
|
|
673
679
|
* Added StepMother#invoke(step_name, multiline_argument=nil) - needed by cuke4duke ticket #26 (Aslak Hellesøy)
|
674
680
|
* StepDefinitionMethods is gone.
|
675
681
|
|
676
|
-
## [
|
682
|
+
## [0.4.0](https://github.com/cucumber/cucumber/compare/v0.3.104...v0.4.0)
|
677
683
|
|
678
684
|
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
|
679
685
|
went nuts and a lot of great contributions came in. Some of those broke backwards compatibility, and we decided it would be
|
@@ -720,7 +726,7 @@ that will give you more information so you can solve any problems. If not, just
|
|
720
726
|
* Better backtraces for Ruby 1.8.7. (Jakob Skov-Pedersen)
|
721
727
|
* String step definitions ( Given 'I have $number cucumbers' ) are escaped before being turned into regular expressions. (David Waite)
|
722
728
|
|
723
|
-
## [
|
729
|
+
## [0.3.104](https://github.com/cucumber/cucumber/compare/v0.3.103...v0.3.104)
|
724
730
|
|
725
731
|
This release has some minor changes to the command line and formatters. The biggest change is internally, paving
|
726
732
|
the way for more programming language support in Cuke4Duke, which now supports step definitions written in Java, Scala,
|
@@ -745,7 +751,7 @@ Groovy, Clojure and Javascript!
|
|
745
751
|
* The steps formatter has been renamed to stepdefs formatter. (Aslak Hellesøy)
|
746
752
|
* The internal programming language API has changed, giving more power to the implementation. See #428. (Aslak Hellesøy)
|
747
753
|
|
748
|
-
## [
|
754
|
+
## [0.3.103](https://github.com/cucumber/cucumber/compare/v0.3.102...v0.3.103)
|
749
755
|
|
750
756
|
This release gives you back some of the control over the Rails environment that was accidentally taken away from you in the
|
751
757
|
previous release.
|
@@ -763,7 +769,7 @@ Using this release on a Rails project requires a rerun of script/generate cucumb
|
|
763
769
|
### Changed Features
|
764
770
|
* The Formatter API has completely changed. Formatters are no longer a double-dispacth visitor - just a single-dispatch listener (#438 Matt Wynne)
|
765
771
|
|
766
|
-
## [
|
772
|
+
## [0.3.102](https://github.com/cucumber/cucumber/compare/v0.3.101...v0.3.102)
|
767
773
|
|
768
774
|
This release has some changes in the Rails support, so make sure you run "script/generate cucumber" after you upgrade.
|
769
775
|
Other noteworthy new features are improved Hook, tags and Transform support, and as always - several smaller bug fixes.
|
@@ -791,7 +797,7 @@ Other noteworthy new features are improved Hook, tags and Transform support, and
|
|
791
797
|
* The Cucumber::Rails.bypass_rescue no longer exists. Errors will always bubble up, unless you use the new @allow_rescue tag. (Aslak Hellesøy)
|
792
798
|
* The Cucumber::Rails.use_transactional_fixtures no longer exists. Transactional fixtures are always enabled for the cucumber environment. (Aslak Hellesøy)
|
793
799
|
|
794
|
-
## [
|
800
|
+
## [0.3.101](https://github.com/cucumber/cucumber/compare/v0.3.100...v0.3.101)
|
795
801
|
|
796
802
|
Two exciting things in this release. Step Argument Transforms and a PDF formatter you can use to send
|
797
803
|
your features to your customer for review!
|
@@ -804,7 +810,7 @@ your features to your customer for review!
|
|
804
810
|
* Adding webrat steps for asserting content does or does not exist within a particular element
|
805
811
|
(using webrat's within method) (Kieran Pilkington)
|
806
812
|
|
807
|
-
## [
|
813
|
+
## [0.3.100](https://github.com/cucumber/cucumber/compare/v0.3.99...v0.3.100)
|
808
814
|
|
809
815
|
The JavaZone release!
|
810
816
|
|
@@ -816,7 +822,7 @@ The JavaZone release!
|
|
816
822
|
* Backtraces on JRuby are handled in a cleaner way when the exception comes from Java (NativeException). (Aslak Hellesøy)
|
817
823
|
* When exceptions occur in a Before block the rest of the scenario is now skipped (#331 Matt Wynne)
|
818
824
|
|
819
|
-
## [
|
825
|
+
## [0.3.99](https://github.com/cucumber/cucumber/compare/v0.3.98...v0.3.99)
|
820
826
|
|
821
827
|
### New Features
|
822
828
|
* Support for Croatian (Bkrsta)
|
@@ -825,7 +831,7 @@ The JavaZone release!
|
|
825
831
|
* New AfterConfiguration hook added; a block can be specified that takes Cucumber::Cli::Configuration (#423 Brent Snook)
|
826
832
|
* Cucumber::Cli::Configuration#feature_dirs and #out_stream exposed as public attributes so that they may be used in AfterConfiguration hook (#423 Brent Snook)
|
827
833
|
|
828
|
-
## [
|
834
|
+
## [0.3.98](https://github.com/cucumber/cucumber/compare/v0.3.97...v0.3.98)
|
829
835
|
|
830
836
|
Just a small release to help Cuke4Duke, which will be presented at Agile2009
|
831
837
|
in 2 days.
|
@@ -834,7 +840,7 @@ in 2 days.
|
|
834
840
|
* Backtrace filtering now happens in StepInvocation class, meaning other languages (Cuke4Duke) can get backtraces stripped. (Aslak Hellesøy)
|
835
841
|
* Cucumber::Ast::Table#map_headers now allows for a block that will convert all the headers. See docs for details. (Ben Mabey)
|
836
842
|
|
837
|
-
## [
|
843
|
+
## [0.3.97](https://github.com/cucumber/cucumber/compare/v0.3.96...v0.3.97)
|
838
844
|
|
839
845
|
The AA-FTT release. Creating a release for the AA-FTT meeting in Chicago so that we can play
|
840
846
|
with the new language API and maybe knock out some better .NET support.
|
@@ -853,7 +859,7 @@ with the new language API and maybe knock out some better .NET support.
|
|
853
859
|
* Changed the Programming Language API to support languages without "bleed through" (e.g. rubypython can't invoke ruby objs) (Aslak Hellesøy)
|
854
860
|
* The Programming Language API manages hooks on the language level instead of on the step mother level (Aslak Hellesøy)
|
855
861
|
|
856
|
-
## [
|
862
|
+
## [0.3.96](https://github.com/cucumber/cucumber/compare/v0.3.95...v0.3.96)
|
857
863
|
|
858
864
|
This release doesn't have any significant new features or bug fixes, but there are big
|
859
865
|
internal changes. This release has a new API for plugging in other programming languages.
|
@@ -872,7 +878,7 @@ be patched. Please upgrade to Spork 0.5.9 if you are using Spork.
|
|
872
878
|
* --strict will cause an exit code 1 for missing and pending (used to be for missing only). (Mads Buus)
|
873
879
|
* junit formatter doesn't report pending steps unless --strict is used. (Mads Buus)
|
874
880
|
|
875
|
-
## [
|
881
|
+
## [0.3.95](https://github.com/cucumber/cucumber/compare/v0.3.94...v0.3.95)
|
876
882
|
|
877
883
|
This release improves Webrat support for table-like HTML markup. Now you can easily turn the HTML
|
878
884
|
elements table, dl, ol and ul elements into a 2D array. This is particularly useful for comparing
|
@@ -899,7 +905,7 @@ This release also fixes several bugs related to --drb (Spork) and profiles (cucu
|
|
899
905
|
* 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)
|
900
906
|
* 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)
|
901
907
|
|
902
|
-
## [
|
908
|
+
## [0.3.94](https://github.com/cucumber/cucumber/compare/v0.3.93...v0.3.94)
|
903
909
|
|
904
910
|
Kanban take II.
|
905
911
|
|
@@ -928,7 +934,7 @@ You'll achieve better flow this way.
|
|
928
934
|
* Document builtin formatters with --help. (#406 Aslak Hellesøy)
|
929
935
|
* Added support for using regular expressions when mapping table headers. (Peter Williams)
|
930
936
|
|
931
|
-
## [
|
937
|
+
## [0.3.93](https://github.com/cucumber/cucumber/compare/v0.3.92...v0.3.93)
|
932
938
|
|
933
939
|
Highlights in this release: Improved profile handling (cucumber.yml) and a fix for cucumber hanging.
|
934
940
|
|
@@ -943,7 +949,7 @@ Highlights in this release: Improved profile handling (cucumber.yml) and a fix f
|
|
943
949
|
* script/cucumber correctly loads the gem's binary if the plugin isn't installed.
|
944
950
|
* Cucumber hangs waiting for Ctrl+C if an Error is raised. (#374 Aslak Hellesøy)
|
945
951
|
|
946
|
-
## [
|
952
|
+
## [0.3.92](https://github.com/cucumber/cucumber/compare/v0.3.91...v0.3.92)
|
947
953
|
|
948
954
|
This release has some minor improvements to the new Table.diff! functionality. For example,
|
949
955
|
if you're using Webrat and you want to compare a feature table with a HTML table containing
|
@@ -964,7 +970,7 @@ links in one of the columns, you can do:
|
|
964
970
|
### Changed Features
|
965
971
|
* The 'default' profile is now ALWAYS used unless you specify another profile or use the -P or --no-profile flag. (#344 Ben Mabey)
|
966
972
|
|
967
|
-
## [
|
973
|
+
## [0.3.91](https://github.com/cucumber/cucumber/compare/v0.3.90...v0.3.91)
|
968
974
|
|
969
975
|
### New Features
|
970
976
|
* CTRL-C will exit immediately instead of carrying on until all features are run. (Aslak Hellesøy)
|
@@ -972,7 +978,7 @@ links in one of the columns, you can do:
|
|
972
978
|
* Support limiting the number of feature elements with certain tags (#353 Joseph Wilk)
|
973
979
|
* Table support for cuke4duke
|
974
980
|
|
975
|
-
## [
|
981
|
+
## [0.3.90](https://github.com/cucumber/cucumber/compare/v0.3.11...v0.3.90)
|
976
982
|
|
977
983
|
The Hot summer release
|
978
984
|
|
@@ -1073,7 +1079,7 @@ This release also has several bugfixes related to --format and Before/After hook
|
|
1073
1079
|
* The data returned from Table#hashes and similar methods are frozen. Dup if you need to modify. (Aslak Hellesøy)
|
1074
1080
|
* Visitor.visit_table_cell_value(value, col_width, status) is now visitor.visit_table_cell_value(value, status)
|
1075
1081
|
|
1076
|
-
## [
|
1082
|
+
## [0.3.11](https://github.com/cucumber/cucumber/compare/v0.3.10...v0.3.11)
|
1077
1083
|
|
1078
1084
|
This release just fixes a tiny bug in the formatter to fix an incompatibility
|
1079
1085
|
with the latest RedMine release. It should have been included in 0.3.10, but
|
@@ -1082,7 +1088,7 @@ was forgotten.
|
|
1082
1088
|
### Bugfixes
|
1083
1089
|
* Formatter API was broken in 0.3.9 (Roman Chernyatchik)
|
1084
1090
|
|
1085
|
-
## [
|
1091
|
+
## [0.3.10](https://github.com/cucumber/cucumber/compare/v0.3.9...v0.3.10)
|
1086
1092
|
|
1087
1093
|
The Spork Release!
|
1088
1094
|
|
@@ -1122,7 +1128,7 @@ This release also has some minor bugfixes related to RSpec and Rails interop.
|
|
1122
1128
|
### Changed features
|
1123
1129
|
* The HTML formatter wraps examples in a div, and distinguishes between Scenario and Scenario Outline. (Aslak Hellesøy)
|
1124
1130
|
|
1125
|
-
## [
|
1131
|
+
## [0.3.9](https://github.com/cucumber/cucumber/compare/v0.3.8...v0.3.9)
|
1126
1132
|
|
1127
1133
|
Bugfix release for 0.3.8 released earlier today. 0.3.8 had a bug in the Rails cucumber
|
1128
1134
|
generator which is fixed in 0.3.9.
|
@@ -1131,7 +1137,7 @@ generator which is fixed in 0.3.9.
|
|
1131
1137
|
* Fix broken Rails cucumber generator (Tim Glen)
|
1132
1138
|
* The Cucumber Rake task in non-fork mode will properly cause Rake to exit with 1 when Cucumber fails. (Aslak Hellesøy)
|
1133
1139
|
|
1134
|
-
## [
|
1140
|
+
## [0.3.8](https://github.com/cucumber/cucumber/compare/v0.3.7...v0.3.8)
|
1135
1141
|
|
1136
1142
|
This Cucumber version fixes several bugs related to Ruby on Rails and RSpec. If you
|
1137
1143
|
use Cucumber with a Rails app we *strongly* recommend you bootstrap Cucumber again:
|
@@ -1152,7 +1158,7 @@ use Cucumber with a Rails app we *strongly* recommend you bootstrap Cucumber aga
|
|
1152
1158
|
* Better coexistence with RSpec - Cucumber now *neuters* the part of RSpec that tries to parse ARGV.
|
1153
1159
|
* The differ= exception is gone (#325, #340 Aslak Hellesøy)
|
1154
1160
|
|
1155
|
-
## [
|
1161
|
+
## [0.3.7](https://github.com/cucumber/cucumber/compare/v0.3.6...v0.3.7)
|
1156
1162
|
|
1157
1163
|
This is the "Help JetBrains RubyMine" release!
|
1158
1164
|
|
@@ -1165,7 +1171,7 @@ This is the "Help JetBrains RubyMine" release!
|
|
1165
1171
|
* 'specs' folder needs to be renamed back to 'spec' (#339 Aslak Hellesøy)
|
1166
1172
|
* CUCUMBER_OPTS doesn't work for cucumber rake tasks (#336 Aslak Hellesøy)
|
1167
1173
|
|
1168
|
-
## [
|
1174
|
+
## [0.3.6](https://github.com/cucumber/cucumber/compare/v0.3.5...v0.3.6)
|
1169
1175
|
|
1170
1176
|
Kanban! With this release you can tag features or scenarios that are work in progress
|
1171
1177
|
with a tag and use the new --wip switch.
|
@@ -1183,14 +1189,14 @@ Another handy feature in this release is that you can package your own formatter
|
|
1183
1189
|
* Gracefully handle exceptions in After block (#330 Matt Wynne)
|
1184
1190
|
* Feature with only Background doesn't run hooks (#314, #329 Aslak Hellesøy)
|
1185
1191
|
|
1186
|
-
## [
|
1192
|
+
## [0.3.5](https://github.com/cucumber/cucumber/compare/v0.3.4...v0.3.5)
|
1187
1193
|
|
1188
1194
|
Let's make a new release today because two annoying bugs are fixed.
|
1189
1195
|
|
1190
1196
|
### Bugfixes
|
1191
1197
|
* Allow feature element names to contain Gherkin keywords as long as they are not the first word on a newline (#319, #307 Joseph Wilk)
|
1192
1198
|
|
1193
|
-
## [
|
1199
|
+
## [0.3.4](https://github.com/cucumber/cucumber/compare/v0.3.3...v0.3.4)
|
1194
1200
|
|
1195
1201
|
A couple of great new features in this release. Running with Rake is faster than before,
|
1196
1202
|
and there is a brand new JUnit formatter - great for Continuous Integration reports!
|
@@ -1234,7 +1240,7 @@ However, setting the RAILS_ENV is easy to forget, so I don't recommend relying o
|
|
1234
1240
|
unless explicitly told to fork a new interpreter. This is to increase speed. You can
|
1235
1241
|
force a new interpreter by setting fork=true or rcov=true in the task.
|
1236
1242
|
|
1237
|
-
## [
|
1243
|
+
## [0.3.3](https://github.com/cucumber/cucumber/compare/v0.3.2...v0.3.3)
|
1238
1244
|
|
1239
1245
|
Minor bugfix release, made specially for EuRuKo!
|
1240
1246
|
|
@@ -1246,7 +1252,7 @@ Minor bugfix release, made specially for EuRuKo!
|
|
1246
1252
|
### Removed/changed features
|
1247
1253
|
* New aliases: --no-source/-s, --name/-n (#317 Lonnon Foster)
|
1248
1254
|
|
1249
|
-
## [
|
1255
|
+
## [0.3.2](https://github.com/cucumber/cucumber/compare/v0.3.1...v0.3.2)
|
1250
1256
|
|
1251
1257
|
This release has some minor bug fixes and new features.
|
1252
1258
|
Nothing major, but we need a release for RailsConf'09 in Las Vegas!
|
@@ -1262,7 +1268,7 @@ Nothing major, but we need a release for RailsConf'09 in Las Vegas!
|
|
1262
1268
|
* Examples and the associated tables are indented one level deeper than Scenario Outline. (Aslak Hellesøy)
|
1263
1269
|
* Added support for Examples selection when using --name. (#295 Joseph Wilk)
|
1264
1270
|
|
1265
|
-
## [
|
1271
|
+
## [0.3.1](https://github.com/cucumber/cucumber/compare/v0.3.0...v0.3.1)
|
1266
1272
|
|
1267
1273
|
This release has several minor bug fixes and new features. With the addition of Latvian and Hungarian Cucumber
|
1268
1274
|
now supports 32(!!) languages.
|
@@ -1287,7 +1293,7 @@ now supports 32(!!) languages.
|
|
1287
1293
|
### Removed/changed features
|
1288
1294
|
* --scenario handle has been removed and replaced with --name which supports partial matches, regexp special characters, running named backgrounds (#295 Joseph Wilk)
|
1289
1295
|
|
1290
|
-
## [
|
1296
|
+
## [0.3.0](https://github.com/cucumber/cucumber/compare/v0.2.3...v0.3.0)
|
1291
1297
|
|
1292
1298
|
This release has some minor changes to the APIs, but big enough that a new major release is in order.
|
1293
1299
|
The biggest change is the new semantics of the #World method. Previously you would call this method
|
@@ -1342,7 +1348,7 @@ http://wiki.github.com/aslakhellesoy/cucumber/using-rake#profiles
|
|
1342
1348
|
* Table and PyString no longer hold status information. Each visitor subclass should store state in @state if needed.
|
1343
1349
|
* \#visit_py_string no longer takes a status argument.
|
1344
1350
|
|
1345
|
-
## [
|
1351
|
+
## [0.2.3](https://github.com/cucumber/cucumber/compare/v0.2.2...v0.2.3)
|
1346
1352
|
|
1347
1353
|
This release sports 4 updated languages, slightly better help with snippets if you "quote" arguments
|
1348
1354
|
in your steps. Windows/JRuby users can enjoy colours and you get some more sugar with Tables.
|
@@ -1362,7 +1368,7 @@ in your steps. Windows/JRuby users can enjoy colours and you get some more sugar
|
|
1362
1368
|
* Fixed step name after step keyword without space (#265 Aslak Hellesøy)
|
1363
1369
|
* Backtrace is back in HTML reports (Aslak Hellesøy)
|
1364
1370
|
|
1365
|
-
## [
|
1371
|
+
## [0.2.2](https://github.com/cucumber/cucumber/compare/v0.2.1...v0.2.2)
|
1366
1372
|
|
1367
1373
|
This release includes some minor changes to make Cucumber work with pure Java. Cucumber
|
1368
1374
|
has already worked with Java for a while (using JRuby and step definitions in Ruby),
|
@@ -1371,7 +1377,7 @@ but now you can write step definitions in pure Java!
|
|
1371
1377
|
Check out the Cucumber Java project for more details:
|
1372
1378
|
http://github.com/aslakhellesoy/cucumber_java/tree/master
|
1373
1379
|
|
1374
|
-
## [
|
1380
|
+
## [0.2.1](https://github.com/cucumber/cucumber/compare/v0.2.0...v0.2.1)
|
1375
1381
|
|
1376
1382
|
This release fixes a few minor bugs and adds a couple of new features.
|
1377
1383
|
|
@@ -1390,7 +1396,7 @@ This release fixes a few minor bugs and adds a couple of new features.
|
|
1390
1396
|
### Removed features
|
1391
1397
|
* -S/--step-definitions option introduced in 0.2.0 is removed. Use --format usage [--dry-run] [--no-color].
|
1392
1398
|
|
1393
|
-
## [
|
1399
|
+
## [0.2.0](https://github.com/cucumber/cucumber/compare/v0.1.16...v0.2.0)
|
1394
1400
|
|
1395
1401
|
This release sports a bunch of new and exciting features, as well a major rewrite of Cucumber's internals.
|
1396
1402
|
The rewrite was done to address technical debt and to have a code base that is easier to evolve and maintain.
|
@@ -1495,7 +1501,7 @@ to this:
|
|
1495
1501
|
* Better handling of ARGV (#169 David Chelimsky, Ben Mabey)
|
1496
1502
|
* Compatibility with ruby-debug (do ARGV.dup in bin/cucumber so it can restart ruby with same args) (Aslak Hellesøy)
|
1497
1503
|
|
1498
|
-
## [
|
1504
|
+
## [0.1.16](https://github.com/cucumber/cucumber/compare/v0.1.15...v0.1.16)
|
1499
1505
|
|
1500
1506
|
This is a small bugfix release. The most notable improvement is compatibility with Webrat 0.4. Rails/Webrat users should
|
1501
1507
|
upgrade both Cucumber and Webrat gems.
|
@@ -1511,7 +1517,7 @@ upgrade both Cucumber and Webrat gems.
|
|
1511
1517
|
|
1512
1518
|
### Removed features
|
1513
1519
|
|
1514
|
-
## [
|
1520
|
+
## [0.1.15](https://github.com/cucumber/cucumber/compare/v0.1.14...v0.1.15)
|
1515
1521
|
|
1516
1522
|
Bugfix release
|
1517
1523
|
|
@@ -1524,7 +1530,7 @@ Bugfix release
|
|
1524
1530
|
* Better quoting of Scenario names in Autotest (Peter Jaros)
|
1525
1531
|
* Added some small workarounds for unicode handling on Windows (Aslak Hellesøy)
|
1526
1532
|
|
1527
|
-
## [
|
1533
|
+
## [0.1.14](https://github.com/cucumber/cucumber/compare/v0.1.13...v0.1.14)
|
1528
1534
|
|
1529
1535
|
This is the first release of Cucumber that runs on Ruby 1.9. There are still some encoding-related issues
|
1530
1536
|
with Arabic (ar), Japanese (ja) and Simplified Chinese (zh-CN). Patches are welcome. Other than that -
|
@@ -1541,7 +1547,7 @@ a couple of minor bug fixes and polishing.
|
|
1541
1547
|
### Removed features
|
1542
1548
|
* The #binary= method is gone from the Rake task. It will always point to the binary in the current gem. (Aslak Hellesøy)
|
1543
1549
|
|
1544
|
-
## [
|
1550
|
+
## [0.1.13](https://github.com/cucumber/cucumber/compare/v0.1.12...v0.1.13)
|
1545
1551
|
|
1546
1552
|
It's time for some new features again. Output is now much better since you can use diffing, tweak
|
1547
1553
|
the output colours and get the full --backtrace if you want. Managing your support/* files became
|
@@ -1576,7 +1582,7 @@ Enjoy!
|
|
1576
1582
|
|
1577
1583
|
### Removed features
|
1578
1584
|
|
1579
|
-
## [
|
1585
|
+
## [0.1.12](https://github.com/cucumber/cucumber/compare/v0.1.11...v0.1.12)
|
1580
1586
|
|
1581
1587
|
This is the "getting serious with IronRuby release" - largely based on
|
1582
1588
|
"Patrick Gannon":http://www.patrickgannon.net/archive/2008/10/23/bdd-style-feature-tests-using-ironruby-and-rspeccucumber.aspx's
|
@@ -1591,7 +1597,7 @@ blog entry.
|
|
1591
1597
|
### Removed features
|
1592
1598
|
None
|
1593
1599
|
|
1594
|
-
## [
|
1600
|
+
## [0.1.11](https://github.com/cucumber/cucumber/compare/v0.1.10...v0.1.11)
|
1595
1601
|
|
1596
1602
|
Bugfix release with a couple of minor additional features to the command line options.
|
1597
1603
|
|
@@ -1609,7 +1615,7 @@ Bugfix release with a couple of minor additional features to the command line op
|
|
1609
1615
|
### Removed features
|
1610
1616
|
* The cucumber gem no longer depends on the rspec gem. It must be downloaded manually if RSpec is used. (Jeff Rafter)
|
1611
1617
|
|
1612
|
-
## [
|
1618
|
+
## [0.1.10](https://github.com/cucumber/cucumber/compare/v0.1.9...v0.1.10)
|
1613
1619
|
|
1614
1620
|
This release mostly has smaller bugfixes. The most significant new feature is how
|
1615
1621
|
line numbers are specified. You can now run multiple features at specific lines numbers like this:
|
@@ -1639,7 +1645,7 @@ This will run foo.feature at line 15 and bar.feature at line 6, 45 and 111.
|
|
1639
1645
|
* Step definition without a block being treated as pending (#64 Joseph Wilk)
|
1640
1646
|
* The --line option has been removed. Use the new file.feature:line format instead.
|
1641
1647
|
|
1642
|
-
## [
|
1648
|
+
## [0.1.9](https://github.com/cucumber/cucumber/compare/v0.1.8...v0.1.9)
|
1643
1649
|
|
1644
1650
|
With this release Cucumber supports 19 (!) natural languages:
|
1645
1651
|
|
@@ -1722,7 +1728,7 @@ spaces removed too.
|
|
1722
1728
|
### Removed features
|
1723
1729
|
|
1724
1730
|
|
1725
|
-
## [
|
1731
|
+
## [0.1.8](https://github.com/cucumber/cucumber/compare/v0.1.7...v0.1.8)
|
1726
1732
|
|
1727
1733
|
This release extends the support for tables. PLEASE NOTE THAT TABLES ARE STILL EXPERIMENTAL.
|
1728
1734
|
In previous releases it has been possible to use tables to define "more examples" of a scenario in
|
@@ -1802,7 +1808,7 @@ The step definitions for such multiline steps must define an extra block argumen
|
|
1802
1808
|
### New features
|
1803
1809
|
* Added new --out option to make it easier to specify output from Rake and cucumber.yml
|
1804
1810
|
|
1805
|
-
## [
|
1811
|
+
## [0.1.7](https://github.com/cucumber/cucumber/compare/v0.1.6...v0.1.7)
|
1806
1812
|
|
1807
1813
|
This release fixes a few bugs and adds some new features. The most notable features are:
|
1808
1814
|
|
@@ -1855,6 +1861,6 @@ a plain text step is defined. Not anymore! Cucumber will now output this:
|
|
1855
1861
|
* Added --no-source option to display step definition location next to step text (#26, Joseph Wilk, Aslak Hellesøy)
|
1856
1862
|
* Added more Webrat steps (#25, Tim Glen)
|
1857
1863
|
|
1858
|
-
## [
|
1864
|
+
## [0.1.6](https://github.com/cucumber/cucumber/compare/f3292f4023a707099d02602b2bd6c4ca3cec6820...v0.1.6)
|
1859
1865
|
|
1860
1866
|
First gem release!
|