|
|
|
|
Changelog for ruby2.7-rubygem-rspec-rails-4.0-4.0.2-3.62.x86_64.rpm :
* Wed Jan 20 2021 Manuel Schnitzer - updated to version 4.0.2 * no changelog for this version found * Wed May 27 2020 Manuel Schnitzer - updated to version 4.0.1 Bug Fixes: * Remove warning when calling `driven_by` in system specs. (Aubin Lorieux, #2302) * Fix comparison of times for `#at` in job matchers. (Jon Rowe, Markus Doits, #2304) * Allow `have_enqueued_mail` to match when a sub class of `ActionMailer::DeliveryJob` is set using `.delivery_job=`. (Atsushi Yoshida #2305) * Restore Ruby 2.2.x compatibility. (Jon Rowe, #2332) * Add `required_ruby_version` to gem spec. (Marc-André Lafortune, #2319, #2338) * Mon Apr 27 2020 Manuel Schnitzer - updated to version 4.0.0 [Full Changelog](https://github.com/rspec/rspec-rails/compare/v3.9.1...v4.0.0) Enhancements: * Adds support for Rails 6. (Penelope Phippen, Benoit Tigeot, Jon Rowe, #2071) * Adds support for JRuby on Rails 5.2 and 6 * Add support for parameterised mailers (Ignatius Reza, #2125) * Add ActionMailbox spec helpers and test type (James Dabbs, #2119) * Add ActionCable spec helpers and test type (Vladimir Dementyev, #2113) * Add support for partial args when using `have_enqueued_mail` (Ignatius Reza, #2118, #2125) * Add support for time arguments for `have_enqueued_job` (AATTalpaca-tc, #2157) * Improve path parsing in view specs render options. (John Hawthorn, #2115) * Add routing spec template as an option for generating controller specs. (David Revelo, #2134) * Add argument matcher support to `have_enqueued_ *` matchers. (Phil Pirozhkov, #2206) * Switch generated templates to use ruby 1.9 hash keys. (Tanbir Hasan, #2224) * Add `have_been_performed`/`have_performed_job`/`perform_job` ActiveJob matchers (Isaac Seymour, #1785) * Default to generating request specs rather than controller specs when generating a controller (Luka Lüdicke, #2222) * Allow `ActiveJob` matchers `#on_queue` modifier to take symbolic queue names. (Nils Sommer, #2283) * The scaffold generator now generates request specs in preference to controller specs. (Luka Lüdicke, #2288) * Add configuration option to disable ActiveRecord. (Jon Rowe, Phil Pirozhkov, Hermann Mayer, #2266) * Set `ActionDispatch::SystemTesting::Server.silence_puma = true` when running system specs. (ta1kt0me, Benoit Tigeot, #2289) Bug Fixes: * `EmptyTemplateHandler.call` now needs to support an additional argument in Rails 6. (Pavel Rosický, #2089) * Suppress warning from `SQLite3Adapter.represent_boolean_as_integer` which is deprecated. (Pavel Rosický, #2092) * `ActionView::Template#formats` has been deprecated and replaced by `ActionView::Template#format`(Seb Jacobs, #2100) * Replace `before_teardown` as well as `after_teardown` to ensure screenshots are generated correctly. (Jon Rowe, #2164) * `ActionView::FixtureResolver#hash` has been renamed to `ActionView::FixtureResolver#data`. (Penelope Phippen, #2076) * Prevent `driven_by(:selenium)` being called due to hook precedence. (Takumi Shotoku, #2188) * Prevent a `WrongScopeError` being thrown during loading fixtures on Rails 6.1 development version. (Edouard Chin, #2215) * Fix Mocha mocking support with `should`. (Phil Pirozhkov, #2256) * Restore previous conditional check for setting `default_url_options` in feature specs, prevents a `NoMethodError` in some scenarios. (Eugene Kenny, #2277) * Allow changing `ActiveJob::Base.queue_adapter` inside a system spec. (Jonathan Rochkind, #2242) * `rails generate generator` command now creates related spec file (Joel Azemar, #2217) * Relax upper `capybara` version constraint to allow for Capybara 3.x (Phil Pirozhkov, #2281) * Clear ActionMailer test mailbox after each example (Benoit Tigeot, #2293) Breaking Changes: * Drops support for Rails below 5.0 * Drops support for Ruby below 2.3 * Mon Jan 27 2020 Manuel Schnitzer - updated to version 3.9.0 [#] Enhancements * Use __dir__ instead of __FILE__ in generated rails_helper.rb where supported. (OKURA Masafumi, #2048) * Add have_enqueued_mail matcher as a \"super\" matcher to the ActiveJob matchers making it easier to match on ActiveJob delivered emails. (Joel Lubrano, #2047) * Add generator for system specs on Rails 5.1 and above. (Andrzej Sliwa, #1933) * Add generator for generator specs. (AATTConSou, #2085) * Add option to generate routes when generating controller specs. (David Revelo, #2134) [#] Bug Fixes: Make the ActiveJob matchers fail when multiple jobs are queued for negated matches. e.g. expect { job; job; }.to_not have_enqueued_job. (Emric Istanful, #2069) * Sat Mar 02 2019 Stephan Kulow - updated to version 3.8.2 see installed Changelog.md * Mon Oct 29 2018 mschnitzerAATTsuse.com- updated to version 3.8.1 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.8.0...v3.8.1) Bug Fixes: * Fix `NoMethodError: undefined method \'strip\'` when using a `Pathname` object as the fixture file path. (Aaron Kromer, #2026) * When generating feature specs, do not duplicate namespace in the path name. (Laura Paakkinen, #2034) * Prevent `ActiveJob::DeserializationError` from being issued when `ActiveJob` matchers de-serialize arguments. (AATTaymeric-ledorze, #2036) * Sun Aug 05 2018 mschnitzerAATTsuse.com- updated to version 3.8.0 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.7.2...v3.8.0) Enhancements: * Improved message when migrations are pending in the default `rails_helper.rb` (Koichi ITO, #1924) * `have_http_status` matcher now supports Rails 5.2 style response symbols (Douglas Lovell, #1951) * Change generated Rails helper to match Rails standards for Rails.root (Alessandro Rodi, #1960) * At support for asserting enqueued jobs have no wait period attached. (Brad Charna, #1977) * Cache instances of `ActionView::Template` used in `stub_template` resulting in increased performance due to less allocations and setup. (Simon Coffey, #1979) * Rails scaffold generator now respects longer namespaces (e.g. api/v1/\\). (Laura Paakkinen, #1958) Bug Fixes: * Escape quotation characters when producing method names for system spec screenshots. (Shane Cavanaugh, #1955) * Use relative path for resolving fixtures when `fixture_path` is not set. (Laurent Cobos, #1943) * Allow custom template resolvers in view specs. (AATTahorek, #1941) * Sun Dec 03 2017 cooloAATTsuse.com- updated to version 3.7.2 see installed Changelog.md * Thu Oct 26 2017 cooloAATTsuse.com- updated to version 3.7.1 see installed Changelog.md * Mon Aug 28 2017 cooloAATTsuse.com- updated to version 3.6.1 see installed Changelog.md [#]## 3.6.1 / 2017-07-25 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.6.0...v3.6.1) Bug Fixes: * Prevent \"template not rendered\" log message from erroring in threaded environments. (Samuel Cochran, #1831) * Correctly generate job name in error message. (Wojciech Wnętrzak, #1814)
|
|
|