aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorGodfrey Chan <godfreykfc@gmail.com>2016-02-25 01:30:00 -0800
committerGodfrey Chan <godfreykfc@gmail.com>2016-02-25 01:30:00 -0800
commit6b3176170a35cbd20c8599c31fc5cbe46e02562c (patch)
treefea0aef0ff258a93c93aa9d39c6ca16ce410d5a7 /guides
parent50e4433b051829350984f0c5eb1271243f6d229d (diff)
parent73b1efc58f4e04b4af7ed93685352ebe9108cd7e (diff)
downloadrails-6b3176170a35cbd20c8599c31fc5cbe46e02562c.tar.gz
rails-6b3176170a35cbd20c8599c31fc5cbe46e02562c.tar.bz2
rails-6b3176170a35cbd20c8599c31fc5cbe46e02562c.zip
Merge pull request #23827 from rails/new_implicit_render
Lock down new `ImplicitRender` behavior for 5.0 RC
Diffstat (limited to 'guides')
-rw-r--r--guides/source/5_0_release_notes.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/guides/source/5_0_release_notes.md b/guides/source/5_0_release_notes.md
index 91bca16356..52dbe78563 100644
--- a/guides/source/5_0_release_notes.md
+++ b/guides/source/5_0_release_notes.md
@@ -256,6 +256,12 @@ Please refer to the [Changelog][action-pack] for detailed changes.
* Rails will only generate "weak", instead of strong ETags.
([Pull Request](https://github.com/rails/rails/pull/17573))
+* Controller actions without an explicit `render` call and with no
+ corresponding templates will render `head :no_conten` implicitly
+ instead of raising an error.
+ (Pull Request [1](https://github.com/rails/rails/pull/19377),
+ [2](https://github.com/rails/rails/pull/23827))
+
Action View
-------------