aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2016-03-11 10:29:10 -0700
committerSean Griffin <sean@seantheprogrammer.com>2016-03-11 10:29:10 -0700
commit3bfda09fa069caf9b28df78a19bb63c23c60169b (patch)
treedc5d1b31bf7b71a71a439cf3e0acbc33f032ca91 /actionpack/CHANGELOG.md
parente56b594d323e9c17398e65caa0fad20500868135 (diff)
parent48f140cf7459c963a54637c897448b959dbbfd26 (diff)
downloadrails-3bfda09fa069caf9b28df78a19bb63c23c60169b.tar.gz
rails-3bfda09fa069caf9b28df78a19bb63c23c60169b.tar.bz2
rails-3bfda09fa069caf9b28df78a19bb63c23c60169b.zip
Merge pull request #22854 from jcoyne/missing_template
Default rendering behavior if respond_to collector doesn't have a block.
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 9a13e88ec9..61c608972c 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,3 +1,10 @@
+* When a `respond_to` collector with a block doesn't have a response, then
+ a `:no_content` response should be rendered. This brings the default
+ rendering behavior introduced by https://github.com/rails/rails/issues/19036
+ to controller methods employing `respond_to`
+
+ *Justin Coyne*
+
* Add `ActionController::Parameters#dig` on Ruby 2.3 and greater, which
behaves the same as `Hash#dig`.