aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/CHANGELOG.md
diff options
context:
space:
mode:
authorJay Elaraj <jay@nerdcave.com>2015-01-17 02:12:32 -0500
committerJay Elaraj <jay@nerdcave.com>2015-04-28 21:06:30 -0400
commitb2967999aeb424d219393f2e01e88a92f37a78c3 (patch)
treef1cb627e1ac445aa69701df0cb2e2eaed0261221 /activemodel/CHANGELOG.md
parent8979a5a4bd5cd570655ef66794140ad9212dcb0f (diff)
downloadrails-b2967999aeb424d219393f2e01e88a92f37a78c3.tar.gz
rails-b2967999aeb424d219393f2e01e88a92f37a78c3.tar.bz2
rails-b2967999aeb424d219393f2e01e88a92f37a78c3.zip
ensure `method_missing` called for non-existing methods passed to
`ActiveModel::Serialization#serializable_hash`
Diffstat (limited to 'activemodel/CHANGELOG.md')
-rw-r--r--activemodel/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md
index 4961d69d2a..3c1510b31d 100644
--- a/activemodel/CHANGELOG.md
+++ b/activemodel/CHANGELOG.md
@@ -1,3 +1,8 @@
+* Ensure `method_missing` is called for methods passed to
+ `ActiveModel::Serialization#serializable_hash` that don't exist.
+
+ *Jay Elaraj*
+
* Add `ActiveModel::Dirty#[attr_name]_previously_changed?` and
`ActiveModel::Dirty#[attr_name]_previous_change` to improve access
to recorded changes after the model has been saved.