aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorGodfrey Chan <godfreykfc@gmail.com>2014-09-23 00:48:06 +0900
committerGodfrey Chan <godfreykfc@gmail.com>2014-09-23 00:48:06 +0900
commitb04ac976d9078e8012dd45887afebc950dc053fd (patch)
tree71e1d4c33da7f08afa1f219a829460c2cb5b0824 /actionview
parent07635a74b5ee08dcba3f6617def6230d8f114fe5 (diff)
downloadrails-b04ac976d9078e8012dd45887afebc950dc053fd.tar.gz
rails-b04ac976d9078e8012dd45887afebc950dc053fd.tar.bz2
rails-b04ac976d9078e8012dd45887afebc950dc053fd.zip
CHANGELOG for 07635a7
Diffstat (limited to 'actionview')
-rw-r--r--actionview/CHANGELOG.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md
index ed58933472..8ac74dc938 100644
--- a/actionview/CHANGELOG.md
+++ b/actionview/CHANGELOG.md
@@ -1,3 +1,12 @@
+* Changed the meaning of `render "foo/bar"`.
+
+ Previously, calling `render "foo/bar"` in a controller action is equivalent
+ to `render file: "foo/bar"`. In Rails 4.2, this has been changed to mean
+ `render template: "foo/bar"` instead. If you need to render a file, please
+ change your code to use the explicit form (`render file: "foo/bar"`) instead.
+
+ *Jeremy Jackson*
+
* Add support for ARIA attributes in tags.
Example: