aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2008-11-19 14:06:15 +0100
committerDavid Heinemeier Hansson <david@loudthinking.com>2008-11-19 14:06:15 +0100
commite442448fa3f706062ef9c89912c1fd95e1119f67 (patch)
tree5ee0b4cb78a05be4eb7558469200486bb7739f93 /actionpack/CHANGELOG
parent130fe74d17404e5c06353526c7b20beb4019cb69 (diff)
parent27c03e69e94655482b0d77d3ae0ca902ce537f8c (diff)
downloadrails-e442448fa3f706062ef9c89912c1fd95e1119f67.tar.gz
rails-e442448fa3f706062ef9c89912c1fd95e1119f67.tar.bz2
rails-e442448fa3f706062ef9c89912c1fd95e1119f67.zip
Changed the default of ActionView#render to assume partials instead of files when not given an options hash [DHH]
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 94a02c5325..9f84910156 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -16,6 +16,8 @@
# <%= render :partial => "posts/post", :collection => @posts %>
<%= render(@posts) %>
+* Remove deprecated render_component. Please use the plugin from http://github.com/rails/render_component/tree/master [Pratik]
+
* Fixed RedCloth and BlueCloth shouldn't preload. Instead just assume that they're available if you want to use textilize and markdown and let autoload require them [DHH]