diff options
author | Godfrey Chan <godfreykfc@gmail.com> | 2014-11-25 04:07:08 -0800 |
---|---|---|
committer | Godfrey Chan <godfreykfc@gmail.com> | 2014-11-25 04:07:08 -0800 |
commit | ae5538ca6b25582be9676ce8f66b0e07d34fbc31 (patch) | |
tree | 85a06dc3d3a1021d527b3ee4c3503f2984a933ec | |
parent | c71025123472d3fa8b0a47605257993dca1f23b3 (diff) | |
download | rails-ae5538ca6b25582be9676ce8f66b0e07d34fbc31.tar.gz rails-ae5538ca6b25582be9676ce8f66b0e07d34fbc31.tar.bz2 rails-ae5538ca6b25582be9676ce8f66b0e07d34fbc31.zip |
Final sync with CHANGELOGs [ci skip]
-rw-r--r-- | guides/source/4_2_release_notes.md | 9 |
1 files 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') ``` |