diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-12-16 10:43:33 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-12-16 11:00:12 +0100 |
commit | 41dc7fd650b0fcaf8f05f895aab13febac0739ec (patch) | |
tree | e7b40779c5c3d0e9f407ceff71d4b962e93281f1 /guides | |
parent | 149a98a6f176fdb89971151eeab6966b7a9902d4 (diff) | |
download | rails-41dc7fd650b0fcaf8f05f895aab13febac0739ec.tar.gz rails-41dc7fd650b0fcaf8f05f895aab13febac0739ec.tar.bz2 rails-41dc7fd650b0fcaf8f05f895aab13febac0739ec.zip |
docs, synchronize CHANGELOG across branches. [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/4_2_release_notes.md | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/guides/source/4_2_release_notes.md b/guides/source/4_2_release_notes.md index b2f77d38c4..d8700539c4 100644 --- a/guides/source/4_2_release_notes.md +++ b/guides/source/4_2_release_notes.md @@ -509,6 +509,17 @@ Please refer to the [Changelog][action-pack] for detailed changes. serving assets from your Rails server in production. ([Pull Request](https://github.com/rails/rails/pull/16466)) +* When calling the `process` helpers in an integration test the path needs to have + a leading slash. Previously you could omit it but that was a byproduct of the + implementation and not an intentional feature, e.g.: + + ```ruby + test "list all posts" do + get "/posts" + assert_response :success + end + ``` + Action View ----------- @@ -544,17 +555,6 @@ Please refer to the [Changelog][action-view] for detailed changes. * Placeholder I18n follows the same convention as `label` I18n. ([Pull Request](https://github.com/rails/rails/pull/16438)) -* When calling the `process` helpers in an integration test the path needs to have - a leading slash. Previously you could omit it but that was a byproduct of the - implementation and not an intentional feature, e.g.: - - ```ruby - test "list all posts" do - get "/posts" - assert_response :success - end - ``` - Action Mailer ------------- @@ -828,6 +828,7 @@ Please refer to the [Changelog][active-support] for detailed changes. `module Foo; extend ActiveSupport::Concern; end` boilerplate. ([Commit](https://github.com/rails/rails/commit/b16c36e688970df2f96f793a759365b248b582ad)) +* New [guide](constant_autoloading_and_reloading.html) about constant autoloading and reloading. Credits ------- |