aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorIgor <fedoronchuk@gmail.com>2013-02-08 00:54:46 +0200
committerIgor <fedoronchuk@gmail.com>2013-02-27 16:35:22 +0200
commitdd0bbd2ccb9c813902ae263dd4cc21f85af0bdc4 (patch)
tree68fb32de77f6dd70fca498fa7e21e74acf9df369 /activerecord/CHANGELOG.md
parentdca0b57d03deffc933763482e615c3cf0b9a1d97 (diff)
downloadrails-dd0bbd2ccb9c813902ae263dd4cc21f85af0bdc4.tar.gz
rails-dd0bbd2ccb9c813902ae263dd4cc21f85af0bdc4.tar.bz2
rails-dd0bbd2ccb9c813902ae263dd4cc21f85af0bdc4.zip
fix db_runtime attribute value after raising ActionView::MissingTemplate exception
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 55fa9cae81..bb32d16fc1 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*
+
* Schema dumper supports dumping the enabled database extensions to `schema.rb`
(currently only supported by postgresql).