You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Drop rails `4.0` / `4.1` support ([#392](https://github.com/cucumber/cucumber-rails/pull/392)[deivid-rodriguez](https://github.com/deivid-rodriguez))
11
+
12
+
* Allow Ruby `2.6` users to `ERB.new` ([#399](https://github.com/cucumber/cucumber-rails/pull/399)[koic](https://github.com/koic))
13
+
14
+
* Allow Rails to be used in the `6.x` series (Currently as of release only beta1 is supported) ([#405](https://github.com/cucumber/cucumber-rails/pull/405)[kotovalexarian](https://github.com/kotovalexarian)
15
+
16
+
* Update CI to test most relevant Rubies ([olleolleolle](https://github.com/olleolleolle))
* Renamed History.md to CHANGELOG.md, added contributing note, and this line in accordance with [cucumber/cucumber #251](https://github.com/cucumber/cucumber/issues/251) ([#345](https://github.com/cucumber/cucumber-rails/pull/345)[jaysonesmith](https://github.com/jaysonesmith))
11
41
* Update .travis.yml with ruby versions ([#341](https://github.com/cucumber/cucumber-rails/pull/341) Jun Aruga)
12
42
* Removed support for Ruby <= 2.1, to keep in line with [cucumber-ruby](https://github.com/cucumber/cucumber-ruby/blob/master/CHANGELOG.md#302-2017-11-11) ([#360](https://github.com/cucumber/cucumber-rails/pull/360)[xtrasimplicity](https://github.com/xtrasimplicity)).
@@ -67,6 +97,7 @@ There are currently no unreleased changes.
67
97
* Various code enhancements based on PullReview suggestions (Kosmas Chatzimichalis)
* Deprecate #tableish. The Capybara::Node::Finders API has obsoleted the need for it. ([#145](https://github.com/cucumber/cucumber-rails/issues/145) Aslak Hellesøy)
* Active_record hook prevents features that access multiple database from running correctly ([#152](https://github.com/cucumber/cucumber-rails/issues/152) winnipegtransit)
* sqlite3-ruby is now sqlite3 ([#158](https://github.com/cucumber/cucumber-rails/pull/158) Trung Le)
217
253
* Broken link in the USAGE file of the features generator ([#156](https://github.com/cucumber/cucumber-rails/pull/156) Pablo Alonso García)
218
254
* Rails destroy cucumber:feature deletes the steps folder, even though it's not empty. ([#154](https://github.com/cucumber/cucumber-rails/pull/154]), [#111](https://github.com/cucumber/cucumber-rails/issues/111) mblake)
@@ -223,28 +259,33 @@ You can learn more about what Capybara has to offer in Capybara's [README](https
* Added a @no-database-cleaner tag you can add if you don't want to run DatabaseCleaner. Useful for debugging if you want to leave data in the database. Typical use case is to run `rails server --environment test` to look at/try app with data from test. (Aslak Hellesøy)
268
+
269
+
* Added a `@no-database-cleaner` tag you can add if you don't want to run DatabaseCleaner. Useful for debugging if you want to leave data in the database. Typical use case is to run `rails server --environment test` to look at/try app with data from test. (Aslak Hellesøy)
232
270
* History file is now in Markdown format. (Aslak Hellesøy)
* Fixed incorrect warning in generated files. (#115 Emanuele Vicentini)
276
321
* Fixed incorrect hooks for DatabaseCleaner (#113 Markus Bengts)
277
322
* Throw an error if the user forgot to add DatabaseCleaner to the Gemfile, allowing them to decide whether or not to use it. (#36 Aslak Hellesøy, Ryan Bigg)
* Fix Date selection steps and helpers (#93, #99, #100, #101, #109 James Herdman, John Ferlito, twalpole, Geoff Drake, Ricky Robinson, Michael Fleet)
289
336
* Can not run cucumber-rails (0.4.0.beta.1) with cucumber (0.10.0) (#89 Aslak Hellesøy)
@@ -294,6 +341,7 @@ You can learn more about what Capybara has to offer in Capybara's [README](https
294
341
* Gem dependency on Nokogiri (for #tableish). (#53 Aslak Hellesøy)
295
342
296
343
### Removed Features
344
+
297
345
* Automatic detection of RSpec, Capybara and Webrat for install generator. Set gems explicitly in your Gemfile (Rails3) or environment.rb (Rails2)
298
346
* Then /^(?:|I )should see JSON:$/. Use #get and #last_response instead. See features/rails3.feature. (Aslak Hellesøy)
299
347
* Cucumber::Rails::World.use_transactional_fixtures. TODO: Explain what to do instead.
@@ -339,34 +387,39 @@ This is a major release since we're now supporting both Rails 3 and RSpec 2. Old
339
387
(Rails 2 and RSpec 1) are still supported.
340
388
341
389
### New Features
390
+
342
391
* Support for both Rails-2.x and Rails-3.x (#10 Kristian Mandrup, Aleksey Gureiev, Ashley Moran, Aslak Hellesøy)
343
392
* Support for both RSpec-1.x and RSpec-2.x (Louis Rose, Aslak Hellesøy)
344
393
* Features will default to Javascript emulation unless you turn it off with @culerity, (Aslak Hellesøy)
345
394
* Japanese translation. (MOROHASHI Kyosuke)
346
395
347
396
### Bugfixes
397
+
348
398
* Support projects that don't use ActiveRecord (#14 Aslak Hellesøy)
349
399
* Running test/unit tests when creating a skeleton (#12 Aleksey Gureiev)
350
400
* Inform that config/database.yml is overwritten, be smarter about it and inform the user that it is forced. (#15 Aslak Hellesøy)
351
401
* Reverts changes from issue #5 where verification of query string params was added to the step for being on a page. Adds step discussed in issue #11 for verification of query string. (#5, #11 Eric Milford)
352
402
* Fixed typos in Capybara's web steps (has_not_xpath? => has_no_xpath?) (Thorbjørn Hermansen, Carlos Antonio da Silva)
353
403
354
-
355
404
### New Features
405
+
356
406
* Added Danish translation (Kristian Mandrup)
357
407
* Using Gemfile for Rails 3. Tidies it up and adds cucumber gems only if not already present! (Kristian Mandrup)
358
408
* Added Generators wrapper module for Rails 3 generators so they are now all in Cucumber::Generators (Kristian Mandrup)
359
409
360
410
### Bugfixes
411
+
361
412
* Started to work on solutions for generating suitable support files depending on Rails version
362
413
- see skeleton_base.rb#create_feature_support and templates/support
0 commit comments