aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-02-27 11:47:24 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-02-27 11:47:24 -0300
commit02037c3ea0614103793137aab932060d2123537c (patch)
tree66805a4a71367992e30265fc62a0b21faf069f0b /activerecord/CHANGELOG.md
parentab876893cfb77dcd760b34628a1a1152c9a448d8 (diff)
parentdd0bbd2ccb9c813902ae263dd4cc21f85af0bdc4 (diff)
downloadrails-02037c3ea0614103793137aab932060d2123537c.tar.gz
rails-02037c3ea0614103793137aab932060d2123537c.tar.bz2
rails-02037c3ea0614103793137aab932060d2123537c.zip
Merge pull request #9218 from Fivell/master
Fix calculation of db_runtime property in ActiveRecord::Railties::ControllerRuntime#cleanup_view_runtime. Previously, after raising ActionView::MissingTemplate, db_runtime was not populated. Closes #9218, Fixes #9215. Conflicts: activerecord/CHANGELOG.md
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 44f3115add..4a5a2d17af 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,13 @@
## Rails 4.0.0 (unreleased) ##
+* Fix calculation of `db_runtime` property in
+ `ActiveRecord::Railties::ControllerRuntime#cleanup_view_runtime`.
+ Previously, after raising `ActionView::MissingTemplate`, `db_runtime` was
+ not populated.
+ Fixes #9215.
+
+ *Igor Fedoronchuk*
+
* Do not try to touch invalid (and thus not persisted) parent record
for a `belongs_to :parent, touch: true` association