diff options
author | Godfrey Chan <godfreykfc@gmail.com> | 2014-08-18 10:06:00 -0700 |
---|---|---|
committer | Godfrey Chan <godfreykfc@gmail.com> | 2014-08-18 10:08:19 -0700 |
commit | be69024db9a73488aaf1c1d3334e0dfcde2339d7 (patch) | |
tree | a62d829f9ced52e3358806f0c2bec5ed0c5021a8 /guides/source | |
parent | 306dc1a499908ba105e6b0fe8b8e01824c5e04d7 (diff) | |
download | rails-be69024db9a73488aaf1c1d3334e0dfcde2339d7.tar.gz rails-be69024db9a73488aaf1c1d3334e0dfcde2339d7.tar.bz2 rails-be69024db9a73488aaf1c1d3334e0dfcde2339d7.zip |
Sync action pack release notes [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/4_2_release_notes.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/guides/source/4_2_release_notes.md b/guides/source/4_2_release_notes.md index 7f3c6defcf..dbfda9c03e 100644 --- a/guides/source/4_2_release_notes.md +++ b/guides/source/4_2_release_notes.md @@ -136,6 +136,11 @@ Please refer to the [Changelog][action-pack] for detailed changes. ### Removals +* `respond_with` and the class-level `respond_to` were removed from Rails and + moved to the `responders` gem (version 2.0). Add it to your `Gemfile` to + continue using these features. + ([Pull Request](https://github.com/rails/rails/pull/16526)) + * Removed deprecated `AbstractController::Helpers::ClassMethods::MissingHelperError` in favor of `AbstractController::Helpers::MissingHelperError`. ([Commit](https://github.com/rails/rails/commit/a1ddde15ae0d612ff2973de9cf768ed701b594e8)) @@ -156,6 +161,9 @@ Please refer to the [Changelog][action-pack] for detailed changes. ### Notable changes +* Rails will now automatically include the template's digest in ETags. + ([Pull Request](https://github.com/rails/rails/pull/16527)) + * `render nothing: true` or rendering a `nil` body no longer add a single space padding to the response body. ([Pull Request](https://github.com/rails/rails/pull/14883)) |