aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/CHANGELOG.md
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-11-25 09:49:54 +0000
committerJosé Valim <jose.valim@gmail.com>2011-11-25 09:49:54 +0000
commit696d01f7f4a8ed787924a41cce6df836cd73c46f (patch)
treed38247044fa4fb5eadd8c8f9182b9fa9e1f26576 /activemodel/CHANGELOG.md
parent6d9f9b3b05f6ea55aad9853888912bcca4d81c9f (diff)
downloadrails-696d01f7f4a8ed787924a41cce6df836cd73c46f.tar.gz
rails-696d01f7f4a8ed787924a41cce6df836cd73c46f.tar.bz2
rails-696d01f7f4a8ed787924a41cce6df836cd73c46f.zip
Add docs to serializers. Update CHANGELOGs.
Diffstat (limited to 'activemodel/CHANGELOG.md')
-rw-r--r--activemodel/CHANGELOG.md14
1 files changed, 13 insertions, 1 deletions
diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md
index 71a737caff..53934f08e7 100644
--- a/activemodel/CHANGELOG.md
+++ b/activemodel/CHANGELOG.md
@@ -1,4 +1,16 @@
-* Added ActiveModel::Errors#added? to check if a specific error has been added *Martin Svalin*
+## Rails 3.2.0 (unreleased) ##
+
+* Add ActiveModel::Serializer that encapsulates an ActiveModel object serialization *José Valim*
+
+* Renamed (with a deprecation the following constants):
+
+ ActiveModel::Serialization => ActiveModel::Serializable
+ ActiveModel::Serializers::JSON => ActiveModel::Serializable::JSON
+ ActiveModel::Serializers::Xml => ActiveModel::Serializable::XML
+
+ *José Valim*
+
+* Add ActiveModel::Errors#added? to check if a specific error has been added *Martin Svalin*
* Add ability to define strict validation(with :strict => true option) that always raises exception when fails *Bogdan Gusiev*