From ae5538ca6b25582be9676ce8f66b0e07d34fbc31 Mon Sep 17 00:00:00 2001 From: Godfrey Chan Date: Tue, 25 Nov 2014 04:07:08 -0800 Subject: [PATCH] Final sync with CHANGELOGs [ci skip] --- guides/source/4_2_release_notes.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/guides/source/4_2_release_notes.md b/guides/source/4_2_release_notes.md index 622df3ce24..26142cd212 100644 --- a/guides/source/4_2_release_notes.md +++ b/guides/source/4_2_release_notes.md @@ -297,6 +297,13 @@ Please refer to the [Changelog][railties] for detailed changes. * Deprecated missing `config.log_level` for production environments. ([Pull Request](https://github.com/rails/rails/pull/16622)) +* Deprecated `rake test:all` in favor of `rake test` as it now run all tests + in the `test` folder. + ([Pull Request](https://github.com/rails/rails/pull/17348)) + +* Deprecated `rake test:all:db` in favor of `rake test:db`. + ([Pull Request](https://github.com/rails/rails/pull/17348)) + ### Notable changes * Introduced `web-console` in the default application Gemfile. @@ -409,8 +416,6 @@ Please refer to the [Changelog][action-pack] for detailed changes. # bad Rails.application.routes.url_helpers.root_path('controller' => 'posts', 'action' => 'index') # good - Rails.application.routes.url_helpers.root_path(:controller => 'posts', :action => 'index') - # better :trollface: Rails.application.routes.url_helpers.root_path(controller: 'posts', action: 'index') ```